/* ═══════════════════════════════════════════════════════════════
   CARNIVORE RESET — STYLESHEET
   Mobile-first · Warm dark hero · Cream body · Amber accents
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Color palette */
  --dark:           #0A0806;
  --dark-2:         #16110C;
  --dark-3:         #201810;
  --amber:          #C07D08;
  --amber-light:    #D99211;
  --amber-glow:     rgba(192, 125, 8, 0.18);
  --amber-pale:     #FDF4DC;
  --cream:          #F9F6F0;
  --cream-alt:      #F1EBE0;
  --cream-border:   #E5DDD0;
  --text:           #1C1A16;
  --text-muted:     #6B5E4E;
  --text-faint:     #A09080;
  --white:          #FFFFFF;
  --green-success:  #2D7A4A;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container:    1140px;
  --pad-x:        clamp(1.25rem, 5vw, 2.5rem);
  --section-y:    clamp(4rem, 9vw, 7.5rem);

  /* Radius */
  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2rem;

  /* Shadows */
  --shadow-card:    0 2px 20px rgba(10, 8, 6, 0.08);
  --shadow-lift:    0 8px 40px rgba(10, 8, 6, 0.14);
  --shadow-amber:   0 4px 24px rgba(192, 125, 8, 0.32);

  /* Urgency bar height — JS updates this when bar is dismissed */
  --urgency-bar-height: 44px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── ACCESSIBILITY ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-pad { padding: var(--section-y) 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 125, 8, 0.4);
}
.btn--primary:active { transform: translateY(0); }
.btn--amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}
.btn--amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn--outline:hover {
  background: var(--amber);
  color: var(--white);
}
.btn--hero {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-sm);
}
.btn--xl {
  padding: 1.1rem 2.25rem;
  font-size: 1.0625rem;
}
.btn--full { width: 100%; }

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-faint); }
.form-group input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-group input[aria-invalid="true"] {
  border-color: #CC3333;
  box-shadow: 0 0 0 3px rgba(204,51,51,0.15);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
/* Lead magnet form — constrain width to match other page forms */
.lead-magnet .opt-in-form {
  max-width: 520px;
}

/* Lead magnet form — name left, email right */
.lm-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 500px) {
  .lm-form-fields {
    grid-template-columns: 1fr;
  }
}
.form-privacy {
  font-size: 0.8125rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 0.625rem;
}
.form-error {
  font-size: 0.8125rem;
  color: #CC3333;
  margin-top: 0.25rem;
  font-weight: 500;
}
.form-label-above {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.form-success {
  background: #EAF7EF;
  border: 1.5px solid #2D7A4A;
  border-radius: var(--r-sm);
  color: var(--green-success);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1rem 1.25rem;
  text-align: center;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ─── URGENCY BAR ─────────────────────────────────────────────── */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(192, 125, 8, 0.25);
  height: var(--urgency-bar-height);
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.urgency-bar__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  position: relative;
}
.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.urgency-bar__close {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.15s ease;
}
.urgency-bar__close:hover { color: var(--white); }

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


/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  min-height: 100vh;
  padding-top: calc(var(--urgency-bar-height) + 3.5rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle warm radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(140, 80, 10, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(100, 60, 5, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  width: 100%;
}

.hero__text {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.hero__headline em {
  font-style: italic;
  color: var(--amber-light) !important;
}

.hero__subhead {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: rgba(249, 246, 240, 0.75);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.hero__form-wrap {
  max-width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  scroll-margin-top: calc(var(--urgency-bar-height) + 1.5rem);
}
.hero__form-wrap .form-label-above {
  color: var(--amber-light) !important;
}
.hero__form-wrap .form-group input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--cream);
}
.hero__form-wrap .form-group input::placeholder {
  color: rgba(249,246,240,0.4);
}
.hero__form-wrap .form-group input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--amber);
}
.hero__form-wrap .form-privacy {
  color: rgba(249,246,240,0.45);
}

.hero__secondary-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber-light) !important;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(192, 125, 8, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero__secondary-cta:hover {
  color: var(--amber);
  border-color: var(--amber);
}

/* ─── CREDIBILITY STRIP ──────────────────────────────────────── */
.credibility {
  background: var(--dark-2);
  border-top: 1px solid rgba(192, 125, 8, 0.2);
  border-bottom: 1px solid rgba(192, 125, 8, 0.2);
  padding: 2.5rem 0;
}
.credibility__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.credibility__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--amber-light) !important;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(249,246,240,0.5);
  letter-spacing: 0.02em;
}
.credibility__divider { display: none; }

/* ─── PROBLEMS ───────────────────────────────────────────────── */
.problems {
  background: var(--cream);
}
.problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.problem-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-card);
}
.problem-card__icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  line-height: 1;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text);
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── REFRAME ────────────────────────────────────────────────── */
.reframe {
  background: var(--dark-3);
  color: var(--cream);
}
.reframe .section-title,
.reframe .section-eyebrow { color: var(--amber-light) !important; }
.reframe__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.reframe__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.reframe__lead {
  font-size: 1.0625rem;
  color: rgba(249,246,240,0.8);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 580px;
}
.reframe__text > p {
  font-size: 0.9375rem;
  color: rgba(249,246,240,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 580px;
}
.reframe__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.reframe__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.list-marker {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--amber-glow);
  border: 1px solid rgba(192, 125, 8, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--amber-light) !important;
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}
.reframe__list li div {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(249,246,240,0.75);
}
.reframe__list li strong {
  color: var(--cream);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.reframe__quote-card {
  background: rgba(192, 125, 8, 0.1);
  border: 1px solid rgba(192, 125, 8, 0.25);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.reframe__big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  color: var(--amber-light) !important;
  line-height: 1.4;
}

/* ─── FOOD ───────────────────────────────────────────────────── */
.food {
  background: var(--cream-alt);
}
.food__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.food-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.food-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.food-card__icon {
  font-size: 2.75rem !important;
  margin-bottom: 0.875rem;
  line-height: 1;
}
.food-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.food-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.food-card__note {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
  background: var(--amber-pale);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
}
.food__conclusion {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-style: italic;
  color: var(--text);
}

/* ─── BENEFITS ───────────────────────────────────────────────── */
.benefits {
  background: var(--cream);
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.benefit-item {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s ease;
}
.benefit-item:hover { border-color: var(--amber); }
.benefit-item__before {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: line-through;
  text-align: right;
  padding-right: 0.5rem;
}
.benefit-item__arrow {
  font-size: 1.125rem;
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}
.benefit-item__after {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}
.benefit-item__after strong {
  color: var(--text);
  font-weight: 700;
  display: block;
  font-size: 0.9375rem;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  background: var(--dark);
}
.testimonials .section-eyebrow { color: var(--amber-light) !important; }
.testimonials .section-title   { color: var(--cream); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s ease;
}
.testimonial-card:hover {
  border-color: rgba(192, 125, 8, 0.35);
}
.testimonial-card__stars {
  color: var(--amber-light) !important;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(249,246,240,0.9);
  line-height: 1.7;
  border: none;
  padding: 0;
  quotes: none;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber-glow);
  border: 1.5px solid rgba(192, 125, 8, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber-light) !important;
  flex-shrink: 0;
  /* SWAP: Replace this div with <img> for a real avatar photo */
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--cream);
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: 0.8125rem;
  color: rgba(249,246,240,0.45);
}

/* ─── LEAD MAGNET ────────────────────────────────────────────── */
.lead-magnet {
  background: linear-gradient(135deg, var(--dark-3) 0%, #1E1608 100%);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(192, 125, 8, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.lead-magnet__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-magnet__mockup {
  display: flex;
  justify-content: center;
}
.mockup-placeholder {
  width: 240px;
  height: 310px;
  background: linear-gradient(145deg, #1A1408 0%, #251C0C 100%);
  border: 2px solid rgba(192, 125, 8, 0.35);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 4px 20px rgba(192,125,8,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  /* SWAP: Replace this div with <img src="path/to/roadmap-mockup.png" alt="Personal Carnivore Roadmap cover"> */
}
.mockup-placeholder > span:first-child {
  font-size: 3rem;
}
.mockup-placeholder p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.25;
}
.mockup-free {
  position: absolute;
  top: -0.875rem;
  right: -0.875rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(192,125,8,0.4);
}

.lead-magnet__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.lead-magnet__desc {
  font-size: 1rem;
  color: rgba(249,246,240,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.lead-magnet__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.lead-magnet__features li {
  font-size: 0.9375rem;
  color: rgba(249,246,240,0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.lead-magnet .form-group label { color: rgba(249,246,240,0.8); }
.lead-magnet .form-group input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--cream);
}
.lead-magnet .form-group input::placeholder { color: rgba(249,246,240,0.3); }
.lead-magnet .form-group input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--amber);
}
.lead-magnet .form-privacy { color: rgba(249,246,240,0.4); }

/* ─── OFFER ──────────────────────────────────────────────────── */
.offer {
  background: var(--cream-alt);
}
.offer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.product-mockup {
  display: flex;
  justify-content: center;
  width: 100%;
}
.product-mockup__cover {
  width: 100%;
  background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark-3) 60%, #2A1C0A 100%);
  border-radius: var(--r-md);
  border: 2px solid rgba(192, 125, 8, 0.45);
  box-shadow: var(--shadow-lift), 0 6px 32px rgba(192,125,8,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 3rem;
  gap: 0.5rem;
  /* SWAP: Replace with <img> of your product cover art */
}
.product-mockup__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--amber-light) !important;
  font-style: italic;
  letter-spacing: 0.02em;
}
.product-mockup__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--amber-light) !important;
  line-height: 1.05;
}
.product-mockup__sub {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(249,246,240,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.offer__details-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.offer__bonus-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.bonus-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-md);
  transition: border-color 0.2s ease;
}
.bonus-item:hover { border-color: rgba(192,125,8,0.3); }
.bonus-item--main {
  border-color: var(--amber);
  background: var(--amber-pale);
}
.bonus-item__check {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.bonus-item__content strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.bonus-item__content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.375rem;
}
.bonus-item__value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}

.offer__pricing {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 1rem 2rem;
  text-align: center;
}
.offer__total-value {
  font-size: 0.8125rem;
  color: rgba(249,246,240,0.5);
  margin-bottom: 0.125rem;
}
.offer__total-value s { text-decoration-color: rgba(249,246,240,0.3); }
.offer__price-label {
  font-size: 0.875rem;
  color: rgba(249,246,240,0.6);
  margin-bottom: 0.25rem;
}
.offer__price {
  font-family: var(--font-display);
  font-size: 2.75rem !important;
  font-weight: 800;
  color: var(--amber-light) !important;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.offer .btn--buy {
  width: 100%;
  margin-bottom: 0.625rem;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}
.offer__guarantee-note {
  font-size: 0.8125rem;
  color: rgba(249,246,240,0.45);
  line-height: 1.6;
}

/* ─── GUARANTEE ──────────────────────────────────────────────── */
.guarantee {
  background: var(--cream);
}
.guarantee__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--cream-border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-card);
}
.guarantee__badge {
  flex-shrink: 0;
}
.guarantee__badge-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 0 0 6px var(--amber-glow);
}
.guarantee__badge-circle span:nth-child(1) {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--amber-light) !important;
}
.guarantee__badge-circle span:nth-child(2) {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(249,246,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.guarantee__badge-circle span:nth-child(3) {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(249,246,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.guarantee__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.guarantee__text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.guarantee__note {
  font-size: 0.8125rem;
  color: var(--text-faint);
  font-style: italic;
  background: var(--cream-alt);
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  display: inline-block;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq {
  background: var(--cream-alt);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1.5px solid var(--cream-border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  line-height: 1.45;
  transition: background 0.15s ease, color 0.15s ease;
}
.faq-item__question:hover,
.faq-item__question[aria-expanded="true"] {
  background: var(--amber-pale);
  color: var(--text);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  transition: background 0.15s ease;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  background: var(--amber);
  color: var(--white);
}
.faq-item__answer {
  padding: 0 1.5rem 1.375rem;
  background: var(--amber-pale);
  border-top: 1px solid rgba(192,125,8,0.15);
}
.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: 1rem;
}
.faq-item__answer em { font-style: italic; }

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.final-cta {
  background: var(--dark);
}
.final-cta .section-eyebrow { color: var(--amber-light) !important; }
.final-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.final-cta__headline em {
  font-style: italic;
  color: var(--amber-light) !important;
}
.final-cta__sub {
  font-size: 1.0625rem;
  color: rgba(249,246,240,0.65);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.final-cta__paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
  align-items: stretch;
}
.cta-path {
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  text-align: center;
}
.cta-path--free {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.cta-path--paid {
  background: rgba(192,125,8,0.1);
  border: 1.5px solid rgba(192,125,8,0.3);
}
.cta-path__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light) !important;
  margin-bottom: 0.75rem;
}
.cta-path h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.cta-path > p {
  font-size: 0.875rem;
  color: rgba(249,246,240,0.55);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cta-path__price {
  font-family: var(--font-display);
  font-size: 2.75rem !important;
  font-weight: 800;
  color: var(--amber-light) !important;
  line-height: 1;
  margin-bottom: 1rem;
}

.price-symbol {
  font-size: 0.65em;
  vertical-align: 0.1em;
}

.cta-path--free .form-group input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--cream);
}
.cta-path--free .form-group input::placeholder { color: rgba(249,246,240,0.3); }
.cta-path--free .form-group input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--amber);
}
.cta-path--free .form-privacy { color: rgba(249,246,240,0.35); }

.cta-path__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(249,246,240,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 1rem;
}
.cta-path__divider::before,
.cta-path__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 80px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 2rem;
}
.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--amber-light) !important;
  letter-spacing: -0.01em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer__links a {
  font-size: 0.8125rem;
  color: rgba(249,246,240,0.45);
  transition: color 0.15s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.footer__links a:hover {
  color: rgba(249,246,240,0.8);
  text-decoration-color: rgba(249,246,240,0.3);
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(249,246,240,0.3);
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(249,246,240,0.25);
  line-height: 1.65;
  max-width: 680px;
}
.footer__disclaimer strong {
  font-weight: 600;
  color: rgba(249,246,240,0.35);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* ── Tablet (640px+) ── */
@media (min-width: 640px) {
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .food__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .credibility__grid {
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: start;
  }
  .credibility__divider {
    display: block;
    width: 1px;
    height: 3rem;
    background: rgba(192,125,8,0.25);
    margin: 0 auto;
    justify-self: center;
  }
  .final-cta__paths {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
  .cta-path__divider {
    flex-direction: column;
    width: 60px;
  }
  .cta-path__divider::before,
  .cta-path__divider::after {
    width: 1px;
    height: 40px;
    max-width: unset;
  }
}

/* ── Desktop (900px+) ── */
@media (min-width: 900px) {
  :root {
    --urgency-bar-height: 40px;
  }
  .hero__content {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: row;
    align-items: flex-end;
  }
  .form-row .form-group:first-child { flex: 0 0 160px; }
  .form-row .form-group:nth-child(2) { flex: 1; }
  .form-row .btn { flex-shrink: 0; white-space: nowrap; padding: 0.85rem 1.5rem; }

  .problems__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reframe__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
  .lead-magnet__inner {
    grid-template-columns: auto 1fr;
    gap: 5rem;
  }
  .offer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 760px;
    margin: 0 auto;
  }
  .offer__main {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .guarantee__inner {
    flex-direction: row;
    text-align: left;
  }
}

/* ── Large (1100px+) ── */
@media (min-width: 1100px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Print / Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .urgency-dot { animation: none; }
  html { scroll-behavior: auto; }
}
