/* ═══════════════════════════════════════════════════
   WEB-GELAGEN.COM | style.css | v1.0
   Palette: Rose Gold + Deep Plum + Blush White
   Fonts:   Cormorant Garamond (headers) + Inter (body)
   Feel:    Feminine · Premium · Editorial · Scientific
═══════════════════════════════════════════════════ */
:root {
  --plum:          #4A1942;
  --plum-dark:     #330D2E;
  --plum-mid:      #6B2960;
  --plum-pale:     #F5ECF4;
  --rose:          #C8846A;
  --rose-dark:     #A8664E;
  --rose-light:    #E0A891;
  --rose-pale:     #FDF0EB;
  --blush:         #FDF6F2;
  --surface:       #FFFFFF;
  --text-dark:     #1A0A18;
  --text-mid:      #4A3048;
  --text-soft:     #8A6A84;
  --gold:          #C9A84C;
  --gold-pale:     #FBF5E6;
  --mint:          #3D8B75;
  --border:        rgba(74,25,66,0.10);
  --border-rose:   rgba(200,132,106,0.22);
  --radius-sm:     4px;
  --radius-md:     14px;
  --radius-lg:     28px;
  --radius-pill:   60px;
  --shadow:        0 2px 18px rgba(74,25,66,0.07);
  --shadow-md:     0 6px 32px rgba(74,25,66,0.12);
  --shadow-lg:     0 16px 56px rgba(74,25,66,0.16);
  --shadow-rose:   0 8px 28px rgba(200,132,106,0.30);
  --transition:    0.16s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  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: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; font-style: italic; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 600; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; }
h1 em { font-style: normal; color: var(--rose); }
p { color: var(--text-mid); max-width: 68ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--rose-pale);
  border: 1px solid var(--border-rose);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.eyebrow--plum { color: var(--plum); background: var(--plum-pale); border-color: rgba(74,25,66,0.16); }
.eyebrow--gold { color: #8a6700; background: var(--gold-pale); border-color: rgba(201,168,76,0.22); }
.eyebrow--light { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }

/* ── LAYOUT ── */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 800px; }
.section { padding: 86px 0; }
.section--dark   { background: var(--plum-dark); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--blush  { background: var(--blush); }
.section--rose-pale { background: var(--rose-pale); }
.section--plum-pale { background: var(--plum-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: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }
.btn--rose { background: var(--rose); color: #fff; }
.btn--rose:hover { background: var(--rose-dark); box-shadow: var(--shadow-rose); }
.btn--plum { background: var(--plum); color: #fff; }
.btn--plum:hover { background: var(--plum-dark); box-shadow: 0 8px 28px rgba(74,25,66,0.30); }
.btn--outline-rose { background: transparent; border: 2px solid var(--rose); color: var(--rose); }
.btn--outline-rose:hover { background: var(--rose); color: #fff; }
.btn--outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.32); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,0.10); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--plum-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: 'Cormorant Garamond', serif;
  font-size: 1.42rem; font-weight: 700;
  color: #fff; white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.02em; font-style: italic;
}
.nav-logo span { color: var(--rose-light); font-style: normal; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem; font-weight: 600;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-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: 24px; height: 2px;
  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: #2a0c26; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a {
  color: rgba(255,255,255,0.72); font-size: 0.95rem; font-weight: 600;
  padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--rose-light); background: rgba(255,255,255,0.04); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--rose); padding: 10px 0; }
.trust-bar-inner {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 22px; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-size: 0.80rem; font-weight: 700;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--plum-dark) 0%, #3a1234 50%, #4a1942 100%);
  padding: 90px 0 70px; 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(200,132,106,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -6%;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-kicker {
  font-size: 0.69rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--rose-light);
  background: rgba(200,132,106,0.12);
  border: 1px solid rgba(200,132,106,0.20);
  border-radius: var(--radius-pill); padding: 5px 14px;
  margin-bottom: 20px; display: inline-block;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--rose-light); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.70); font-size: 1.04rem;
  margin-bottom: 28px; max-width: 52ch; line-height: 1.74;
}
.hero-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-check {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.82); font-size: 0.91rem; font-weight: 500;
}
.hero-check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--rose); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.70rem; font-weight: 900; flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-wrap img { width: 300px; filter: drop-shadow(0 28px 56px rgba(0,0,0,0.50)); }
.hero-img-badge {
  position: absolute; bottom: 8px; right: -8px;
  background: var(--rose); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-md);
  font-size: 0.77rem; font-weight: 800; line-height: 1.4;
  text-align: center; box-shadow: var(--shadow-rose);
}
.hero-divider {
  display: flex; align-items: center; gap: 24px;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
  position: relative; z-index: 1; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--rose-light);
  display: block; line-height: 1;
}
.hero-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.50); margin-top: 3px; }
.hero-divider-line { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ── PROBLEM SECTION ── */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-top: 3px solid var(--rose); border-radius: var(--radius-md);
  padding: 28px 22px; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.problem-card h3 { font-size: 1.02rem; color: var(--text-dark); margin-bottom: 8px; }
.problem-card p { font-size: 0.84rem; color: var(--text-soft); max-width: 100%; }

/* ── INGREDIENT CARDS ── */
.ing-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 1060px) { .ing-grid { grid-template-columns: repeat(3,1fr); } }
.ing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px 18px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ing-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.ing-card h3 { font-size: 0.97rem; color: var(--text-dark); margin-bottom: 6px; }
.ing-card .ing-role { font-size: 0.72rem; color: var(--rose-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 9px; display: block; }
.ing-card p { font-size: 0.82rem; color: var(--text-soft); max-width: 100%; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 20px;
  box-shadow: var(--shadow); text-align: center;
  position: relative;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-3px); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem; font-weight: 700;
  color: var(--rose-pale); line-height: 1;
  margin-bottom: 12px; display: block;
}
.step-card h3 { font-size: 0.98rem; color: var(--text-dark); margin-bottom: 8px; }
.step-card 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);
  border-radius: var(--radius-md); padding: 28px 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative;
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.review-stars { color: var(--gold); font-size: 0.92rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-quote { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--rose-pale); line-height: 0.5; margin-bottom: 10px; }
.review-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.76; font-style: italic; flex: 1; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rose-pale); }
.reviewer-name { font-weight: 700; font-size: 0.87rem; color: var(--text-dark); }
.reviewer-loc { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.69rem; font-weight: 700; color: var(--mint);
  background: rgba(61,139,117,0.10); padding: 2px 8px;
  border-radius: var(--radius-pill); margin-top: 4px;
}

/* ── BONUS ── */
.bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.bonus-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md); padding: 22px 16px; text-align: center;
  transition: background var(--transition);
}
.bonus-card:hover { background: rgba(255,255,255,0.09); }
.bonus-card img { width: 80px; margin: 0 auto 10px; }
.bonus-value { font-size: 0.74rem; color: rgba(255,255,255,0.32); text-decoration: line-through; margin-bottom: 2px; }
.bonus-free { font-size: 0.77rem; font-weight: 800; color: var(--rose-light); margin-bottom: 9px; }
.bonus-card h3 { font-size: 0.90rem; color: #fff; margin-bottom: 6px; }
.bonus-card p { font-size: 0.80rem; color: rgba(255,255,255,0.54); max-width: 100%; }

/* ── QUICK ANSWER ── */
.quick-answer {
  background: var(--plum-pale); border-left: 4px solid var(--plum);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px; margin: 26px 0 32px;
}
.quick-answer-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--plum); margin-bottom: 7px;
}
.quick-answer p { color: var(--text-dark); max-width: 100%; font-size: 0.97rem; }

/* ── 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: 760px; 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: 600; font-size: 0.93rem;
  color: var(--text-dark); transition: background var(--transition);
}
.faq-q:hover { background: var(--plum-pale); }
.faq-arrow { font-size: 0.86rem; color: var(--plum); 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.90rem; color: var(--text-mid); line-height: 1.74; }
.faq-body-inner a { color: var(--plum); border-bottom: 1px dashed var(--plum); }

/* ── BLOG ── */
.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-md); }
.blog-thumb {
  background: var(--rose-pale); height: 110px;
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem;
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: var(--rose-dark); margin-bottom: 6px; }
.blog-card h3 { font-size: 0.94rem; color: var(--text-dark); margin-bottom: 7px; line-height: 1.38; 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 ── */
.page-hero { background: linear-gradient(135deg, var(--plum-dark), var(--plum)); padding: 54px 0 44px; }
.page-hero h1 { color: #fff; font-style: italic; }
.page-hero-sub { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 1rem; max-width: 58ch; }
.blog-post-hero { background: linear-gradient(135deg, var(--plum-dark), var(--plum)); padding: 54px 0 44px; }
.blog-post-hero h1 { color: #fff; font-style: italic; }
.page-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rose-light);
  background: rgba(200,132,106,0.14); border-radius: var(--radius-pill);
  padding: 4px 13px; margin-bottom: 12px; display: inline-block;
}

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.79rem; color: rgba(255,255,255,0.42); padding: 14px 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--rose-light); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }

/* ── INNER BODY (article/inner pages) ── */
.inner-body { max-width: 760px; }
.inner-body h2 { font-size: clamp(1.3rem, 2.6vw, 1.80rem); color: var(--text-dark); margin: 38px 0 13px; line-height: 1.18; font-style: italic; }
.inner-body h3 { font-size: clamp(1rem, 1.8vw, 1.18rem); color: var(--text-dark); margin: 26px 0 10px; }
.inner-body h2:first-child, .inner-body h3:first-child { margin-top: 0; }
.inner-body p { font-size: 1rem; line-height: 1.82; 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.68; }
.inner-body strong { color: var(--text-dark); font-weight: 700; }
.inner-body a { color: var(--plum); border-bottom: 1px dashed var(--plum); }
.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.85rem; color: var(--text-soft); }

/* ── LEGAL ── */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 1.18rem; margin: 36px 0 12px; color: var(--text-dark); }
.legal-body p { margin-bottom: 14px; max-width: 100%; font-size: 0.96rem; line-height: 1.74; }
.legal-body a { color: var(--plum); border-bottom: 1px dashed var(--plum); }

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

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

/* ── RELATED ── */
.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.91rem; color: var(--text-dark); margin-bottom: 6px; }
.related-card p { font-size: 0.80rem; color: var(--text-soft); max-width: 100%; margin-bottom: 12px; }
.related-card a { font-size: 0.80rem; color: var(--plum); font-weight: 700; }

/* ── FOOTER ── */
.site-footer { background: var(--plum-dark); color: rgba(255,255,255,0.46); padding: 50px 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.07); flex-wrap: wrap;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.38rem; font-weight: 700; color: #fff; font-style: italic; }
.footer-logo span { color: var(--rose-light); font-style: normal; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.44); margin-top: 5px; }
.footer-top-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-top-trust { font-size: 0.74rem; color: rgba(255,255,255,0.36); text-align: right; }
.footer-nav { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07); 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.68rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255,255,255,0.32); white-space: nowrap; flex-shrink: 0; min-width: 68px; }
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 5px 18px; }
.footer-nav-links a { font-size: 0.83rem; color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-nav-links a:hover { color: var(--rose-light); }
.footer-bottom { padding: 20px 0 6px; }
.footer-disclaimer { font-size: 0.75rem; line-height: 1.74; color: rgba(255,255,255,0.28); margin-bottom: 12px; max-width: 100%; }
.footer-disclaimer a { color: rgba(255,255,255,0.42); border-bottom: 1px dashed rgba(255,255,255,0.18); }
.footer-copyright { font-size: 0.77rem; color: rgba(255,255,255,0.22); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .problem-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .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: 130px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .section { padding: 54px 0; }
  .hero { padding: 58px 0 46px; }
  .problem-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr 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--rose { 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; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}