@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:    #FAF6F0; /* Soft warm sand/linen off-white */
  --bg-secondary:  #F3EDE4; /* Slightly darker warm sand for cards/story */
  --brand:         #7B6EC8; /* Brand purple */
  --brand-dark:    #6459A8;
  --brand-light:   #F0EEFB; /* Soft purple tint */
  --dark:          var(--bg-primary);
  --dark-mid:      var(--bg-secondary);
  --bg:            var(--bg-primary);
  --bg-soft:       var(--bg-secondary);
  --text:          #2C2520; /* Deep cocoa/espresso primary text */
  --muted:         #7C7066; /* Warm muted taupe */
  --cta:           #7B6EC8; /* Brand purple */
  --cta-hover:     #6459A8;
  --candle:        #D59B6C; /* Warm gold/amber */
  --star:          #F2C94C;
  --white:         #FAFAF7; /* Clean off-white for inverse buttons */
  --border:        rgba(44, 37, 32, 0.08);

  --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; }
html { scroll-behavior: smooth; }
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; }

/* ── Loader ──────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  padding: 48px 56px;
}
#loader-count {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.15;
}
.loader-label {
  position: absolute;
  top: 48px;
  left: 56px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44,37,32,0.4);
}
.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ── 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;
}
#nav.nav-scrolled {
  background: rgba(44, 37, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.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(44,37,32,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.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: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  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: var(--white);
}
.btn-cta:hover { background: var(--cta-hover); box-shadow: 0 8px 24px rgba(123,110,200,0.35); }
.btn-ghost {
  background: rgba(44,37,32,0.1);
  color: var(--white);
  border: 1px solid rgba(44,37,32,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(44,37,32,0.18); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 15px; border-radius: 14px; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(106,93,176,0.25) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 30% 80%, rgba(123,110,200,0.1) 0%, transparent 60%);
}
.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;
  opacity: 0.85;
}
.hero-image-placeholder {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  height: 85%;
  background: linear-gradient(135deg, rgba(106,93,176,0.3) 0%, rgba(44,37,32,0.8) 100%);
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44,37,32,0.2);
  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(--cta);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cta);
}
.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(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: rgba(44,37,32,0.55);
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(44,37,32,0.6);
  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: rgba(44,37,32,0.5);
}
.hero-trust-text strong { color: rgba(44,37,32,0.85); font-weight: 600; }

/* ── Trust bar ───────────────────────────────────────────────── */
#trust-bar {
  background: var(--dark-mid);
  border-top: 1px solid rgba(44,37,32,0.06);
  border-bottom: 1px solid rgba(44,37,32,0.06);
  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.7;
}
.trust-item-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(44,37,32,0.6);
  letter-spacing: 0.03em;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(44,37,32,0.1);
  flex-shrink: 0;
}

/* ── Sections ────────────────────────────────────────────────── */
.section {
  padding: 120px 48px;
}
.section-sm { padding: 80px 48px; }
.section-dark { background: var(--dark); color: var(--white); }
.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: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--brand);
}
.section-dark .section-label { color: rgba(44,37,32,0.5); }
.section-dark .section-label::before { background: rgba(44,37,32,0.3); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 500px;
}
.section-dark .section-sub { color: rgba(44,37,32,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(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.feature-card {
  background: rgba(44,37,32,0.04);
  padding: 40px 32px;
  border: 1px solid rgba(44,37,32,0.06);
  transition: background 0.3s;
}
.feature-card:hover { background: rgba(44,37,32,0.07); }
.feature-card:first-child { border-radius: 20px 0 0 20px; }
.feature-card:last-child { border-radius: 0 20px 20px 0; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(106,93,176,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(44,37,32,0.45);
}

/* ── 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(--dark); }
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.bundle-card {
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(44,37,32,0.08);
  background: rgba(44,37,32,0.03);
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.bundle-card:hover {
  border-color: rgba(44,37,32,0.16);
  background: rgba(44,37,32,0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,37,32,0.06);
}
.bundle-card.featured {
  border-color: var(--cta);
  background: rgba(123,110,200,0.08);
}
.bundle-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.bundle-qty {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44,37,32,0.4);
  margin-bottom: 12px;
}
.bundle-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  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: 36px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.03em;
}
.bundle-price-old {
  font-size: 16px;
  color: rgba(44,37,32,0.3);
  text-decoration: line-through;
}
.bundle-saving {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cta);
  background: rgba(123,110,200,0.15);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.bundle-perks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(44,37,32,0.55);
}
.bundle-perks li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Guarantee ───────────────────────────────────────────────── */
#guarantee {
  background: var(--brand-light);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  background: rgba(44, 37, 32, 0.04);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(255, 133, 57, 0.06);
}
.guarantee-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
}
.guarantee-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Final CTA ───────────────────────────────────────────────── */
#final-cta {
  background: var(--dark);
  text-align: center;
  padding: 120px 48px;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.final-cta-sub {
  font-size: 17px;
  color: rgba(44,37,32,0.45);
  margin-bottom: 40px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #050412;
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(44,37,32,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(44,37,32,0.35);
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44,37,32,0.3);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(44,37,32,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(44,37,32,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(44,37,32,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(44,37,32,0.25);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(44,37,32,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(44,37,32,0.4);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(44,37,32,0.12); color: var(--white); }

/* ── Mobile sticky bar ───────────────────────────────────────── */
#mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(44,37,32,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(44,37,32,0.08);
  gap: 12px;
  align-items: center;
}
.mobile-cta-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.mobile-cta-price small {
  font-size: 12px;
  color: rgba(44,37,32,0.4);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:first-child { border-radius: 20px 20px 0 0; }
  .feature-card:last-child { border-radius: 0 0 20px 20px; }
  .bundles-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@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; opacity: 0.3; }
  .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; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #trust-bar { gap: 24px; padding: 16px 20px; overflow-x: auto; justify-content: flex-start; }
  #mobile-cta { display: flex; }
  .final-cta-actions { flex-direction: column; }
}
