/* Space Grotesk, self hosted (SIL Open Font Licence, see fonts/OFL.txt).
   A real typeface for headings is the fastest way to stop a site looking
   like a default template. Body text stays on the system stack so it loads
   instantly and reads like an interface. */
@font-face {
  font-family: "Space Grotesk";
  src: url("/static/fonts/space-grotesk-latin.woff2?v=26") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Price Guard Rideshare. Bump ASSET_VERSION in main.py when this file changes. */

:root {
  --ink: #14161b;
  --ink-2: #2a2f3a;
  --body: #4a5261;
  --line: #e3e6ec;
  --bg: #ffffff;
  --bg-alt: #f5f8f8;
  --brand: #f5b700;
  --brand-dark: #d29d00;
  /* third colour: deep teal. 5.0:1 on white and on itself, so it is safe for
     text and buttons, and it is the natural counterpart to a yellow. */
  --accent: #0d7d72;
  --accent-dark: #0a6a61;
  --accent-soft: #e7f4f2;
  --night: #0c0d10;
  --night-2: #14161b80;
  --danger: #c0392b;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(10, 11, 14, .06), 0 12px 32px rgba(10, 11, 14, .09);
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700;
  letter-spacing: -.025em; font-family: var(--font-display); }
h1 em { font-style: normal; color: var(--brand); }
.brand-text, .eyebrow, .btn, .strip-grid strong, .foot-brand, .reference, .airport-code,
.why-card h3, .card-title { font-family: var(--font-display); }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.16rem; }
p { margin: 0 0 1em; }
a { color: var(--ink); text-decoration-color: rgba(20, 22, 27, .3); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
img, svg { max-width: 100%; }

.wrap { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(760px, 100% - 2.5rem); }
.muted { color: #6b7383; }
.small { font-size: .87rem; }
.center-link { text-align: center; margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: .6rem 1rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  background: var(--brand); color: var(--night); border-radius: 9px;
}
.brand-text { font-size: 1.06rem; }
.brand-logo { display: block; height: 46px; width: auto; object-fit: contain; }
.brand-has-logo { gap: .6rem; min-height: 46px; }
.brand-words { display: grid; line-height: 1.05; }
.brand-sub {
  font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--brand-dark);
}
.foot-logo { display: block; height: 74px; width: auto; margin-bottom: .9rem; }

.nav { display: flex; gap: 1.4rem; margin-left: auto; }
.nav a { text-decoration: none; font-size: .95rem; font-weight: 600; color: var(--ink-2); }
.nav a:hover { color: var(--accent-dark); }
.head-actions { display: flex; align-items: center; gap: 1rem; }
.phone-link { font-weight: 700; text-decoration: none; white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .82rem 1.35rem; border-radius: 10px; font-weight: 700; font-size: .97rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--night); box-shadow: 0 6px 18px rgba(245, 183, 0, .35); }
.btn-primary:hover { background: #ffc617; color: var(--night); }
.btn-ghost { border-color: rgba(13, 125, 114, .45); color: var(--accent-dark); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-soft); }
.btn-sm { padding: .58rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; margin-top: .5rem; }
.link-arrow { font-weight: 700; text-decoration: none; color: var(--accent-dark); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.link-arrow:hover { color: var(--accent-dark); border-bottom-color: var(--accent-dark); }
.big-link { font-size: 1.35rem; font-weight: 800; text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(245, 183, 0, .17), transparent 62%),
    radial-gradient(760px 420px at 92% 8%, rgba(13, 125, 114, .34), transparent 62%),
    linear-gradient(180deg, #14161b 0%, var(--night) 100%);
  color: #dbe1ee;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.hero h1 { color: #fff; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .74rem; font-weight: 800; color: var(--brand);
  border: 1px solid rgba(245, 183, 0, .4); border-radius: 999px; padding: .3rem .8rem;
  margin-bottom: 1.4rem;
}
.lede { font-size: 1.1rem; }
.hero .lede { color: #b9c3d6; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }
.hero .btn-ghost { border-color: rgba(255, 255, 255, .3); color: #fff; }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.ticks li { position: relative; padding-left: 1.7rem; color: #b9c3d6; font-size: .97rem; }
.ticks a { color: #fff; text-decoration-color: var(--brand); }
.ticks a:hover { color: var(--brand); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 9px; height: 5px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* ---------- 3D hero stage ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
.hero-stage { position: relative; display: grid; place-items: center; min-height: 320px; }
.stage-3d {
  --rx: 0; --ry: 0;
  position: relative; width: min(560px, 100%); transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(calc(var(--rx) * -5deg)) rotateY(calc(var(--ry) * 11deg));
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}
.stage-3d picture { display: contents; }
.stage-glow {
  position: absolute; left: 50%; top: 52%; width: 96%; height: auto;
  transform: translate3d(-50%, -50%, -70px) scale(1.18); opacity: .55; filter: blur(4px);
}
.stage-car {
  position: relative; display: block; width: 100%; height: auto;
  transform: translateZ(46px);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .6));
  animation: stage-float 7s ease-in-out infinite;
}
.stage-reflect {
  position: absolute; left: 0; top: 100%; width: 100%; height: auto;
  transform: translateZ(20px) scaleY(-1); opacity: .22; filter: blur(1.5px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 62%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 62%);
}
.stage-floor {
  position: absolute; left: 50%; top: 100%; width: 118%; height: 60px;
  transform: translate3d(-50%, -46%, 0);
  background: radial-gradient(60% 100% at 50% 0%, rgba(245, 183, 0, .32), transparent 72%);
  filter: blur(6px);
}
@keyframes stage-float {
  0%, 100% { transform: translateZ(46px) translateY(0); }
  50%      { transform: translateZ(46px) translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .stage-car { animation: none; }
  .stage-3d { transition: none; }
}

.hero-badge {
  display: block; height: 92px; width: auto; margin: 0 0 1.1rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}

/* ---------- hero calls to action ---------- */
.hero-actions-lg { gap: .9rem; margin: 1.9rem 0 1.1rem; }
.btn-call { background: #fff; color: var(--night); }
.btn-call:hover { background: var(--bg-alt); color: var(--night); }
.hero-secondary { font-size: .95rem; color: #b9c3d6; margin-bottom: 1.6rem; }
.hero-secondary a { color: #fff; text-decoration-color: var(--brand); font-weight: 700; }
.hero-secondary a:hover { color: var(--brand); }
.hero h1 { font-size: clamp(1.85rem, 3.9vw, 2.85rem); max-width: 16ch; }

/* ---------- video ---------- */
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--night);
  aspect-ratio: 16 / 9;
}
.video-frame iframe, .video-play { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-frame iframe { border: 0; }
.video-play { padding: 0; border: 0; background: none; cursor: pointer; display: block; }
.video-play picture { display: contents; }
.video-play img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%;
  background: var(--brand); color: var(--night);
  box-shadow: 0 8px 26px rgba(10, 11, 14, .45); transition: transform .14s ease;
}
.video-play:hover .video-btn { transform: translate(-50%, -50%) scale(1.07); }
.video-note { text-align: center; margin: .9rem 0 0; font-size: .9rem; color: #6b7383; }

/* ---------- why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: var(--shadow);
}
.why-card h3 { font-size: 1.06rem; margin-bottom: .35em; }
.why-card p { margin: 0; font-size: .94rem; }
.why-icon {
  display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: .8rem;
  background: var(--accent-soft); border: 1px solid rgba(13, 125, 114, .35);
  border-radius: 10px; color: var(--accent-dark); font-size: 1.05rem; font-weight: 800;
}

/* ---------- request a ride ---------- */
.request-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 1.5rem; align-items: start; }

/* ---------- mobile action bar ---------- */
.mobile-bar { display: none; }

/* ---------- cards / sections ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.card p:last-child { margin-bottom: 0; }
.form-card { padding: clamp(1.35rem, 2.6vw, 2rem); }
.card-title { font-size: 1.3rem; margin-bottom: 1.1rem; }

.section { padding: clamp(3rem, 6vw, 4.75rem) 0; }
.section.alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section-head { max-width: 62ch; margin-bottom: 2.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.fleet-card .specs { list-style: none; padding: 0; margin: 0 0 .9rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.fleet-card .specs li {
  font-size: .8rem; font-weight: 600; color: var(--ink-2);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: .2rem .65rem;
}

.page-head { padding: clamp(2.5rem, 5vw, 3.5rem) 0 0; }
.page-head .lede { max-width: 60ch; }

.strip { background: var(--night); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.5rem 0; text-align: center; }
.strip-grid div { display: grid; gap: .1rem; }
.strip-grid strong { font-size: 1.3rem; color: var(--brand); letter-spacing: -.02em; }
.strip-grid span { font-size: .85rem; color: #9fabc2; }


.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.25rem; margin-bottom: .75rem;
}
.faq summary { font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: .8rem 0 0; }

/* ---------- forms ---------- */
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }
label { display: block; font-size: .86rem; font-weight: 700; color: var(--ink-2); margin-bottom: .35rem; }
.opt { font-weight: 500; color: #8a91a0; }
input, select, textarea {
  width: 100%; padding: .72rem .85rem; font: inherit; font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid #cfd4de; border-radius: 10px;
  transition: border-color .12s ease, box-shadow .12s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-dark); box-shadow: 0 0 0 3px rgba(245, 183, 0, .25);
}
textarea { resize: vertical; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--danger); }
.err { display: block; margin-top: .3rem; font-size: .84rem; color: var(--danger); font-weight: 600; }
.form-alert {
  background: #fdecea; border: 1px solid #f3c0ba; color: #8c2b20;
  padding: .7rem .9rem; border-radius: 10px; font-size: .9rem; font-weight: 600;
}
.form-note { font-size: .85rem; color: #6b7383; margin: .9rem 0 0; }

.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: start; }
.book-aside { display: grid; gap: 1rem; }

.success h2 { margin-bottom: .5rem; }

/* ---------- cta + footer ---------- */
.cta { background: var(--night); color: #dbe1ee; padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 3px solid var(--accent); }
.cta h2 { color: #fff; margin-bottom: .3rem; }
.cta p { margin: 0; color: #b9c3d6; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta .btn-ghost { border-color: rgba(255, 255, 255, .3); color: #fff; }

.site-foot { background: #08090b; color: #93a0b8; padding: 3rem 0 1.5rem; }
.site-foot a:focus-visible { outline: 2px solid var(--brand); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-foot p { margin: 0 0 .4rem; font-size: .93rem; }
.site-foot a { color: #dbe1ee; text-decoration: none; }
.site-foot a:hover { color: var(--brand); }
.social-links { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: .7rem !important; }
.social-links a { font-weight: 600; font-size: .88rem; border-bottom: 2px solid rgba(245, 183, 0, .5); }
.foot-brand { font-weight: 800; color: #fff; font-size: 1.1rem; }
.foot-title { font-weight: 700; color: #fff; margin-bottom: .6rem !important; font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; }
.site-foot .muted { color: #7b879d; }
.build-stamp { opacity: .55; font-size: .78rem; }
.foot-bottom { border-top: 1px solid #1d2027; margin-top: 2rem; padding-top: 1.2rem; }

/* ---------- booking panel ---------- */
.book-panel {
  display: grid; grid-template-columns: 1.5fr .8fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; max-width: 900px; margin: 0 auto;
}
.book-panel-main {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: radial-gradient(80% 100% at 0% 0%, rgba(245, 183, 0, .13), transparent 70%), #fff;
}
.book-panel-title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin: 0 0 .4rem; }
.book-panel-text { margin: 0 0 1.2rem; max-width: 44ch; }
.book-panel-note { margin: .8rem 0 0; font-size: .84rem; color: #6b7383; }
.book-panel-side {
  padding: clamp(1.6rem, 4vw, 2.4rem); background: var(--bg-alt);
  border-left: 1px solid var(--line); display: grid; align-content: start; gap: .6rem;
}
.book-panel-or { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 800; color: #8a91a0; margin: 0 0 .2rem; }
.book-panel-side .btn { width: 100%; }
.book-panel-side .muted { margin: .5rem 0 0; }

/* ---------- booking call to action (kept for pages without the embed) ---------- */
.book-cta {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.book-cta-main { padding: clamp(1.5rem, 3.5vw, 2.4rem); }
.book-cta-main h3 { font-size: 1.35rem; }
.book-cta-main p { max-width: 46ch; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; gap: .55rem; }
.book-cta-note { font-size: .84rem; color: #6b7383; margin: .8rem 0 0; }
.book-cta-side {
  padding: clamp(1.5rem, 3.5vw, 2.4rem); background: var(--bg-alt);
  border-left: 1px solid var(--line); display: grid; align-content: start; gap: .6rem;
}
.book-cta-or {
  text-transform: uppercase; letter-spacing: .16em; font-size: .72rem;
  font-weight: 800; color: #8a91a0; margin: 0 0 .2rem;
}
.book-cta-side .btn { width: 100%; }
.book-cta-side .muted { margin: .5rem 0 0; }

.hero-side { display: flex; flex-direction: column; align-items: center; }
.quote-card {
  width: 100%; max-width: 380px; background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius);
  padding: 1.6rem; backdrop-filter: blur(4px);
}
.quote-card-step {
  display: flex; align-items: flex-start; gap: .7rem; color: #dbe1ee;
  font-weight: 600; font-size: .97rem; margin-bottom: .9rem;
}
.quote-card-step span {
  flex: 0 0 auto; display: grid; place-items: center; width: 26px; height: 26px;
  background: var(--brand); color: var(--night); border-radius: 50%; font-size: .82rem; font-weight: 800;
}
.quote-card .btn-block { margin-top: 1.2rem; }
.quote-card-note { margin: .8rem 0 0; font-size: .84rem; color: #93a0b8; text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
/* ---------- landing pages ---------- */
.crumbs { font-size: .84rem; color: #6b7383; margin-bottom: .9rem; }
.crumbs a { color: var(--accent-dark); }
.crumbs span[aria-hidden] { margin: 0 .35rem; opacity: .6; }
.book-split { display: grid; grid-template-columns: 1.5fr .8fr; gap: 2.2rem; align-items: start; }
.book-split h2 { font-size: 1.4rem; margin-top: 2rem; }
.book-split h2:first-child { margin-top: 0; }
.ticks-light li { color: var(--body); }
.ticks-light li::before { border-color: var(--brand-dark); }
.specs-list { list-style: none; padding: 0; margin: 0 0 .9rem; display: grid; gap: .35rem; font-size: .93rem; }
.specs-list strong { color: var(--ink); }
.card-h { font-size: 1.16rem; margin-bottom: .5em; }
.page-head .hero-actions { margin-bottom: .5rem; }
.area-list a { text-decoration: none; color: var(--ink); }
.area-list li:has(a):hover { border-color: var(--accent); background: var(--accent-soft); }
/* ---------- service area ---------- */
.areas { background: var(--bg-alt); border-block: 1px solid var(--line); }
.area-list {
  list-style: none; padding: 0; margin: 0 auto 1.4rem; max-width: 900px;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.area-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem 1.05rem; font-weight: 600; font-size: .94rem; color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(10, 11, 14, .05);
}
.area-list li::before { content: "\1F4CD"; margin-right: .4rem; opacity: .75; font-size: .85em; }
/* ---------- landing page building blocks ---------- */
.answer-box {
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 1rem 1.2rem; margin: 0 0 1.4rem;
  font-size: 1.02rem; color: var(--ink-2); max-width: 62ch;
}
.stack { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.stack-item { border-left: 3px solid var(--line); padding-left: 1.1rem; }
.stack-item h2, .stack-item h3 { font-size: 1.12rem; margin-bottom: .3em; }
.stack-item p { margin: 0; }
.steps-list { margin: 0 0 2rem; padding-left: 1.2rem; display: grid; gap: .6rem; }
.steps-list li { padding-left: .3rem; }
.chip-list {
  list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem;
}
.chip-list li {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px;
  padding: .35rem .85rem; font-size: .88rem; font-weight: 600; color: var(--ink-2);
}
.chip-list a { text-decoration: none; color: inherit; }
.chip-list li:has(a):hover { border-color: var(--accent); background: var(--accent-soft); }

/* ---------- trust signals ---------- */
.trust-section { padding-top: 0; }
.trust-row {
  list-style: none; padding: 0; margin: 0; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-row li {
  display: grid; gap: .2rem; padding: 1rem 1.1rem; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 12px;
}
.trust-row strong { font-family: var(--font-display); font-size: .98rem; color: var(--ink); }
.trust-row span { font-size: .85rem; color: var(--body); }

/* ---------- explore / internal linking ---------- */
.explore-section { border-top: 1px solid var(--line); }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.explore-title {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--accent-dark);
  margin: 0 0 .7rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line);
}
.explore-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.explore-grid a { text-decoration: none; font-size: .95rem; color: var(--ink-2); font-weight: 600; }
.explore-grid a:hover { color: var(--accent-dark); }

/* ---------- comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.compare-col { border-radius: var(--radius); padding: 1.4rem 1.5rem; border: 1px solid var(--line); }
.compare-app { background: var(--bg-alt); }
.compare-us { background: var(--night); border-color: var(--night); }
.compare-head {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  margin-bottom: .9rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line);
}
.compare-app .compare-head { color: var(--ink-2); }
.compare-us .compare-head { color: var(--brand); border-bottom-color: #262b35; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.compare-col li { position: relative; padding-left: 1.7rem; font-size: .95rem; }
.compare-app li { color: var(--body); }
.compare-app li::before {
  content: "\00d7"; position: absolute; left: 0; top: -.1em; color: #b3382b;
  font-size: 1.15rem; font-weight: 700;
}
.compare-us li { color: #dbe1ee; }
.compare-us li::before {
  content: ""; position: absolute; left: .15rem; top: .45em; width: 9px; height: 5px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* ---------- service area map ---------- */
.service-map {
  display: block; width: 100%; height: auto; max-width: 900px; margin: 0 auto 1.6rem;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* ---------- farecoop referral ---------- */
.farecoop-section { padding-top: 0; }
.farecoop {
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 1.4rem; align-items: center;
  background: var(--bg-alt); border: 1px dashed #c8cedb; border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.farecoop-label {
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  font-size: 1.05rem; margin: 0 0 .3rem;
}
.farecoop-text { margin: 0; font-size: .94rem; color: var(--body); }
.farecoop-join { text-align: right; }
.farecoop-code-label { margin: 0 0 .25rem; font-size: .78rem; color: #6b7383; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }
.farecoop-code { margin: 0 0 .7rem; display: flex; gap: .5rem; justify-content: flex-end; align-items: center; }
.farecoop-code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.05rem;
  font-weight: 700; letter-spacing: .14em; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: .35rem .7rem;
}
.code-copy {
  font: inherit; font-size: .8rem; font-weight: 700; cursor: pointer; color: var(--accent-dark);
  background: none; border: 1px solid rgba(13, 125, 114, .45); border-radius: 8px; padding: .3rem .6rem;
}
.code-copy:hover { background: var(--accent-soft); }

/* ---------- reviews ---------- */
.review-card { display: grid; gap: .5rem; }
.stars { color: var(--brand); letter-spacing: .12em; margin: 0; font-size: 1.05rem; }
.review-text { margin: 0; font-size: .96rem; }
.review-who { margin: 0; font-weight: 700; color: var(--ink-2); font-size: .88rem; }

/* ---------- booking page ---------- */
.instant-card { border-color: rgba(245, 183, 0, .55); background: #fffdf5; }
.airport-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.rate-card { margin: 0 auto 2rem; max-width: 760px; }
.rate-note { margin-top: 1rem; }
.rate-card .fares { margin-top: 1rem; }

.airport-rates { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.4rem 0; }
.airport-rates > div {
  background: var(--accent-soft); border: 1px solid rgba(13, 125, 114, .3);
  border-radius: 12px; padding: .8rem 1.1rem; display: grid; gap: .1rem;
}
.airport-rates strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.airport-rates span { font-size: .82rem; color: #56606f; }

.cost-intro { margin-bottom: 1.6rem; }
.cost-intro strong { color: var(--ink); }

/* ---------- fare estimate ---------- */
.fare-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: .8rem; align-items: end; }
.fare-form .field { margin-bottom: 0; }
.fare-form .btn { height: 46px; }
.fare-result {
  margin-top: 1.4rem; padding-top: 1.3rem; border-top: 1px dashed #c8cedb;
}
.fare-route { font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.fare-figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1rem 0; }
.fare-figures > div {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px;
  padding: .9rem 1rem; display: grid; gap: .1rem;
}
.fare-figures strong { font-size: 1.3rem; color: var(--ink); font-family: var(--font-display); letter-spacing: -.02em; }
.fare-figures span { font-size: .8rem; color: #6b7383; }
.fare-price { background: var(--accent-soft) !important; border-color: rgba(13, 125, 114, .35) !important; }
.fare-price strong { color: var(--accent-dark); }
.fare-note { font-size: .95rem; color: var(--body); }
.fare-cards { margin-top: 1.5rem; }
.notice {
  background: var(--accent-soft); border: 1px solid rgba(13, 125, 114, .3);
  border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1.5rem;
}
.notice p { margin: 0; font-size: .92rem; }

/* ---------- FAQ page ---------- */
.quick-answer {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 2.2rem;
}
.quick-answer h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.answer-list { margin: 0; }
.answer-list > div {
  display: grid; grid-template-columns: 170px 1fr; gap: 1rem;
  padding: .6rem 0; border-top: 1px solid var(--line);
}
.answer-list > div:first-child { border-top: 0; padding-top: 0; }
.answer-list dt { font-weight: 700; color: var(--ink-2); font-size: .9rem; }
.answer-list dd { margin: 0; color: var(--ink); }
.faq-page summary { align-items: center; }
.faq-q { display: inline; font-size: 1.02rem; margin: 0; font-weight: 700; }
.hero-sub {
  color: var(--brand); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  margin: -.3em 0 1em;
}
/* ---------- flight tracker ---------- */
.tracker-form { display: grid; grid-template-columns: 120px 1fr auto; gap: .8rem; align-items: end; }
.tracker-form .field { margin-bottom: 0; }
.tracker-form input { text-transform: uppercase; }
.tracker-form input#number { text-transform: none; }
.tracker-form .btn { height: 46px; }
.airport-boards { margin-top: 2.5rem; }
.airport-boards h2 { font-size: 1.35rem; margin-bottom: 1.1rem; }
.airport-code {
  display: inline-block; font-weight: 800; letter-spacing: .12em; font-size: .8rem;
  color: var(--night); background: var(--brand); border-radius: 6px;
  padding: .15rem .5rem; margin: 0 0 .6rem;
}
.airport-card h3 { font-size: 1.02rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.prose p { margin-bottom: 1.1em; }
.prose strong { color: var(--ink); }

/* floating call button (bottom LEFT: the Tawk.to chat bubble owns the right) */
.widget-dock {
  position: fixed; left: 1.1rem; right: auto; bottom: 1.1rem; z-index: 70;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.widget-btn {
  display: grid; place-items: center; border-radius: 50%; text-decoration: none;
  border: 0; padding: 0; cursor: pointer; font: inherit;
  box-shadow: 0 6px 18px rgba(10, 11, 14, .3);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.widget-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 24px rgba(10, 11, 14, .36); }
.widget-call {
  width: 56px; height: 56px; background: var(--brand); color: var(--night);
}
.widget-call:hover { background: #ffc617; color: var(--night); }
.widget-call svg { width: 22px; height: 22px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .contact-grid, .book-split, .request-grid { grid-template-columns: 1fr; }
  .hero-badge { height: 78px; }
  .hero-stage { min-height: 0; margin-top: .5rem; }
  .stage-3d { width: min(460px, 96%); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-card { max-width: 420px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .fleet, .trust-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 62px; }
  .hero-badge { height: 66px; margin-bottom: .9rem; }
  .stage-3d { width: min(420px, 100%); }
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 72;
    background: var(--night); box-shadow: 0 -4px 18px rgba(10, 11, 14, .3);
  }
  .mobile-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: .18rem;
    padding: .7rem .4rem calc(.7rem + env(safe-area-inset-bottom, 0px));
    color: #dbe1ee; text-decoration: none; font-size: .72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .07em; border-top: 3px solid transparent;
  }
  .mobile-bar a:first-child { border-right: 1px solid #23272f; }
  .mobile-bar a:last-child { border-left: 1px solid #23272f; }
  .mobile-bar a:active { background: rgba(255, 255, 255, .08); }
  .mobile-bar-main { background: var(--brand); color: var(--night) !important; flex: 1.4; border-top-color: #ffd75e; }
  .widget-dock { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .request-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 40px; }
  .brand-text { font-size: .98rem; }
  .grid-3, .fleet, .field-row, .field-row.three { grid-template-columns: 1fr; }
  .answer-list > div { grid-template-columns: 1fr; gap: .1rem; }
  .quote-embed iframe { height: 1220px; }
  .tracker-form, .fare-form { grid-template-columns: 1fr; }
  .compare, .farecoop, .book-panel { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .trust-row { grid-template-columns: 1fr; }
  .book-panel-side { border-left: 0; border-top: 1px solid var(--line); }
  .farecoop-join { text-align: left; }
  .farecoop-code { justify-content: flex-start; }
  .fare-figures { grid-template-columns: 1fr; }
  .tracker-form .btn { width: 100%; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .phone-link { display: none; }
  .cta-inner { align-items: flex-start; }
  .widget-dock { left: .8rem; right: auto; bottom: .8rem; }
  .widget-call { width: 52px; height: 52px; }
}
