/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --cc-green:        #3eb87a;
  --cc-green-dark:   #2e9d64;
  --cc-green-light:  #f0faf5;
  --cc-green-mid:    #d6f0e4;
  --cc-charcoal:     #000;
  --cc-gray:         #6b7280;
  --cc-border:       #e5e7eb;
  --cc-radius:       1rem;
  --cc-radius-lg:    1.75rem;
  --cc-shadow:       0 4px 24px rgba(62,184,122,.15);
  --cc-font:         'Inter', sans-serif;
}

/* ── BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; margin-top: 0 !important; }
body {
  font-family: var(--cc-font);
  background: #fff;
  color: var(--cc-charcoal);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

.cc-wc-wrap { display: contents; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-cc-primary {
  background: var(--cc-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(62,184,122,.28);
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.btn-cc-primary:hover {
  background: var(--cc-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(62,184,122,.35);
  color: #fff;
}
.btn-cc-outline {
  background: transparent;
  color: var(--cc-charcoal);
  border: 2px solid var(--cc-border);
  border-radius: 50px;
  padding: .85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background .2s, border-color .2s;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.btn-cc-outline:hover {
  background: var(--cc-green-light);
  border-color: var(--cc-green);
  color: var(--cc-charcoal);
}
.btn-paypal {
  background: #ffc439;
  color: #111;
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: background .2s;
}
.btn-paypal:hover { background: #f4bb36; }

/* ── NAVBAR ───────────────────────────────────────────────────── */
#mainNav {
    margin-top: 0 !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
  background: rgba(255,255,255,1);
}
#mainNav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
  padding: .75rem 0;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cc-charcoal);
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.nav-logo-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  overflow: hidden;
}
.nav-links a {
  color: var(--cc-charcoal);
  font-weight: 500;
  font-size: .9rem;
  margin: 0 .75rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cc-green); }
.mobile-link { color: #222; font-weight: 500; }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  padding: 9rem 0 5rem;
  background: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cc-green-light);
  color: #1f6648;
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero-h1 span { color: var(--cc-green); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--cc-gray);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .875rem;
  color: var(--cc-gray);
  font-weight: 500;
  margin-top: 1.5rem;
}
.hero-trust span { display: flex; align-items: center; gap: .4rem; }
.hero-img-wrap { position: relative; }
.hero-img-bg {
  position: absolute;
  inset: 0;
  background: var(--cc-green-light);
  border-radius: 2.5rem;
  transform: rotate(3deg);
  z-index: 0;
}
.hero-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border: 4px solid #fff;
}
.hero-badge-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  z-index: 2;
  background: #fff;
  border-radius: 1rem;
  padding: .85rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-badge-float .icon {
  background: var(--cc-green-light);
  color: var(--cc-green);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.hero-badge-float p { margin: 0; }
.hero-badge-float .label { font-weight: 700; font-size: .9rem; }
.hero-badge-float .sub { font-size: .75rem; color: var(--cc-gray); }

/* ── PRESS BAR ────────────────────────────────────────────────── */
#press {
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
  background: var(--cc-green-light);
  padding: 1.75rem 0;
}
.press-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cc-gray);
  margin-bottom: 1rem;
  text-align: center;
}
.press-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: .55;
  filter: grayscale(1);
  align-items: center;
}
.press-logos span { font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em; }
.logo-google { font-family: 'Product Sans', 'Arial Rounded MT Bold', Arial, sans-serif; font-size: 22px; font-weight: 700; }
.logo-tiktok { font-family: 'Nunito', 'Proxima Nova', Arial, sans-serif; font-size: 20px; font-weight: 800; }
.logo-facebook { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 22px; font-weight: 700; }

/* ── FEATURES ─────────────────────────────────────────────────── */
#features { padding: 6rem 0; background: #fff; }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--cc-gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.feature-card {
  background: var(--cc-green-light);
  border-radius: var(--cc-radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s;
}
.feature-card:hover {
  background: var(--cc-green-mid);
  border-color: rgba(62,184,122,.15);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: .875rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--cc-green);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.feature-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: .6rem; }
.feature-card p { color: var(--cc-gray); font-size: .925rem; line-height: 1.65; margin: 0; }

/* ── GALLERY ──────────────────────────────────────────────────── */
#gallery { padding: 6rem 0; background: var(--cc-green-light); }
.gallery-main {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.1);
  aspect-ratio: 1/1;
  background: #fff;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.gallery-thumb {
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color .2s;
}
.gallery-thumb.active { border-color: var(--cc-green); }
.gallery-thumb img { width: 100%; height: 80px; object-fit: cover; display: block; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
#how-it-works { padding: 6rem 0; background: #fff; }
.step-wrap { position: relative; }
.step-line {
  position: absolute;
  top: 2rem;
  left: calc(16.666% + 2rem);
  right: calc(16.666% + 2rem);
  height: 3px;
  background: var(--cc-green-mid);
  z-index: 0;
}
.step-card { position: relative; z-index: 1; text-align: center; padding: 0 1rem; }
.step-num {
  width: 64px; height: 64px;
  background: var(--cc-green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(62,184,122,.3);
  border: 4px solid #fff;
}
.step-card h5 { font-weight: 700; font-size: 1.15rem; margin-bottom: .6rem; }
.step-card p { color: var(--cc-gray); font-size: .925rem; line-height: 1.65; }

/* ── PURCHASE ─────────────────────────────────────────────────── */
#purchase {
  padding: 6rem 0;
  background: rgba(62,184,122,.04);
  border-top: 1px solid rgba(62,184,122,.12);
  border-bottom: 1px solid rgba(62,184,122,.12);
}
.flash-bar {
  background: var(--cc-green);
  color: #fff;
  text-align: center;
  padding: .6rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .03em;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.purchase-card {
  background: #fff;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.1);
}
.purchase-img {
  background: var(--cc-green-light);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.purchase-img img { max-height: 340px; object-fit: contain; mix-blend-mode: multiply; }
.purchase-body { padding: 2.5rem; }
.stock-badge {
  display: inline-block;
  background: #fee2e2;
  color: #b91c1c;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.price-row { display: flex; align-items: flex-end; gap: .75rem; margin-bottom: 1.5rem; }
.price-now { font-size: 2.75rem; font-weight: 900; line-height: 1; }
.price-old { font-size: 1.2rem; color: var(--cc-gray); text-decoration: line-through; margin-bottom: .15rem; }
.price-save { font-size: .9rem; font-weight: 700; color: var(--cc-green); margin-bottom: .2rem; }
.stars { color: #f59e0b; font-size: 1rem; }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--cc-border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--cc-green-light);
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 52px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--cc-charcoal);
  transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--cc-green-mid); }
.qty-val {
  width: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  border: none;
  outline: none;
  pointer-events: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cc-border);
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.trust-item i { font-size: 1.15rem; color: var(--cc-gray); }
.trust-item span { font-size: .68rem; font-weight: 600; color: var(--cc-gray); text-transform: uppercase; letter-spacing: .05em; }

/* ── REVIEWS ──────────────────────────────────────────────────── */
#reviews { padding: 6rem 0; background: #fff; }
.review-card {
  background: var(--cc-green-light);
  border-radius: var(--cc-radius-lg);
  padding: 1.75rem;
  height: 100%;
  border: 1px solid var(--cc-border);
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(62,184,122,.15);
  color: var(--cc-green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-card blockquote {
  font-size: .925rem;
  color: #374151;
  line-height: 1.65;
  margin: .75rem 0;
  font-style: normal;
}
.review-cat { font-size: .8rem; font-weight: 600; color: var(--cc-green); }

/* ── COMPARISON ───────────────────────────────────────────────── */
#comparison { padding: 6rem 0; background: var(--cc-green-light); }
.comp-table {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  border: 1px solid var(--cc-border);
}
.comp-table thead th { font-weight: 700; padding: 1rem 1.25rem; border-bottom: 1px solid var(--cc-border); }
.comp-table thead th.cc-col { color: var(--cc-green); font-size: 1rem; }
.comp-table tbody td { padding: .875rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,.04); font-size: .925rem; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:nth-child(even) { background: rgba(240,250,245,.5); }
.check-cc { color: var(--cc-green); font-size: 1.1rem; }
.check-no { color: #d1d5db; font-size: 1rem; }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq { padding: 6rem 0; background: #fff; }
.faq-item { border-bottom: 1px solid var(--cc-border); }
.faq-item:first-child { border-top: 1px solid var(--cc-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cc-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: var(--cc-green); }
.faq-question i { font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(45deg); color: var(--cc-green); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--cc-gray); font-size: .95rem; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ── SPECS ────────────────────────────────────────────────────── */
#specs { padding: 6rem 0; background: var(--cc-green-light); }
.specs-card { background: #fff; border-radius: 2rem; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.07); }
.specs-table tr td:first-child { color: var(--cc-gray); font-size: .9rem; }
.specs-table tr td:last-child { font-weight: 600; font-size: .9rem; text-align: right; }
.specs-table tr td { padding: .75rem 0; border-bottom: 1px solid var(--cc-border); }
.specs-table tr:last-child td { border-bottom: none; }

/* ── ERER ───────────────────────────────────────────────────── */
.cc-footer-icon {
  height: 20px;
  object-fit: contain;
  opacity: .4;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.cc-footer-icon:hover { opacity: .7; }

footer {
  background: var(--cc-charcoal);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
footer .logo { color: transparent; font-weight: 800; font-size: 1.3rem; }
footer .logo-dot {
  width: 40px; 
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-right: .4rem;
  background: url('../img/cc-logo-black.png') center/cover no-repeat;
  overflow: hidden;
}footer h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: 1rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: .5rem; }
footer ul li a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
footer ul li a:hover { color: #fff; }
footer hr { border-color: rgba(255,255,255,.08); }
footer .copy { font-size: .8rem; }

/* ── STICKY CTA ───────────────────────────────────────────────── */
#sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--cc-border);
  box-shadow: 0 -8px 32px rgba(0,0,0,.1);
  padding: .875rem 1.25rem;
  z-index: 999;
  display: none;
}
#sticky-cta.visible { display: block; }

/* ── UTILITIES ────────────────────────────────────────────────── */
.cc-green { color: var(--cc-green); }
.bg-cc-light { background: var(--cc-green-light); }
.rounded-cc { border-radius: var(--cc-radius-lg); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 767px) {
  #hero { padding: 7rem 0 3.5rem; }
  .hero-img-bg { display: none; }
  .hero-badge-float { display: none; }
  .step-line { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .purchase-body { padding: 1.75rem; }
}