/* ===========================
   BEKAM PRO - MAIN STYLESHEET
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,600;1,500&display=swap');

/* === CSS VARIABLES === */
:root {
  --green-dark: #0d3b1e;
  --green-mid: #1a5c32;
  --green-primary: #22813f;
  --green-accent: #2ea84f;
  --green-light: #d6f0df;
  --gold: #d4a017;
  --gold-light: #f5d97a;
  --white: #ffffff;
  --off-white: #f9faf7;
  --gray-light: #f2f4f0;
  --gray-mid: #9ba89e;
  --gray-dark: #4a5550;
  --text-primary: #0f1f14;
  --text-secondary: #3d5244;
  --wa-green: #25d366;
  --shadow-sm: 0 2px 8px rgba(13,59,30,.08);
  --shadow-md: 0 6px 24px rgba(13,59,30,.12);
  --shadow-lg: 0 16px 48px rgba(13,59,30,.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --ff-display: 'Lora', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === UTILITY === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-primary);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 999px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600; line-height: 1.25;
  color: var(--text-primary);
}
.section-title span { color: var(--green-primary); }
.section-sub {
  color: var(--text-secondary);
  font-size: .95rem; max-width: 540px;
  margin: .6rem auto 0;
}
.text-center { text-align: center; }

/* === NAVBAR === */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--green-dark);
  padding: 0 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.navbar-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
}
.navbar-logo img { height: 38px; width: auto; }
.navbar-logo .brand-text { color: var(--white); font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; }
.navbar-logo .brand-sub { color: var(--green-accent); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; display: block; }
.navbar-cta {
  background: var(--wa-green); color: var(--white);
  padding: 9px 20px; border-radius: 999px;
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.navbar-cta:hover { background: #1ebe5c; transform: scale(1.03); }
.navbar-cta svg { width: 18px; height: 18px; fill: var(--white); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f4a24 55%, #1a5c32 100%);
  position: relative; overflow: hidden;
  padding: 60px 20px 0;
  min-height: 100svh;
  display: flex; align-items: flex-end;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: flex-end;
  position: relative; z-index: 1;
}
.hero-badge {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.badge-pill {
  background: rgba(255,255,255,.12); color: var(--white);
  font-size: .73rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 5px;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; line-height: 1.18;
  color: var(--white); margin-bottom: 18px;
}
.hero-headline em {
  font-style: italic; color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(.9rem, 2vw, 1.05rem);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 440px;
}
.hero-cta-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.btn-wa-primary {
  background: var(--wa-green);
  color: var(--white); font-weight: 800;
  font-size: 1.05rem; padding: 16px 28px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
}
.btn-wa-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.45); }
.btn-wa-primary svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.hero-rating {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .82rem;
}
.hero-rating .stars { color: var(--gold-light); font-size: 1rem; letter-spacing: 1px; }
.hero-rating strong { color: var(--white); }
.hero-img-wrap {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative;
}
.hero-img-wrap img {
  width: 100%; max-width: 460px;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-float-card {
  position: absolute; bottom: 30px; left: -10px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; color: var(--text-primary); font-weight: 600;
  animation: floatUp 3s ease-in-out infinite;
}
.hero-float-card .icon { font-size: 1.4rem; }
.hero-float-card small { color: var(--gray-mid); font-weight: 400; display: block; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 18px 20px;
}
.trust-strip-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 6px 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--text-secondary);
}
.trust-item .ti-icon {
  width: 30px; height: 30px;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}

/* === COUNTER === */
.counter-section {
  background: var(--green-dark);
  padding: 64px 20px;
  position: relative; overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(46,168,79,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(46,168,79,.12) 0%, transparent 60%);
}
.counter-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-accent), var(--gold), var(--green-accent), transparent);
}
.counter-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
}
.counter-item {
  text-align: center; padding: 20px;
  position: relative;
}
.counter-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.15);
}
.counter-number {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600; color: var(--white);
  line-height: 1; display: block;
}
.counter-number sup {
  font-size: .5em; vertical-align: super; color: var(--gold-light);
}
.counter-suffix { color: var(--gold-light); font-size: 1.4rem; font-weight: 800; }
.counter-label {
  color: rgba(255,255,255,.65);
  font-size: .82rem; font-weight: 500;
  margin-top: 6px; letter-spacing: .02em;
}
.counter-icon { font-size: 1.6rem; margin-bottom: 8px; display: block; }

/* === PAIN POINTS === */
.pain-section { padding: 80px 20px; background: var(--off-white); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.pain-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center;
  border: 1px solid var(--gray-light);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: '✗';
  position: absolute; top: 10px; right: 12px;
  color: #e05252; font-size: .8rem; font-weight: 800;
  background: #fef2f2; width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  line-height: 22px;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pain-card h4 { font-weight: 700; font-size: .9rem; color: var(--text-primary); }

/* === SYMPTOMS / PROBLEM === */
.symptoms-section { padding: 80px 20px; background: var(--white); }
.symptoms-title { text-align: center; margin-bottom: 40px; }
.symptoms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 0;
}
.symptom-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 22px 18px 18px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  border: 1.5px solid var(--gray-light);
  transition: border-color .2s, box-shadow .2s;
}
.symptom-card:hover { border-color: var(--green-accent); box-shadow: 0 4px 16px rgba(34,129,63,.1); }
.symptom-card .symp-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.symptom-card p { font-size: .85rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }

/* === WHY DELAY === */
.delay-section { padding: 80px 20px; background: var(--off-white); }
.delay-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 36px;
}
.delay-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 22px 20px 20px;
  border: 1px solid var(--gray-light);
  transition: box-shadow .25s;
}
.delay-card:hover { box-shadow: var(--shadow-md); }
.delay-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.delay-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff5f5; border: 1px solid #fde8e8;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.delay-card h4 { font-weight: 700; font-size: .92rem; color: var(--text-primary); }
.delay-card p { font-size: .82rem; color: var(--text-secondary); line-height: 1.5; }
.delay-solution {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-md);
  padding: 28px 24px; margin-top: 32px;
  display: flex; align-items: center; gap: 20px;
  color: var(--white);
}
.delay-solution .sol-icon { font-size: 2.8rem; flex-shrink: 0; }
.delay-solution h3 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 4px; }
.delay-solution p { font-size: .88rem; color: rgba(255,255,255,.8); }

/* === VIDEO SECTION === */
.video-section { padding: 80px 20px; background: var(--white); }
.video-wrap {
  max-width: 760px; margin: 32px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-wrap iframe {
  width: 100%; aspect-ratio: 16/9; display: block; border: none;
}
.video-benefits {
  max-width: 760px; margin: 28px auto 0;
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 24px; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.vb-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-secondary); font-weight: 500;
}
.vb-item::before {
  content: '✓'; color: var(--green-primary); font-weight: 800;
  flex-shrink: 0; font-size: 1rem;
}

/* === BENEFITS === */
.benefits-section {
  padding: 80px 20px;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0f4a24 100%);
  position: relative; overflow: hidden;
}
.benefits-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}
.benefits-section .section-title { color: var(--white); }
.benefits-section .section-sub { color: rgba(255,255,255,.7); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px; position: relative; z-index: 1;
}
.benefit-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center;
  backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}
.benefit-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(46,168,79,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
  border: 1px solid rgba(46,168,79,.4);
}
.benefit-card h4 { color: var(--white); font-weight: 700; font-size: .92rem; line-height: 1.4; }

/* === OFFER === */
.offer-section { padding: 80px 20px; background: var(--off-white); }
.offer-card {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden; max-width: 860px; margin: 40px auto 0;
}
.offer-header {
  background: linear-gradient(135deg, var(--green-dark), #0f4a24);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.offer-header h3 {
  font-family: var(--ff-display); font-size: 1.5rem;
  color: var(--white); font-weight: 600;
}
.offer-badge {
  background: var(--gold); color: var(--green-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,.5); }
  50% { box-shadow: 0 0 0 8px rgba(212,160,23,0); }
}
.offer-body { padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-secondary);
  padding: 8px 0; border-bottom: 1px solid var(--gray-light);
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before { content: '✓'; color: var(--green-primary); font-weight: 800; flex-shrink: 0; }
.offer-price-box { text-align: center; }
.offer-value { color: var(--gray-mid); font-size: .82rem; margin-bottom: 4px; }
.offer-original {
  font-size: 1.3rem; color: var(--gray-mid);
  text-decoration: line-through; font-weight: 600;
}
.offer-tag { color: var(--green-mid); font-size: .78rem; font-weight: 600; margin: 4px 0; }
.offer-price {
  font-family: var(--ff-display); font-size: 3rem;
  color: var(--green-primary); font-weight: 600;
  line-height: 1; margin: 6px 0;
}
.offer-price small { font-size: 1.2rem; }
.offer-quota {
  background: var(--green-light); border-radius: var(--radius-sm);
  padding: 8px 12px; margin: 12px 0;
  font-size: .78rem; color: var(--green-mid); font-weight: 700;
  display: flex; align-items: center; gap: 6px; justify-content: center;
}
.btn-offer {
  width: 100%; background: var(--wa-green);
  color: var(--white); font-weight: 800;
  font-size: 1rem; padding: 15px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s; margin-top: 12px;
}
.btn-offer:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.4); }
.btn-offer svg { width: 20px; height: 20px; fill: var(--white); }

/* === RISK REVERSAL === */
.risk-section {
  background: var(--green-light); padding: 40px 20px;
  text-align: center;
}
.risk-inner {
  max-width: 680px; margin: 0 auto;
}
.risk-icon { font-size: 2.5rem; margin-bottom: 10px; }
.risk-inner h3 {
  font-family: var(--ff-display); font-size: 1.3rem;
  color: var(--green-dark); margin-bottom: 8px;
}
.risk-inner p { color: var(--green-mid); font-size: .9rem; line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonial-section { padding: 80px 20px; background: var(--white); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.testi-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 24px; border: 1px solid var(--gray-light);
  position: relative; transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-quote {
  font-size: 2.5rem; color: var(--green-light);
  line-height: .5; margin-bottom: 12px; font-family: Georgia, serif;
}
.testi-text {
  font-size: .88rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 16px;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .85rem; color: var(--text-primary); }
.testi-role { font-size: .75rem; color: var(--gray-mid); }
.testi-source {
  position: absolute; top: 16px; right: 16px;
  font-size: .68rem; font-weight: 700; padding: 3px 8px;
  border-radius: 999px;
}
.source-google { background: #e8f0fe; color: #3367d6; }
.source-wa { background: #e8f8ee; color: #128c7e; }

/* === FAQ === */
.faq-section { padding: 80px 20px; background: var(--off-white); }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.active, .faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 18px 20px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-weight: 700; font-size: .9rem; color: var(--text-primary);
  gap: 12px;
}
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: transform .25s, background .25s;
  font-size: .75rem; color: var(--green-primary);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); background: var(--green-primary); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: .88rem; color: var(--text-secondary); line-height: 1.65;
  padding: 0 20px;
}
.faq-item.active .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* === WHY US === */
.whyus-section { padding: 80px 20px; background: var(--white); }
.whyus-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px; margin-top: 40px;
}
.whyus-item {
  text-align: center; padding: 20px 12px;
}
.whyus-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 10px;
}
.whyus-item h4 { font-size: .8rem; font-weight: 700; color: var(--text-primary); line-height: 1.4; }

/* === FOOTER === */
.footer {
  background: var(--green-dark); color: rgba(255,255,255,.75);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name {
  font-family: var(--ff-display); font-size: 1.5rem;
  color: var(--white); margin-bottom: 10px;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 { color: var(--white); font-weight: 700; font-size: .85rem; margin-bottom: 14px; letter-spacing: .03em; }
.footer-col ul li { margin-bottom: 8px; font-size: .83rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1120px; margin: 20px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: .75rem;
}

/* === STICKY CTA === */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  gap: 12px; transform: translateY(100%);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1; max-width: 420px;
  background: var(--wa-green);
  color: var(--white); font-weight: 800; font-size: .95rem;
  padding: 14px 20px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
  transition: transform .15s;
}
.sticky-cta-btn:hover { transform: scale(1.02); }
.sticky-cta-btn svg { width: 20px; height: 20px; fill: var(--white); }
.sticky-cta-number { color: var(--text-secondary); font-size: .8rem; white-space: nowrap; }

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 0; }
  .hero-img-wrap { display: none; }
  .hero { padding: 48px 20px 48px; min-height: auto; align-items: center; }
  .hero-headline { font-size: 2rem; }
  .pain-grid, .symptoms-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { gap: 0; }
  .offer-body { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .delay-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .video-benefits { grid-template-columns: 1fr; }
  .offer-card { border-radius: var(--radius-md); }
  .offer-header { padding: 20px; }
  .offer-body { padding: 20px; }
  .counter-grid { grid-template-columns: 1fr; gap: 0; }
  .counter-item::after { display: none !important; }
  .sticky-cta-number { display: none; }
}
@media (max-width: 400px) {
  .pain-grid { grid-template-columns: 1fr; }
}
