/* ==========================================================================
   IGNITRA — Weight Loss & Metabolism Support
   Stylesheet | Brand Site | https://igneitra.com
   ========================================================================== */

/* ====== 1. RESET & ROOT ====== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  /* Flame Brand Colors */
  --flame-orange: #FF5A1F;
  --flame-red: #F9542B;
  --flame-magenta: #EC4899;
  --flame-pink: #F472B6;
  --flame-purple: #A855F7;
  --flame-violet: #8B5CF6;
  --flame-blue: #3B82F6;
  --flame-cyan: #06B6D4;

  /* Neutrals */
  --ink-900: #0B0F1E;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;
  --cream: #FFF8F1;
  --white: #FFFFFF;
  --success: #10B981;

  /* Gradients */
  --grad-flame: linear-gradient(135deg, #FF5A1F 0%, #EC4899 50%, #A855F7 100%);
  --grad-flame-cool: linear-gradient(135deg, #FF5A1F 0%, #EC4899 40%, #A855F7 70%, #3B82F6 100%);
  --grad-cta: linear-gradient(135deg, #FF5A1F 0%, #F9542B 50%, #EC4899 100%);
  --grad-cta-hover: linear-gradient(135deg, #F9542B 0%, #EC4899 50%, #A855F7 100%);
  --grad-soft: linear-gradient(180deg, #FFF8F1 0%, #FFFFFF 100%);
  --grad-card: linear-gradient(145deg, #FFFFFF 0%, #FFF8F1 100%);
  --grad-dark: linear-gradient(135deg, #0B0F1E 0%, #1E293B 100%);

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 15, 30, 0.05);
  --shadow-sm: 0 2px 8px rgba(11, 15, 30, 0.06), 0 1px 2px rgba(11, 15, 30, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 15, 30, 0.08), 0 2px 6px rgba(11, 15, 30, 0.04);
  --shadow-lg: 0 16px 40px rgba(11, 15, 30, 0.10), 0 4px 12px rgba(11, 15, 30, 0.06);
  --shadow-xl: 0 24px 64px rgba(11, 15, 30, 0.14), 0 8px 20px rgba(11, 15, 30, 0.08);
  --shadow-flame: 0 16px 48px rgba(255, 90, 31, 0.30), 0 4px 12px rgba(236, 72, 153, 0.20);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 920px;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--flame-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--flame-magenta); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ====== 2. ANNOUNCEMENT BAR ====== */
.announce {
  background: var(--grad-flame);
  color: var(--white);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.announce::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.announce strong { font-weight: 800; }

/* ====== 3. HEADER ====== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-flame-cool);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--ink-700);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-flame);
  transition: width 0.3s ease;
}

.nav a:hover { color: var(--flame-orange); }
.nav a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-cta);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.30);
  transition: all 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.40);
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink-800);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ====== 4. HERO ====== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(ellipse at 20% 0%, rgba(255, 90, 31, 0.08), transparent 50%),
              radial-gradient(ellipse at 80% 30%, rgba(168, 85, 247, 0.08), transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.06), transparent 50%),
              var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 90, 31, 0.20);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--flame-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--flame-orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

.hero h1 .accent {
  background: var(--grad-flame-cool);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-600);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-700);
}

.hero-bullets li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--grad-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-cta);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-flame);
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(255, 90, 31, 0.40), 0 8px 20px rgba(236, 72, 153, 0.30);
  color: var(--white);
}

.btn-primary .arrow {
  transition: transform 0.25s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-600);
  font-weight: 600;
}

.hero-trust .stars {
  color: #FBBF24;
  letter-spacing: 1px;
  font-size: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.18), rgba(236, 72, 153, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}

.hero-bottle {
  position: relative;
  z-index: 1;
  max-width: 460px;
  filter: drop-shadow(0 30px 50px rgba(11, 15, 30, 0.20));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-800);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-badge-float.b1 {
  top: 10%;
  left: -10px;
  animation: float 7s ease-in-out infinite;
}

.hero-badge-float.b2 {
  bottom: 12%;
  right: -10px;
  animation: float 7s ease-in-out infinite 1s;
}

.hero-badge-float .icon {
  width: 36px;
  height: 36px;
  background: var(--grad-flame);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

/* ====== 5. TRUST BAR ====== */
.trust-bar {
  background: var(--ink-900);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 90, 31, 0.08), transparent 60%);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-100);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--flame-orange);
}

/* ====== 6. SECTION HEADERS ====== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-tight { padding: 70px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flame-orange);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(255, 90, 31, 0.08);
  border-radius: var(--r-pill);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head h2 .accent {
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
}

.section-head p {
  font-size: 17.5px;
  color: var(--ink-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ====== 7. MINI TESTIMONIALS ====== */
.mini-testimonials {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--ink-100);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.mini-card {
  background: var(--grad-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mini-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.mini-quote {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 6px;
  line-height: 1.4;
}

.mini-name {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 700;
}

.mini-stars {
  color: #FBBF24;
  font-size: 14px;
  margin-left: 6px;
  letter-spacing: 1px;
}

/* ====== 8. ABOUT SECTION ====== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
  text-align: center;
}

.about-visual img {
  max-width: 100%;
  filter: drop-shadow(0 30px 50px rgba(11, 15, 30, 0.18));
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 22px;
  line-height: 1.12;
}

.about-content h2 .accent {
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-content p {
  font-size: 17px;
  color: var(--ink-700);
  margin-bottom: 18px;
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--ink-200);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ====== 9. PROBLEM SECTION ====== */
.problem {
  background: var(--ink-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.18), transparent 70%);
  border-radius: 50%;
}

.problem::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
  border-radius: 50%;
}

.problem .section-head h2 { color: var(--white); }
.problem .section-head p { color: var(--ink-300); }
.problem .section-eyebrow {
  background: rgba(255, 90, 31, 0.15);
  color: var(--flame-pink);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.30);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-flame);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.30);
}

.problem-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.problem-card p {
  color: var(--ink-300);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ====== 10. HOW IT WORKS ====== */
.how-works {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.how-works::before {
  content: '';
  position: absolute;
  top: 40%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.how-works::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 36px 28px 32px;
  text-align: left;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-card:hover::before { transform: scaleX(1); }

.step-num {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-flame);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.30);
  z-index: 2;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 18px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.10), rgba(236, 72, 153, 0.10));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  padding-right: 50px;
}

.step-card p {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ====== 11. INGREDIENTS ====== */
.ingredients {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.ingredients::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10), transparent 70%);
  border-radius: 50%;
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.ing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--ink-100);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ing-card:hover::before { transform: scaleX(1); }

.ing-emoji {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.10), rgba(236, 72, 153, 0.10));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.ing-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--ink-900);
}

.ing-card p {
  color: var(--ink-600);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ing-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-700);
  font-weight: 600;
}

.ing-benefits li::before {
  content: '✓';
  color: var(--flame-orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ====== 12. BENEFITS ====== */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 36px 28px;
  background: var(--grad-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-100);
  text-align: left;
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-flame);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.25);
}

.benefit-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ====== 13. TESTIMONIALS ====== */
.testimonials {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent 70%);
  border-radius: 50%;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.test-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: all 0.3s ease;
  position: relative;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.test-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Georgia', serif;
  font-size: 72px;
  color: var(--flame-orange);
  opacity: 0.12;
  line-height: 1;
}

.test-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.test-quote {
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
  font-weight: 500;
}

.test-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.test-meta {
  display: flex;
  flex-direction: column;
}

.test-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
}

.test-location {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
}

.test-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--success);
  font-weight: 700;
  margin-top: 2px;
}

.test-disclaimer {
  text-align: center;
  color: var(--ink-500);
  font-size: 12.5px;
  margin-top: 36px;
  font-style: italic;
}

/* ====== 14. PRICING ====== */
.pricing {
  background: var(--white);
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--ink-200);
  border-radius: var(--r-2xl);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured {
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(255, 90, 31, 0.20), 0 8px 20px rgba(236, 72, 153, 0.15);
  transform: scale(1.04);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F1 100%);
  position: relative;
  z-index: 2;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: var(--r-2xl);
  background: var(--grad-flame-cool);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: var(--white);
  padding: 8px 22px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.30);
  white-space: nowrap;
  z-index: 3;
}

.price-badge.alt-badge {
  background: linear-gradient(135deg, #10B981, #06B6D4);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.30);
}

/* Save Sticker — corner element */
.save-sticker {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  height: 64px;
  background: var(--grad-cta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  box-shadow: 0 6px 16px rgba(255, 90, 31, 0.35);
  transform: rotate(8deg);
  z-index: 2;
  text-align: center;
}

.save-sticker b {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: 1px;
}

.save-sticker.green {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.price-head {
  margin-bottom: 20px;
}

.price-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame-orange);
  background: rgba(255, 90, 31, 0.08);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.price-card .title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.15;
}

.price-card .supply {
  font-size: 13.5px;
  color: var(--ink-500);
  font-weight: 600;
}

.price-bottle-wrap {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 220px;
}

.price-bottle {
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(11, 15, 30, 0.15));
  transition: transform 0.35s ease;
}

.price-card:hover .price-bottle {
  transform: scale(1.04);
}

.price-display {
  margin-bottom: 22px;
  padding: 18px 0;
  border-top: 1px dashed var(--ink-200);
  border-bottom: 1px dashed var(--ink-200);
}

.price-per {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.price-per .dollar {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.price-per .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.03em;
}

.price-per-label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.price-per-label .lowest {
  color: var(--success);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Feature List */
.price-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.4;
}

.pf-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

.pf-x {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--ink-200);
  color: var(--ink-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

.price-features li.pf-muted {
  color: var(--ink-400);
  text-decoration: line-through;
  text-decoration-color: var(--ink-300);
}

.price-features li.pf-strong {
  color: var(--ink-900);
  font-weight: 700;
}

.price-cta {
  display: block;
  background: var(--grad-cta);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.25);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  margin-top: auto;
}

.price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.35);
  color: var(--white);
}

.price-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.price-total .strike {
  color: var(--ink-400);
  text-decoration: line-through;
  font-weight: 600;
}

.price-total .now {
  color: var(--ink-900);
  font-weight: 800;
  font-size: 16px;
}

/* Pricing Trust Strip */
.pricing-trust {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-100);
}

.pt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.45;
}

.pt-item svg {
  flex-shrink: 0;
  color: var(--flame-orange);
}

.pt-item strong {
  color: var(--ink-900);
  font-weight: 800;
  font-size: 13.5px;
}

/* ====== 15. BONUSES ====== */
.bonuses {
  background: var(--grad-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bonuses::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.20), transparent 70%);
  border-radius: 50%;
}

.bonuses .section-head h2 { color: var(--white); }
.bonuses .section-head p { color: var(--ink-300); }
.bonuses .section-eyebrow {
  background: rgba(255, 90, 31, 0.15);
  color: var(--flame-pink);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 90, 31, 0.30);
  transform: translateY(-4px);
}

.bonus-img {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bonus-tag {
  display: inline-block;
  background: var(--grad-cta);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bonus-card h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.bonus-card p {
  color: var(--ink-300);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bonus-price .was {
  color: var(--ink-400);
  text-decoration: line-through;
}

.bonus-price .free {
  color: var(--flame-orange);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ====== 16. GUARANTEE ====== */
.guarantee {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.guarantee-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.10), transparent 70%);
  border-radius: 50%;
}

.guarantee-seal {
  width: 200px;
  height: 200px;
  background: var(--grad-flame);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  box-shadow: 0 16px 40px rgba(255, 90, 31, 0.30);
  flex-shrink: 0;
}

.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.guarantee-seal .seal-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.guarantee-seal .seal-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.guarantee-seal .seal-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.guarantee-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.guarantee-content h2 .accent {
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.guarantee-content p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
}

/* ====== 17. FAQ ====== */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  background: var(--white);
  border-color: var(--flame-orange);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--flame-orange); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink-700);
  border-radius: 2px;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  background: var(--grad-cta);
  border-color: transparent;
}

.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after {
  background: var(--white);
}

.faq-item.open .faq-toggle::after {
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 28px 22px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ====== 18. SCIENTIFIC REFERENCES ====== */
.references {
  background: var(--ink-50);
  padding: 60px 0;
}

.refs-head {
  text-align: center;
  margin-bottom: 36px;
}

.refs-head h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.refs-head p {
  color: var(--ink-600);
  font-size: 14px;
}

.refs-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.refs-list li {
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--ink-700);
  border: 1px solid var(--ink-100);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.refs-list li .num {
  font-weight: 800;
  color: var(--flame-orange);
  flex-shrink: 0;
}

.refs-list li a {
  color: var(--flame-orange);
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}

.refs-list li a:hover {
  text-decoration: underline;
}

/* ====== 19. FINAL CTA ====== */
.final-cta {
  background: var(--grad-flame-cool);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(0, 0, 0, 0.10), transparent 50%);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 18px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--flame-orange);
  padding: 18px 38px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 16.5px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
  color: var(--flame-magenta);
}

/* ====== 20. FOOTER ====== */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: var(--grad-flame-cool);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-about {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 420px;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--ink-200);
  font-weight: 600;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: var(--ink-300);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--flame-orange);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.6;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-500);
}

/* ====== 21. RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .bonus-card,
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-grid { text-align: center; }
  .hero-content { align-items: center; }
  .hero-eyebrow { align-self: center; }
  .hero-sub, .hero-bullets { max-width: 100%; }
  .hero-cta-row { justify-content: center; }
  .hero-bullets { align-items: flex-start; max-width: 440px; margin-left: auto; margin-right: auto; text-align: left; }

  .guarantee-seal { margin: 0 auto; }
  .guarantee-content { text-align: center; }

  .problem-grid,
  .ing-grid,
  .benefits-grid,
  .test-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }

  .pricing-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .container, .container-narrow { padding: 0 20px; }

  .section { padding: 64px 0; }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 30px 30px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
    align-items: flex-start;
    gap: 22px;
  }

  .nav.active { display: flex; }

  .nav a { font-size: 16px; }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .menu-toggle { display: block; }

  .hero {
    padding: 36px 0 56px;
  }

  /* MOBILE HERO: H1 → image → sub → bullets → CTA
     Uses display:contents to flatten .hero-content children
     into .hero-grid so .hero-visual can be reordered between them */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .hero-content {
    display: contents;
  }

  .hero-eyebrow { display: none; }
  .hero h1 { order: 1; margin-bottom: 0; }
  .hero-visual { order: 2; margin: 0; }
  .hero-sub { order: 3; margin-bottom: 0; }
  .hero-bullets { order: 4; margin-bottom: 0; align-items: flex-start; max-width: 100%; text-align: left; }
  .hero-cta-row { order: 5; margin-bottom: 0; }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 16.5px;
  }

  .hero-bullets li { font-size: 14.5px; }

  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-primary { justify-content: center; width: 100%; padding: 16px 24px; }
  .hero-trust { justify-content: center; }

  .hero-visual::before { width: 320px; height: 320px; }
  .hero-bottle { max-width: 280px; margin: 0 auto; }

  .hero-badge-float.b1 { top: 5%; left: 0; padding: 10px 14px; font-size: 12.5px; }
  .hero-badge-float.b2 { bottom: 5%; right: 0; padding: 10px 14px; font-size: 12.5px; }
  .hero-badge-float .icon { width: 28px; height: 28px; font-size: 14px; }

  .trust-grid { gap: 14px; }
  .trust-item { font-size: 12.5px; }
  .trust-item svg { width: 20px; height: 20px; }

  .mini-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mini-card { padding: 22px; }

  .problem-grid,
  .ing-grid,
  .benefits-grid,
  .test-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card { padding: 30px 24px 26px; }
  .step-num { width: 42px; height: 42px; font-size: 18px; top: 18px; right: 20px; }
  .step-icon { width: 56px; height: 56px; font-size: 30px; }
  .step-card h3 { font-size: 20px; padding-right: 45px; }

  .section-head { margin-bottom: 40px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 11.5px; }

  .bonus-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px;
  }

  .bonus-img { max-width: 200px; margin: 0 auto; }

  .guarantee-card {
    padding: 36px 26px;
    gap: 28px;
  }

  .guarantee-seal {
    width: 160px;
    height: 160px;
  }

  .guarantee-seal .seal-num { font-size: 44px; }

  /* Pricing mobile adjustments */
  .price-card { padding: 32px 22px 26px; }
  .save-sticker { width: 56px; height: 56px; font-size: 9px; top: 14px; right: 14px; }
  .save-sticker b { font-size: 16px; }
  .price-card .title { font-size: 20px; }
  .price-bottle-wrap { min-height: 200px; }
  .price-bottle { max-height: 210px; }
  .price-per .num { font-size: 56px; }
  .price-per .dollar { font-size: 24px; }

  .pricing-trust {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .faq-q { padding: 18px 20px; font-size: 15.5px; }
  .faq-a-inner { padding: 0 20px 18px; font-size: 14.5px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta { padding: 60px 0; }
  .btn-light { padding: 16px 32px; font-size: 15.5px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .price-per .num { font-size: 48px; }
  .price-per .dollar { font-size: 22px; }
  .guarantee-card { padding: 30px 20px; }
}

/* ====== 22. UTILITY ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

::selection {
  background: var(--flame-orange);
  color: var(--white);
}

/* ====== 23. LEGAL PAGES ====== */
.legal-hero {
  padding: 60px 0 30px;
  background: var(--cream);
  border-bottom: 1px solid var(--ink-100);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.legal-hero p {
  color: var(--ink-600);
  font-size: 16.5px;
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content .container-narrow > * {
  margin-bottom: 18px;
}

.legal-content h2 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--ink-900);
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--ink-800);
}

.legal-content p,
.legal-content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-700);
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal-content ul li,
.legal-content ol li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-content ol li { list-style: decimal; }

.legal-content a {
  color: var(--flame-orange);
  font-weight: 600;
}

.legal-content strong { color: var(--ink-900); }
