/* ===================================
   SAKURA — Domina el Sound Design
   Cherry Blossom Aesthetic
   =================================== */

/* --- Palette --- */
:root {
  --sakura-50: #fef7f7;
  --sakura-100: #fdeef0;
  --sakura-200: #f9d4da;
  --sakura-300: #f2a8b4;
  --sakura-400: #e8839a;
  --sakura-500: #d4637e;
  --sakura-600: #b84a6a;
  --sakura-700: #8c3150;

  --warm-50: #fdfaf5;
  --warm-100: #faf3e8;
  --warm-200: #f3e4cc;
  --warm-300: #e8cda5;
  --warm-400: #d4a76a;
  --warm-500: #b8864a;
  --warm-600: #8c6435;

  --bark-700: #5c3d2e;
  --bark-800: #3d2820;
  --bark-900: #2a1a14;

  --text-primary: #2a1a14;
  --text-secondary: #5c3d2e;
  --text-muted: #8c6b5a;
  --text-light: #b8967e;

  --bg-body: #fdfaf5;
  --bg-section: #faf3e8;
  --bg-card: #ffffff;
  --bg-dark: #2a1a14;

  --border-light: rgba(212, 167, 106, 0.2);
  --border-medium: rgba(212, 167, 106, 0.35);

  --shadow-sm: 0 2px 8px rgba(42, 26, 20, 0.06);
  --shadow-md: 0 4px 20px rgba(42, 26, 20, 0.08);
  --shadow-lg: 0 8px 40px rgba(42, 26, 20, 0.12);
  --shadow-glow: 0 0 30px rgba(242, 168, 180, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sakura-500);
  margin-bottom: 12px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--sakura-400), var(--sakura-600), var(--warm-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   COUNTDOWN BAR
   =================================== */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(135deg, var(--bark-800), var(--bark-900));
  color: white;
  padding: 10px 0;
}

.countdown-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown-bar-text {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.countdown-bar-timer {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.countdown-bar-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sakura-300);
  min-width: 28px;
  text-align: center;
}

.countdown-bar-label {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-right: 4px;
}

.countdown-bar-sep {
  color: var(--sakura-400);
  font-weight: 700;
  opacity: 0.5;
}

.countdown-bar-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  background: var(--sakura-500);
  color: white;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.countdown-bar-btn:hover {
  background: var(--sakura-400);
}

.countdown-bar.expired {
  display: none;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(253, 250, 245, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(253, 250, 245, 0.95);
  box-shadow: 0 1px 20px rgba(42, 26, 20, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bark-800);
  letter-spacing: 0.08em;
}

.logo-icon {
  font-size: 1.4rem;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--sakura-500);
  color: white;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--sakura-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 99, 126, 0.3);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sakura-500), var(--sakura-600));
  color: white;
  box-shadow: 0 4px 20px rgba(212, 99, 126, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 99, 126, 0.4);
  background: linear-gradient(135deg, var(--sakura-400), var(--sakura-500));
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-100) 0%, var(--bg-body) 100%);
}

/* Floating petals */
.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(ellipse at 30% 30%, var(--sakura-200), var(--sakura-300));
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: petalFall linear infinite;
}

.p1 { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 14px; height: 14px; }
.p2 { left: 25%; animation-duration: 15s; animation-delay: 2s; width: 10px; height: 10px; }
.p3 { left: 40%; animation-duration: 11s; animation-delay: 4s; width: 18px; height: 18px; }
.p4 { left: 55%; animation-duration: 14s; animation-delay: 1s; width: 12px; height: 12px; }
.p5 { left: 70%; animation-duration: 13s; animation-delay: 3s; width: 16px; height: 16px; }
.p6 { left: 85%; animation-duration: 16s; animation-delay: 5s; width: 11px; height: 11px; }
.p7 { left: 15%; animation-duration: 10s; animation-delay: 7s; width: 13px; height: 13px; }
.p8 { left: 60%; animation-duration: 14s; animation-delay: 6s; width: 9px; height: 9px; }

@keyframes petalFall {
  0% {
    transform: translateY(-20px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(calc(100vh + 50px)) rotate(360deg) translateX(80px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(242, 168, 180, 0.15);
  color: var(--sakura-600);
  border: 1px solid rgba(242, 168, 180, 0.3);
  margin-bottom: 28px;
}

.badge-blossom {
  font-size: 1rem;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--bark-900);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sakura-500);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-medium);
}

/* ===================================
   PILLARS
   =================================== */
.pillars {
  padding: 100px 0;
  background: var(--bg-body);
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sakura-200);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--sakura-400);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pillar-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================
   PROBLEM
   =================================== */
.problem {
  padding: 100px 0;
  background: var(--bg-section);
}

.problem-copy {
  max-width: 700px;
  margin-bottom: 48px;
}

.problem-copy p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.problem-quotes {
  padding: 20px 24px;
  border-left: 3px solid var(--sakura-300);
  background: rgba(242, 168, 180, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
  margin: 20px 0 !important;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.problem-item:hover {
  box-shadow: var(--shadow-md);
}

.problem-x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 99, 126, 0.1);
  color: var(--sakura-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.problem-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.problem-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   MID CTA
   =================================== */
.mid-cta {
  padding: 48px 0;
  text-align: center;
  background: var(--bg-body);
}

/* ===================================
   FOR YOU
   =================================== */
.for-you {
  padding: 100px 0;
  background: var(--bg-body);
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.for-you-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.for-you-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sakura-200);
}

.for-you-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.for-you-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.for-you-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-section);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.how-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.how-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sakura-300), var(--sakura-500));
  color: white;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(212, 99, 126, 0.25);
}

.how-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.how-summary {
  text-align: center;
  padding: 28px 32px;
  background: rgba(242, 168, 180, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 168, 180, 0.2);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   INCLUDES
   =================================== */
.includes {
  padding: 100px 0;
  background: var(--bg-body);
}

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

.include-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.include-card.featured {
  border-color: var(--sakura-300);
  background: linear-gradient(135deg, rgba(242, 168, 180, 0.05), rgba(232, 131, 154, 0.08));
  box-shadow: var(--shadow-glow);
}

.include-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.include-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.include-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================
   SOCIAL PROOF
   =================================== */
.social-proof {
  padding: 100px 0;
  background: var(--bg-section);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sakura-200);
}

.proof-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.proof-info {
  padding: 16px;
}

.proof-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.proof-info audio {
  width: 100%;
  height: 36px;
  border-radius: 8px;
}

/* Style audio player for webkit browsers */
.proof-info audio::-webkit-media-controls-panel {
  background: var(--warm-100);
}

/* ===================================
   VISION
   =================================== */
.vision {
  padding: 100px 0;
  background: var(--bg-section);
}

.vision-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.vision-text h2 {
  margin-bottom: 24px;
}

.vision-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.vision-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 24px;
  background: rgba(242, 168, 180, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 168, 180, 0.2);
  margin-top: 32px;
}

.vision-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.vision-highlight p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ===================================
   PRICING
   =================================== */
.pricing {
  padding: 100px 0;
  background: var(--bg-body);
}

.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--sakura-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: linear-gradient(135deg, var(--sakura-500), var(--sakura-600));
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-muted);
}

.pricing-stack {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-stack li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.pricing-stack li:last-child { border-bottom: none; }

.pricing-stack svg {
  flex-shrink: 0;
  color: var(--sakura-500);
  margin-top: 2px;
}

.stack-item { flex: 1; }

.pricing-price {
  text-align: center;
  padding: 32px 0;
  border-top: 2px solid var(--border-light);
  margin-bottom: 24px;
}

.price-old {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-old s { color: var(--text-light); }

.price-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sakura-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--bark-900);
  line-height: 1;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bark-800);
}

.price-quip {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

.price-save {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: rgba(242, 168, 180, 0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sakura-600);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-guarantee svg { color: var(--warm-400); }

/* ===================================
   GUARANTEE
   =================================== */
.guarantee {
  padding: 80px 0;
  background: var(--bg-section);
}

.guarantee-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.guarantee-icon {
  color: var(--sakura-500);
  margin-bottom: 20px;
}

.guarantee-card h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.guarantee-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.guarantee-bold {
  font-weight: 700;
  color: var(--bark-900) !important;
  font-size: 1.1rem !important;
  margin-top: 20px !important;
}

/* ===================================
   FAQ
   =================================== */
.faq {
  padding: 100px 0;
  background: var(--bg-body);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--sakura-500); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-body), var(--warm-100));
}

.final-cta-box {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--bg-card);
  border: 2px solid var(--sakura-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}

.final-cta-blossom {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.final-cta-box h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.final-cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.final-old-price {
  font-size: 1.3rem;
  color: var(--text-light);
}

.final-current-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bark-900);
}

.final-price-note {
  font-size: 0.85rem;
  color: var(--sakura-600);
  font-weight: 600;
  width: 100%;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--warm-100);
  border-top: 1px solid var(--border-light);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .social-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr; }
  .for-you-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .includes-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: 1fr; }

  .hero { padding: 160px 0 70px; }
  .hero-stats { gap: 20px; }
  .stat-divider { height: 30px; }

  .pricing-card { padding: 40px 24px; }
  .final-cta-box { padding: 40px 24px; }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  section { padding: 70px 0; }
  .pillars, .problem, .for-you, .how-it-works, .includes, .vision, .pricing, .faq, .final-cta {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .price-amount { font-size: 3rem; }
  .final-current-price { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}
