@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg-primary:    #FFFFFF;   /* Pure white editorial canvas */
  --bg-secondary:  #F7F5F2;   /* Barely-there warm tint — alternating sections */
  --bg-accent:     #EDE9F8;   /* Soft purple blush — guarantee band */
  --brand:         #6A5DB0;   /* Brand purple — nav, links, brand accents */
  --brand-dark:    #4A3D90;
  --brand-light:   #EDE9F8;
  --dark:          #0D0B1A;   /* Deep near-black — footer, candle upsell band only */
  --dark-mid:      #1A1626;
  --bg:            var(--bg-primary);
  --bg-soft:       var(--bg-secondary);
  --text:          #18161F;   /* Near-black with purple tint — editorial crispness */
  --muted:         #6B6880;
  --cta:           #D4754E;   /* Terracotta — EXCLUSIVE to buy/add-to-cart buttons */
  --cta-hover:     #BE5E38;
  --candle:        #C17A3F;   /* Amber — candle page only */
  --star:          #F2C94C;
  --white:         #FFFFFF;
  --border:        rgba(24, 22, 31, 0.08);  /* Cooler purple-tinted dividers */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.trust-strip {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0; margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Navigation ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
#nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(24, 22, 31, 0.08);
  box-shadow: 0 4px 24px rgba(24, 22, 31, 0.05);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
#nav.nav-scrolled .nav-logo { color: var(--brand); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(24, 22, 31, 0.5);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
#nav.nav-scrolled .nav-links a { color: rgba(24, 22, 31, 0.55); }
#nav.nav-scrolled .nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
#nav-cta {
  transition: opacity 0.3s ease;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: scale(1.02); }
.btn-cta {
  background: var(--cta);
  color: #FFFFFF;
}
.btn-cta:hover { background: var(--cta-hover); box-shadow: 0 8px 24px rgba(212, 117, 78, 0.35); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(24, 22, 31, 0.22);
}
.btn-outline:hover { background: var(--text); color: #FFFFFF; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(106, 93, 176, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px 0 0 24px;
}
.hero-image-placeholder {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  height: 85%;
  background: var(--bg-secondary);
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(24, 22, 31, 0.15);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brand);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--brand);
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stars {
  display: flex;
  gap: 3px;
}
.hero-stars span { color: var(--star); font-size: 15px; }
.hero-trust-text {
  font-size: 13px;
  color: var(--muted);
}
.hero-trust-text strong { color: var(--text); font-weight: 600; }

/* ── Trust bar ───────────────────────────────────────────────── */
#trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item-icon {
  font-size: 18px;
  opacity: 0.6;
}
.trust-item-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Sections ────────────────────────────────────────────────── */
.section {
  padding: 140px 80px;
}
.section-sm { padding: 96px 80px; }
.section-dark { background: var(--dark); color: #FFFFFF; }
.section-soft { background: var(--bg-soft); }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
}
.section-dark .section-label { color: rgba(255,255,255,0.4); }
.section-dark .section-label::before { background: rgba(255,255,255,0.25); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-dark .section-title { color: #FFFFFF; }

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* ── Problem/Solution ────────────────────────────────────────── */
#problem {
  background: var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--brand-light);
}
.problem-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.problem-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}
.problem-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(44,37,32,0.12);
}
.problem-badge-title { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.problem-badge-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.02em;
}

/* ── Features ────────────────────────────────────────────────── */
#features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.feature-card {
  background: var(--bg);
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--bg-secondary); }
.feature-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.06;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Products showcase ───────────────────────────────────────── */
#products { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  group: true;
}
.product-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-bg { transform: scale(1.04); }
.product-card-bg-pillow {
  background: linear-gradient(160deg, var(--brand-light) 0%, rgba(106,93,176,0.4) 100%);
}
.product-card-bg-candle {
  background: linear-gradient(160deg, #1a0f05 0%, #3d1f00 100%);
}
.product-card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.25;
}
.product-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(to top, rgba(44,37,32,0.75) 0%, transparent 50%);
}
.product-card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(44,37,32,0.12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,37,32,0.7);
  margin-bottom: 12px;
  border: 1px solid rgba(44,37,32,0.15);
  backdrop-filter: blur(8px);
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 14px;
  color: rgba(44,37,32,0.55);
  margin-bottom: 20px;
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.product-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(44,37,32,0.4);
  font-family: var(--font-body);
}

/* ── Horizontal scroll ───────────────────────────────────────── */
#horizontal-section {
  background: var(--dark);
  overflow: hidden;
  height: 100vh;
}
.h-header {
  position: absolute;
  top: 48px;
  left: 48px;
  z-index: 2;
}
.h-track {
  display: flex;
  gap: 24px;
  padding: 0 48px;
  align-items: center;
  height: 100%;
  will-change: transform;
}
.h-card {
  flex-shrink: 0;
  width: 380px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--dark-mid);
  border: 1px solid rgba(44,37,32,0.08);
}
.h-card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.15;
}
.h-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(44,37,32,0.9) 0%, transparent 100%);
}
.h-card-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.h-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.h-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(44,37,32,0.45);
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-dark {
  border-color: rgba(44,37,32,0.08);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.marquee-star { color: var(--star); font-size: 14px; }
.marquee-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
}
.marquee-sep {
  color: var(--border);
  font-size: 18px;
}

/* ── Reviews ─────────────────────────────────────────────────── */
#reviews { background: var(--bg); }
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.reviews-aggregate-score {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.reviews-aggregate-right { display: flex; flex-direction: column; gap: 4px; }
.reviews-stars { display: flex; gap: 4px; }
.reviews-stars span { color: var(--star); font-size: 18px; }
.reviews-count { font-size: 13px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(44, 37, 32, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: 0 12px 36px rgba(44,37,32,0.08);
  transform: translateY(-4px);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars span { color: var(--star); font-size: 14px; }
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
}
.review-name { font-size: 13px; font-weight: 600; color: var(--text); }
.review-date { font-size: 12px; color: var(--muted); }
.review-verified {
  margin-left: auto;
  font-size: 11px;
  color: #16a34a;
  font-weight: 500;
}

/* ── Bundle pricing ──────────────────────────────────────────── */
#bundles { background: var(--bg); }
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.bundle-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: background 0.3s;
}
.bundle-card:last-child { border-right: none; }
.bundle-card:hover { background: var(--bg-secondary); }
.bundle-card.featured {
  background: var(--bg-accent);
  border-color: rgba(106, 93, 176, 0.25);
}
.bundle-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--cta);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.bundle-qty {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.bundle-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.bundle-price-main {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.04em;
}
.bundle-price-old {
  font-size: 16px;
  color: var(--muted);
  opacity: 0.6;
  text-decoration: line-through;
}
.bundle-saving {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cta);
  background: rgba(212, 117, 78, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.bundle-perks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.bundle-perks li::before {
  content: '-';
  color: var(--muted);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Guarantee ───────────────────────────────────────────────── */
#guarantee {
  background: var(--bg-accent);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.guarantee-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.guarantee-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.guarantee-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Final CTA ───────────────────────────────────────────────── */
#final-cta {
  background: var(--bg);
  text-align: center;
  padding: 140px 80px;
  border-top: 1px solid var(--border);
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.0;
}
.final-cta-title em {
  font-style: italic;
  color: var(--brand);
}
.final-cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ── Footer ──────────────────────────────────────────────────── */


.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.3);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

/* ── Mobile sticky bar ───────────────────────────────────────── */
#mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(24, 22, 31, 0.08);
  gap: 12px;
  align-items: center;
}
.mobile-cta-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}
.mobile-cta-price small {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 100px 48px; }
  .section-sm { padding: 72px 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { border-right: none; border-top: 1px solid var(--border); }
  .bundles-grid { grid-template-columns: 1fr; }
  .bundle-card { border-right: none; border-bottom: 1px solid var(--border); }
  .bundle-card:last-child { border-bottom: none; }


}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .section-sm { padding: 56px 20px; }
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 20px; }
  .hero-image-placeholder { width: 100%; border-radius: 0; }
  .hero-title { font-size: 42px; }
  .problem-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .story-stat { flex-direction: column; gap: 24px; }
  .rv-score-wrap { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .rv-score-divider { display: none; }


  #trust-bar { gap: 24px; padding: 16px 20px; overflow-x: auto; justify-content: flex-start; }
  #mobile-cta { display: flex; }
  .final-cta-actions { flex-direction: column; }
}
