/* ============================================================
   GO XL — Premium Executive Transportation
   Design System
   ============================================================ */

:root {
  /* Brand */
  --navy:        #1A1A2E;
  --navy-light:  #16213E;
  --navy-deep:   #0F0F1E;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-soft:   rgba(201, 168, 76, 0.12);

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;
  --cream:       #F5F3EC;
  --gray-100:    #F2F2F4;
  --gray-200:    #E5E5EA;
  --gray-300:    #C9C9D1;
  --gray-400:    #9A9AA6;
  --gray-500:    #6E6E7A;
  --gray-600:    #4A4A55;
  --text:        #1A1A2E;
  --text-muted:  #5C5C68;

  /* Type */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:   1200px;
  --radius:      14px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(26, 26, 46, 0.06);
  --shadow-md:   0 12px 32px rgba(26, 26, 46, 0.10);
  --shadow-lg:   0 24px 60px rgba(26, 26, 46, 0.16);
  --transition:  0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

.section-title { margin-bottom: 18px; }
.section-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
}
.section--dark .section-lead { color: rgba(255,255,255,0.72); }

.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.32);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 168, 76, 0.42); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
/* Real PNG logo — two variants: dark-bg (white tagline) and light-bg (dark tagline) */
.logo-img {
  height: 128px;  /* 200% larger */
  width: auto;
  display: block;
  object-fit: contain;
}
/* Header not scrolled (dark/transparent bg): show white-tagline variant */
.logo-img-dark  { display: block; }
.logo-img-light { display: none;  }
/* Header scrolled (white bg): swap to dark-tagline variant */
.header.scrolled .logo-img-dark  { display: none;  }
.header.scrolled .logo-img-light { display: block; }
/* Footer always dark */
.footer .logo-img-dark  { display: block; height: 140px; }
.footer .logo-img-light { display: none;  }
/* Legacy (unused) */
.logo-mark { display: none; }
/* Nav height to match larger logo */
.nav { height: 160px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  position: relative;
}
.header.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* Language toggle */
.lang-toggle {
  display: flex;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  overflow: hidden;
}
.header.scrolled .lang-toggle { border-color: var(--gray-300); }
.lang-toggle button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.header.scrolled .lang-toggle button { color: var(--gray-500); }
.lang-toggle button.active { background: var(--gold); color: var(--navy); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.header.scrolled .nav-toggle span { background: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(201,168,76,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%; bottom: -20%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-content h1 { margin-bottom: 26px; }
.hero-content h1 .gold { color: var(--gold); font-style: italic; }
.hero-lead {
  font-size: 1.22rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 44px; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone {
  width: 300px;
  height: 600px;
  background: linear-gradient(160deg, #20203a, #14142a);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(201,168,76,0.2);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0c0c18;
  border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(170deg, #1f1f38 0%, #15152b 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-map {
  flex: 1;
  background:
    linear-gradient(120deg, rgba(201,168,76,0.08), transparent),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 22px),
    #191932;
  position: relative;
}
.map-route {
  position: absolute;
  top: 30%; left: 22%;
  width: 56%; height: 40%;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 0 40px;
  opacity: 0.85;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201,168,76,0.25);
}
.map-pin.start { top: 28%; left: 20%; }
.map-pin.end { bottom: 28%; right: 20%; background: var(--white); box-shadow: 0 0 0 5px rgba(255,255,255,0.2); }
.car-icon {
  position: absolute;
  top: 50%; left: 48%;
  font-size: 22px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.phone-card {
  background: #fff;
  margin: 0;
  padding: 22px 22px 26px;
  border-radius: 24px 24px 0 0;
  color: var(--navy);
}
.pc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pc-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: grid; place-items: center; color: var(--gold); font-weight: 700; }
.pc-name { font-weight: 700; font-size: 0.95rem; }
.pc-sub { font-size: 0.78rem; color: var(--gray-500); }
.pc-rating { margin-left: auto; font-size: 0.85rem; font-weight: 600; color: var(--gold); }
.pc-divider { height: 1px; background: var(--gray-200); margin: 14px 0; }
.pc-eta { display: flex; justify-content: space-between; font-size: 0.85rem; }
.pc-eta strong { font-family: var(--font-display); font-size: 1.05rem; }
.pc-btn { margin-top: 16px; background: var(--navy); color: #fff; text-align: center; padding: 13px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; }

/* Floating badge */
.float-badge {
  position: absolute;
  background: #fff;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: floaty 4s ease-in-out infinite;
}
.float-badge .ic { font-size: 1.2rem; }
.float-badge.fb-1 { top: 80px; left: -30px; }
.float-badge.fb-2 { bottom: 110px; right: -36px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-deep); padding: 26px 0; }
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item .ic { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   FEATURES / CARDS
   ============================================================ */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section--dark .card p { color: rgba(255,255,255,0.66); }
.section--dark .card:hover { background: rgba(255,255,255,0.07); }

/* ---------- How it works (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }
.section--dark .step p { color: rgba(255,255,255,0.66); }

/* ---------- Split / showcase ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  min-height: 460px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-img .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.22), transparent 60%);
}
.feature-list { margin-top: 30px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature-list .fi-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.feature-list .fi-tx strong { display: block; margin-bottom: 2px; }
.feature-list .fi-tx span { color: var(--text-muted); font-size: 0.95rem; }
.section--dark .feature-list .fi-tx span { color: rgba(255,255,255,0.66); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(201,168,76,0.18), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.74); max-width: 560px; margin: 0 auto 36px; font-size: 1.1rem; }
.app-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 14px;
  transition: var(--transition);
  font-weight: 600;
}
.app-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.app-badge .ic { font-size: 1.6rem; }
.app-badge .tx small { display: block; font-size: 0.68rem; font-weight: 500; opacity: 0.7; }
.app-badge .tx strong { font-size: 1.05rem; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(900px 400px at 75% -20%, rgba(201,168,76,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 220px 0 90px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.74); max-width: 600px; margin: 0 auto; font-size: 1.12rem; }

/* ---------- Legal / prose ---------- */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; }
.legal-nav { position: sticky; top: 110px; align-self: start; }
.legal-nav h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.legal-nav a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.legal-nav a:hover, .legal-nav a.active { background: var(--gold-soft); color: var(--navy); border-left-color: var(--gold); }

.prose { max-width: 760px; }
.prose .doc-block { margin-bottom: 64px; scroll-margin-top: 110px; }
.prose h2 { font-size: 1.9rem; margin-bottom: 8px; }
.prose .updated { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 28px; }
.prose h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 700; margin: 30px 0 10px; }
.prose p { color: var(--text-muted); margin-bottom: 16px; }
.prose ul.bullets { margin: 0 0 16px 0; }
.prose ul.bullets li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--text-muted); }
.prose ul.bullets li::before { content: ''; position: absolute; left: 6px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   DRIVER PAGE
   ============================================================ */
.earn-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
}
.earn-card .big {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.earn-card .lbl { color: rgba(255,255,255,0.7); margin-top: 8px; }

.req-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.req-list .ck { color: var(--gold); font-size: 1.2rem; }

/* ============================================================
   CONTACT / ABOUT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 18px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-card .ic { font-size: 1.5rem; }
.contact-card h4 { font-family: var(--font-body); margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
  background: var(--off-white);
}
.form-control:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px var(--gold-soft); }
textarea.form-control { resize: vertical; min-height: 130px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-item .ic { font-size: 2rem; margin-bottom: 14px; }
.value-item h3 { margin-bottom: 10px; }
.value-item p { color: var(--text-muted); }
.section--dark .value-item p { color: rgba(255,255,255,0.66); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 80px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo { color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: 0.92rem; max-width: 300px; margin-bottom: 22px; }
.social { display: flex; gap: 12px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: var(--transition);
}
.social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h5 { font-family: var(--font-body); color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.92rem; padding: 7px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom .legal-links a:hover { color: var(--gold); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content h1 { margin-top: 20px; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { min-height: 320px; order: -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 84px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { color: var(--navy); }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* hide elements per language */
[data-lang-hidden] { display: none !important; }
