/* ──────────────────────────────────────────────────────────────
   Lokum — Modern Dating App Website (v2)
   Design system: 8pt grid · fluid type · flat · brand-led
   ────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.55; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, picture, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --coral: #ED7366;
  --coral-dark: #D55A4D;
  --coral-light: #FFE7E2;
  --coral-bg: #FFF5F2;

  --purple: #6154C7;
  --purple-dark: #4B41A8;
  --purple-light: #EAE7FA;
  --purple-bg: #F5F3FD;

  --green: #33C75A;
  --green-light: #DCFCE5;
  --green-bg: #F0FDF4;

  --gold: #FFC747;
  --gold-light: #FFF4D6;
  --gold-bg: #FFFBEB;

  --blue: #21BAFD;
  --blue-light: #DDF4FE;
  --blue-bg: #F0FAFF;

  --pink: #FF8AA8;
  --pink-light: #FFE3EC;

  --bg: #FFFFFF;
  --bg-warm: #FAF8F6;
  --bg-cream: #FCF9F5;
  --surface: #F5F2EE;
  --border: #ECE7E2;
  --border-strong: #D9D2CB;

  --text: #18181B;
  --text-secondary: #52525B;
  --text-tertiary: #8B8B92;
  --text-inverse: #FFFFFF;

  --font-display: 'Fredoka', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: clamp(22px, 2.4vw, 28px);
  --fs-3xl: clamp(28px, 3.4vw, 36px);
  --fs-4xl: clamp(36px, 4.6vw, 52px);
  --fs-5xl: clamp(44px, 6.4vw, 72px);
  --fs-6xl: clamp(56px, 9vw, 104px);

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 999px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --container: 1200px;
  --container-narrow: 880px;
  --nav-h: 72px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "cv02","cv03","cv04","cv11";
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: var(--fs-5xl); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-4xl); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-2xl); letter-spacing: -0.02em; }
h4 { font-size: var(--fs-xl); }
p { color: var(--text-secondary); line-height: 1.65; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-4); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-4); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-7) 0; }
@media (max-width: 768px) { .section { padding: var(--s-7) 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-body); font-size: var(--fs-sm);
  font-weight: 500; color: var(--coral);
  padding: 6px 14px; background: var(--coral-light);
  border-radius: var(--r-full); letter-spacing: 0;
  text-transform: lowercase;
}
.eyebrow.purple { color: var(--purple-dark); background: var(--purple-light); }
.eyebrow.green { color: #1A5C2A; background: var(--green-light); }
.eyebrow.gold { color: #5C4A1A; background: var(--gold-light); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: 500;
  padding: 14px 24px; border-radius: var(--r-full);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--text); color: var(--text-inverse); }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { background: var(--text); color: var(--text-inverse); border-color: var(--text); }
.btn-soft { background: var(--surface); color: var(--text); }
.btn-soft:hover { background: var(--border); }
.btn-lg { padding: 16px 28px; font-size: var(--fs-lg); }
.btn svg { width: 18px; height: 18px; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.85);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 var(--s-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.02em; color: var(--text);
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: var(--s-2); }
.nav-links a {
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-secondary);
  padding: 8px 14px; border-radius: var(--r-full);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links .nav-cta {
  background: var(--text); color: var(--text-inverse);
  padding: 10px 18px;
}
.nav-links .nav-cta:hover { background: #000; color: white; }
.lang-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 500;
  padding: 8px 12px; background: var(--surface);
  border-radius: var(--r-full); color: var(--text-secondary);
  cursor: pointer; position: relative;
}
.lang-pill:hover { background: var(--border); color: var(--text); }
.lang-menu {
  position: absolute; top: 100%; right: 0; margin-top: 6px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 6px;
  min-width: 180px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s, visibility .15s, transform .15s;
  z-index: 200;
}
.lang-pill:hover .lang-menu,
.lang-pill:focus-within .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  border-radius: var(--r-sm); font-size: var(--fs-sm);
  color: var(--text); background: transparent !important;
}
.lang-menu a:hover { background: var(--surface) !important; }
.lang-menu a.active { background: var(--coral-light) !important; color: var(--coral-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s; }

@media (max-width: 860px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); right: 0; left: 0;
    flex-direction: column; align-items: stretch; padding: var(--s-3);
    background: white; border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: var(--r-md); font-size: var(--fs-base); }
  .nav-toggle { display: flex; }
  .lang-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0; margin-top: 4px; }
  .lang-pill { background: transparent; padding: 0; }
  .lang-pill:hover { background: transparent; }
}

/* Hero */
.hero {
  padding: calc(var(--nav-h) + var(--s-7)) 0 var(--s-7);
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7);
  align-items: center; min-height: min(620px, 80vh);
}
.hero-text { position: relative; z-index: 2; }
.hero h1 {
  font-size: var(--fs-6xl);
  line-height: 0.95;
  margin-bottom: var(--s-4);
  letter-spacing: -0.04em;
}
.hero h1 .coral { color: var(--coral); }
.hero h1 .underline {
  background: linear-gradient(180deg, transparent 65%, var(--gold-light) 65%);
  padding: 0 4px;
}
.hero-sub {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--s-5);
  line-height: 1.5;
}
.hero-buttons { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-5); }
.hero-trust {
  display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap;
  font-size: var(--fs-sm); color: var(--text-tertiary);
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: var(--fs-base); }
.hero-trust .sep { color: var(--border-strong); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); text-align: center; }
  .hero-text { order: 2; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* Hero cards */
.hero-cards {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}
.float-card {
  position: absolute;
  background: white;
  padding: var(--s-3);
  border-radius: var(--r-xl);
  box-shadow: 0 10px 40px -10px rgba(24,24,27,.18);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  min-width: 180px;
}
.float-card .avatar {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary);
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
}
.float-card .avatar.coral { background: var(--coral-light); color: var(--coral-dark); }
.float-card .avatar.purple { background: var(--purple-light); color: var(--purple-dark); }
.float-card .avatar.green { background: var(--green-light); color: #1A5C2A; }
.float-card .avatar.gold { background: var(--gold-light); color: #5C4A1A; }
.float-card .avatar.blue { background: var(--blue-light); color: #1A4A5C; }
.float-card .name {
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-base); color: var(--text);
}
.float-card .detail {
  font-size: var(--fs-xs); color: var(--text-tertiary);
  display: flex; align-items: center; gap: 4px;
}
.float-card .detail svg { width: 12px; height: 12px; }
.float-card .tag-row { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 2px; }
.mini-tag {
  font-size: 11px; padding: 4px 10px; border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 500;
}
.mini-tag.coral { background: var(--coral-light); color: var(--coral-dark); }
.mini-tag.purple { background: var(--purple-light); color: var(--purple-dark); }
.mini-tag.green { background: var(--green-light); color: #1A5C2A; }
.mini-tag.gold { background: var(--gold-light); color: #5C4A1A; }
.mini-tag.blue { background: var(--blue-light); color: #1A4A5C; }
.mini-tag.pink { background: var(--pink-light); color: #7A2A40; }

.fc-1 { top: 6%; left: 4%; animation: float1 8s ease-in-out infinite; }
.fc-2 { top: 6%; right: 4%; animation: float2 7s ease-in-out infinite; }
.fc-3 { top: 42%; left: 18%; z-index: 3; animation: float3 9s ease-in-out infinite; }
.fc-4 { bottom: 12%; right: 8%; animation: float4 8s ease-in-out infinite; }
.fc-5 { bottom: 4%; left: 0%; animation: float5 7.5s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-12px); } }
@keyframes float3 { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px); } }
@keyframes float4 { 0%,100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-14px); } }
@keyframes float5 { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-10px); } }

@media (max-width: 980px) { .hero-cards { max-width: 420px; margin: 0 auto; } }
@media (max-width: 520px) {
  .hero-cards { max-width: 340px; }
  .float-card { min-width: 140px; padding: 12px; }
  .float-card .avatar { width: 36px; height: 36px; }
}

/* Marquee */
.marquee {
  padding: var(--s-3) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: var(--s-2); white-space: nowrap;
  animation: scroll 50s linear infinite;
  width: fit-content;
}
.city-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-base);
  flex-shrink: 0;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* Stats */
.stats { padding: var(--s-7) 0; background: var(--bg-warm); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4); text-align: center;
}
.stat-item .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-4xl); color: var(--text); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 6px;
}
.stat-item .label { font-size: var(--fs-sm); color: var(--text-secondary); }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } }

/* Section heading */
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--s-6); }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-top: var(--s-3); margin-bottom: var(--s-3); }
.section-head p { font-size: var(--fs-lg); color: var(--text-secondary); }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-3);
}
.bento-card {
  border-radius: var(--r-xl);
  padding: var(--s-5);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 260px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease);
}
.bento-card:hover { transform: translateY(-3px); }
.bento-card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--r-lg);
  margin-bottom: var(--s-3);
}
.bento-card h3 { font-size: var(--fs-2xl); margin-bottom: var(--s-2); }
.bento-card p { font-size: var(--fs-base); line-height: 1.5; }

.bc-coral { background: var(--coral-light); grid-column: span 4; }
.bc-coral .icon { background: var(--coral); color: white; }
.bc-coral h3, .bc-coral p { color: #4A1F18; }

.bc-purple { background: var(--purple-light); grid-column: span 2; }
.bc-purple .icon { background: var(--purple); color: white; }
.bc-purple h3, .bc-purple p { color: #1F1A4A; }

.bc-green { background: var(--green-light); grid-column: span 2; }
.bc-green .icon { background: var(--green); color: white; }
.bc-green h3, .bc-green p { color: #0F4A1F; }

.bc-blue { background: var(--blue-light); grid-column: span 2; }
.bc-blue .icon { background: var(--blue); color: white; }
.bc-blue h3, .bc-blue p { color: #0F3A4A; }

.bc-gold { background: var(--gold-light); grid-column: span 2; }
.bc-gold .icon { background: var(--gold); color: #4A3A0F; }
.bc-gold h3, .bc-gold p { color: #4A3A0F; }

.bc-dark { background: var(--text); color: white; grid-column: span 4; }
.bc-dark .icon { background: rgba(255,255,255,.1); color: white; }
.bc-dark h3 { color: white; }
.bc-dark p { color: rgba(255,255,255,.7); }

@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento-card { grid-column: span 1 !important; } }
@media (max-width: 580px) { .bento { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-5); }
.step {
  padding: var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg);
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-full);
  background: var(--coral); color: white;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-lg);
  margin-bottom: var(--s-3);
}
.step h3 { font-size: var(--fs-xl); margin-bottom: var(--s-2); }
.step p { font-size: var(--fs-base); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* Screenshots */
.screenshots { padding: var(--s-8) 0; background: var(--bg-warm); overflow: hidden; }
.screenshot-track {
  display: flex; gap: var(--s-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: var(--s-3) var(--s-4);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.screenshot-track::-webkit-scrollbar { display: none; }
.screenshot-item {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 290px);
  scroll-snap-align: center;
  text-align: center;
}
.screenshot-item img {
  width: 100%; height: auto;
  border-radius: var(--r-2xl);
  box-shadow: 0 20px 60px -20px rgba(24,24,27,.25);
  background: white;
}
.screenshot-item .label {
  margin-top: var(--s-3);
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-base); color: var(--text);
}

/* Cities */
.cities-section { padding: var(--s-8) 0; background: var(--bg); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.city-card {
  padding: var(--s-4);
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
  min-height: 160px;
}
.city-card:hover { background: var(--bg); border-color: var(--border); transform: translateY(-2px); }
.city-card .flag { font-size: 22px; line-height: 1; }
.city-card .name {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-lg); color: var(--text);
}
.city-card .meta { font-size: var(--fs-sm); color: var(--text-tertiary); }
.city-card .arrow {
  margin-top: auto; padding-top: var(--s-3);
  color: var(--coral); font-size: var(--fs-sm); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
@media (max-width: 880px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .cities-grid { grid-template-columns: 1fr; } }

/* Memleket */
.memleket-section { padding: var(--s-8) 0; background: var(--bg-warm); }
.memleket-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s-7); align-items: center; }
.mem-pills { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.mem-pill {
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-base);
  white-space: nowrap;
}
@media (max-width: 880px) { .memleket-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { padding: var(--s-8) 0; }
.faq-list { max-width: var(--container-narrow); margin: var(--s-6) auto 0; display: flex; flex-direction: column; gap: var(--s-2); }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bg); overflow: hidden; transition: border-color .2s var(--ease); }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: var(--s-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-lg);
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 400; font-size: var(--fs-2xl);
  color: var(--text-tertiary); line-height: 0.8;
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 var(--s-4) var(--s-4); color: var(--text-secondary); line-height: 1.65; }
.faq-answer p + p { margin-top: var(--s-2); }
.faq-answer a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }

/* Quote */
.quote-section { padding: var(--s-8) 0; background: var(--coral); color: white; }
.quote-section .quote { max-width: 880px; margin: 0 auto; text-align: center; padding: 0 var(--s-4); }
.quote-section blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-4xl); line-height: 1.1; letter-spacing: -0.02em;
  color: white; margin-bottom: var(--s-4);
}
.quote-section cite { font-style: normal; opacity: .85; font-size: var(--fs-base); }

/* CTA box */
.cta-section { padding: var(--s-8) 0; }
.cta-box {
  background: linear-gradient(135deg, var(--text) 0%, #2A2A30 100%);
  color: white;
  border-radius: var(--r-2xl);
  padding: var(--s-8) var(--s-5);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before, .cta-box::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: .35; pointer-events: none;
}
.cta-box::before { background: var(--coral); width: 320px; height: 320px; top: -80px; left: -80px; }
.cta-box::after { background: var(--purple); width: 320px; height: 320px; bottom: -80px; right: -80px; }
.cta-box > * { position: relative; z-index: 2; }
.cta-box h2 { color: white; font-size: var(--fs-5xl); margin-bottom: var(--s-3); }
.cta-box p { color: rgba(255,255,255,.75); font-size: var(--fs-lg); margin-bottom: var(--s-5); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-box .btn-coral { background: white; color: var(--text); }
.cta-box .btn-coral:hover { background: var(--bg-cream); }
.cta-box .btn-outline { color: white; border-color: rgba(255,255,255,.3); }
.cta-box .btn-outline:hover { background: white; color: var(--text); border-color: white; }
.cta-box .cta-buttons { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--text); color: rgba(255,255,255,.7); padding: var(--s-8) 0 var(--s-5); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.footer-brand .nav-logo { color: white; margin-bottom: var(--s-3); }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 320px; font-size: var(--fs-sm); }
.footer h4 {
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  color: white; margin-bottom: var(--s-3); letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-col a {
  display: block; padding: 6px 0;
  font-size: var(--fs-sm); color: rgba(255,255,255,.65);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--s-4);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-3);
  font-size: var(--fs-sm); color: rgba(255,255,255,.5);
}
.footer-langs { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.footer-langs a { color: rgba(255,255,255,.65); }
.footer-langs a:hover { color: white; }
.footer-langs a.active { color: white; font-weight: 500; }
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Content pages */
.page-hero {
  padding: calc(var(--nav-h) + var(--s-7)) 0 var(--s-6);
  background: var(--bg-cream);
  text-align: center;
}
.page-hero h1 { font-size: var(--fs-5xl); margin-bottom: var(--s-3); }
.page-hero p { font-size: var(--fs-lg); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.prose {
  max-width: 720px; margin: 0 auto;
  padding: var(--s-7) var(--s-4);
  font-size: var(--fs-base); line-height: 1.7;
  color: var(--text-secondary);
}
.prose h2 { font-size: var(--fs-3xl); color: var(--text); margin-top: var(--s-6); margin-bottom: var(--s-3); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-xl); color: var(--text); margin-top: var(--s-5); margin-bottom: var(--s-2); }
.prose p { margin-bottom: var(--s-3); }
.prose ul, .prose ol { margin-bottom: var(--s-4); padding-left: var(--s-4); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; padding-left: 4px; }
.prose a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--coral-dark); }
.prose strong { color: var(--text); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-5) 0; }
.prose blockquote { border-left: 3px solid var(--coral); padding-left: var(--s-3); margin: var(--s-4) 0; font-style: italic; color: var(--text); }

/* Breadcrumbs */
.crumbs {
  font-size: var(--fs-sm); color: var(--text-tertiary);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  padding: var(--s-3) 0;
}
.crumbs a { color: var(--text-secondary); }
.crumbs a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.crumbs .sep { color: var(--text-tertiary); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* Utilities */
.text-center { text-align: center; }
.muted { color: var(--text-tertiary); }
.hide-mobile {}
@media (max-width: 720px) { .hide-mobile { display: none !important; } }
.skip { position: absolute; left: -9999px; top: 0; background: var(--text); color: white; padding: 8px 12px; border-radius: var(--r-sm); }
.skip:focus { left: 8px; top: 8px; z-index: 9999; }

@media print {
  .nav, .footer, .hero-cards, .marquee, .cta-section { display: none; }
  body { color: black; background: white; }
}

/* City landing page hero */
.city-hero {
  padding: calc(var(--nav-h) + var(--s-6)) 0 var(--s-6);
  background: linear-gradient(180deg, var(--coral-light) 0%, var(--bg) 100%);
}
.city-hero .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-6); align-items: center; }
.city-hero .flag-big { font-size: 64px; line-height: 1; margin-bottom: var(--s-3); }
.city-hero h1 { font-size: var(--fs-5xl); margin-bottom: var(--s-3); }
.city-hero .lead { font-size: var(--fs-xl); color: var(--text-secondary); margin-bottom: var(--s-4); max-width: 540px; line-height: 1.5; }
.city-hero .actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.city-hero .stat-tile {
  background: white; border-radius: var(--r-lg); padding: var(--s-4);
  border: 1px solid var(--border);
}
.city-hero .stat-tile h3 { font-size: var(--fs-2xl); margin-bottom: 4px; }
.city-hero .stat-tile p { font-size: var(--fs-sm); }
.city-hero-tiles { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
@media (max-width: 880px) { .city-hero .container { grid-template-columns: 1fr; } }

/* Two-column content */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6);
  align-items: start;
}
.two-col h2 { margin-bottom: var(--s-3); }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

/* Feature list with checks */
.check-list { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-4); }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: var(--fs-base); color: var(--text-secondary); line-height: 1.5;
}
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: var(--r-full);
  background: var(--green); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  margin-top: 2px;
}
.check-list li strong { color: var(--text); font-weight: 600; }

/* Big number stat block */
.big-stat {
  text-align: center; padding: var(--s-6) var(--s-4);
  background: var(--bg-warm); border-radius: var(--r-xl);
}
.big-stat .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-6xl); line-height: 1; letter-spacing: -0.04em;
  color: var(--coral); margin-bottom: var(--s-2);
}
.big-stat .label { color: var(--text-secondary); font-size: var(--fs-base); }

/* Comparison table */
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: var(--s-5);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: var(--s-3); text-align: left; font-size: var(--fs-base);
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-warm); font-family: var(--font-display); font-weight: 600;
  color: var(--text);
}
.compare-table td { color: var(--text-secondary); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.compare-table .yes { color: var(--green); font-weight: 600; }
.compare-table .no { color: var(--text-tertiary); }
.compare-table tr:last-child td { border-bottom: 0; }

/* Phone mockup */
.phone-mockup {
  background: var(--text); border-radius: 44px;
  padding: 8px; max-width: 280px; margin: 0 auto;
  box-shadow: 0 30px 80px -30px rgba(24,24,27,.4);
}
.phone-mockup img { border-radius: 36px; width: 100%; }
