/* ════════════════════════════════════════════════════════
   THRIVEXXL — DESIGN TOKENS & BASE
   Clean clinical palette: white surfaces, navy/blue accents
   ════════════════════════════════════════════════════════ */

:root,
[data-theme='light'] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Clinical/trustworthy palette */
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-2: #f1f5f9;
  --color-surface-offset: #e2eaf4;
  --color-divider: #e2e8f0;
  --color-border: #cbd5e1;

  --color-text: #0d1b2a;
  --color-text-muted: #4a5568;
  --color-text-faint: #94a3b8;
  --color-text-inverse: #ffffff;

  /* Primary: strong clinical blue */
  --color-primary: #0e6ba8;
  --color-primary-hover: #0a5490;
  --color-primary-active: #063d6b;
  --color-primary-light: #dbeafe;

  /* Accent: warm gold for highlights/CTA secondary */
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-accent-light: #fef3c7;

  /* Success */
  --color-success: #16a34a;
  --color-success-light: #dcfce7;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 1000px;
  --content-wide: 1240px;

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
}

/* ════════════════════════════════════════════════════════
   BASE RESET
   ════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.2; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button, [role='button'] {
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

/* ════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════════════════ */
.container-narrow {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container-default {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container-wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════ */
.site-header {
  position: static;
  background: #0e6ba8;
  border-bottom: none;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.header-nav a:hover { color: #ffffff; }

/* Trust bar — standalone divider above Real Results */
.trust-bar {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trust-bar span { white-space: nowrap; }

/* ════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 60%);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary-active);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3.5vw, 3.5rem);
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  max-width: 100%;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-subhead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 100%;
  margin-bottom: 0;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  width: 100%;
  margin-top: var(--space-10);
  padding: var(--space-6) var(--space-8);
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-divider);
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-divider);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   SECTION TAGS & SHARED
   ════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

/* ════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ════════════════════════════════════════════════════════ */
.content-section {
  padding: var(--space-8) var(--space-6);
}

.content-section--alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.editorial-block { max-width: var(--content-default); margin-inline: auto; }

.editorial-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.editorial-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.75;
}

.pull-quote {
  border-left: 4px solid var(--color-primary);
  margin: var(--space-8) 0;
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.55;
}

.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-3);
}

/* Two column editorial */
.two-col-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.two-col-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.two-col-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.75;
}

.two-col-image img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  max-height: 560px;
  box-shadow: var(--shadow-lg);
}

/* Benefit list */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   IMAGE BREAKS
   ════════════════════════════════════════════════════════ */
.image-break {
  padding: var(--space-8) var(--space-6);
}

.feature-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
  margin-inline: auto;
}

.feature-image figcaption {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}

/* Product spotlight */
.image-break--product {
  background: linear-gradient(135deg, #0d1b2a 0%, #0e6ba8 100%);
  padding: clamp(var(--space-12), 7vw, var(--space-20)) var(--space-6);
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.product-image-wrap img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  max-height: 520px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.product-callout .section-tag { color: #93c5fd; }

.product-callout h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #ffffff;
  margin-bottom: var(--space-8);
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.ingredient strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ingredient p {
  font-size: var(--text-sm);
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 42ch;
}

/* ════════════════════════════════════════════════════════
   RESULTS GRID
   ════════════════════════════════════════════════════════ */
.content-section .section-tag { display: block; margin-bottom: var(--space-3); }

.content-section > .container-narrow > h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.content-section > .container-narrow > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.75;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.result-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.result-pct {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 2.5vw, 3rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.result-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.disclaimer-small {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-style: italic;
  margin-top: var(--space-4);
}

/* ════════════════════════════════════════════════════════
   OFFER / CTA SECTION
   ════════════════════════════════════════════════════════ */
.offer-section {
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f4fd 100%);
  border-top: 1px solid var(--color-divider);
}

.offer-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  max-width: var(--content-default);
  margin-inline: auto;
  text-align: center;
  border: 1px solid var(--color-divider);
}

.offer-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: #fef3c7;
  color: #92400e;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid #fde68a;
}

.offer-badge.pulse {
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
}

.offer-countdown-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.countdown {
  font-weight: 800;
  color: #dc2626;
  font-variant-numeric: tabular-nums;
}

.offer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.offer-subtext {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 46ch;
  margin-inline: auto;
}

/* Wheel */
.wheel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.wheel-container {
  position: relative;
  display: inline-block;
}

#spinWheel {
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: block;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: var(--color-accent);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  line-height: 1;
}

.wheel-result {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  min-height: 1.6em;
}

.spin-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 20px rgba(14, 107, 168, 0.35);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.spin-btn:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 28px rgba(14, 107, 168, 0.45);
  transform: translateY(-1px);
}

.spin-btn:active { transform: translateY(0); }
.spin-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Offer CTA */
.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.promo-code-box {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-success-light);
  border: 2px dashed var(--color-success);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.promo-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.promo-code {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-success);
  font-family: monospace;
}

.copy-btn {
  background: var(--color-success);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  border: none;
  letter-spacing: 0.05em;
}

.copy-btn:hover { background: #15803d; }

.main-cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: var(--space-5) var(--space-12);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.main-cta-btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(217, 119, 6, 0.45);
}

.offer-fine {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* Trust icons */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-item svg { color: var(--color-primary); }

/* ════════════════════════════════════════════════════════
   REVIEWS SECTION
   ════════════════════════════════════════════════════════ */
.reviews-section {
  padding: clamp(var(--space-12), 7vw, var(--space-20)) var(--space-6);
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.stars { color: #f59e0b; letter-spacing: 0.05em; }
.large-stars { font-size: 1.75rem; }

.rating-summary {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.review-card {
  background: #fff;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.reviewer-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  display: block;
}

.reviewer-meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.review-header .stars {
  margin-left: auto;
  font-size: 0.9rem;
}

.review-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.review-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-3);
  gap: var(--space-2);
  flex-wrap: wrap;
}

.helpful-btn {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: transparent;
}

.helpful-btn:hover {
  background: var(--color-surface-2);
  color: var(--color-text);
}

.reviews-footer-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.reviews-footer-cta p {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}

.secondary-cta-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(14, 107, 168, 0.3);
  transition: background var(--transition), transform var(--transition);
}

.secondary-cta-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-text);
  color: #cbd5e1;
  padding: clamp(var(--space-10), 5vw, var(--space-16)) var(--space-6) var(--space-8);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: var(--text-xs);
  color: #64748b;
  margin-top: var(--space-3);
  max-width: 36ch;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: var(--text-sm);
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover { color: #e2e8f0; }

.footer-disclaimer {
  border-top: 1px solid #1e293b;
  padding-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.footer-disclaimer p {
  font-size: var(--text-xs);
  color: #475569;
  line-height: 1.65;
  max-width: 100%;
}

.footer-copy {
  font-size: var(--text-xs);
  color: #475569;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .header-nav a:not(.nav-cta) { display: none; }
  .trust-bar { gap: var(--space-4); justify-content: flex-start; overflow-x: auto; }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-5);
  }
  .stat-divider { width: 60%; height: 1px; }

  .two-col-editorial,
  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .two-col-image { order: -1; }
  .product-image-wrap { order: -1; }
  .product-image-wrap img { max-height: 320px; }

  .results-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: var(--space-3); }

  .trust-icons { gap: var(--space-5); }
}

@media (max-width: 520px) {
  .hero-headline { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .offer-card { padding: var(--space-6); }
  .main-cta-btn { padding: var(--space-4) var(--space-8); font-size: var(--text-sm); }
  #spinWheel { width: 260px; height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
