/* ============================================================
   WEDDING DAY — WEB PRESENTATION
   Color palette: Blush Romance
   ============================================================ */

:root {
  --blush:       #D4A5A0;
  --sage:        #A9B59A;
  --blush-soft:  #FCEDEA;
  --sage-soft:   #EDF2E9;
  --page-bg:     #FDF6F4;
  --card-bg:     #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-muted:  rgba(26,26,46,.55);
  --divider:     rgba(26,26,46,.08);
  --gradient:    linear-gradient(135deg, #D4A5A0 0%, #A9B59A 100%);
  --gradient-h:  linear-gradient(90deg,  #D4A5A0 0%, #A9B59A 100%);
  --radius-card: 20px;
  --shadow-card: 0 4px 24px rgba(212,165,160,.18);
  --shadow-lift: 0 12px 48px rgba(212,165,160,.24);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }
img { display: block; max-width: 100%; }

/* ---- UTILITY ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-bg {
  background: var(--gradient);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 12px;
}
.section { padding: 96px 0 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(253,246,244,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--divider);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}
.nav-logo-heart {
  color: var(--blush);
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .875rem !important;
  transition: opacity .2s, transform .2s !important;
  box-shadow: 0 4px 16px rgba(212,165,160,.35);
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 64px 80px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-gradient {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,165,160,.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(169,181,154,.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-petals {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.petal {
  position: absolute;
  color: var(--blush);
  opacity: .15;
  font-size: 2rem;
  animation: floatPetal 8s ease-in-out infinite;
}
.petal-1 { top: 15%; left: 5%;  animation-delay: 0s;    font-size: 1.5rem; }
.petal-2 { top: 25%; right: 8%; animation-delay: 1.5s;  font-size: 1rem;   color: var(--sage); }
.petal-3 { top: 60%; left: 2%;  animation-delay: 3s;    font-size: 2rem;   }
.petal-4 { top: 70%; right: 5%; animation-delay: 4.5s;  font-size: 1.2rem; color: var(--sage); }
.petal-5 { top: 40%; left: 45%; animation-delay: 2s;    font-size: .8rem;  }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(12deg); }
}

.hero-content { flex: 1; max-width: 560px; }
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title em {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 6px 24px rgba(212,165,160,.4);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(212,165,160,.5); }
.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--divider);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.btn-secondary:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.hero-note {
  font-size: .8rem;
  color: var(--text-muted);
}

/* PHONE MOCKUP */
.hero-phone-wrap { flex-shrink: 0; position: relative; }
.phone-mockup {
  width: 300px;
  background: #0D0D0D;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-14px) rotate(-0.5deg); }
}
.phone-screen {
  background: var(--page-bg);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: var(--gradient-h);
  padding: 24px 16px 20px;
  text-align: center;
  color: white;
}
.phone-heart { font-size: 1.1rem; display: block; margin-bottom: 4px; }
.phone-couple { font-family: var(--font-serif); font-size: .95rem; font-weight: 700; }
.phone-date { font-size: .7rem; opacity: .85; margin-top: 2px; }
.phone-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--page-bg);
}
.phone-card {
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 2px 12px rgba(212,165,160,.12);
}
.countdown-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
}
.countdown-icon { font-size: 1.1rem; }
.countdown-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.countdown-label { font-size: .7rem; color: var(--text-muted); line-height: 1.3; }
.progress-card { display: flex; flex-direction: column; gap: 6px; }
.progress-header { display: flex; justify-content: space-between; align-items: center; }
.progress-header span:first-child { font-size: .75rem; font-weight: 600; color: var(--text-dark); }
.progress-pct { font-size: .75rem; font-weight: 700; color: var(--blush); }
.progress-bar-track { height: 6px; background: #F0E8E6; border-radius: 3px; overflow: hidden; }
.progress-bar-fill {
  height: 100%;
  background: var(--gradient-h);
  border-radius: 3px;
  transition: width 1s ease;
}
.progress-footer { display: flex; justify-content: space-between; }
.progress-footer span { font-size: .65rem; color: var(--text-muted); }
.phone-stats-row { display: flex; gap: 10px; }
.phone-stat {
  flex: 1;
  background: white;
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(212,165,160,.12);
}
.phone-stat-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.phone-stat-num.blush { color: var(--blush); }
.phone-stat-num.sage  { color: var(--sage);  }
.phone-stat-lbl { font-size: .65rem; color: var(--text-muted); margin-top: 2px; }
.tasks-card { display: flex; flex-direction: column; gap: 8px; }
.tasks-title { font-size: .75rem; font-weight: 700; color: var(--text-dark); }
.task-row { display: flex; align-items: flex-start; gap: 8px; }
.task-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.task-dot.blush-dot { background: var(--blush); }
.task-dot.sage-dot  { background: var(--sage); }
.task-name { font-size: .72rem; font-weight: 600; color: var(--text-dark); }
.task-due  { font-size: .64rem; color: var(--text-muted); }
.phone-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 12px;
  background: white;
  border-top: 1px solid var(--divider);
}
.tab-item { font-size: 1rem; opacity: .35; cursor: pointer; transition: opacity .2s; }
.tab-item.active { opacity: 1; }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.social-strip {
  background: white;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 24px 0;
  margin-top: 0;
}
.social-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 2px;
}
.social-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}
.social-label { font-size: .78rem; color: var(--text-muted); }
.social-divider {
  width: 1px;
  height: 36px;
  background: var(--divider);
}

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.feature-section {
  padding: 96px 0;
}
.feature-section-alt {
  background: white;
}
.feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

/* FEATURE PHONE */
.feature-phone-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.feature-phone {
  width: 260px;
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
  position: relative;
}
.fp-header {
  padding: 20px 16px 14px;
  color: white;
}
.fp-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; }
.fp-sub   { font-size: .7rem; opacity: .85; margin-top: 1px; }
.fp-body  { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 10px; background: var(--page-bg); }

/* Task list in feature phone */
.fp-task {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
}
.fp-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.fp-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--blush);
  flex-shrink: 0;
}
.fp-task.done .fp-task-name { color: var(--text-muted); text-decoration: line-through; }
.fp-task-name { font-size: .75rem; font-weight: 600; color: var(--text-dark); }
.fp-task-date { font-size: .65rem; color: var(--text-muted); }

/* Budget phone */
.budget-overview { display: flex; justify-content: center; padding: 8px 0; }
.budget-ring {
  position: relative;
  width: 90px; height: 90px;
}
.budget-ring svg { width: 100%; height: 100%; }
.budget-ring-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.budget-pct { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.budget-pct-label { font-size: .55rem; color: var(--text-muted); }
.budget-items { display: flex; flex-direction: column; gap: 6px; }
.budget-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: .72rem;
}
.bi-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bi-name { flex: 1; color: var(--text-dark); font-weight: 500; }
.bi-amount { color: var(--text-muted); }

/* Guests phone */
.guest-stats-row {
  display: flex;
  gap: 6px;
}
.guest-stat {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}
.gs-num { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; line-height: 1; }
.gs-label { font-size: .6rem; color: var(--text-muted); margin-top: 2px; }
.guest-list { display: flex; flex-direction: column; gap: 6px; }
.guest-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 12px;
  padding: 8px 10px;
}
.guest-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700;
  flex-shrink: 0;
}
.guest-name { font-size: .72rem; font-weight: 600; color: var(--text-dark); }
.guest-detail { font-size: .62rem; color: var(--text-muted); }
.guest-badge {
  margin-left: auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700;
  flex-shrink: 0;
}
.guest-badge.confirmed { background: var(--blush-soft); color: var(--blush); }
.guest-badge.pending   { background: #FFF9E6; color: #C09040; }
.qr-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: white;
  border-radius: 12px;
  font-size: .68rem;
  color: var(--text-muted);
}
.qr-icon { font-size: .9rem; }

/* Blob decorations */
.feature-visual { position: relative; }
.feature-blob {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.blob-blush {
  background: radial-gradient(circle, rgba(212,165,160,.2) 0%, transparent 70%);
  top: -40px; right: -60px;
}
.blob-sage {
  background: radial-gradient(circle, rgba(169,181,154,.2) 0%, transparent 70%);
  bottom: -40px; left: -60px;
}
.blob-soft {
  background: radial-gradient(circle, rgba(252,237,234,.5) 0%, transparent 70%);
  top: -20px; left: -40px;
}

/* FEATURE CONTENT */
.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.planning-badge { background: var(--blush-soft); color: var(--blush); }
.budget-badge   { background: #EDF2E9;           color: #7A9469; }
.guests-badge   { background: var(--blush-soft); color: var(--blush); }
.themes-badge   { background: #EDF2E9;           color: #7A9469; }

.feature-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.feature-title em {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.feature-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list strong { font-weight: 600; }

/* THEME SWATCHES */
.theme-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.theme-swatch {
  padding: 10px 12px;
  background: white;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.theme-swatch:hover, .theme-swatch.active {
  border-color: var(--blush);
  box-shadow: 0 4px 16px rgba(212,165,160,.25);
  transform: translateY(-2px);
}
.swatch-colors {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.swatch-colors span {
  height: 18px;
  flex: 1;
  border-radius: 6px;
}
.swatch-name { font-size: .7rem; font-weight: 600; color: var(--text-dark); }
.premium-tag { color: var(--blush); font-size: .6rem; }
.themes-note { font-size: .75rem; color: var(--text-muted); }

/* THEME PREVIEW PHONE */
.theme-preview-wrap { display: flex; justify-content: center; }
.theme-phone {
  width: 220px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  overflow: hidden;
  transition: all .4s ease;
}
.tp-header {
  padding: 18px 14px 14px;
  text-align: center;
  color: white;
  font-size: .85rem;
  background: var(--gradient);
  transition: background .4s;
}
.tp-header span { display: block; margin-bottom: 4px; }
.tp-name { font-family: var(--font-serif); font-size: .9rem; font-weight: 700; }
.tp-body { padding: 12px; background: var(--page-bg); display: flex; flex-direction: column; gap: 8px; }
.tp-card { background: white; border-radius: 14px; padding: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.tp-countdown {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
.tp-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--text-dark); }
.tp-unit { font-size: .65rem; color: var(--text-muted); }
.tp-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.tp-pct { color: var(--blush); transition: color .4s; }
.tp-track { height: 6px; background: #F0E8E6; border-radius: 3px; overflow: hidden; }
.tp-fill { height: 100%; background: var(--gradient); border-radius: 3px; transition: background .4s; }
.tp-stats { display: flex; gap: 8px; }
.tp-stat {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.tp-stat-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blush);
  transition: color .4s;
}
.tp-stat-lbl { font-size: .6rem; color: var(--text-muted); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 96px 0; background: var(--blush-soft); }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,165,160,.25);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--blush);
  opacity: .4;
  flex-shrink: 0;
  padding: 0 4px;
  margin-bottom: 60px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid-section { padding: 96px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(212,165,160,.1);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(212,165,160,.12);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,165,160,.2);
}
.feat-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.feat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feat-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: .07;
}
.quote-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: .6;
  color: var(--blush);
  opacity: .3;
  margin-bottom: 8px;
  display: block;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.quote-author strong { display: block; font-size: .95rem; color: var(--text-dark); }
.quote-author span   { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download-section {
  padding: 96px 0;
  background: var(--gradient);
  overflow: hidden;
  position: relative;
}
.download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.download-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.download-content { flex: 1; max-width: 520px; }
.white-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.download-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}
.download-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.download-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 16px;
  color: white;
  cursor: pointer;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.download-btn:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.db-sub  { font-size: .68rem; opacity: .75; }
.db-main { font-size: 1rem; font-weight: 700; }

/* DOWNLOAD PHONE */
.download-visual { flex-shrink: 0; }
.dl-phone {
  width: 220px;
  background: rgba(255,255,255,.12);
  border-radius: 32px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(12px);
}
.dl-screen {
  background: var(--page-bg);
  border-radius: 22px;
  overflow: hidden;
  padding: 0 0 20px;
}
.dl-header {
  background: var(--gradient);
  padding: 20px 16px 16px;
  text-align: center;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.dl-content { padding: 24px 16px 0; }
.dl-welcome {
  font-family: var(--font-serif);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
.dl-cta-block { display: flex; flex-direction: column; gap: 10px; }
.dl-btn-sim {
  background: var(--gradient);
  color: white;
  border-radius: 100px;
  padding: 10px;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
}
.dl-btn-sim-sec {
  background: white;
  color: var(--text-muted);
  border-radius: 100px;
  padding: 10px;
  text-align: center;
  font-size: .75rem;
  font-weight: 500;
  border: 1px solid var(--divider);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.6);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.footer-tagline { font-size: .875rem; line-height: 1.6; }
.footer-links-group { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
}
.footer-bottom .nav-logo-heart { color: var(--blush); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-phone-wrap { order: -1; }
  .phone-mockup { width: 260px; }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feature-grid.reverse { direction: ltr; }
  .feature-visual { order: -1; }
  .feature-list li { justify-content: flex-start; text-align: left; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .download-inner { flex-direction: column; text-align: center; }
  .download-buttons { justify-content: center; }
  .theme-swatches { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links-group { justify-content: center; }
  .nav-links { gap: 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .social-strip-inner { flex-direction: column; gap: 16px; }
  .social-divider { width: 60px; height: 1px; }
  .social-item { padding: 0 20px; }
  .download-btn { flex: 1; justify-content: center; }
  .hero { min-height: auto; padding-top: 80px; }
}
