/* ============================================================
   MyAirportGenie — marketing site (matches airportgenieapp.com)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --brand: #29B9F2;
  --brand-light: #5cccf6;
  --brand-dark: #14a3e0;
  --accent: #E7BF2E;
  --ink: #222c3a;
  --dark: #23272e;
  --text: #4a5568;
  --text-muted: #7a8598;
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-soft2: #eef7fc;
  --border: #e6edf3;
  --radius: 14px;
  --maxw: 1160px;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
a { color: var(--brand); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Brand / logo */
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.01em; }
.brand img { height: 40px; width: auto; }
.brand .nm { color: #fff; }

/* Header — transparent, sits over the blue hero */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 86px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: .02em; opacity: .95; }
.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

/* Hero — solid sky blue with wave divider */
.hero { position: relative; background: var(--brand); color: #fff; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 140px 0 210px; }
.hero h1 { color: #fff; font-size: clamp(36px, 5.5vw, 58px); font-weight: 800; margin: 0 0 18px; }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.92); max-width: 42ch; margin: 0 0 30px; }
.loc-circle { width: 96px; height: 96px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); display: grid; place-items: center; }
.loc-circle svg { width: 40px; height: 40px; color: #fff; }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual img { max-height: 520px; width: auto; filter: drop-shadow(0 26px 44px rgba(0,0,0,.28)); }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
.hero-wave svg { display: block; width: 100%; height: 190px; }

/* Sections */
section.block { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; text-transform: uppercase; letter-spacing: .01em; }
.section-head p { color: var(--text-muted); font-size: 16px; }

/* Features */
.features { background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; text-align: center; box-shadow: 0 10px 30px -22px rgba(20,30,60,.3); transition: transform .18s ease, box-shadow .18s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 22px 42px -22px rgba(41,185,242,.45); }
.feature-card .icon { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft2); margin: 0 auto 22px; }
.feature-card .icon img { width: 44px; height: 44px; object-fit: contain; }
.feature-card h3 { font-size: 19px; font-weight: 600; color: var(--ink); }
.feature-card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* Download band */
.download-band { background: var(--brand); color: #fff; }
.download-band .container { padding-top: 66px; padding-bottom: 66px; text-align: center; }
.download-band h2 { color: #fff; font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; text-transform: uppercase; }
.download-band p { color: rgba(255,255,255,.9); max-width: 46ch; margin: 0 auto 30px; }
.stores { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.store-pill { display: inline-flex; align-items: center; gap: 12px; background: #fff; color: #1a2b3a; border-radius: 40px; padding: 13px 28px; font-family: var(--font-display); font-weight: 600; font-size: 15px; transition: transform .15s ease, box-shadow .15s ease; }
.store-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(0,0,0,.3); }
.store-pill img { width: 26px; height: 26px; }

/* Footer */
.site-footer { background: var(--dark); color: #b7c0cf; padding: 44px 0 28px; }
.footer-contact { text-align: center; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; color: #d5dbe6; font-size: 15px; }
.footer-contact .env { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; }
.footer-contact .env svg { width: 16px; height: 16px; }
.footer-mid { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px 0 26px; flex-wrap: wrap; }
.footer-mid .brand .nm { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-links a { color: #b7c0cf; font-size: 15px; }
.footer-links a:hover { color: var(--brand-light); }
.footer-copy { text-align: center; padding-top: 18px; color: #8794a6; font-size: 13.5px; border-top: 1px solid rgba(255,255,255,.08); }

/* Legal pages */
.legal-hero { position: relative; background: var(--brand); color: #fff; padding: 128px 0 60px; }
.legal-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 40px); }
.legal-hero .meta { color: rgba(255,255,255,.9); font-size: 14px; margin-top: 8px; }
.legal-body { padding: 56px 0 80px; }
.legal-body .container { max-width: 860px; }
.legal-body h2 { font-size: 22px; color: var(--ink); margin-top: 40px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text); font-size: 16px; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body .intro { color: var(--text-muted); font-size: 17px; }
.legal-toc { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 40px; }
.legal-toc h4 { margin: 0 0 12px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.legal-toc a { font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 120px 0 170px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .loc-circle { margin: 0 auto; }
  .hero-visual { margin-top: 30px; }
  .hero-visual img { max-height: 420px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-mid { flex-direction: column; text-align: center; }
  .footer-links { text-align: center; }
  .legal-toc ol { columns: 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  section.block { padding: 60px 0; }
}
