/* ============================================================
   Sonic City — style.css
   Brand gold:  #F0C060  |  Hover: #D4A040
   Background:  #121212  |  Text:  #F5F5F5
   ============================================================ */

/* ── Google Font import (Inter) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ── */
:root {
  --gold:       #F0C060;
  --gold-h:     #D4A040;
  --gold-pale:  rgba(240,192,96,0.10);
  --gold-soft:  rgba(240,192,96,0.25);
  --bg:         #121212;
  --bg-card:    #1a1a1a;
  --bg-alt:     #161616;
  --text:       #F5F5F5;
  --muted:      #8b8b8b;
  --border:     #2a2a2a;
  --border-h:   #3a3a3a;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.6);
  --max-w:      1120px;
  --nav-h:      64px;
}

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ── Typography helpers ── */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-body { margin: 0 auto; }

/* ── Buttons ── */
.btn-primary {
  padding: 14px 28px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-h); transform: translateY(-1px); }

.btn-secondary {
  padding: 14px 24px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-h);
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  transition: border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(18,18,18,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.3px;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.lang-trigger:hover { border-color: var(--gold); color: var(--text); }
.lang-trigger .caret { font-size: .7rem; opacity: .6; transition: transform .2s; }
.lang-dropdown.open .caret { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 168px;
  overflow: hidden;
  z-index: 200;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  border: none;
  background: transparent;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  transition: background .15s, color .15s;
}
.lang-menu button:hover { background: rgba(255,255,255,.05); color: var(--text); }
.lang-menu button.active { color: var(--gold); font-weight: 600; }

/* Nav CTA */
.nav-cta {
  padding: 8px 18px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-h); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #0e0e0e;
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-lang {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-lang-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.mobile-lang-options { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-lang-options button {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .15s;
}
.mobile-lang-options button:hover,
.mobile-lang-options button.active {
  border-color: var(--gold);
  color: var(--gold);
}
.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 8px;
  border-radius: 10px;
  font-size: 1rem;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 80px 0 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(18,18,18,.96) 0%, rgba(18,18,18,.80) 50%, rgba(18,18,18,.50) 100%),
    url('assets/city-london-night.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero-copy { flex: 1; min-width: 0; }
.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(240,192,96,.25);
  margin-bottom: 20px;
}
.hero-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.pill {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--border-h);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: .8rem;
  color: var(--muted);
  opacity: .75;
}

/* Phone frame */
.hero-visual { flex-shrink: 0; }
.phone-frame {
  width: 270px;
  height: 560px;
  border-radius: 38px;
  border: 7px solid #2e2e2e;
  background: #0a0a0a;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 0 0 1px rgba(255,255,255,.03);
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #0e0e0e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}
.trust-list li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 20px;
  position: relative;
}
.trust-list li + li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border-h);
}


/* ============================================================
   SCREENSHOT SHOWCASE
   ============================================================ */
.screenshots-showcase {
  background: var(--bg);
  padding: 64px 0;
  overflow: hidden;
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}
.screenshot-item { text-align: center; }
.screenshot-item--center { transform: translateY(-20px); }
.screenshot-item .screenshot-phone {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 14px;
  aspect-ratio: 390 / 844;
  border-radius: 30px;
  border: 5px solid #2e2e2e;
  background: #0a0a0a;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.04);
}
.screenshot-item--center .screenshot-phone {
  max-width: 270px;
  box-shadow:
    0 40px 80px rgba(240,192,96,.12),
    0 0 0 1px rgba(240,192,96,.15);
  border-color: rgba(240,192,96,.3);
}
.screenshot-item .screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.screenshot-caption {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .screenshots-grid { grid-template-columns: 1fr; gap: 28px; }
  .screenshot-item--center { transform: none; }
  .screenshot-item .screenshot-phone,
  .screenshot-item--center .screenshot-phone { max-width: 220px; }
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg-alt); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color .2s;
}
.how-card:hover { border-color: var(--gold-soft); }

.how-step-num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.how-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.how-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.how-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.feat-card-coming { opacity: .65; }
.feat-card-coming:hover { opacity: .85; }

.feat-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  color: var(--gold);
  margin-bottom: 18px;
}
.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ============================================================
   PRIVACY BAR
   ============================================================ */
.privacy-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.privacy-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.privacy-bar-copy { flex: 1; min-width: 280px; }
.privacy-bar-copy h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.privacy-bar-copy p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
}
.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.priv-badge {
  padding: 7px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}


/* ============================================================
   CITIES
   ============================================================ */
.cities { background: var(--bg); }

/* London spotlight card */
.london-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
}
.london-card-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18,18,18,.98) 0%, rgba(18,18,18,.7) 50%, rgba(18,18,18,.3) 100%),
    url('assets/city-london.jpg') center/cover no-repeat;
  z-index: 0;
}
.london-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px;
}
.london-card-copy { max-width: 680px; }
.london-available-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.london-card-copy h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.london-subtitle {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.london-body {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
}
.london-artists {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin-bottom: 28px;
}
.london-artists li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  opacity: .7;
}
.london-artists li:last-child { color: var(--muted); font-weight: 400; }

/* Coming cities grid */
.coming-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coming-city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: .7;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}
.coming-city-card:hover { opacity: .9; }
.coming-city-backdrop {
  position: absolute;
  inset: 0;
  background: var(--bg-card) center/cover no-repeat;
  filter: grayscale(40%);
  transition: filter .3s;
}
.coming-city-card:hover .coming-city-backdrop { filter: grayscale(20%); }
.coming-city-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,.92) 0%, rgba(18,18,18,.5) 60%, rgba(18,18,18,.2) 100%);
}
.coming-city-card-inner {
  position: relative;
  z-index: 1;
  padding: 20px 20px 24px;
  width: 100%;
}
.coming-soon-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,255,255,.12);
  color: var(--muted);
  border-radius: 12px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}
.coming-city-flag { font-size: 1.8rem; margin-bottom: 6px; }
.coming-city-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.coming-city-card p {
  font-size: .78rem;
  color: var(--muted);
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-alt); }
.pricing-inner { max-width: 600px; margin: 0 auto; text-align: center; }

.pricing-free-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  margin-top: 32px;
}
.pricing-free-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.04em;
  margin-bottom: 4px;
}
.pricing-free-note {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.nosub-badge {
  padding: 6px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
}
.pricing-music-note {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-free-card .btn-primary { margin: 0 auto; }


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 0 20px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ============================================================
   DOWNLOAD
   ============================================================ */
.download-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #0e0e0e 100%);
  padding: 96px 0;
  text-align: center;
}
.download-inner { max-width: 560px; margin: 0 auto; }
.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(240,192,96,.2);
}
.download-section h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}
.download-section h2 em { font-style: normal; color: var(--gold); }
.download-section > .download-inner > p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* App Store button */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--text);
  color: #111;
  border-radius: 12px;
  font-family: inherit;
  transition: background .2s, transform .15s;
  margin-bottom: 16px;
  text-decoration: none;
}
.appstore-btn:hover { background: #d8d8d8; transform: translateY(-1px); }
.appstore-btn svg { flex-shrink: 0; }
.appstore-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.appstore-small {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #333;
}
.appstore-big {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
}
.download-note {
  font-size: .8rem;
  color: var(--muted);
  opacity: .7;
  display: block;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); padding: 80px 0; }
.contact-inner { max-width: 560px; }
.contact-copy .section-body { margin-bottom: 28px; }
.contact-email-link {
  display: inline-block;
  padding: 14px 28px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.contact-email-link:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer p {
  font-size: .82rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: .82rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-copy { order: 1; text-align: center; }
  .hero-sub { max-width: 100%; margin: 0 auto 28px; }
  .hero-pills { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: 2; }
  .hero-backdrop {
    background:
      linear-gradient(to bottom, rgba(18,18,18,.85) 0%, rgba(18,18,18,.95) 100%),
      url('assets/city-london-night.jpg') center/cover no-repeat;
  }

  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .coming-cities-grid { grid-template-columns: 1fr; }

  .london-card-inner { padding: 28px 24px; }

  .privacy-bar-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-right .lang-dropdown { display: none; }
  .nav-right .nav-cta { display: none; }
  .burger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 240px; height: 496px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 60px 0 48px; }
  .phone-frame { width: 210px; height: 434px; }
  .london-card { min-height: 320px; }
  .pricing-free-amount { font-size: 3.2rem; }
}
