/* ═══════════════════════════════════════════
   ALKATIDEUSA.COM | style.css | v1.0
   Palette: Coral + Forest Green + Cream
   Fonts: Lora (serif) + Nunito (body)
═══════════════════════════════════════════ */
:root {
  --coral:        #D94F3D;
  --coral-dark:   #B83C2B;
  --coral-light:  #F07060;
  --coral-pale:   #FDF0EE;
  --forest:       #2D6A4F;
  --forest-light: #40916C;
  --sage:         #95D5B2;
  --sage-pale:    #E8F5EE;
  --cream:        #FFF8F0;
  --surface:      #FFFFFF;
  --text-dark:    #1A1A2E;
  --text-mid:     #4A4A6A;
  --text-soft:    #7A7A9A;
  --gold:         #E8A020;
  --gold-light:   #F5BE55;
  --border:       rgba(26,26,46,0.10);
  --border-coral: rgba(217,79,61,0.18);
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-pill:  40px;
  --shadow:       0 4px 24px rgba(26,26,46,0.09);
  --shadow-lg:    0 12px 48px rgba(26,26,46,0.14);
  --shadow-coral: 0 8px 32px rgba(217,79,61,0.22);
  --transition:   0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  color: var(--text-dark);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.20;
  color: var(--text-dark);
}
h1 { font-size: clamp(1.9rem, 4.8vw, 3.0rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
h4 { font-size: 0.95rem; font-family: 'Nunito', sans-serif; font-weight: 800; }
p  { color: var(--text-mid); max-width: 66ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-pale);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.eyebrow--forest {
  color: var(--forest);
  background: var(--sage-pale);
}
.eyebrow--light {
  color: var(--gold-light);
  background: rgba(232,160,32,0.12);
}
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage-pale);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* ── LAYOUT ── */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 800px; }
.section { padding: 80px 0; }
.section--dark   { background: var(--text-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--cream  { background: var(--cream); }
.section--coral-pale { background: var(--coral-pale); }
.section--sage-pale  { background: var(--sage-pale); }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-dark); box-shadow: var(--shadow-coral); }
.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: #245c43; box-shadow: 0 8px 28px rgba(45,106,79,0.28); }
.btn--outline { background: transparent; border: 2px solid rgba(255,255,255,0.40); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.08); }
.btn--ghost { background: transparent; border: 2px solid var(--coral); color: var(--coral); }
.btn--ghost:hover { background: var(--coral); color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--text-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--coral-light); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.87rem;
  font-weight: 700;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral-light); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #252540;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
}
.nav-mobile a {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--coral-light); background: rgba(255,255,255,0.04); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--forest); padding: 11px 0; }
.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.90);
  font-size: 0.82rem;
  font-weight: 700;
}
.trust-icon { font-size: 0.9rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2D1B35 55%, #1A2E1F 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,79,61,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(149,213,178,0.12);
  border: 1px solid rgba(149,213,178,0.22);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--coral-light); font-style: normal; }
.hero-lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.06rem;
  margin-bottom: 30px;
  max-width: 52ch;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
}
.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral-light);
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap img {
  width: 300px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
}
.hero-img-badge {
  position: absolute;
  bottom: 16px;
  right: 0;
  background: var(--gold);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 4px 18px rgba(232,160,32,0.42);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  margin-top: 52px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.stat-box {
  background: rgba(26,26,46,0.70);
  padding: 22px;
  text-align: center;
}
.stat-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--coral-light);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.58); font-weight: 700; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
}
.problem-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.problem-card h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.problem-card p { font-size: 0.88rem; color: var(--text-soft); max-width: 100%; }

/* ── INGREDIENT CARDS ── */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.ing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.ing-card h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 6px; }
.ing-source { font-size: 0.75rem; color: var(--coral); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.ing-card p { font-size: 0.88rem; color: var(--text-mid); max-width: 100%; }
.ing-benefit {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--forest);
  font-weight: 700;
}

/* ── HOW IT WORKS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral-pale), var(--coral), var(--coral-pale));
  z-index: 0;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(217,79,61,0.30);
}
.step-card h3 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 8px; }
.step-card p { font-size: 0.83rem; color: var(--text-soft); max-width: 100%; }

/* ── BENEFITS LIST ── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-item h4 { color: var(--text-dark); margin-bottom: 4px; font-size: 0.92rem; }
.benefit-item p { font-size: 0.83rem; color: var(--text-soft); max-width: 100%; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-coral);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 10px; }
.review-quote { font-size: 2.5rem; color: var(--coral); opacity: 0.20; line-height: 1; margin-bottom: 6px; }
.review-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--coral-pale);
}
.reviewer-name { font-weight: 800; font-size: 0.88rem; color: var(--text-dark); }
.reviewer-loc { font-size: 0.76rem; color: var(--text-soft); margin-top: 2px; }

/* ── BONUS GRID ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.bonus-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.bonus-card img { width: 80px; margin: 0 auto 14px; }
.bonus-value { font-size: 0.78rem; color: rgba(255,255,255,0.38); text-decoration: line-through; margin-bottom: 3px; }
.bonus-free { font-size: 0.80rem; font-weight: 800; color: var(--gold-light); margin-bottom: 10px; }
.bonus-card h3 { font-size: 0.93rem; color: #fff; margin-bottom: 7px; }
.bonus-card p { font-size: 0.82rem; color: rgba(255,255,255,0.60); max-width: 100%; }

/* ── QUICK ANSWER ── */
.quick-answer {
  background: var(--coral-pale);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 28px 0 32px;
}
.quick-answer-label {
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 8px;
}
.quick-answer p { color: var(--text-dark); max-width: 100%; font-size: 0.97rem; }

/* ── PRICING SECTION ── */
.pricing-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 14px;
}

/* ── GUARANTEE ── */
.guarantee-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee-seal img { width: 100%; }

/* ── FAQ ── */
.faq-list {
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: background var(--transition);
  font-family: 'Nunito', sans-serif;
}
.faq-q:hover { background: var(--coral-pale); }
.faq-arrow { font-size: 0.90rem; color: var(--coral); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-body { max-height: 500px; }
.faq-body-inner {
  padding: 0 26px 22px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
}
.faq-body-inner a { color: var(--coral); border-bottom: 1px dashed var(--coral); }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  background: var(--coral-pale);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--coral);
  margin-bottom: 7px;
}
.blog-card h3 { font-size: 0.94rem; color: var(--text-dark); margin-bottom: 7px; line-height: 1.35; flex: 1; }
.blog-card p { font-size: 0.81rem; color: var(--text-soft); max-width: 100%; }
.blog-meta { font-size: 0.73rem; color: var(--text-soft); margin-top: 10px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 50px 0 42px;
}
.page-hero h1 { color: var(--text-dark); }
.page-hero-sub {
  color: var(--text-mid);
  margin-top: 12px;
  font-size: 1.02rem;
  max-width: 58ch;
}
.page-eyebrow {
  font-size: 0.72rem;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  background: var(--coral-pale);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ── BLOG POST HERO ── */
.blog-post-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 50px 0 42px;
}
.blog-post-hero h1 { color: var(--text-dark); }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--coral); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text-dark); }

/* ── INNER PAGE CONTENT ── */
.inner-body { max-width: 760px; }
.inner-body h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--text-dark);
  margin: 38px 0 13px;
  line-height: 1.22;
}
.inner-body h3 {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--text-dark);
  margin: 26px 0 10px;
  line-height: 1.28;
}
.inner-body h2:first-child, .inner-body h3:first-child { margin-top: 0; }
.inner-body p { font-size: 1rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 18px; max-width: 100%; }
.inner-body ul, .inner-body ol { padding-left: 22px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.inner-body ul { list-style: disc; }
.inner-body ol { list-style: decimal; }
.inner-body li { font-size: 0.97rem; color: var(--text-mid); line-height: 1.65; }
.inner-body strong { color: var(--text-dark); font-weight: 800; }
.inner-body a { color: var(--coral); border-bottom: 1px dashed var(--coral); }
.inner-body .ref-list { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; list-style: decimal; padding-left: 20px; }
.inner-body .ref-list li { font-size: 0.87rem; color: var(--text-soft); }
.inner-body .ref-list a { color: var(--coral); border-bottom: 1px dashed var(--coral); }

/* ── LEGAL ── */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 1.2rem; margin: 36px 0 12px; color: var(--text-dark); }
.legal-body p { margin-bottom: 14px; max-width: 100%; font-size: 0.96rem; line-height: 1.72; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.legal-body ul li { font-size: 0.95rem; color: var(--text-mid); }
.legal-body a { color: var(--coral); border-bottom: 1px dashed var(--coral); }

/* ── CTA BOX ── */
.cta-box {
  background: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  text-align: center;
  margin-top: 52px;
}
.cta-box h2 { color: #fff; margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,0.68); max-width: 52ch; margin: 0 auto 24px; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  border-top: 2px solid var(--coral);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.22);
}
.sticky-cta-text { font-size: 0.87rem; color: #fff; font-weight: 700; }
.sticky-cta-text strong { color: var(--coral-light); }

/* ── RELATED CARDS ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.related-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.related-card:hover { transform: translateY(-2px); }
.related-card h3 { font-size: 0.92rem; color: var(--text-dark); margin-bottom: 6px; }
.related-card p { font-size: 0.82rem; color: var(--text-soft); max-width: 100%; margin-bottom: 12px; }
.related-card a { font-size: 0.82rem; color: var(--coral); font-weight: 800; }

/* ── FOOTER ── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.55);
  padding: 48px 0 26px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  flex-wrap: wrap;
}
.footer-logo { font-family: 'Lora', serif; font-size: 1.35rem; color: #fff; }
.footer-logo span { color: var(--coral-light); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.50); margin-top: 6px; }
.footer-top-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-top-trust { font-size: 0.76rem; color: rgba(255,255,255,0.42); text-align: right; }
.footer-nav {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav-group { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.footer-nav-label {
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 76px;
  margin: 0;
}
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 5px 18px; }
.footer-nav-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-nav-links a:hover { color: var(--coral-light); }
.footer-bottom { padding: 20px 0 6px; }
.footer-disclaimer {
  font-size: 0.77rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.34);
  margin-bottom: 12px;
  max-width: 100%;
}
.footer-disclaimer a { color: rgba(255,255,255,0.48); border-bottom: 1px dashed rgba(255,255,255,0.22); }
.footer-copyright { font-size: 0.79rem; color: rgba(255,255,255,0.28); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .ing-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-wrap { grid-template-columns: 1fr; }
  .guarantee-seal img { width: 140px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .hero { padding: 56px 0 44px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-inner .btn--coral { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-top-cta { align-items: flex-start; width: 100%; }
  .footer-top-cta .btn { width: 100%; justify-content: center; }
  .footer-top-trust { text-align: left; }
  .footer-nav-group { flex-direction: column; gap: 8px; }
  .sticky-cta { flex-direction: column; text-align: center; padding: 12px 18px; }
  .faq-q { padding: 17px 18px; }
  .faq-body-inner { padding: 0 18px 20px; }
}
@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}