/* =========================================================
   HORSEWOOD — MAIN STYLESHEET
   Design tokens + global rules + component styles
   ========================================================= */

:root {
  /* Gradients */
  --grad-cta: linear-gradient(180deg, #ff7a00 0%, #c2410c 100%);
  --grad-dark:
    radial-gradient(ellipse at 50% 110%, rgba(255, 122, 0, .15) 0%, transparent 60%),
    linear-gradient(180deg, #1a0a02 0%, #2d1408 50%, #1a0a02 100%);

  /* Solid tokens */
  --accent: #FF7A00;
  --accent-deep: #C2410C;
  --darkest: #1A0A02;
  --mid-brown: #2D1408;
  --paper: #FFFFFF;
  --off-white: #FBF8F5;
  --chip-tint: #FFEBD9;
  --ink: #111111;
  --ink-on-dark: #FFFFFF;
  --border-light: #EAE4DE;
  --border-dark: rgba(255,122,0,.18);

  /* Radius / shadow */
  --radius: 14px;
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-elevated: 0 10px 30px rgba(0,0,0,0.18);

  /* Type */
  --font-base: 'Inter', 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-body: 18px;
  --fs-lead: 20px;
  --lh-body: 1.75;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 5vw, 54px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 600; }
p { margin: 0 0 20px; font-size: var(--fs-body); line-height: var(--lh-body); }
.lead { font-size: var(--fs-lead); }
section { padding: 88px 0; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--chip-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--ink); }
.on-dark .section-tag { background: rgba(255,122,0,.15); color: var(--accent); }
.on-dark h2, .on-dark h1, .on-dark p, .on-dark h3 { color: var(--ink-on-dark); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--darkest);
  color: #fff;
  padding: 14px 20px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-base);
  padding: 18px 34px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); }
.on-dark .btn-outline { border-color: var(--border-dark); color: #fff; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--darkest);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
  text-align: center;
  letter-spacing: .01em;
}
.ticker span { color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--grad-cta);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--accent); color: var(--accent-deep); }
.nav-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 12px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 981px) {
  .nav-cta { display: inline-flex; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero-block {
  position: relative;
  background: var(--grad-dark);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 60px, rgba(255, 122, 0, .04) 60px 62px),
              repeating-linear-gradient(-115deg, transparent 0 60px, rgba(255, 122, 0, .04) 60px 62px);
  pointer-events: none;
}
.hero-block .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,122,0,.12);
  border: 1px solid var(--border-dark);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-block h1 { color: #fff; margin-bottom: 20px; }
.hero-block .lead { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.hero-bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
.hero-bullets svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 18px; }
.rating-strip { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 15px; margin-bottom: 26px; }
.rating-strip .stars { color: var(--accent); letter-spacing: 2px; }
.trust-line { color: rgba(255,255,255,.65); font-size: 15px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); }

@media (max-width: 900px) {
  .hero-block .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- Trust badge row ---------- */
.trust-row {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}
.trust-row .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.trust-item svg { color: var(--accent-deep); flex-shrink: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .about-img { order: -1; }
}

/* ---------- Cards grid (Why Horsewood, Benefits) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.feature-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--chip-tint);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; font-size: 17px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.section-alt { background: var(--off-white); }

/* ---------- Benefits ---------- */
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.benefits-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.benefit-pill .icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: var(--chip-tint); color: var(--accent-deep); display:flex; align-items:center; justify-content:center; flex-shrink: 0; }
.benefit-pill h4 { font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.benefit-pill p { font-size: 15.5px; margin: 0; line-height: 1.55; }
@media (max-width: 860px) {
  .benefits-wrap { grid-template-columns: 1fr; }
  .benefits-wrap .benefits-img { order: -1; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- Ingredients ---------- */
.ingredients-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.ingredients-intro img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.ing-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.ing-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
}
.ing-dose {
  flex-shrink: 0;
  width: 76px; height: 76px;
  border-radius: 12px;
  background: var(--grad-cta);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
}
.ing-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.ing-card p { font-size: 16px; margin-bottom: 0; line-height: 1.6; }
.ing-tag { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-deep); margin-bottom: 4px; display: block; }
.label-figure { text-align: center; }
.label-figure img { border-radius: var(--radius); border: 1px solid var(--border-light); margin: 0 auto 12px; }
.label-figure figcaption { font-size: 15px; color: var(--ink); }
@media (max-width: 860px) {
  .ingredients-intro { grid-template-columns: 1fr; }
  .ing-list { grid-template-columns: 1fr; }
}

/* ---------- How it works / pillars ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border-light);
}
.pillar-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}
.pillar-card h4 { font-size: 18px; margin-bottom: 8px; }
.pillar-card p { font-size: 16px; margin-bottom: 0; }
@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }

.compound-note {
  margin-top: 40px;
  background: var(--chip-tint);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border-dark);
}
.compound-note p { margin: 0; font-size: 17px; }

/* ---------- Quality / manufacturing ---------- */
.quality-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.quality-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.quality-list { display: flex; flex-direction: column; gap: 18px; }
.quality-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; }
.quality-list svg { color: var(--accent-deep); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px) {
  .quality-wrap { grid-template-columns: 1fr; }
  .quality-wrap .quality-img { order: -1; }
}

/* ---------- Who it's for / safety ---------- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.audience-card {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border-light);
  background: #fff;
}
.audience-card h3 { margin-bottom: 16px; }
.audience-card ul { display: flex; flex-direction: column; gap: 12px; }
.audience-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 16.5px; }
.audience-card svg { flex-shrink: 0; margin-top: 3px; }
.check { color: #1a7a3c; }
.caution { color: var(--accent-deep); }

.safety-block {
  border: 2px solid var(--accent);
  background: var(--chip-tint);
  border-radius: var(--radius);
  padding: 32px;
}
.safety-block h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.safety-block ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin-bottom: 16px; }
.safety-block li { display: flex; gap: 10px; align-items: flex-start; font-size: 16.5px; font-weight: 500; }
.safety-block svg { color: var(--accent-deep); flex-shrink: 0; margin-top: 3px; }
.safety-block .safety-note { font-size: 15.5px; color: var(--ink); margin: 0; }
@media (max-width: 860px) {
  .audience-grid { grid-template-columns: 1fr; }
  .safety-block ul { grid-template-columns: 1fr; }
}

/* ---------- Usage timeline ---------- */
.usage-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.usage-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}
.usage-card ol { display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.usage-card li { display: flex; gap: 14px; font-size: 17px; }
.usage-card li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.timeline-item:last-child { border-bottom: none; }
.timeline-day { font-weight: 700; color: var(--accent-deep); font-size: 17px; }
.timeline-item p { margin: 0; font-size: 16.5px; }
.results-vary { font-size: 14.5px; font-style: normal; color: var(--ink); margin-top: 20px; font-weight: 600; }
@media (max-width: 860px) { .usage-wrap { grid-template-columns: 1fr; } }

/* ---------- Comparison table ---------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-light); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare-table th, table.compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid var(--border-light);
}
table.compare-table thead th {
  background: var(--off-white);
  font-weight: 700;
  font-size: 15px;
}
table.compare-table th:not(:first-child), table.compare-table td:not(:first-child) { text-align: center; }
table.compare-table td.yes { color: #1a7a3c; font-weight: 700; }
table.compare-table td.no { color: #999; }
table.compare-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-10px);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card img { width: 140px; margin: 0 auto 18px; }
.price-card .plan-name { text-align: center; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-deep); margin-bottom: 4px; }
.price-card .plan-supply { text-align: center; font-size: 16px; color: var(--ink); margin-bottom: 18px; }
.price-card .price-row { text-align: center; margin-bottom: 4px; }
.price-card .price-reg { text-decoration: line-through; color: #999; font-size: 16px; margin-right: 8px; }
.price-card .price-now { font-size: 32px; font-weight: 700; color: var(--ink); }
.price-card .price-per { text-align: center; font-size: 15px; color: var(--ink); margin-bottom: 20px; }
.price-card .price-save { text-align: center; font-size: 14px; font-weight: 700; color: #1a7a3c; margin-bottom: 20px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex-grow: 1; }
.price-card ul li { display: flex; gap: 8px; align-items: flex-start; font-size: 15.5px; }
.price-card ul li svg { color: var(--accent-deep); flex-shrink: 0; margin-top: 3px; }
.payment-icons { display: flex; justify-content: center; gap: 10px; margin-top: 16px; font-size: 13px; color: #999; letter-spacing: .04em; text-align: center; }
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured { transform: none; order: -1; }
}

/* ---------- Bonuses ---------- */
.bonus-note { text-align: center; margin-bottom: 36px; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-card { text-align: center; }
.bonus-card img { border-radius: var(--radius); box-shadow: var(--shadow-soft); margin-bottom: 16px; }
.bonus-card h4 { font-size: 18px; margin-bottom: 8px; }
.bonus-card p { font-size: 16px; }
@media (max-width: 760px) { .bonus-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ---------- Guarantee ---------- */
.guarantee-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.guarantee-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
@media (max-width: 860px) {
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
  .guarantee-wrap img { max-width: 220px; margin: 0 auto; }
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.testimonial-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
.testimonial-card blockquote { margin: 0 0 18px; font-size: 16.5px; line-height: 1.65; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--chip-tint);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.author-meta { font-size: 14px; color: var(--ink); }
.author-meta strong { display: block; font-size: 15.5px; }
.testimonial-disclosure {
  text-align: center;
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--ink);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.faq-question .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--accent-deep);
  border-radius: 2px;
  transition: transform .2s ease;
}
.faq-question .plus::before { width: 16px; height: 3px; top: 10px; left: 4px; }
.faq-question .plus::after { width: 3px; height: 16px; top: 4px; left: 10px; }
.faq-item[open] .faq-question .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 24px 22px; font-size: 17px; }
.faq-answer p { margin: 0; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ---------- Related articles ---------- */
.blog-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.blog-card-tag { font-size: 12.5px; font-weight: 700; text-transform: uppercase; color: var(--accent-deep); letter-spacing: .05em; }
.blog-card h3 { font-size: 19px; margin: 0; }
.blog-card p { font-size: 15.5px; margin: 0; flex-grow: 1; }
.blog-card .read-more { font-weight: 700; color: var(--accent-deep); font-size: 15px; margin-top: 6px; }
@media (max-width: 900px) { .blog-card-grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta img { max-width: 300px; margin: 0 auto 32px; }
.final-cta h2 { color: #fff; max-width: 760px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 32px; }
.final-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 32px; }
.final-badges .trust-item { color: rgba(255,255,255,.85); }
.final-badges svg { color: var(--accent); }

/* ---------- Footer ---------- */
footer {
  background: var(--darkest);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h4 { color: #fff; font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,.65); }
.footer-col h5 { color: #fff; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--accent); }
.footer-safety {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
  margin-bottom: 24px;
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.footer-safety strong { color: rgba(255,255,255,.9); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 14px; color: rgba(255,255,255,.5); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.mobile-sticky-cta .btn { width: 100%; }
@media (max-width: 760px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--darkest);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 997;
  box-shadow: var(--shadow-soft);
}
.back-to-top.visible { display: flex; }
@media (max-width: 760px) { .back-to-top { bottom: 96px; } }
@media (min-width: 761px) { .back-to-top { bottom: 28px; } }

/* ---------- Exit popup ---------- */
.exit-overlay {
  position: fixed; inset: 0;
  background: rgba(10,4,1,.72);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.visible { display: flex; }
.exit-modal {
  background: var(--grad-dark);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  border: 1px solid var(--border-dark);
}
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.exit-modal h3 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.exit-modal p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 20px; }
.exit-modal .exit-note { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 0; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
