*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0F1F38;
  --navy-dark: #07101F;
  --navy-mid: #162840;
  --gold: #C9956A;
  --gold-50: #F5E8DA;
  --gold-100: #EDD4B8;
  --gold-200: #DFBE9A;
  --gold-300: #D4A87C;
  --gold-700: #8B6340;
  --bg: #FFFBF5;
  --text-dark: #1C1C1E;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(15, 31, 56, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 31, 56, 0.14);
  --shadow-lg: 0 20px 60px rgba(15, 31, 56, 0.20);
  --shadow-gold: 0 0 24px rgba(201, 149, 106, 0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─────────────────────────────────── */

.font-serif {
  font-family: 'Playfair Display', serif;
}

h1, h2, h3 {
  line-height: 1.2;
}

/* ─── Navbar ─────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 16, 31, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(201, 149, 106, 0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
  user-select: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color var(--transition);
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 106, 0.5);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--navy-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 149, 106, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15, 31, 56, 0.9) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 149, 106, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 149, 106, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-300);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
  max-width: 460px;
  letter-spacing: 0.01em;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.5;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 48px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: #d9a87a;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-store-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

/* ─── Phone Mockup ───────────────────────────────── */

.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrap::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 149, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: var(--navy-mid);
  border-radius: 44px;
  border: 2px solid rgba(201, 149, 106, 0.25);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--navy-mid);
  border-radius: 0 0 20px 20px;
  z-index: 10;
  border-bottom: 1px solid rgba(201, 149, 106, 0.12);
}

.phone-notch::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.phone-screen {
  flex: 1;
  padding: 44px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, #0F1F38 0%, #07101F 100%);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 0;
}

.phone-header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.phone-header-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone-icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 149, 106, 0.4);
}

.phone-icon-dot.active {
  background: var(--gold);
}

.profile-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201, 149, 106, 0.18);
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.profile-card-photo {
  flex: 1;
  background: linear-gradient(135deg, #1a3050 0%, #0d1f38 40%, #162840 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
}

.profile-avatar-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,149,106,0.3) 0%, rgba(201,149,106,0.08) 100%);
  border: 2px solid rgba(201, 149, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-large svg {
  width: 52px;
  height: 52px;
  color: rgba(201, 149, 106, 0.5);
}

.profile-card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(7, 16, 31, 0.95) 0%, transparent 100%);
}

.profile-card-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(7, 16, 31, 0.8);
}

.profile-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: space-between;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.profile-age {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.profile-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 149, 106, 0.15);
  border: 1px solid rgba(201, 149, 106, 0.3);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.profile-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.profile-tag {
  font-size: 0.65rem;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(201, 149, 106, 0.1);
  border: 1px solid rgba(201, 149, 106, 0.2);
  color: rgba(201, 149, 106, 0.8);
}

.phone-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 8px 4px 4px;
}

.phone-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: default;
}

.phone-action-btn.pass {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.phone-action-btn.like {
  background: var(--gold);
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 20px rgba(201, 149, 106, 0.4);
}

.phone-action-btn.superlike {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.phone-action-btn svg {
  width: 20px;
  height: 20px;
}

.phone-action-btn.like svg {
  width: 24px;
  height: 24px;
}

/* ─── Section Shared ─────────────────────────────── */

.section {
  padding: 96px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '✦';
  font-size: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── Features ───────────────────────────────────── */

.features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(201, 149, 106, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(201, 149, 106, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--gold-700);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── How It Works ───────────────────────────────── */

.how-it-works {
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-50) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-200), var(--gold-200), var(--gold-200), transparent);
  z-index: 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201, 149, 106, 0.15);
  transition: all var(--transition);
}

.step-card:hover .step-number {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Safety ─────────────────────────────────────── */

.safety {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 112px;
}

.safety-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}

.safety-wave-top svg {
  display: block;
  width: 100%;
}

.safety-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.safety-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.safety-title em {
  color: var(--gold);
  font-style: italic;
}

.safety-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.safety-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.safety-feature-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.safety-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.safety-shield-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 149, 106, 0.15);
  animation: pulse-ring 3s ease-in-out infinite;
}

.safety-shield-ring:nth-child(1) {
  inset: 0;
}

.safety-shield-ring:nth-child(2) {
  inset: -24px;
  animation-delay: 0.5s;
  opacity: 0.6;
}

.safety-shield-ring:nth-child(3) {
  inset: -48px;
  animation-delay: 1s;
  opacity: 0.3;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.7; }
}

.safety-shield-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 149, 106, 0.1);
  border: 2px solid rgba(201, 149, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.safety-shield-core svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

/* ─── Store Badges ───────────────────────────────── */

.badge-link {
  display: inline-block;
  transition: transform var(--transition), opacity var(--transition);
}

.badge-link:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.store-badge {
  display: block;
  height: 64px;
  width: auto;
}

/* Google Play badge has built-in padding — compensate to match Apple badge height visually */
.store-badge-google {
  height: 95px;
  margin: -15.5px 0;
}

.store-badge-lg {
  height: 80px;
}

.store-badge-google.store-badge-lg {
  height: 118px;
  margin: -19px 0;
}

/* ─── Download CTA ───────────────────────────────── */

.download {
  background: var(--navy-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201, 149, 106, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.download-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.download-ornament {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(201, 149, 106, 0.12);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}

.download .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.download-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  min-width: 200px;
}

.store-btn-apple {
  background: var(--white);
  color: var(--navy-dark);
  border: 1.5px solid transparent;
}

.store-btn-apple:hover {
  background: var(--gold-50);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.store-btn-google {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.store-btn-google:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 149, 106, 0.15);
  transform: translateY(-3px);
}

.store-btn-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-sub {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

.store-btn-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── Footer ─────────────────────────────────────── */

.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 149, 106, 0.1);
  padding: 56px 48px 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-brand-tagline {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.footer-copy a {
  color: rgba(201, 149, 106, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-copy a:hover {
  color: var(--gold);
}

.footer-love {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-love span {
  color: var(--gold);
}

/* ─── Scroll Animations ──────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0ms; }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }

/* ─── Mobile Nav Overlay ─────────────────────────── */

.mobile-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 16, 31, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  backdrop-filter: blur(20px);
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 32px 60px;
    gap: 48px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }

  .phone-mockup-wrap {
    order: -1;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .safety-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .navbar.scrolled {
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 72px 24px;
  }

  .hero-inner {
    padding: 90px 24px 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer {
    padding: 48px 24px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

}

/* ─── Legal Pages ────────────────────────────────── */

.legal-hero {
  background: #0F1F38;
  padding: 120px 24px 64px;
  text-align: center;
}

.legal-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9956A;
  margin-bottom: 16px;
}

.legal-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}

.legal-hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.legal-body {
  background: #FFFBF5;
  padding: 72px 24px 96px;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
}

.legal-toc {
  background: #F5E8DA;
  border-left: 3px solid #C9956A;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 56px;
}

.legal-toc-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8B6340;
  margin-bottom: 12px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
}

.legal-toc li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0F1F38;
  margin-bottom: 6px;
}

.legal-toc a {
  color: #0F1F38;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-toc a:hover {
  color: #C9956A;
}

.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}

.legal-section-number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: #C9956A;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #0F1F38;
  margin: 0 0 18px;
  line-height: 1.25;
}

.legal-section p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #2c2c2e;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-section ul, .legal-section ol {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #2c2c2e;
  line-height: 1.75;
  padding-left: 22px;
  margin: 0 0 14px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section strong {
  font-weight: 600;
  color: #0F1F38;
}

.legal-divider {
  border: none;
  border-top: 1px solid #EDD4B8;
  margin: 52px 0;
}

.legal-highlight {
  background: #F5E8DA;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.legal-highlight p {
  margin: 0;
  color: #5a3e28;
}

.legal-contact-box {
  background: #0F1F38;
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}

.legal-contact-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
}

.legal-contact-box p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 20px;
}

.legal-contact-box a {
  display: inline-block;
  background: #C9956A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-contact-box a:hover {
  opacity: 0.85;
}
