/* ═══════════════════════════════════════════
   ALKATIDEUS.COM | style.css | v1.0
   Palette: Deep Indigo + Warm Amber + White
   Fonts: Merriweather (serif) + DM Sans (body)
   Design: Editorial / Scientific / Clean
═══════════════════════════════════════════ */
:root {
  --indigo:        #2C3E7B;
  --indigo-dark:   #1E2D5E;
  --indigo-mid:    #3D52A0;
  --indigo-pale:   #EEF1FB;
  --amber:         #F5A623;
  --amber-dark:    #D4891A;
  --amber-light:   #FAC55A;
  --amber-pale:    #FEF6E4;
  --white:         #FAFAF7;
  --surface:       #FFFFFF;
  --text-dark:     #141428;
  --text-mid:      #3A3A5C;
  --text-soft:     #767694;
  --mint:          #38B2AC;
  --mint-pale:     #E6F6F5;
  --border:        rgba(20,20,40,0.10);
  --border-indigo: rgba(44,62,123,0.16);
  --radius-sm:     4px;
  --radius-md:     12px;
  --radius-lg:     22px;
  --radius-pill:   50px;
  --shadow:        0 2px 20px rgba(20,20,40,0.08);
  --shadow-md:     0 6px 32px rgba(20,20,40,0.12);
  --shadow-lg:     0 14px 52px rgba(20,20,40,0.16);
  --shadow-amber:  0 8px 28px rgba(245,166,35,0.32);
  --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: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.70;
  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: 'Merriweather', Georgia, serif;
  line-height: 1.22;
  color: var(--text-dark);
}
h1 { font-size: clamp(1.85rem, 4.5vw, 2.9rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 1.7vw, 1.22rem); font-weight: 700; }
p  { color: var(--text-mid); max-width: 68ch; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-pale);
  border: 1px solid rgba(245,166,35,0.28);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.tag--indigo {
  color: var(--indigo);
  background: var(--indigo-pale);
  border-color: rgba(44,62,123,0.18);
}
.tag--mint {
  color: #1a7c78;
  background: var(--mint-pale);
  border-color: rgba(56,178,172,0.22);
}
.tag--light {
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

/* ── LAYOUT ── */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 800px; }
.section { padding: 84px 0; }
.section--dark   { background: var(--indigo-dark); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.68); }
.section--white  { background: var(--white); }
.section--amber-pale { background: var(--amber-pale); }
.section--indigo-pale { background: var(--indigo-pale); }
.section--mint-pale { background: var(--mint-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 30px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: var(--text-dark); }
.btn--amber:hover { background: var(--amber-dark); box-shadow: var(--shadow-amber); color: #fff; }
.btn--indigo { background: var(--indigo); color: #fff; }
.btn--indigo:hover { background: var(--indigo-dark); box-shadow: 0 8px 28px rgba(44,62,123,0.30); }
.btn--outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.38); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,0.10); }
.btn--outline-indigo { background: transparent; border: 2px solid var(--indigo); color: var(--indigo); }
.btn--outline-indigo:hover { background: var(--indigo); color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--indigo-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.nav-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.68);
  font-size: 0.87rem;
  font-weight: 600;
  transition: color var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber-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: #1a2450;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'DM Sans', sans-serif;
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--amber-light); background: rgba(255,255,255,0.04); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--amber); 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: var(--text-dark);
  font-size: 0.80rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #1a2050 50%, #2a1a50 100%);
  padding: 88px 0 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,178,172,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.20);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { color: var(--amber-light); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.04rem;
  margin-bottom: 28px;
  max-width: 54ch;
  line-height: 1.72;
}
.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.84);
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  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: 10px;
  right: -10px;
  background: var(--amber);
  color: var(--text-dark);
  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-amber);
  font-family: 'DM Sans', sans-serif;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.rating-stars { color: var(--amber); font-size: 1.05rem; letter-spacing: 2px; }
.rating-text { font-size: 0.85rem; color: rgba(255,255,255,0.60); }
.rating-text strong { color: rgba(255,255,255,0.90); }
.rating-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

/* ── SIGNAL CARDS (4 signs) ── */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.signal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.signal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.signal-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.signal-card h3 { font-size: 0.98rem; color: var(--text-dark); margin-bottom: 8px; }
.signal-card p { font-size: 0.84rem; color: var(--text-soft); max-width: 100%; }

/* ── DIFFERENCE TABLE ── */
.diff-table-wrap { overflow-x: auto; margin-top: 40px; }
.diff-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.89rem;
  font-family: 'DM Sans', sans-serif;
}
.diff-table thead tr {
  background: var(--indigo-dark);
  color: #fff;
}
.diff-table th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.diff-table th:first-child { text-align: left; }
.diff-table tbody tr:nth-child(even) { background: var(--indigo-pale); }
.diff-table tbody tr:nth-child(odd) { background: var(--surface); }
.diff-table td { padding: 14px 20px; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.diff-table td:first-child { font-weight: 600; color: var(--text-dark); }
.diff-table .yes { color: var(--indigo); font-weight: 800; text-align: center; }
.diff-table .no  { color: #b0b0c0; text-align: center; }
.diff-table .col-alkatide { background: rgba(44,62,123,0.06); font-weight: 700; }

/* ── HOW ACV WORKS ── */
.acv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.acv-step {
  position: relative;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border-indigo);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.acv-step-num {
  font-family: 'Merriweather', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--indigo-pale);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.acv-step h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.acv-step p { font-size: 0.86rem; color: var(--text-mid); 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(--indigo), var(--mint));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.review-stars { color: var(--amber); font-size: 0.93rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.76; 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(--indigo-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.70rem;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-pale);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-top: 4px;
}

/* ── BONUS CARDS ── */
.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.10);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: background var(--transition);
}
.bonus-card:hover { background: rgba(255,255,255,0.09); }
.bonus-card img { width: 78px; margin: 0 auto 12px; }
.bonus-value { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.bonus-free { font-size: 0.78rem; font-weight: 800; color: var(--amber-light); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.bonus-card h3 { font-size: 0.90rem; color: #fff; margin-bottom: 7px; }
.bonus-card p { font-size: 0.80rem; color: rgba(255,255,255,0.56); max-width: 100%; }

/* ── QUICK ANSWER ── */
.quick-answer {
  background: var(--indigo-pale);
  border-left: 4px solid var(--indigo);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
  margin: 26px 0 30px;
}
.quick-answer-label {
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--indigo);
  margin-bottom: 7px;
  font-family: 'DM Sans', sans-serif;
}
.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: 700;
  font-size: 0.94rem;
  color: var(--text-dark);
  transition: background var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.faq-q:hover { background: var(--indigo-pale); }
.faq-arrow { font-size: 0.88rem; color: var(--indigo); 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.91rem; color: var(--text-mid); line-height: 1.74; }
.faq-body-inner a { color: var(--indigo); border-bottom: 1px dashed var(--indigo); }

/* ── 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-md); }
.blog-thumb {
  background: var(--indigo-pale);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: var(--indigo); margin-bottom: 7px; font-family: 'DM Sans', sans-serif; }
.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; font-family: 'DM Sans', sans-serif; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--indigo-dark);
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.page-hero h1 { color: #fff; }
.page-hero-sub { color: rgba(255,255,255,0.66); margin-top: 12px; font-size: 1rem; max-width: 58ch; }

/* ── BLOG POST HERO ── */
.blog-post-hero { background: var(--indigo-dark); padding: 52px 0 44px; }
.blog-post-hero h1 { color: #fff; }

/* ── PAGE EYEBROW ── */
.page-eyebrow {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(245,166,35,0.12);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}

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

/* ── INNER BODY ── */
.inner-body { max-width: 760px; }
.inner-body h2 { font-size: clamp(1.25rem, 2.4vw, 1.72rem); color: var(--text-dark); margin: 38px 0 13px; line-height: 1.22; }
.inner-body h3 { font-size: clamp(0.98rem, 1.7vw, 1.15rem); 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.80; 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(--indigo); border-bottom: 1px dashed var(--indigo); }
.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.86rem; 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(--indigo); border-bottom: 1px dashed var(--indigo); }

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #2a1a50 100%);
  border-radius: var(--radius-md);
  padding: 42px 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(--indigo-dark);
  border-top: 2px solid var(--amber);
  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; font-family: 'DM Sans', sans-serif; }
.sticky-cta-text strong { color: var(--amber-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.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.81rem; color: var(--indigo); font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.50);
  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.08);
  flex-wrap: wrap;
}
.footer-logo { font-family: 'Merriweather', serif; font-size: 1.28rem; font-weight: 900; color: #fff; }
.footer-logo span { color: var(--amber); }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.46); 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.38); text-align: right; }
.footer-nav { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08); 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.69rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255,255,255,0.34); white-space: nowrap; flex-shrink: 0; min-width: 72px; font-family: 'DM Sans', sans-serif; }
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 5px 18px; }
.footer-nav-links a { font-size: 0.84rem; color: rgba(255,255,255,0.54); transition: color var(--transition); font-family: 'DM Sans', sans-serif; }
.footer-nav-links a:hover { color: var(--amber-light); }
.footer-bottom { padding: 20px 0 6px; }
.footer-disclaimer { font-size: 0.76rem; line-height: 1.74; color: rgba(255,255,255,0.30); margin-bottom: 12px; max-width: 100%; }
.footer-disclaimer a { color: rgba(255,255,255,0.44); border-bottom: 1px dashed rgba(255,255,255,0.20); }
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.24); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .signals-grid { grid-template-columns: 1fr 1fr; }
  .acv-steps   { grid-template-columns: 1fr 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: 140px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .section { padding: 54px 0; }
  .hero { padding: 58px 0 46px; }
  .signals-grid { grid-template-columns: 1fr; }
  .acv-steps { 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--amber { 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; font-size: 0.90rem; }
  .faq-body-inner { padding: 0 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}