:root {
  /* Colors */
  --bg-dark: #0a0508;
  --bg-card: rgba(25, 15, 20, 0.6);
  --text-main: #fdfafb;
  --text-muted: #b8a6ae;
  --accent-gold: #d4af37;
  --accent-rose: #e8b4b8;
  --accent-rose-dark: #b87a81;
  --gradient-gold: linear-gradient(135deg, #f9f0d1, #d4af37);
  --gradient-rose: linear-gradient(135deg, #ffd3d8, #e8b4b8);
  
  /* Fonts */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Misc */
  --border-radius: 16px;
  --transition: all 0.3s ease;
  --nav-height: 80px;
}

[data-theme="light"] {
  --bg-dark: #fbf5f7;
  --bg-card: rgba(255, 255, 255, 0.7);
  --text-main: #2a111a;
  --text-muted: #6b5c62;
  --accent-gold: #b38b1d;
  --accent-rose: #d48b91;
  --accent-rose-dark: #b87a81;
  --gradient-gold: linear-gradient(135deg, #d4af37, #b38b1d);
  --gradient-rose: linear-gradient(135deg, #ffccd2, #e8b4b8);
}

/* Light Mode Specific Overrides */
[data-theme="light"] .navbar.scrolled {
  background: rgba(251, 245, 247, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .cursor-glow {
  background: radial-gradient(circle, rgba(212, 139, 145, 0.15) 0%, rgba(255,255,255,0) 70%);
}
[data-theme="light"] .hero-badge {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}
[data-theme="light"] .form-input, [data-theme="light"] .feature-card, [data-theme="light"] .step-content, [data-theme="light"] .callout, [data-theme="light"] .countdown-unit {
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
[data-theme="light"] .form-input {
  background: rgba(255,255,255,0.8);
}
[data-theme="light"] .cta-bg {
  background: #fbf5f7;
}
[data-theme="light"] .footer {
  background: #f4ecf0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
[data-theme="light"] .footer-logo, [data-theme="light"] .footer-col-title {
  color: var(--text-main);
}
[data-theme="light"] .social-btn {
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-main);
}
[data-theme="light"] .feature-icon, [data-theme="light"] .feature-tag {
  border: 1px solid rgba(0,0,0,0.05);
  background: rgba(0,0,0,0.02);
}
[data-theme="light"] .countdown-separator {
  color: rgba(0,0,0,0.2);
}
[data-theme="light"] .step-line {
  background: dashed 1px rgba(0,0,0,0.1);
}
[data-theme="light"] .cta-subtitle, [data-theme="light"] .perk, [data-theme="light"] .footer-bottom {
  color: rgba(0,0,0,0.6);
}
[data-theme="light"] .scroll-mouse {
  border-color: rgba(0,0,0,0.3);
}
[data-theme="light"] .scroll-wheel {
  background: var(--text-main);
}
[data-theme="light"] .phone-screen {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
[data-theme="light"] .feature-card:hover {
  background: #ffffff;
  border-color: var(--accent-rose);
  box-shadow: 0 12px 30px rgba(212, 139, 145, 0.15);
}
[data-theme="light"] .orb-1 { background: rgba(212, 139, 145, 0.15); }
[data-theme="light"] .orb-2 { background: rgba(179, 139, 29, 0.1); }
[data-theme="light"] .orb-3 { background: rgba(212, 139, 145, 0.1); }
[data-theme="light"] .cta-orb-1 { background: rgba(212, 139, 145, 0.2); }
[data-theme="light"] .cta-orb-2 { background: rgba(179, 139, 29, 0.15); }
[data-theme="light"] .shape { opacity: 0.05; }


html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input { font-family: inherit; outline: none; border: none; }

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.15) 0%, rgba(0,0,0,0) 70%);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease-out;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 5, 8, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}
.logo-icon { color: var(--accent-rose); font-size: 1.2rem; }
.logo-dot { color: var(--accent-gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
}
.theme-toggle:hover {
  transform: translateY(-2px);
  background: var(--accent-rose);
  color: #111;
  border-color: var(--accent-rose);
}
.theme-toggle i {
  position: absolute;
  transition: var(--transition);
}
.theme-toggle .light-icon {
  transform: translateY(0);
  opacity: 1;
}
.theme-toggle .dark-icon {
  transform: translateY(20px);
  opacity: 0;
}
[data-theme="light"] .theme-toggle .light-icon {
  transform: translateY(-20px);
  opacity: 0;
}
[data-theme="light"] .theme-toggle .dark-icon {
  transform: translateY(0);
  opacity: 1;
}
.nav-badge {
  background: rgba(232, 180, 184, 0.1);
  color: var(--accent-rose);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(232, 180, 184, 0.2);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s infinite alternate;
}
.orb-1 { width: 400px; height: 400px; background: #2a111a; top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #1a1525; bottom: -200px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: #251810; top: 40%; left: 60%; animation-delay: -10s; }

.floating-shapes {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}
.shape { position: absolute; opacity: 0.2; animation: floatShape 10s infinite alternate; }
.shape-ring { width: 40px; height: 40px; border: 2px solid var(--accent-rose); border-radius: 50%; }
.shape-dot { width: 8px; height: 8px; background: var(--accent-gold); border-radius: 50%; }
.shape-cross, .shape-heart { color: var(--accent-rose); font-size: 1.5rem; }
.shape-1 { top: 20%; left: 15%; animation-delay: 0s; }
.shape-2 { bottom: 30%; right: 20%; animation-delay: -2s; }
.shape-3 { top: 40%; right: 10%; animation-delay: -4s; }
.shape-4 { bottom: 20%; left: 25%; animation-delay: -6s; }
.shape-5 { top: 70%; left: 10%; animation-delay: -3s; }
.shape-6 { top: 15%; right: 25%; animation-delay: -5s; }

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--accent-gold); }
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-title em { font-style: italic; color: var(--accent-rose); }
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* COUNTDOWN */
.countdown-wrapper { margin-bottom: 48px; }
.countdown-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 90px;
}
.countdown-number { font-family: var(--font-accent); font-size: 2.5rem; color: var(--text-main); line-height: 1; margin-bottom: 4px; }
.countdown-text { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.countdown-separator { font-family: var(--font-accent); font-size: 2.5rem; color: rgba(255,255,255,0.2); align-self: center; }

/* FORM */
.notify-form { max-width: 480px; margin: 0 auto; position: relative; }
.form-group { display: flex; gap: 8px; margin-bottom: 12px; }
.form-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  border-radius: 30px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--accent-rose);
  background: rgba(255,255,255,0.08);
}
.btn-primary {
  background: var(--gradient-rose);
  color: #1a1014;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 180, 184, 0.3);
}
.form-note { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #4ade80;
  margin-top: 16px;
  font-size: 0.95rem;
}
.form-success.show { display: flex; animation: fadeIn 0.3s ease; }

/* SOCIAL PROOF */
.social-proof { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.avatar-stack { display: flex; }
.avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-dark); margin-left: -12px; }
.avatar:first-child { margin-left: 0; }
.proof-text { font-size: 0.9rem; color: var(--text-muted); }
.proof-count { font-weight: 600; color: var(--text-main); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}
.scroll-mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  width: 4px; height: 6px;
  background: var(--text-main);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* ========== SECTIONS COMMON ========== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 120px 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-gold); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title { font-family: var(--font-heading); font-size: 3rem; line-height: 1.2; margin-bottom: 16px; font-weight: 400; }
.section-title em { font-style: italic; color: var(--accent-rose); }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ========== FEATURES ========== */
.features { position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 180, 184, 0.3);
  background: rgba(35, 20, 28, 0.6);
}
.feature-icon-wrap { position: relative; width: 60px; height: 60px; margin-bottom: 24px; }
.feature-icon {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent-rose);
  position: relative; z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
}
.feature-icon-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: var(--accent-rose);
  filter: blur(20px); opacity: 0; transition: var(--transition); z-index: 1;
}
.feature-card:hover .feature-icon-glow { opacity: 0.3; }
.feature-title { font-family: var(--font-accent); font-size: 1.4rem; margin-bottom: 12px; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.feature-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(255,255,255,0.05); border-radius: 20px;
  font-size: 0.8rem; color: var(--accent-gold); border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========== HOW IT WORKS ========== */
.how-it-works { background: linear-gradient(to bottom, transparent, rgba(232, 180, 184, 0.03), transparent); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { display: flex; flex-direction: column; gap: 24px; }
.step-number-wrap { display: flex; align-items: center; gap: 16px; }
.step-number { font-family: var(--font-heading); font-size: 3rem; color: var(--accent-gold); opacity: 0.5; line-height: 1; }
.step-line { flex: 1; height: 1px; background: dashed 1px rgba(255,255,255,0.1); }
.step-content { background: var(--bg-card); padding: 32px; border-radius: var(--border-radius); border: 1px solid rgba(255,255,255,0.05); flex: 1; }
.step-icon { width: 48px; height: 48px; background: rgba(212,175,55,0.1); color: var(--accent-gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; margin-bottom: 20px; }
.step-title { font-family: var(--font-accent); font-size: 1.4rem; margin-bottom: 12px; }
.step-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.step-list li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-main); margin-bottom: 8px; }
.step-list i { color: #4ade80; font-size: 0.8rem; }

/* ========== PREVIEW ========== */
.preview-wrapper { display: flex; align-items: center; gap: 60px; }
.phone-mockup { flex: 1; display: flex; justify-content: center; }
.phone-frame {
  width: 320px; height: 650px;
  background: #111;
  border-radius: 40px;
  border: 12px solid #222;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 2px #333;
  overflow: hidden;
}
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 25px; background: #222; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 10; }
.phone-home-bar { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 2px; z-index: 10; }
.phone-screen { width: 100%; height: 100%; background: #fdfafb; position: relative; overflow-y: auto; overflow-x: hidden; }

/* Invitation Card in Phone */
.invitation-card {
  padding: 50px 20px 40px;
  background: #fdfafb;
  color: #2a111a;
  text-align: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.inv-header { margin-bottom: 20px; }
.inv-ornament { color: #d4af37; font-size: 1.2rem; }
.inv-eyebrow { font-family: var(--font-heading); font-size: 1rem; color: #665; text-transform: uppercase; letter-spacing: 2px; margin: 10px 0; }
.inv-names { font-family: var(--font-heading); font-size: 2.8rem; line-height: 1; margin-bottom: 10px; color: #2a111a; }
.inv-ampersand { font-family: var(--font-accent); font-style: italic; font-size: 2rem; color: #b87a81; margin: 5px 0; }
.inv-event { font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; color: #887; margin-bottom: 20px; }
.inv-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 30px; color: #e8b4b8; }
.inv-divider span { width: 40px; height: 1px; background: #e8b4b8; }
.inv-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; text-align: left; background: #fff5f6; padding: 20px; border-radius: 12px; }
.inv-detail-item { display: flex; align-items: flex-start; gap: 12px; }
.inv-detail-item i { color: #b87a81; margin-top: 4px; }
.inv-detail-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #887; }
.inv-detail-value { display: block; font-weight: 500; color: #2a111a; }
.inv-rsvp { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.rsvp-btn { padding: 14px; border-radius: 8px; font-weight: 500; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); border: 1px solid transparent; }
.rsvp-yes { background: #2a111a; color: #fff; }
.rsvp-yes:hover { background: #1a0a10; }
.rsvp-no { background: transparent; color: #2a111a; border-color: #ddd; }
.rsvp-no:hover { background: #f0f0f0; }

.preview-callouts { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.callout { display: flex; align-items: center; gap: 16px; background: var(--bg-card); padding: 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.callout-icon { width: 48px; height: 48px; background: rgba(232,180,184,0.1); color: var(--accent-rose); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.callout-content strong { display: block; font-family: var(--font-accent); font-size: 1.2rem; margin-bottom: 4px; }
.callout-content span { color: var(--text-muted); font-size: 0.9rem; }

/* ========== CTA BAND ========== */
.cta-band { position: relative; padding: 100px 24px; text-align: center; overflow: hidden; margin-top: 60px; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #1a0a10; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.cta-orb-1 { width: 300px; height: 300px; background: #b87a81; top: -100px; left: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: #2a111a; bottom: -150px; right: -150px; }
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-icon { font-size: 2.5rem; color: var(--accent-rose); margin-bottom: 24px; }
.cta-title { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.cta-title em { font-style: italic; color: var(--accent-gold); }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-form { max-width: 500px; margin: 0 auto 30px; }
.cta-perks { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.perk { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.perk i { color: #4ade80; }

/* ========== FOOTER ========== */
.footer { background: #050204; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 24px 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-main { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 60px; margin-bottom: 60px; }
.footer-brand { max-width: 300px; }
.footer-logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-tagline { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-main); transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.social-btn:hover { background: var(--accent-rose); color: #000; border-color: var(--accent-rose); transform: translateY(-3px); }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col-title { font-family: var(--font-accent); font-size: 1.1rem; margin-bottom: 20px; color: var(--text-main); }
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); display: block; }
.footer-list a:hover { color: var(--accent-rose); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-heart { color: var(--accent-rose-dark); }

/* ========== ANIMATIONS ========== */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 50px) scale(1.1); } }
@keyframes floatShape { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-20px) rotate(20deg); } }
@keyframes scrollWheel { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .preview-wrapper { flex-direction: column; }
  .phone-mockup { width: 100%; max-width: 320px; }
  .preview-callouts { width: 100%; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .countdown { flex-wrap: wrap; }
  .countdown-separator { display: none; }
  .countdown-unit { flex: 1; min-width: calc(50% - 8px); }
  .form-group { flex-direction: column; }
  .btn-primary { justify-content: center; }
  .section-title { font-size: 2.2rem; }
  .cta-title { font-size: 2.5rem; }
  .footer-main { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .nav-badge { display: none; }
}