/* ============================================================
   EasyCab V2.1 — components.css
   Hero · Trust bar · Steps · Fleet cards · Features · Compare
   Coverage · Testimonials · FAQ · CTA closer · Big word
   ============================================================ */

/* ===== Hero ===== */
.hero {
  position: relative; padding: 64px 0 110px;
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 12%, rgba(232,90,31,.12), transparent 65%),
    radial-gradient(70% 60% at 8% 90%, rgba(26,74,53,.13), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 60px; align-items: end;
}
.hero h1 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(56px, 8.4vw, 128px);
  line-height: .94; letter-spacing: -.025em; margin: 30px 0 26px;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(110%); will-change: transform; }
.hero.in h1 .word > span { transform: translateY(0); transition: transform 1s var(--ease-out); }
.hero.in h1 .word:nth-child(1) > span { transition-delay: .05s; }
.hero.in h1 .word:nth-child(2) > span { transition-delay: .15s; }
.hero.in h1 .word:nth-child(3) > span { transition-delay: .25s; }
.hero.in h1 .word:nth-child(4) > span { transition-delay: .35s; }
.hero.in h1 .word:nth-child(5) > span { transition-delay: .45s; }
.hero.in h1 .word:nth-child(6) > span { transition-delay: .55s; }

.hero-lede {
  font-size: 18px; color: var(--ink-2); max-width: 52ch; line-height: 1.55;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .6s, transform .9s var(--ease-out) .6s;
}
.hero.in .hero-lede { opacity: 1; transform: none; }

.hero-actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .75s, transform .9s var(--ease-out) .75s;
}
.hero.in .hero-actions { opacity: 1; transform: none; }
.hero-actions .note { font-size: 13px; color: var(--muted); }
.hero-actions .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); margin-right: 8px; animation: pulse 2.4s infinite;
}

/* Booking card entry animation */
.book-card {
  transform: translateY(24px); opacity: 0;
  transition: opacity 1s var(--ease-out) .5s, transform 1s var(--ease-out) .5s;
}
.hero.in .book-card { opacity: 1; transform: none; }

/* ===== Hero stats ===== */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 80px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-stats .s .n {
  font-family: 'Instrument Serif', serif;
  font-size: 46px; line-height: 1; letter-spacing: -.02em;
}
.hero-stats .s .n em { color: var(--green); font-style: italic; }
.hero-stats .s .l { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--ink); padding: 40px 0;
  border-top: 1px solid #2a2822; border-bottom: 1px solid #2a2822;
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 24px; align-items: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  padding: 0 12px;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,.08);
}
.trust-item .ti-n {
  font-family: 'Instrument Serif', serif; font-size: 38px;
  line-height: 1; letter-spacing: -.02em; color: #fff;
}
.trust-item .ti-n em { color: var(--orange); font-style: italic; }
.trust-item .ti-l {
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(245,242,236,.45);
  line-height: 1.4;
}

/* ===== Steps (How it works / Why EasyCab) ===== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px 30px; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -36px rgba(20,20,16,.35); }
.step-num {
  font-family: 'Instrument Serif', serif; font-size: 90px; line-height: 1;
  letter-spacing: -.04em; color: var(--paper-2);
  position: absolute; top: 14px; right: 22px; user-select: none;
}
.step h3 {
  font-family: 'Instrument Serif', serif; font-size: 30px;
  line-height: 1.05; letter-spacing: -.015em; margin: 36px 0 12px;
}
.step h3 em { font-style: italic; color: var(--green); }
.step p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.step .ic {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--paper-2); display: grid; place-items: center;
  color: var(--green);
}
.step.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.step.dark h3 { color: var(--paper); }
.step.dark h3 em { color: var(--orange); }
.step.dark p { color: #bdb8aa; }
.step.dark .step-num { color: #2a2822; }
.step.dark .ic { background: #2a2822; color: var(--orange); }

/* ===== Feature grid ===== */
.features { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; }
.f {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease-out), box-shadow .4s var(--ease-out);
  min-height: 240px;
}
.f:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -30px rgba(20,20,16,.3); }
.f h4 {
  font-family: 'Instrument Serif', serif; font-size: 28px;
  line-height: 1.05; letter-spacing: -.015em;
}
.f h4 em { font-style: italic; color: var(--green); }
.f p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.f .ic {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--paper-2); color: var(--green);
}
.f.wide { grid-column: span 6; }
.f.thin { grid-column: span 4; }
.f.tall { grid-column: span 4; }
.f.feat {
  background: var(--green); color: var(--paper);
  border-color: var(--green); grid-column: span 6;
}
.f.feat h4 em { color: var(--orange); }
.f.feat p { color: #cfd7d2; }
.f.feat .ic { background: #214f3d; color: var(--orange); }

/* ===== Fleet (sticky-stack) ===== */
.ec-fleet-wrap {
  background: #0a0a08; border-radius: 28px;
  overflow: clip; padding: 100px 20px 140px;
}
.ec-fleet-hdr {
  display: flex; flex-flow: column; align-items: center;
  gap: 24px; text-align: center; margin-bottom: 60px;
  max-width: 1140px; margin-left: auto; margin-right: auto;
}
.ec-fleet-badge {
  display: inline-flex; align-items: center;
  background: rgb(18,18,18); border-radius: 50px;
  padding: 6px 18px; border: 1px solid rgba(255,255,255,.07);
  font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.ec-fleet-hdr h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(36px,4.5vw,64px); line-height: 1.02;
  letter-spacing: -.025em; color: #fff; max-width: 680px;
}
.ec-fleet-hdr h2 em { font-style: italic; color: var(--orange); }
.ec-fleet-hdr-sub {
  font-size: 17px; color: rgba(245,242,236,.38);
  line-height: 1.6; max-width: 52ch;
}
.ec-track {
  width: 100%; display: flex; flex-flow: column;
  align-items: stretch; gap: 40px; position: relative; overflow: clip;
}
.ec-sticky {
  position: sticky; top: 90px; z-index: 1;
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: center;
}
.ec-sticky:nth-child(1) { z-index: 1; }
.ec-sticky:nth-child(2) { z-index: 2; }
.ec-sticky:nth-child(3) { z-index: 3; }
.ec-sticky:nth-child(4) { z-index: 4; }
.ec-sticky:nth-child(5) { z-index: 5; }
.ec-sticky:nth-child(6) { z-index: 6; }
.ec-card {
  background: rgb(18,18,18); border-radius: 24px; padding: 12px;
  display: flex; flex-flow: row nowrap; gap: 24px;
  width: 100%; height: 580px; overflow: clip;
  border: 1px solid rgba(255,255,255,.04);
  transition: border-color .35s;
}
.ec-card:hover { border-color: rgba(255,255,255,.1); }
.ec-left {
  flex: 3 1 0; min-width: 0; height: 556px;
  border-radius: 14px; background: rgb(26,26,26);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 24px;
}
.ec-ghost {
  position: absolute; right: -8px; bottom: -16px;
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(80px,10vw,130px); line-height: 1;
  letter-spacing: -.04em; color: rgba(255,255,255,.025);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.ec-badges { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.ec-badge {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .06em; color: rgba(255,255,255,.5);
}
.ec-badge b { color: #fff; font-weight: 600; margin-right: 4px; }
.ec-badge.phv { background: rgba(26,74,53,.2); border-color: rgba(26,74,53,.4); color: #6dc89e; }
.ec-badge.gold-b { background: rgba(194,165,92,.1); border-color: rgba(194,165,92,.25); color: var(--gold); }
.ec-img-placeholder {
  flex: 1; margin: 10px 0; border-radius: 10px;
  border: 1.5px dashed rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: rgba(255,255,255,.015); position: relative; overflow: hidden; z-index: 1;
}
.ec-img-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 105%,rgba(26,74,53,.13),transparent 65%);
}
.ec-img-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  display: grid; place-items: center; color: rgba(255,255,255,.28);
}
.ec-img-label {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.2); text-align: center; line-height: 1.55;
}
.ec-car-img { flex: 1; margin: 10px 0; border-radius: 10px; width: 100%; object-fit: cover; }
.ec-stat { display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.ec-stat-n {
  font-family: 'Instrument Serif', serif;
  font-size: 52px; line-height: 1; letter-spacing: -.04em; color: #fff;
}
.ec-stat-l {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.28); line-height: 1.45;
}
.ec-right {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 20px;
}
.ec-right-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.ec-c-num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.22);
}
.ec-c-tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 999px;
  font-family: 'Geist Mono', monospace; font-size: 9px;
  letter-spacing: .16em; text-transform: uppercase;
  background: rgba(232,90,31,.1); color: var(--orange);
  border: 1px solid rgba(232,90,31,.18);
}
.ec-c-tag.green { background: rgba(26,74,53,.25); color: #6dc89e; border-color: rgba(26,74,53,.4); }
.ec-c-tag.gold  { background: rgba(194,165,92,.1); color: var(--gold); border-color: rgba(194,165,92,.22); }
.ec-c-name {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px,3vw,40px); line-height: 1.04;
  letter-spacing: -.025em; color: #fff; margin-bottom: 16px;
}
.ec-c-name em { font-style: italic; color: var(--orange); }
.ec-r-desc { font-size: 14.5px; color: rgba(255,255,255,.45); line-height: 1.72; max-width: 36ch; }
.ec-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07);
}
.ec-foot-price {
  font-family: 'Instrument Serif', serif; font-size: 34px;
  line-height: 1; letter-spacing: -.03em; color: #fff;
}
.ec-foot-price small { font-size: 13px; color: rgba(255,255,255,.28); margin-left: 3px; }
.ec-book {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px;
  background: var(--green); color: #fff;
  font-size: 14px; font-weight: 500; letter-spacing: -.01em;
  box-shadow: 0 8px 22px -12px rgba(26,74,53,.7);
  transition: background .2s, transform .25s var(--ease-out), box-shadow .25s;
}
.ec-book:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(26,74,53,.8); }
/* Premium variants */
.ec-card.biz .ec-left  { background: linear-gradient(145deg,#111a15 0%,#0d1310 100%); }
.ec-card.first .ec-left { background: linear-gradient(145deg,#17140a 0%,#100e06 100%); }
.ec-card.first .ec-stat-n {
  background: linear-gradient(135deg,var(--gold) 0%,#e8c86a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ec-card.first .ec-foot-price { color: var(--gold); }

/* ===== Airport CTA strip ===== */
.airport-strip {
  background: var(--green); border-radius: var(--r-xl);
  padding: 64px 56px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.airport-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 85% 30%, rgba(232,90,31,.2), transparent 60%);
  pointer-events: none;
}
.airport-strip h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(38px,4.4vw,62px); line-height: 1.02;
  letter-spacing: -.02em; color: #fff;
}
.airport-strip h2 em { font-style: italic; color: var(--orange); }
.airport-strip .desc { color: rgba(245,242,236,.72); font-size: 16px; margin-top: 14px; max-width: 44ch; line-height: 1.6; }
.airport-strip .btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.airport-strip .btns .btn-orange { box-shadow: 0 14px 30px -14px rgba(232,90,31,.55); }
.airport-strip .btns .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.airport-strip .btns .btn-ghost:hover { border-color: #fff; }
.airport-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.airport-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s, transform .3s var(--ease-out);
  text-decoration: none;
}
.airport-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.airport-card .ac-code {
  font-family: 'Geist Mono', monospace; font-size: 22px;
  font-weight: 600; color: var(--orange); letter-spacing: .04em;
}
.airport-card .ac-name { font-size: 14px; color: #fff; font-weight: 500; line-height: 1.3; }
.airport-card .ac-fare {
  font-family: 'Instrument Serif', serif; font-size: 28px;
  color: #fff; letter-spacing: -.02em; margin-top: auto;
}
.airport-card .ac-fare small { font-size: 13px; opacity: .6; font-family: 'Geist', sans-serif; margin-left: 2px; }
.airport-card .ac-tag {
  font-family: 'Geist Mono', monospace; font-size: 9px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(245,242,236,.5);
}

/* ===== Corporate section ===== */
.corporate-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.corporate-left h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(38px,4.8vw,68px); line-height: 1.02; letter-spacing: -.02em;
  margin-top: 18px;
}
.corporate-left h2 em { font-style: italic; color: var(--green); }
.corporate-left .lede { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin-top: 16px; max-width: 46ch; }
.corporate-left .corp-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.corp-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.corp-feature {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.corp-feature:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(20,20,16,.3); }
.corp-feature .cf-ic {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--paper-2); display: grid; place-items: center; color: var(--green);
}
.corp-feature h4 {
  font-family: 'Instrument Serif', serif; font-size: 20px;
  letter-spacing: -.01em; line-height: 1.2;
}
.corp-feature p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ===== Comparison table ===== */
.compare {
  background: var(--ink); color: var(--paper); border-radius: var(--r-xl);
  padding: 64px 56px; display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
}
.compare h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(38px,4.4vw,60px); line-height: 1.02; letter-spacing: -.02em;
}
.compare h3 em { font-style: italic; color: var(--orange); }
.compare .desc { color: #bdb8aa; margin-top: 14px; font-size: 15.5px; max-width: 42ch; }
.compare-table {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; overflow: hidden;
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center; padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.compare-row:first-child { border-top: 0; background: rgba(255,255,255,.04); }
.compare-row .cell { font-size: 14px; color: #cfcabd; display: flex; align-items: center; gap: 8px; }
.compare-row .cell.ec { color: var(--paper); font-weight: 400; }
.compare-row .h {
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase; color: #8b8779;
}
.check { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.check.y { background: var(--orange); color: #fff; }
.check.n { background: #3a3830; color: #8b8779; }

/* ===== Testimonials ===== */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.quote {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s var(--ease-out), box-shadow .4s var(--ease-out);
}
.quote:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -30px rgba(20,20,16,.3); }
.quote .stars { display: inline-flex; gap: 3px; color: var(--gold); font-size: 14px; }
.quote blockquote {
  font-family: 'Instrument Serif', serif; font-size: 22px;
  line-height: 1.25; letter-spacing: -.01em;
}
.quote blockquote em { font-style: italic; color: var(--green); }
.quote .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 6px; border-top: 1px dashed var(--line);
}
.quote .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--paper-2); display: grid; place-items: center;
  font-family: 'Instrument Serif', serif; font-size: 17px; color: var(--green);
}
.quote .who .n { font-size: 14px; font-weight: 500; }
.quote .who .r { font-size: 12px; color: var(--muted); }

/* ===== Coverage / map block ===== */
.coverage {
  background: var(--green); color: var(--paper); border-radius: var(--r-xl);
  padding: 64px 56px; display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: center; position: relative; overflow: hidden;
}
.coverage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 80% 30%, rgba(232,90,31,.18), transparent 60%);
  pointer-events: none;
}
.coverage h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(38px,4.4vw,60px); line-height: 1.02; letter-spacing: -.02em;
}
.coverage h3 em { font-style: italic; color: var(--orange); }
.coverage .desc { color: #cfd7d2; font-size: 15.5px; margin-top: 14px; max-width: 42ch; }
.coverage ul {
  margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px; font-size: 14.5px; color: var(--paper); list-style: none;
}
.coverage ul li { display: flex; align-items: center; gap: 10px; }
.coverage ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.map-card {
  position: relative; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12); border-radius: 24px;
  aspect-ratio: 5/4; overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.55);
}
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== FAQ ===== */
.faq-wrap { display: grid; grid-template-columns: .9fr 1.35fr; gap: 80px; align-items: start; }
.faq-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 22px; }
.faq-aside h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(40px,4.4vw,64px); line-height: 1.02;
  letter-spacing: -.022em; color: var(--ink); max-width: 14ch;
}
.faq-aside h2 em { font-style: italic; color: var(--green); }
.faq-aside .lede { font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 38ch; }
.faq-call {
  margin-top: 8px; display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; background: var(--ink); color: var(--paper);
  border-radius: 18px; text-decoration: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 18px 36px -28px rgba(20,20,16,.5);
}
.faq-call:hover { background: var(--green); transform: translateY(-2px); }
.faq-call .ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,.08); color: var(--orange);
  display: grid; place-items: center;
}
.faq-call .meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.faq-call .lbl {
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: #bdb8aa;
}
.faq-call .num { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--paper); line-height: 1; }
.faq-call .arr { margin-left: auto; font-size: 18px; color: #bdb8aa; transition: transform .3s, color .3s; }
.faq-call:hover .arr { color: var(--orange); transform: translate(2px,-2px); }
.faq-contacts { display: flex; flex-direction: column; gap: 12px; margin-top: -10px; }
.faq-call.green { background: var(--green); }
.faq-call.green:hover { background: var(--orange); }
.faq-call.green .ic { background: rgba(255,255,255,.1); color: var(--orange); }
.faq-call.green .lbl { color: rgba(245,242,236,.62); }
.faq-call.green .arr { color: rgba(245,242,236,.62); }
.faq-call.green:hover .arr { color: var(--paper); }
/* Email CTA — orange, inverts to black on hover (matches index.html) */
.faq-call.orange { background: var(--orange); box-shadow: 0 18px 36px -28px rgba(232,90,31,.55); }
.faq-call.orange:hover { background: var(--ink); }
.faq-call.orange .ic { background: rgba(255,255,255,.16); color: var(--paper); }
.faq-call.orange:hover .ic { background: rgba(255,255,255,.08); color: var(--orange); }
.faq-call.orange .lbl { color: rgba(245,242,236,.78); }
.faq-call.orange:hover .lbl { color: #bdb8aa; }
.faq-call.orange .num { color: var(--paper); }
.faq-call.orange .arr { color: rgba(245,242,236,.78); }
.faq-call.orange:hover .arr { color: var(--orange); }
.faq-list { display: flex; flex-direction: column; }
.qa {
  position: relative; border-top: 1px solid var(--line);
  padding: 26px 0 22px; cursor: pointer;
}
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa::before {
  content: ""; position: absolute; left: -22px; top: 30px;
  width: 3px; height: 28px; background: var(--green); border-radius: 2px;
  transform: scaleY(0); transform-origin: top; opacity: 0;
  transition: transform .35s var(--ease), opacity .25s;
}
.qa:hover::before, .qa.open::before { transform: scaleY(1); opacity: 1; }
.qa-summary {
  display: flex; align-items: baseline; gap: 24px; width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 0; font: inherit; color: inherit;
}
.qa-summary:focus { outline: none; }
.qa-num {
  font-family: 'Geist Mono', monospace; font-size: 11.5px;
  letter-spacing: .18em; color: var(--muted); flex-shrink: 0;
  line-height: 1.6; min-width: 26px; transition: color .25s;
}
.qa-q {
  flex: 1; font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(20px,1.8vw,26px); line-height: 1.2; letter-spacing: -.012em;
  color: var(--ink); transition: color .25s var(--ease);
}
.qa-arr {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--muted);
  transition: transform .4s var(--ease), background .25s, border-color .25s, color .25s;
}
.qa-arr svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }
.qa:hover .qa-num, .qa.open .qa-num { color: var(--green); }
.qa:hover .qa-q, .qa.open .qa-q { color: var(--green); }
.qa:hover .qa-arr, .qa.open .qa-arr {
  background: var(--green); border-color: var(--green); color: var(--paper);
}
.qa:hover .qa-arr svg, .qa.open .qa-arr svg { transform: rotate(90deg); }
.qa-a {
  overflow: hidden; max-height: 0; opacity: 0;
  padding-left: 50px; padding-right: 48px; max-width: 64ch;
  color: var(--ink-2); font-size: 15.5px; line-height: 1.7;
  transition: max-height .45s var(--ease), opacity .35s var(--ease) .05s, margin-top .35s var(--ease);
  margin-top: 0;
}
.qa:hover .qa-a, .qa.open .qa-a { max-height: 320px; opacity: 1; margin-top: 18px; }

/* ===== Closing CTA ===== */
.closer {
  padding: 0 0 80px; text-align: center; position: relative; overflow: hidden;
}
.closer h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(60px,10vw,160px); line-height: .95; letter-spacing: -.03em;
}
.closer h2 em { font-style: italic; color: var(--green); }
.closer h2 .ul::after {
  content: ""; display: block; height: .06em; background: var(--orange);
  margin: 8px auto 0; width: 55%;
}
.closer p { margin: 24px auto 30px; max-width: 48ch; font-size: 17px; color: var(--ink-2); }
.closer .row {
  display: inline-flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}

/* ===== Big word ===== */
.big-word {
  position: relative;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(70px,13vw,180px);
  line-height: 1; letter-spacing: -.03em;
  text-align: center; margin-top: 36px;
  padding-bottom: .15em;
  white-space: nowrap;
  overflow: hidden; /* prevent tooltip overflowing viewport */
  user-select: none; cursor: default;
  display: flex; justify-content: center; align-items: center;
  width: 100%;
}
.bw-stage {
  display: inline-flex; align-items: center;
  gap: 0; transition: gap .45s var(--ease-out);
  max-width: 100%;
}
.big-word:hover .bw-stage { gap: 24px; }
.bw-tooltip {
  position: relative; display: flex; align-items: center; gap: 12px;
  max-width: 0; padding: 0;
  background: var(--ink); color: var(--paper);
  border-radius: 20px 20px 20px 6px;
  font-size: clamp(14px,1.4vw,22px);
  font-family: 'Geist', sans-serif; font-weight: 500;
  letter-spacing: -.01em; line-height: 1.2;
  white-space: nowrap;
  opacity: 0; overflow: hidden; pointer-events: none;
  flex-shrink: 1;
  box-shadow: 0 22px 50px -24px rgba(20,20,16,.55);
  transition: max-width .5s var(--ease-out), padding .45s var(--ease-out), opacity .35s var(--ease-out);
}
.big-word:hover .bw-tooltip { max-width: min(420px,28vw); padding: 16px 22px; opacity: 1; }
.bw-tooltip::before {
  content: ""; position: absolute; left: -9px; top: 50%;
  transform: translateY(-50%);
  border: 9px solid transparent; border-right-color: var(--ink); border-left: none;
}
.bw-tip-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(232,90,31,.55);
  animation: bw-tip-pulse 1.8s infinite; flex-shrink: 0;
}
@keyframes bw-tip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,90,31,.55); }
  70%       { box-shadow: 0 0 0 8px rgba(232,90,31,0); }
}
.bw-easy {
  display: inline-block; color: var(--ink);
  transition: color .55s var(--ease-out), transform .6s var(--ease-out);
}
.bw-cab {
  display: inline-block; font-style: italic; color: var(--green);
  transition: color .55s var(--ease-out), transform .6s var(--ease-out);
  animation: bw-float 6s ease-in-out infinite; transform-origin: center bottom;
}
.big-word:hover .bw-easy { color: var(--green); transform: translateY(-4px); }
.big-word:hover .bw-cab  { color: var(--orange); }
@keyframes bw-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-6px) rotate(-.6deg); }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-stats    { grid-template-columns: repeat(2,1fr); }
  .trust-bar-inner { grid-template-columns: repeat(3,1fr); }
  .trust-item:nth-child(n+4) { display: none; }
  .steps, .quotes { grid-template-columns: 1fr 1fr; }
  .features       { grid-template-columns: repeat(6,1fr); }
  .f.wide, .f.feat { grid-column: span 6; }
  .f.thin, .f.tall { grid-column: span 3; }
  .compare, .coverage, .airport-strip { grid-template-columns: 1fr; padding: 44px 32px; }
  .faq-wrap  { grid-template-columns: 1fr; gap: 44px; }
  .faq-aside { position: static; }
  .corporate-wrap { grid-template-columns: 1fr; }
  .ec-fleet-wrap  { border-radius: 18px; padding: 56px 16px 80px; }
  .ec-card        { flex-direction: column; height: auto; }
  .ec-left        { flex: 0 0 auto; width: 100%; height: 260px; }
  .ec-sticky      { position: relative; top: 0; }
  .ec-track       { overflow: visible; gap: 16px; }
}
@media (max-width: 760px) {
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(n+3) { display: none; }
  .airport-cards { grid-template-columns: 1fr; }
  .corp-features { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero h1 { font-size: clamp(44px,12vw,72px); }
  .steps, .quotes { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .f.wide,.f.feat,.f.thin,.f.tall { grid-column: span 1; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .ec-fleet-hdr h2 { font-size: 30px; }
  .ec-c-name { font-size: 26px; }
  .faq-wrap { grid-template-columns: 1fr; }
  .qa-a { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   Eyebrow pills (hero perk row) — shared across all pages
   Moved out of index.html inline styles so every page styles them.
   ============================================================ */
.eyebrow-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 20px -16px rgba(20,20,16,.4);
  transition: transform .25s var(--ease-out), border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.eyebrow-pill:hover { transform: translateY(-1px); border-color: var(--ink); box-shadow: 0 12px 26px -16px rgba(20,20,16,.5); }
.eyebrow-pill .ep-tag {
  font-family: 'Geist Mono', ui-monospace, monospace; font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; color: var(--orange); white-space: nowrap;
}
.eyebrow-pill .ep-perk { font-size: 12.5px; color: var(--muted); letter-spacing: -.005em; white-space: nowrap; }
@media (max-width: 560px) { .eyebrow-pill .ep-perk { display: none; } }

/* ===== Wide-screen scale-up — matches index.html (design source of truth) ===== */
@media (min-width: 1800px) {
  .hero { padding: 80px 0 130px; }
  .hero h1 { font-size: clamp(80px, 7vw, 128px); }
  .step-num { font-size: 110px; }
  .compare { padding: 80px 70px; }
  .coverage { padding: 80px 70px; }
}
