/* ══════════════════════════════════════════════
   PalkarMatch Website — Brand-Matched Design
   Maroon + Gold + Cream — Elegant Matrimony
   ══════════════════════════════════════════════ */

:root {
  --primary: #C2185B;
  --primary-dark: #880E4F;
  --primary-deeper: #5D0A36;
  --primary-light: #F8BBD0;
  --gold: #FFD700;
  --gold-dark: #C5A55A;
  --gold-light: #FFF1A8;
  --saffron: #FF6F00;
  --cream: #FFF8F0;
  --cream-dark: #FAF0E4;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --white: #FFFFFF;
  --bg: #FFF8F0;
  --border: #F0DDD0;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow: 0 4px 24px rgba(136, 14, 79, 0.08);
  --shadow-lg: 0 12px 48px rgba(136, 14, 79, 0.12);
  --shadow-gold: 0 4px 24px rgba(197, 165, 90, 0.2);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Decorative Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
  bottom: -100px;
  left: -120px;
  animation-delay: -4s;
  opacity: 0.2;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -7s;
  opacity: 0.15;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -25px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(0.96); }
}

/* ── Decorative Pattern ── */
.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px;
  pointer-events: none;
}

/* ── Decorative Circle (matches app style) ── */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.deco-circle-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
}

.deco-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -50px;
}

/* ── Gold Divider (matches app splash) ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(194, 24, 91, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
}

.logo-tagline {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 10px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(194, 24, 91, 0.05);
}

.nav-links a.active {
  color: var(--primary);
  background: rgba(194, 24, 91, 0.07);
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(194, 24, 91, 0.06);
  background: rgba(255, 248, 240, 0.98);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary-dark) 35%, var(--primary) 70%, #E91E63 100%);
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  z-index: 2;
}

/* Hero Logo */
.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 12px;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: logoEntrance 1s ease-out;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

@keyframes logoEntrance {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: glowGold 3s ease-in-out infinite;
}

.coming-soon-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes glowGold {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.2); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}

.hero .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gold-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-gold-line span {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-gold-line em {
  font-style: normal;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Store Badges */
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.store-badge.disabled {
  cursor: default;
}

.store-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 11px;
  opacity: 0.6;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

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

/* ══════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
}

.section-header .gold-divider {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid rgba(194, 24, 91, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194, 24, 91, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.06), rgba(255, 215, 0, 0.08));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(194, 24, 91, 0.04);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   APP PREVIEW (Production Screenshots)
   ══════════════════════════════════════════════ */
.app-preview {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at top right, rgba(194, 24, 91, 0.05), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.06), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.app-preview .pattern-overlay {
  opacity: 0.05;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(197, 165, 90, 0.28);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 28px;
  position: relative;
  z-index: 1;
}

.phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition);
}

.phone-card:nth-child(even) {
  transform: translateY(24px);
}

.phone-card:hover {
  transform: translateY(-10px);
}

.phone-card:nth-child(even):hover {
  transform: translateY(14px);
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(145deg, #1f1f23, #111114);
  border-radius: 36px;
  padding: 9px;
  box-shadow:
    0 24px 60px rgba(136, 14, 79, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 0 0 2px rgba(197, 165, 90, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}

.phone-frame::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 6px;
  background: #000;
  border-radius: 4px;
  z-index: 3;
  opacity: 0.7;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

.phone-card:hover .phone-frame {
  box-shadow:
    0 36px 80px rgba(136, 14, 79, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(197, 165, 90, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-meta {
  text-align: center;
  margin-top: 26px;
  max-width: 260px;
}

.phone-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  padding: 4px 12px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 50px;
}

.phone-meta h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.phone-meta p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream-dark), var(--cream));
  position: relative;
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--gold), var(--primary-light));
  opacity: 0.4;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  font-weight: 800;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(194, 24, 91, 0.25);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(194, 24, 91, 0.12);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   COMMUNITY
   ══════════════════════════════════════════════ */
.community {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.community-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.community-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
}

.community-content > p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 48px;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.community-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(194, 24, 91, 0.06);
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.community-feature:hover {
  border-color: rgba(194, 24, 91, 0.12);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.cf-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.06), rgba(255, 215, 0, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════ */
.cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary-dark) 40%, var(--primary) 80%, #E91E63 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-deeper);
  padding: 16px 44px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.cta-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.cta-email {
  margin-top: 36px;
  font-size: 15px;
  opacity: 0.55;
}

.cta-email a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 241, 168, 0.3);
  transition: var(--transition);
}

.cta-email a:hover {
  opacity: 1;
  border-color: var(--gold-light);
}

.cta-footer-note {
  margin-top: 48px;
  font-size: 14px;
  opacity: 0.4;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--primary-deeper);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand .logo-tagline {
  color: var(--gold-dark);
}

.footer-brand > p {
  font-size: 14px;
  opacity: 0.45;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  font-size: 14px;
}

.footer-contact a {
  color: var(--primary-light);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  opacity: 0.25;
}

/* ══════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════ */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--bg) 10%);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.legal-header .gold-divider {
  margin-bottom: 16px;
}

.legal-header .last-updated {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-section {
  margin-bottom: 36px;
  background: var(--white);
  border: 1px solid rgba(194, 24, 91, 0.04);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.15);
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.legal-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(194, 24, 91, 0.2);
  transition: border-color var(--transition);
}

.legal-section a:hover {
  border-color: var(--primary);
}

/* Account Deletion Flow */
.deletion-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(194, 24, 91, 0.04));
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: var(--radius);
}

.deletion-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.deletion-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.2);
}

.deletion-step > div {
  flex: 1;
}

.deletion-step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.deletion-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.deletion-step em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
  .phone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 24px;
  }
  .phone-card:nth-child(even) {
    transform: translateY(0);
  }
  .phone-card:nth-child(even):hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero {
    padding: 130px 0 70px;
  }
  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
  .hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    padding: 10px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-stats {
    gap: 28px;
  }
  .stat-value {
    font-size: 22px;
  }
  .features, .how-it-works, .community, .cta, .app-preview {
    padding: 80px 0;
  }
  .phone-frame {
    max-width: 200px;
  }
  .section-header h2,
  .community-content h2,
  .cta-content h2 {
    font-size: 30px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .community-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-header h1 {
    font-size: 30px;
  }
  .legal-section {
    padding: 24px 20px;
  }
  .orb {
    filter: blur(80px);
    opacity: 0.15;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
  .phone-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .phone-frame {
    max-width: 240px;
  }
  .store-badges {
    flex-direction: column;
    align-items: center;
  }
  .store-badge {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .logo-tagline {
    display: none;
  }
}
