/* ============================================================
   SHAADI SET GO — Design System
   Palette: Deep Rose · Champagne Gold · Ivory · Charcoal
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --rose:        #C2185B;
  --rose-deep:   #880E4F;
  --rose-light:  #E91E8C;
  --rose-pale:   #FCE4EC;
  --rose-soft:   #F8BBD9;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #FFF8E1;
  --ivory:       #FDFAF6;
  --cream:       #F5EFE6;
  --charcoal:    #1A1A2E;
  --charcoal-2:  #2D2D44;
  --text-primary:#1A1A2E;
  --text-secondary:#4A4A6A;
  --text-muted:  #8888AA;
  --border:      #EDE8F0;
  --white:       #FFFFFF;

  --gradient-rose: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #4A0E2E 100%);
  --gradient-soft: linear-gradient(135deg, #FCE4EC 0%, #FFF8E1 100%);

  --shadow-sm:   0 2px 8px rgba(194,24,91,0.08);
  --shadow-md:   0 8px 32px rgba(194,24,91,0.12);
  --shadow-lg:   0 20px 60px rgba(26,26,46,0.15);
  --shadow-card: 0 4px 24px rgba(26,26,46,0.08);

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

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--ivory);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Section Shared ────────────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

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

.section-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-eyebrow.light {
  color: var(--gold-light);
  background: rgba(201,168,76,0.15);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(26,26,46,0.06);
  padding: 0 24px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 22px;
  color: var(--rose);
  filter: drop-shadow(0 0 8px rgba(194,24,91,0.4));
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.navbar:not(.scrolled) .logo-text { color: var(--white); }
.navbar:not(.scrolled) .logo-icon { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a { color: var(--text-secondary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--rose); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-ghost {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.navbar.scrolled .btn-ghost { color: var(--text-secondary); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.navbar.scrolled .btn-ghost:hover { background: var(--rose-pale); color: var(--rose); }

.btn-primary-sm {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-rose);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(194,24,91,0.3);
}

.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,24,91,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--text-primary); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C2185B 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #C9A84C 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #7B1FA2 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

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

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

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-rose);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(194,24,91,0.4);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(194,24,91,0.5);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px;
}

.stat-item:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
  margin-left: 2px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual — Card Stack */
.hero-visual { position: relative; z-index: 1; }

.hero-card-stack {
  position: relative;
  width: 320px;
  height: 480px;
  margin: 0 auto;
}

.profile-card-hero {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.main-card {
  width: 280px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.back-card-1 {
  width: 240px;
  top: 20px; right: -10px;
  z-index: 2;
  transform: rotate(6deg);
  opacity: 0.85;
}

.back-card-2 {
  width: 220px;
  top: 30px; left: -10px;
  z-index: 1;
  transform: rotate(-5deg);
  opacity: 0.65;
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.main-card .card-img-wrap { height: 260px; }

.card-verified-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(46,125,50,0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.card-info {
  padding: 14px 16px;
}

.card-info.mini { padding: 10px 12px; }

.card-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-age {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.card-detail {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-btn-like {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.card-btn-like:hover { background: var(--rose); color: var(--white); }

.card-btn-msg {
  flex: 1;
  height: 40px;
  background: var(--gradient-rose);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.card-btn-msg:hover { opacity: 0.9; transform: scale(0.98); }

.card-btn-skip {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.card-btn-skip:hover { background: #FFEBEE; color: #E53935; }

/* Match notification */
.match-notification {
  position: absolute;
  top: 10px; left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(26,26,46,0.15);
  z-index: 10;
  animation: notifBounce 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes notifBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.match-hearts { font-size: 20px; }

.match-text {
  display: flex;
  flex-direction: column;
}

.match-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
}

.match-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Online pill */
.online-pill {
  position: absolute;
  bottom: -16px; right: -10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  z-index: 10;
  white-space: nowrap;
}

.online-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.trust-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item svg { color: var(--rose); flex-shrink: 0; }

.trust-dot {
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
}

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--ivory);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--rose-pale);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  pointer-events: none;
}

.step-icon-wrap {
  margin-bottom: 24px;
}

.step-icon {
  width: 64px; height: 64px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  border: 1px solid var(--rose-soft);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-features span {
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  padding-top: 80px;
  gap: 8px;
}

.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--rose-soft), var(--rose));
  border-radius: 2px;
}

.connector-heart {
  font-size: 16px;
  color: var(--rose);
  animation: pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   FEATURED PROFILES
════════════════════════════════════════════════════════════ */
.profiles-section {
  background: var(--cream);
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.filter-tab:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.filter-tab.active {
  background: var(--gradient-rose);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(194,24,91,0.25);
}

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

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}

.profile-card.hidden { display: none; }

.profile-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.profile-img-wrap img {
  transition: transform 0.5s ease;
}

.profile-card:hover .profile-img-wrap img {
  transform: scale(1.05);
}

.profile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.profile-card:hover .profile-overlay { opacity: 1; }

.overlay-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  transform: translateY(10px);
}

.profile-card:hover .overlay-btn { transform: translateY(0); }

.like-btn {
  background: var(--rose);
  color: var(--white);
}

.like-btn:hover { background: var(--rose-deep); transform: scale(1.1) !important; }

.msg-btn {
  background: var(--white);
  color: var(--text-primary);
}

.msg-btn:hover { background: var(--gold-pale); transform: scale(1.1) !important; }

.profile-badge {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-badge.verified {
  top: 12px; left: 12px;
  background: rgba(46,125,50,0.9);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.profile-badge.premium {
  top: 12px; right: 12px;
  background: var(--gradient-gold);
  color: var(--charcoal);
}

.profile-badge.nri-badge {
  top: 44px; right: 12px;
  background: rgba(26,26,46,0.85);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.profile-card-body { padding: 20px; }

.profile-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.profile-age {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.profile-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.profile-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.detail-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.profile-compat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.compat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.compat-bar {
  flex: 1;
  height: 6px;
  background: var(--rose-pale);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.compat-fill {
  height: 100%;
  background: var(--gradient-rose);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.compat-score {
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
}

.profiles-cta {
  text-align: center;
}

.btn-outline-rose {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--rose);
  border: 2px solid var(--rose);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-outline-rose:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,24,91,0.3);
}

/* ════════════════════════════════════════════════════════════
   SUCCESS STORIES
════════════════════════════════════════════════════════════ */
.success-stories {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.stories-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stories-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194,24,91,0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
}

.success-stories .section-title { color: var(--white); }
.success-stories .section-subtitle { color: rgba(255,255,255,0.55); }

.stories-carousel-wrap { position: relative; }

.stories-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: transform var(--transition-slow);
}

.story-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.story-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(194,24,91,0.3);
  transform: translateY(-4px);
}

.story-couple-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.story-hearts {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.story-content { padding: 28px; }

.story-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}

.story-quote {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.story-couple {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.story-couple strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.story-couple span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.story-stars {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 2px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all var(--transition);
}

.dot.active {
  background: var(--rose);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   PLANS
════════════════════════════════════════════════════════════ */
.plans-section { background: var(--ivory); }

.plans-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}

.toggle-label.active { color: var(--text-primary); }

.save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-rose);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
}

.toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: var(--radius-full);
  transition: background var(--transition);
}

.toggle-slider::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  background: var(--white);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider { background: var(--rose); }
.toggle-switch input:checked + .toggle-slider::after { transform: translateX(24px); }

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

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

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

.plan-popular {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose), var(--shadow-md);
  transform: scale(1.03);
}

.plan-popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-rose);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(194,24,91,0.3);
}

.plan-header { margin-bottom: 24px; }

.plan-icon { font-size: 36px; display: block; margin-bottom: 12px; }

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 8px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  transition: all var(--transition);
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-item.included svg { color: #2E7D32; flex-shrink: 0; }
.feature-item.excluded { opacity: 0.4; }
.feature-item.excluded svg { color: var(--text-muted); flex-shrink: 0; }

.plan-btn {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.plan-btn-primary {
  background: var(--gradient-rose);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(194,24,91,0.3);
}

.plan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(194,24,91,0.4);
}

.plan-btn-outline {
  border: 2px solid var(--border);
  color: var(--text-secondary);
}

.plan-btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-pale);
}

/* ════════════════════════════════════════════════════════════
   APP CTA
════════════════════════════════════════════════════════════ */
.app-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.app-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.app-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 20px;
}

.app-cta-title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.app-badge:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.badge-sub {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

.badge-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.rating-stars { color: var(--gold-light); font-size: 16px; }

/* Phone Mockup */
.app-cta-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 260px;
}

.phone-screen {
  background: var(--charcoal-2);
  border-radius: 36px;
  padding: 16px;
  border: 8px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: phoneFloat 4s ease-in-out infinite;
}

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

.phone-notch {
  width: 80px; height: 20px;
  background: var(--charcoal);
  border-radius: 10px;
  margin: 0 auto 12px;
}

.phone-content { padding: 4px; }

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.phone-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose-soft);
}

.phone-notif {
  width: 20px; height: 20px;
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-match-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 200px;
  margin-bottom: 12px;
}

.phone-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 16px 12px 12px;
  color: var(--white);
}

.phone-card-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.phone-card-info span {
  font-size: 11px;
  opacity: 0.75;
}

.phone-compat {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

.phone-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.phone-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform var(--transition);
}

.phone-btn:hover { transform: scale(1.15); }

.phone-btn.skip { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.phone-btn.like { background: var(--rose); color: var(--white); }
.phone-btn.msg { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

.phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 80px;
  background: radial-gradient(ellipse, rgba(194,24,91,0.3) 0%, transparent 70%);
  filter: blur(20px);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon { color: var(--rose); }
.footer-logo .logo-text { color: var(--white); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rose-soft); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--rose-soft); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat-item { align-items: center; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { flex-direction: row; padding: 0; }
  .connector-line { width: 40px; height: 2px; }

  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-carousel { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-popular { transform: none; }
  .plan-popular:hover { transform: translateY(-6px); }

  .app-cta-container { grid-template-columns: 1fr; text-align: center; }
  .app-cta-desc { margin: 0 auto 36px; }
  .app-badges { justify-content: center; }
  .app-rating { justify-content: center; }

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

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open a { color: rgba(255,255,255,0.85); font-size: 16px; }

  .hero-container { padding: 100px 20px 60px; }
  .hero-title { font-size: 48px; }
  .hero-card-stack { width: 280px; height: 420px; }
  .main-card { width: 240px; }
  .back-card-1 { width: 200px; }
  .back-card-2 { width: 180px; }

  .trust-container { gap: 16px; }
  .trust-dot { display: none; }

  .section-container { padding: 72px 20px; }
  .profiles-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 48px; }

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

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

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-number { font-size: 32px; }

  .app-cta-container { padding: 72px 20px; }
  .app-badges { flex-direction: column; align-items: center; }
}