/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #070b18;
  --bg-navy:    #0d1426;
  --bg-card:    #111827;
  --bg-card2:   #161f35;
  --accent:     #7c5ff5;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 95, 245, 0.35);
  --gold:       #f5c842;
  --gold-dark:  #d4a800;
  --text:       #e8eaf6;
  --text-muted: #8892b0;
  --text-dim:   #4a5568;
  --border:     rgba(255,255,255,0.08);
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #7c5ff5, #5b3fd8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 95, 245, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 95, 245, 0.6);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn-gold {
  background: linear-gradient(135deg, #f5c842, #e8a800);
  color: #1a1000;
  box-shadow: 0 4px 24px rgba(245, 200, 66, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 200, 66, 0.5);
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(7, 11, 24, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}

.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.9rem; }

.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: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: rgba(7, 11, 24, 0.97);
}
.nav-mobile a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 10px;
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-mobile .btn { margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ============================================================
   STARS BACKGROUND
============================================================ */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.star-dot {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: var(--min-op, 0.2); transform: scale(1); }
  to   { opacity: var(--max-op, 1);   transform: scale(1.3); }
}

.shooting-stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shooting-star {
  position: absolute;
  top: 20%;
  left: -200px;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shoot 6s ease-in-out infinite;
  transform-origin: right center;
}
.shooting-star:nth-child(2) { top: 40%; animation-delay: 2s; animation-duration: 8s; }
.shooting-star:nth-child(3) { top: 60%; animation-delay: 4s; animation-duration: 7s; }

@keyframes shoot {
  0%   { left: -200px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.5; }
  100% { left: 110%; opacity: 0; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1a0f3d 0%, #070b18 70%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124,95,245,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,95,245,0.15);
  border: 1px solid rgba(124,95,245,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero phones */
.hero-phones {
  position: relative;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone { position: absolute; }

.phone-frame {
  width: 220px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1);
  background: #000;
}

.phone-frame img { width: 100%; display: block; }

.phone-front {
  z-index: 2;
  transform: translateX(30px) translateY(20px);
  animation: float1 6s ease-in-out infinite;
}

.phone-back {
  z-index: 1;
  transform: translateX(-60px) translateY(-20px) scale(0.88);
  opacity: 0.7;
  animation: float2 6s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateX(30px) translateY(20px); }
  50% { transform: translateX(30px) translateY(0px); }
}
@keyframes float2 {
  0%, 100% { transform: translateX(-60px) translateY(-20px) scale(0.88); }
  50% { transform: translateX(-60px) translateY(-34px) scale(0.88); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================================
   SECTIONS (shared)
============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { background: var(--bg-navy); }

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:last-child { border-bottom: none; }

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(124,95,245,0.15);
  border: 1px solid rgba(124,95,245,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, rgba(124,95,245,0.4), transparent);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 400px;
}

.step-phone-mini {
  width: 160px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
  background: #000;
  transition: transform 0.3s ease;
}
.step-phone-mini:hover { transform: scale(1.03); }
.step-phone-mini img { width: 100%; }

/* ============================================================
   FEATURES
============================================================ */
.features { background: var(--bg-deep); }

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  border-color: rgba(124,95,245,0.3);
  box-shadow: 0 8px 40px rgba(124,95,245,0.15);
}

.feature-card--large {
  grid-column: span 2;
}

.feature-card--right {
  grid-column: 2 / span 2;
}

.feature-card-inner { position: relative; z-index: 2; }
.feature-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-size: cover;
  background-position: center;
}
.feature-card-bg--ai {
  background: radial-gradient(circle at 70% 50%, var(--accent), transparent 60%);
  opacity: 0.15;
}
.feature-card-bg--family {
  background: radial-gradient(circle at 30% 50%, #f5c842, transparent 60%);
  opacity: 0.12;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(124,95,245,0.15);
  border: 1px solid rgba(124,95,245,0.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
}

.feature-avatars {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  font-size: 1.6rem;
  flex-wrap: wrap;
}

/* ============================================================
   SCREENSHOTS
============================================================ */
.screenshots-section {
  background: var(--bg-navy);
  overflow: hidden;
}

.screenshots-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 20px 0 40px;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 calc(50vw - 120px);
  will-change: transform;
}

.screenshot-item {
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.screenshot-item.active { transform: scale(1.05); }
.screenshot-item:not(.active) { opacity: 0.6; transform: scale(0.93); }

.screenshot-phone-frame {
  width: 240px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  background: #000;
}
.screenshot-phone-frame img { width: 100%; display: block; }

.screenshot-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.screenshots-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 16px;
}

.ss-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ss-btn:hover { background: rgba(124,95,245,0.2); border-color: var(--accent); }

.ss-dots { display: flex; gap: 8px; }
.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
}
.ss-dot.active { background: var(--accent-light); transform: scale(1.3); }

/* ============================================================
   STORIES
============================================================ */
.stories-section { background: var(--bg-deep); }

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

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.story-card.visible { opacity: 1; transform: translateY(0); }
.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--hue), 70%, 60%), hsl(calc(var(--hue) + 40deg), 70%, 70%));
  border-radius: var(--radius) var(--radius) 0 0;
}
.story-card:hover {
  border-color: hsl(var(--hue), 50%, 40%);
  box-shadow: 0 8px 32px hsl(var(--hue), 70%, 20%);
  transform: translateY(-4px);
}

.story-icon { font-size: 2.4rem; margin-bottom: 14px; }

.story-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.story-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.story-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ============================================================
   PRICING
============================================================ */
.pricing { background: var(--bg-navy); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pricing-card--featured {
  background: linear-gradient(160deg, #1a1340 0%, #111827 100%);
  border-color: rgba(124,95,245,0.4);
  box-shadow: 0 0 0 1px rgba(124,95,245,0.2), var(--shadow);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card--yearly { background: linear-gradient(160deg, #1a1500 0%, #111827 100%); border-color: rgba(245,200,66,0.3); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #5b3fd8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-badge--save { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a1000; }

.pricing-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount { font-size: 2.6rem; font-weight: 900; }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 600; }

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.pricing-features li.muted { color: var(--text-muted); }
.pricing-features li.spacer { height: 20px; }

.check { color: var(--accent-light); font-weight: 700; font-size: 1rem; }
.dash { color: var(--text-dim); }

/* Credits Addon */
.credits-addon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.credits-addon-icon { font-size: 2.5rem; }

.credits-addon-text h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.credits-addon-text p { color: var(--text-muted); font-size: 0.9rem; }

.credits-packages {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.credit-pkg {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transition: var(--transition);
}
.credit-pkg:hover { border-color: var(--accent); }

.credit-pkg--popular {
  border-color: rgba(124,95,245,0.4);
  background: rgba(124,95,245,0.08);
}

.credit-pkg-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  color: #fff;
  white-space: nowrap;
}

.credit-pkg-amount { font-size: 0.9rem; font-weight: 700; }
.credit-pkg-price { font-size: 1.1rem; font-weight: 900; color: var(--text); }
.credit-pkg-save { font-size: 0.75rem; font-weight: 700; color: var(--accent-light); }

/* ============================================================
   QUOTE
============================================================ */
.quote-section {
  background: var(--bg-deep);
  padding: 80px 0;
}

.quote-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 48px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}

.quote-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.quote-author {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 700;
}

/* ============================================================
   DOWNLOAD / CTA
============================================================ */
.download-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, #1a0f3d 0%, #070b18 70%);
  overflow: hidden;
  text-align: center;
}

.download-section .stars { opacity: 0.6; }

.download-content { position: relative; z-index: 2; }

.download-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  margin: 0 auto 28px;
  box-shadow: 0 0 40px rgba(124,95,245,0.4);
}

.download-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.download-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.download-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.store-btn-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}

.store-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-navy);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
}

.footer-links-group h5 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-love { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--large { grid-column: span 2; }
  .feature-card--right { grid-column: 1 / span 2; }

  .stories-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .credits-addon { grid-template-columns: 1fr; text-align: center; }
  .credits-addon-icon { display: none; }
  .credits-packages { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px 80px;
    gap: 40px;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }

  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-phones {
    height: 360px;
    order: -1;
  }
  .phone-frame { width: 160px; }

  .step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .step-phone-mini {
    grid-column: 2;
    width: 120px;
  }
  .step-visual { align-items: flex-start; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large, .feature-card--right { grid-column: 1; }

  .stories-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .quote-box { padding: 40px 24px; }
  .quote-box::before { font-size: 6rem; left: 24px; }

  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-large { width: 100%; justify-content: center; }
  .download-btns { flex-direction: column; align-items: center; }
  .pricing-grid { max-width: 100%; }
}
