/* ============================================================
   CALMA — Design System
   ============================================================ */

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0891b2;
  --teal-700: #0e7490;
  --teal-900: #164e63;

  --red-400:  #f87171;
  --red-500:  #ef4444;
  --red-600:  #dc2626;

  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --emerald-500: #10b981;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.14);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all .2s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--teal-600);
  color: #fff;
  padding: 12px 24px;
}
.btn--primary:hover { background: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  padding: 12px 20px;
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-600); }
.btn--full { width: 100%; justify-content: center; }

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
}
.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn small { font-weight: 400; font-size: .65rem; opacity: .8; }
.store-btn--apple { background: #000; color: #fff; }
.store-btn--apple:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-btn--google { background: var(--gray-800); color: #fff; }
.store-btn--google:hover { background: var(--gray-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-btn--lg { padding: 14px 28px; font-size: 1rem; }
.store-btn--lg svg { width: 26px; height: 26px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.nav--scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-leaf { font-size: 1.4rem; }
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-700);
  letter-spacing: -.5px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color .2s;
}
.nav__links a:hover { color: var(--teal-600); }
.nav__actions { display: flex; gap: 10px; align-items: center; margin-left: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}
.nav__mobile a {
  padding: 10px 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile--open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 50%, #f5f3ff 100%);
}
.hero__bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-100), transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
}
.hero__bg-blob--2 {
  background: radial-gradient(circle, #ede9fe, transparent 70%);
  top: auto; left: auto;
  bottom: -200px; right: -100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.stars { color: #f59e0b; letter-spacing: -1px; }
.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.highlight { color: var(--teal-600); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__testimonial-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  max-width: 420px;
  box-shadow: var(--shadow-sm);
}
.hero__testimonial-inline blockquote {
  font-size: .82rem;
  color: var(--gray-700);
  font-style: italic;
  flex: 1;
}
.hero__testimonial-inline cite {
  font-size: .75rem;
  color: var(--teal-600);
  font-style: normal;
  display: block;
  margin-top: 2px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Phone mockup */
.hero__mockup { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 12px; }
.hero-luna-wrap { width: 175px; flex-shrink: 0; filter: drop-shadow(0 14px 28px rgba(8,145,178,.22)); animation: lunaFloat 3.6s ease-in-out infinite; }
.hero-phone-wrap { position: relative; }
.phone-frame {
  width: 260px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 14px 12px;
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
  z-index: 2;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: #2d2d44;
  border-radius: 3px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #f9fafb;
  border-radius: 26px;
  padding: 14px;
  min-height: 480px;
  overflow: hidden;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.app-header .logo-leaf { font-size: 1rem; }
.app-streak {
  margin-left: auto;
  font-size: .7rem;
  background: #fff7ed;
  color: #ea580c;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.app-greeting { margin-bottom: 10px; }
.mood-bar {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
  border: 1px solid var(--gray-200);
}
.mood-emoji { font-size: 1.2rem; cursor: pointer; transition: transform .2s; opacity: .5; }
.mood-emoji.active, .mood-emoji:hover { opacity: 1; transform: scale(1.2); }

/* Big red button */
.big-red-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ef4444, #b91c1c);
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 8px rgba(239,68,68,.15), 0 4px 20px rgba(239,68,68,.4);
  transition: transform .15s, box-shadow .15s;
}
.big-red-btn:hover, .big-red-btn:active {
  transform: scale(.96);
  box-shadow: 0 0 0 12px rgba(239,68,68,.2), 0 4px 20px rgba(239,68,68,.5);
}
.btn-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(239,68,68,.4);
  animation: pulse 2s infinite;
}
.btn-inner { display: flex; flex-direction: column; align-items: center; color: #fff; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.app-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.module-card {
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .65rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s;
}
.module-card:hover { transform: translateY(-2px); }
.module-card span:first-child { font-size: 1.2rem; }
.module-teal { background: #ccfbf1; color: var(--teal-700); }
.module-violet { background: #ede9fe; color: var(--violet-600); }
.module-amber { background: #fef3c7; color: #92400e; }
.module-rose { background: #fce7f3; color: #9d174d; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  z-index: 3;
  border: 1px solid var(--gray-100);
}
.floating-card--1 { top: 20px; right: -20px; animation: float 3s ease-in-out infinite; }
.floating-card--2 { bottom: 60px; left: -30px; animation: float 3s ease-in-out infinite .5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   PRESS
   ============================================================ */
.press {
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.press__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.press__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.press-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: -.02em;
  font-style: italic;
  transition: color .2s;
  cursor: default;
}
.press-logo:hover { color: var(--gray-500); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-header p { color: var(--gray-500); font-size: 1.05rem; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 100px 0; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-visual { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 18px; }
.feature-luna { width: 128px; flex-shrink: 0; filter: drop-shadow(0 8px 20px rgba(8,145,178,.18)); animation: lunaFloat 3.8s ease-in-out infinite; }
.feature-phone-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.feature-phone {
  width: 220px;
  background: #fff;
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 2;
  min-height: 320px;
}
.feature-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: .5;
  filter: blur(60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-glow--red   { background: var(--red-400); }
.feature-glow--teal  { background: var(--teal-400); }
.feature-glow--violet{ background: var(--violet-500); }
.feature-glow--amber { background: var(--amber-400); }

.feature-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.feature-badge--red    { background: #fee2e2; color: var(--red-600); }
.feature-badge--teal   { background: var(--teal-100); color: var(--teal-700); }
.feature-badge--violet { background: #ede9fe; color: var(--violet-600); }
.feature-badge--amber  { background: #fef3c7; color: #92400e; }

.feature-text h3 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.feature-text p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li { color: var(--gray-700); font-size: .9rem; font-weight: 500; }

/* Feature screens content */
.calmador-screen, .understanding-screen, .lessons-screen, .longterm-screen {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calmador-steps { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.step {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: .65rem;
  color: var(--gray-400);
  border-left: 3px solid var(--gray-200);
}
.step--active {
  background: #fee2e2;
  color: var(--red-600);
  border-left-color: var(--red-500);
  font-weight: 600;
}
.info-card {
  display: flex;
  gap: 8px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 8px;
  border: 1px solid var(--gray-100);
}
.info-icon { font-size: 1.2rem; flex-shrink: 0; }
.lesson-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}
.lesson-item > div { flex: 1; }
.lesson-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
  color: var(--gray-400);
}
.lesson-check--active { background: var(--teal-100); color: var(--teal-600); }
.lesson-item--done .lesson-check { background: var(--emerald-500); color: #fff; }
.lesson-item--active strong { color: var(--teal-700); }
.lesson-bar { height: 4px; background: var(--gray-100); border-radius: 2px; margin-top: 4px; }
.lesson-fill { height: 100%; background: var(--teal-500); border-radius: 2px; transition: width .5s; }
.lesson-item--done .lesson-fill { background: var(--emerald-500); }

.journey-step { display: flex; align-items: flex-start; gap: 10px; }
.journey-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey-dot--done { background: var(--emerald-500); color: #fff; }
.journey-dot--active { background: var(--teal-600); color: #fff; }
.journey-line {
  width: 2px;
  height: 16px;
  background: var(--gray-200);
  margin-left: 11px;
}
.journey-step--done strong { color: var(--gray-400); }
.journey-step--active strong { color: var(--teal-700); }

.big-red-btn--active { width: 100px; height: 100px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card--featured {
  background: linear-gradient(135deg, var(--teal-50), #f5f3ff);
  border-color: var(--teal-100);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.testimonial-header strong { display: block; font-size: .88rem; }
.handle { color: var(--gray-400); font-size: .75rem; }
.t-stars { margin-left: auto; color: #f59e0b; font-size: .85rem; white-space: nowrap; flex-shrink: 0; }
.testimonial-card p { color: var(--gray-600); font-size: .88rem; line-height: 1.65; font-style: italic; }

/* ============================================================
   EXPERTS
   ============================================================ */
.experts { padding: 100px 0; }
.experts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.expert-card {
  display: flex;
  gap: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: box-shadow .2s;
}
.expert-card:hover { box-shadow: var(--shadow-md); }
.expert-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.expert-info strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.expert-info span { color: var(--teal-600); font-size: .78rem; display: block; margin-bottom: 10px; }
.expert-info p { color: var(--gray-500); font-size: .85rem; line-height: 1.65; font-style: italic; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: var(--teal-700);
  color: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat__number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { font-size: .9rem; opacity: .8; }

/* ============================================================
   MASCOT / LUNA  — blob-monster character
   ============================================================ */
.mascot {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa, #f5f3ff);
}
.mascot__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mascot__visual { display: flex; justify-content: center; align-items: center; }

/* Luna SVG wrapper — float + blink animations */
.luna-wrap {
  position: relative;
  width: 260px;
  filter: drop-shadow(0 20px 40px rgba(8,145,178,.22));
  animation: lunaFloat 3.6s ease-in-out infinite;
}
.luna-svg { width: 100%; height: auto; display: block; }

/* Floating bob */
@keyframes lunaFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Star sparkle twinkle */
.luna-star-1 { animation: lunaTwinkle 2.8s ease-in-out infinite; transform-origin: 0 0; }
.luna-star-2 { animation: lunaTwinkle 2.8s ease-in-out infinite .9s; transform-origin: 0 0; }
@keyframes lunaTwinkle {
  0%, 100% { opacity: .5; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1;  transform: scale(1.3) rotate(18deg); }
}

/* Dot pulse */
.luna-dot-1 { animation: lunaPulse 2.4s ease-in-out infinite; }
.luna-dot-2 { animation: lunaPulse 2.4s ease-in-out infinite .6s; }
.luna-dot-3 { animation: lunaPulse 2.4s ease-in-out infinite 1.2s; }
.luna-dot-4 { animation: lunaPulse 2.4s ease-in-out infinite 1.8s; }
@keyframes lunaPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .9; transform: scale(1.4); }
}

/* Panic overlay mini-Luna */
.panic-luna { margin-bottom: 8px; animation: lunaFloat 3s ease-in-out infinite; }

.mascot__text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.mascot__text p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }

/* ============================================================
   PRICING CTA
   ============================================================ */
.pricing-cta { padding: 80px 0; }
.pricing-cta__card {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,.1), transparent 60%);
}
.pricing-cta__badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}
.pricing-cta__card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  max-width: 600px;
  margin: 0 auto 16px;
  position: relative;
}
.pricing-cta__card p { opacity: .8; max-width: 480px; margin: 0 auto 32px; position: relative; }
.pricing-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}
.pricing-cta__link { opacity: .7; font-size: .9rem; color: #fff; transition: opacity .2s; }
.pricing-cta__link:hover { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 80px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; }
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand .logo-text { color: #fff; }
.footer__brand p { font-size: .88rem; line-height: 1.6; max-width: 280px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: var(--gray-400);
}
.footer__social a:hover { background: var(--teal-700); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col h4 { color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 16px; }
.footer__col a { display: block; font-size: .85rem; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-800);
  text-align: center;
  font-size: .8rem;
}

/* ============================================================
   PANIC OVERLAY
   ============================================================ */
.panic-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.panic-overlay--show { opacity: 1; pointer-events: all; }
.panic-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.panic-luna { font-size: 3rem; margin-bottom: 16px; }
.panic-modal h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.breathe-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-700);
  transition: transform 4s ease-in-out, background .5s, border-color .5s;
  background: radial-gradient(circle, var(--teal-100), var(--teal-50));
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__mockup { order: -1; }
  .hero__badge, .hero__headline, .hero__sub { text-align: left; }
  .hero-luna-wrap { width: 120px; }
  .feature-row, .feature-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .feature-row--reverse .feature-visual { order: -1; }
  .feature-luna { width: 90px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .experts__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .mascot__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .pricing-cta__card { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero__headline { font-size: 2rem; }
  .phone-frame { width: 220px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 40px; }
  .features, .testimonials, .experts, .mascot { padding: 60px 0; }
  .floating-card { display: none; }
  .hero__cta { flex-direction: column; }
  .pricing-cta__actions { flex-direction: column; align-items: center; }
}
