/* ===== INTERSTATE ECOSYSTEM ===== */
/* Styles specific to the /interstate/* pages. Loaded via head slot
   from InterstateLayout. Reuses :root tokens from v1.css. */

/* ----- HEADER OVERRIDE FOR INTERSTATE PAGES -----
   The global .header is position:fixed with a transparent background.
   It's designed to overlay a dark hero (white text on dark). On
   interstate pages the first thing under the header is the Interstate
   sub-nav, which is dark — so the header reads correctly. But there is
   no global dark hero behind the header above the sub-nav, so we force
   the header itself to have a dark background while in the Interstate
   ecosystem. Adds a navy gradient surface and a subtle blur so the
   white nav text is always readable. */
body.is-interstate .header {
  background: linear-gradient(180deg, rgba(6, 22, 37, 0.96) 0%, rgba(11, 36, 56, 0.94) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 167, 226, 0.18);
}

/* ----- SUB-NAV STRIP -----
   Sits directly under the global Header.astro (80px tall). Sticky on
   scroll so users can hop between the 5 interstate pages from any
   scroll position. The dark navy bar with teal active state is a
   deliberate visual cue that the user is "in" the Interstate ecosystem.
   Hidden on mobile (<768px) — replaced by the InterstateEcosystemCards
   grid below each hero per Option A. */
.interstate-subnav {
  position: sticky;
  top: 80px;                                  /* clear the 80px main header */
  z-index: 90;
  background: linear-gradient(180deg, #0b2438 0%, #061625 100%);
  border-bottom: 1px solid rgba(0, 167, 226, 0.18);
  box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.4);
}

.interstate-subnav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.interstate-subnav__inner::-webkit-scrollbar { display: none; }

.interstate-subnav__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(0, 167, 226, 0.16);
  border: 1px solid rgba(0, 167, 226, 0.4);
  border-radius: 999px;
  color: #B8E5F8;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.interstate-subnav__plane {
  width: 14px;
  height: 14px;
  color: #00A7E2;
}

.interstate-subnav__links {
  display: flex;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.interstate-subnav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.interstate-subnav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.interstate-subnav__link.is-active {
  background: rgba(0, 167, 226, 0.18);
  color: #fff;
  box-shadow: inset 0 -2px 0 #00A7E2;
}
.interstate-subnav__badge {
  background: linear-gradient(135deg, #00A7E2 0%, #0082B0 100%);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}

/* ----- HERO PLANE DECORATION -----
   Large semi-transparent ✈ glyph anchored to the top-right of the
   interstate hero. Just a subtle brand cue, not the main visual. */
.interstate-hero-plane {
  position: absolute;
  top: -8%;
  right: -6%;
  font-size: 380px;
  opacity: 0.045;
  color: #00A7E2;
  transform: rotate(-8deg);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ----- HERO FEATURE LIST -----
   Used on Same-Day Interstate and Next Flight Courier hero sections.
   Two visual styles: compact rows (.interstate-feats) for the long
   bullet checklist, and stacked cards (.interstate-feats--cards) for
   the Next Flight version with bigger explanations. */
.interstate-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}
.interstate-feats__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.interstate-feats__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 167, 226, 0.14);
  border: 1px solid rgba(0, 167, 226, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.interstate-feats__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  line-height: 1.5;
}

.interstate-feats--cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}
.interstate-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 167, 226, 0.22);
  border-radius: 12px;
  padding: 16px 18px;
}
.interstate-feat-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(0, 167, 226, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.interstate-feat-card h4 {
  color: #fff;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  margin: 0 0 4px;
}
.interstate-feat-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* ----- INTERSTATE PORTAL CARD -----
   Replaces the standard QuoteWidget on Same-Day & Next-Flight pages.
   Visually distinct so users notice the different CTA destination
   (the dedicated Interstate booking portal). */
.interstate-portal-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.45);
}
.interstate-portal-card__title,
.interstate-portal-card h3 {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--v1-ink);
  margin: 0 0 4px;
}
.interstate-portal-card__sub {
  color: var(--v1-muted);
  font-size: 13.5px;
  margin: 0 0 18px;
}
.interstate-portal-card .v1-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.interstate-portal-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--v1-muted);
}
.interstate-portal-card__check {
  color: #1E9F4F;
  font-weight: 800;
}
.interstate-portal-card__call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--v1-line);
}
.interstate-portal-card__call-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 167, 226, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
/* Body container next to the icon — flex:1 lets it shrink/wrap rather
   than collapsing to zero width and orphaning the icon bubble on
   narrow viewports. */
.interstate-portal-card__call > div {
  flex: 1;
  min-width: 0;
}
.interstate-portal-card__call strong {
  display: block;
  color: var(--v1-ink);
  font-size: 14px;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
}
/* Scope to the body text — the previous `__call span` rule was too
   broad and was stripping the icon's font-size and centring. */
.interstate-portal-card__call > div > span {
  display: block;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.4;
}

/* ----- OBC TEASER CARD -----
   Appears in the hero of Same-Day Interstate. Clickable card linking
   to the premium On-Board Courier page. */
.interstate-obc-teaser {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 167, 226, 0.08);
  border: 1px solid rgba(0, 167, 226, 0.30);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.interstate-obc-teaser:hover {
  background: rgba(0, 167, 226, 0.13);
  border-color: rgba(0, 167, 226, 0.50);
}
.interstate-obc-teaser__icon {
  font-size: 22px;
  flex-shrink: 0;
}
.interstate-obc-teaser__title {
  color: #fff;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.interstate-obc-teaser__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  margin-top: 2px;
}
.interstate-obc-teaser__arrow {
  color: #00A7E2;
  font-size: 18px;
  flex-shrink: 0;
}

/* ----- "WHAT'S INCLUDED" FEATURE GRID -----
   Premium card style for the section that lists what's bundled into
   every Same Day Interstate booking. Card is white with a subtle
   gradient, brand-blue accent on the top edge of the icon, soft
   shadow lift on hover. Designed to feel more like a product feature
   card than a generic bullet list. */
.interstate-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.interstate-feature-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #FAFCFE 100%);
  border: 1px solid var(--v1-line);
  border-radius: 16px;
  padding: 26px 24px 22px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.interstate-feature-card::before {
  /* Brand-blue top-edge accent — subtle but signals premium */
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, #00A7E2 0%, #0082B0 100%);
  border-radius: 0 0 3px 3px;
  opacity: 0.85;
}
.interstate-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -22px rgba(0, 167, 226, 0.25);
  border-color: rgba(0, 167, 226, 0.35);
}
.interstate-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 167, 226, 0.14) 0%, rgba(0, 167, 226, 0.06) 100%);
  border: 1px solid rgba(0, 167, 226, 0.18);
  font-size: 22px;
  margin-bottom: 16px;
}
.interstate-feature-card__title {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--v1-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.interstate-feature-card__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--v1-body);
  margin: 0;
}

@media (max-width: 1024px) {
  .interstate-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .interstate-feature-grid { grid-template-columns: 1fr; }
}

/* ----- TRUST BAR -----
   Stats strip just below the hero. */
.interstate-trust {
  background: #fff;
  border-bottom: 1px solid var(--v1-line);
}
.interstate-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
  text-align: center;
}
.interstate-trust__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.interstate-trust__val {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--v1-ink);
  line-height: 1;
}
.interstate-trust__label {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v1-muted);
}

/* ----- ROUTE CARDS -----
   Reused on routes page, same-day interstate (top 9), next-flight
   (top 12 compact variant). */
.interstate-routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.interstate-route-card {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.interstate-route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px rgba(15, 27, 38, 0.25);
}
.interstate-route-card__name {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--v1-ink);
  margin: 0 0 4px;
}
.interstate-route-card__time {
  color: var(--v1-blue);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
}
/* Meta is a 2-row layout: Daily flights + Flight time on row 1,
   Schedule full-width on row 2. The long Schedule text used to push
   Flight time out of view when all 3 were on a single row in narrow
   3-card-per-row cards. */
.interstate-route-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  border-top: 1px solid var(--v1-line);
  padding-top: 12px;
}
.interstate-route-card__meta > :nth-child(3) {
  grid-column: 1 / -1;
}
.interstate-route-card__meta-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v1-muted);
  display: block;
}
.interstate-route-card__meta-val {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--v1-ink);
  margin-top: 2px;
  display: block;
}
.interstate-route-card__cta {
  margin-top: 14px;
}

/* Compact variant used on next-flight-courier routes section */
.interstate-routes--compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.interstate-route-compact {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 10px;
  padding: 14px 16px;
}
.interstate-route-compact__name {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--v1-ink);
}
.interstate-route-compact__meta {
  font-size: 12px;
  color: var(--v1-muted);
  margin-top: 4px;
}

/* ----- ROUTE FILTERS (on /routes/) ----- */
.interstate-route-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.interstate-route-filter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.interstate-route-filter:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
}
.interstate-route-filter.is-active {
  background: var(--v1-blue);
  border-color: var(--v1-blue);
  color: #fff;
}
.interstate-route-filter-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
}

/* ----- CALL STRIP -----
   Used on routes & how-it-works for a quick call-prompt under hero. */
.interstate-call-strip {
  background: rgba(0, 167, 226, 0.08);
  border-top: 1px solid rgba(0, 167, 226, 0.20);
  border-bottom: 1px solid rgba(0, 167, 226, 0.20);
  padding: 16px 0;
}
.interstate-call-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  font-size: 13.5px;
  color: var(--v1-ink);
}
.interstate-call-strip__text { font-weight: 600; }
.interstate-call-strip__phone {
  color: var(--v1-blue);
  font-weight: 800;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  text-decoration: none;
}
.interstate-call-strip__divider {
  width: 1px;
  height: 18px;
  background: rgba(15, 27, 38, 0.18);
}

/* ----- TIMELINE (Next Flight) ----- */
.interstate-timeline {
  position: relative;
  padding: 8px 0;
}
.interstate-timeline__line {
  position: absolute;
  /* Centred on the node column: time(76) + gap(18) + node(48)/2 = 118px,
     minus half the line width = 117px. Off-by-12px in earlier version. */
  left: 117px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--v1-blue) 0%, rgba(0, 167, 226, 0.2) 100%);
}
.interstate-timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
}
.interstate-timeline__time {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--v1-muted);
  letter-spacing: 0.02em;
  text-align: right;
  padding-top: 12px;
}
.interstate-timeline__time.is-accent { color: var(--v1-blue); }
.interstate-timeline__node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--v1-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  z-index: 1;
}
.interstate-timeline__node.is-accent {
  border-color: var(--v1-blue);
  background: rgba(0, 167, 226, 0.08);
}
.interstate-timeline__content {
  padding-top: 6px;
}
.interstate-timeline__content h4 {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--v1-ink);
  margin: 0 0 4px;
}
.interstate-timeline__content p {
  color: var(--v1-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ----- EXAMPLE ROUTE (Next Flight) ----- */
.interstate-example {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  overflow: hidden;
}
.interstate-example__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(0, 167, 226, 0.07);
  border-bottom: 1px solid var(--v1-line);
}
.interstate-example__title {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--v1-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.interstate-example__meta {
  color: var(--v1-muted);
  font-size: 13px;
  font-weight: 700;
}
.interstate-example__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  border-top: 1px solid var(--v1-line);
}
.interstate-example__row:first-of-type {
  border-top: none;
}
.interstate-example__time {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--v1-blue);
}
.interstate-example__time.is-final { color: #1E9F4F; }
.interstate-example__event {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--v1-ink);
}
.interstate-example__loc {
  font-size: 12.5px;
  color: var(--v1-muted);
  margin-top: 2px;
}
.interstate-example__duration {
  background: rgba(0, 167, 226, 0.12);
  color: var(--v1-blue);
  font-weight: 800;
  font-size: 12.5px;
  padding: 4px 10px;
  border-radius: 999px;
}
.interstate-example__duration.is-final {
  background: rgba(30, 159, 79, 0.12);
  color: #1E9F4F;
}

/* ----- COMPARISON TABLE (Next Flight) ----- */
.interstate-compare {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  overflow: hidden;
}
.interstate-compare__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--v1-line);
}
.interstate-compare__row:first-child { border-top: none; }
.interstate-compare__cell {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--v1-body);
}
.interstate-compare__cell--feature {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 700;
  color: var(--v1-ink);
  background: var(--v1-surface);
}
.interstate-compare__cell--highlight {
  background: rgba(0, 167, 226, 0.06);
  color: var(--v1-ink);
  font-weight: 700;
}
.interstate-compare__cell--muted {
  color: var(--v1-muted);
}
.interstate-compare__row--header .interstate-compare__cell {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--v1-ink);
  color: #fff;
}
.interstate-compare__row--header .interstate-compare__cell--highlight {
  background: var(--v1-blue);
}

/* ----- WHY-CARDS / INDUSTRIES / TESTIMONIALS ----- */
.interstate-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.interstate-card {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  padding: 24px;
}
.interstate-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.interstate-card__title {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--v1-ink);
  margin: 0 0 8px;
}
.interstate-card__desc {
  color: var(--v1-body);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}
.interstate-card--bg {
  background: var(--v1-surface);
  border: none;
}
.interstate-card--bg .interstate-card__stars {
  color: #FAA519;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.interstate-card__quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--v1-ink);
  font-style: italic;
  margin: 0 0 14px;
}
.interstate-card__name {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--v1-ink);
}
.interstate-card__role {
  font-size: 12.5px;
  color: var(--v1-muted);
  margin-top: 2px;
}

/* ----- ON-BOARD COURIER (Premium tier) -----
   A darker, more luxury treatment for the premium service. */
.interstate-prem-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(0, 167, 226, 0.16), rgba(0, 167, 226, 0) 60%),
    linear-gradient(140deg, #050f1a 0%, #0b2438 100%);
  color: #fff;
  padding: 130px 0 80px;
  overflow: hidden;
}
.interstate-prem-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.interstate-prem-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(0, 167, 226, 0.20), rgba(0, 167, 226, 0.08));
  border: 1px solid rgba(0, 167, 226, 0.50);
  border-radius: 999px;
  color: #B8E5F8;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.interstate-prem-hero__desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
}
.interstate-prem-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 0;
}
.interstate-prem-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 167, 226, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
}

/* ----- OBC: USE-CASE TWO-COL ----- */
.interstate-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.interstate-usecase-col {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  overflow: hidden;
}
.interstate-usecase-header {
  padding: 14px 22px;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.interstate-usecase-header--biz { background: var(--v1-ink); }
.interstate-usecase-header--personal { background: var(--v1-blue); }
.interstate-usecase-list { padding: 8px 0; }
.interstate-usecase-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 22px;
  border-top: 1px solid var(--v1-line);
}
.interstate-usecase-list > .interstate-usecase-item:first-child { border-top: none; }
.interstate-usecase-item__icon {
  font-size: 22px;
  flex-shrink: 0;
}
.interstate-usecase-item__title {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--v1-ink);
  margin: 0 0 3px;
}
.interstate-usecase-item__desc {
  font-size: 13px;
  color: var(--v1-body);
  line-height: 1.55;
  margin: 0;
}

/* ----- OBC: COMPARE 2-COL ----- */
.interstate-obc-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.interstate-obc-compare-card {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  padding: 24px;
}
.interstate-obc-compare-card--prem {
  background: linear-gradient(160deg, #0e2d45 0%, #061625 100%);
  border-color: rgba(0, 167, 226, 0.40);
  color: #fff;
}
.interstate-obc-compare-card__label {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v1-blue);
  margin: 0 0 2px;
}
.interstate-obc-compare-card__sublabel {
  font-size: 11px;
  color: var(--v1-muted);
  margin: 0 0 16px;
}
.interstate-obc-compare-card--prem .interstate-obc-compare-card__sublabel {
  color: rgba(255, 255, 255, 0.55);
}
.interstate-obc-compare-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.interstate-obc-compare-card__premium-badge {
  background: var(--v1-blue);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}
.interstate-obc-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  line-height: 1.55;
}
.interstate-obc-compare-item__icon {
  color: var(--v1-blue);
  font-weight: 800;
  flex-shrink: 0;
}
.interstate-obc-compare-card--prem .interstate-obc-compare-item__icon {
  color: #FAA519;
}
.interstate-obc-compare-card__price {
  margin-top: 16px;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  color: var(--v1-blue);
  font-size: 14.5px;
}

/* ----- OBC: STEPS ----- */
.interstate-obc-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 14px 0;
}
.interstate-obc-step__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 167, 226, 0.10);
  border: 1px solid rgba(0, 167, 226, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.interstate-obc-step h4 {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--v1-ink);
  margin: 4px 0 6px;
}
.interstate-obc-step p {
  color: var(--v1-body);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ----- OBC: STORIES (badged cards) ----- */
.interstate-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.interstate-story {
  background: #fff;
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  padding: 22px;
}
.interstate-story__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.interstate-story__icon { font-size: 22px; }
.interstate-story__tag {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.interstate-story__tag--business {
  background: rgba(15, 27, 38, 0.10);
  color: var(--v1-ink);
}
.interstate-story__tag--personal {
  background: rgba(0, 167, 226, 0.14);
  color: var(--v1-blue);
}
.interstate-story__title {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--v1-ink);
  margin: 0 0 8px;
}
.interstate-story__text {
  font-size: 13.5px;
  color: var(--v1-body);
  line-height: 1.65;
  margin: 0;
}

/* ----- OBC: QUOTE-REQUEST FORM (premium) ----- */
.interstate-obc-form {
  background: linear-gradient(160deg, #0e2d45 0%, #061625 100%);
  padding: 56px 0 64px;
  color: #fff;
  text-align: center;
}
.interstate-obc-form__inner {
  max-width: 460px;
  margin: 0 auto;
}
.interstate-obc-form h2 {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 30px);
  color: #fff;
  margin: 0 0 8px;
}
.interstate-obc-form p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  margin: 0 0 26px;
}
.interstate-obc-form form { text-align: left; }
.interstate-obc-form label {
  display: block;
  font-size: 13px;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 6px;
}
.interstate-obc-form input,
.interstate-obc-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 167, 226, 0.35);
  background: #fff;
  color: var(--v1-ink);
  font-size: 14.5px;
  font-family: inherit;
  box-sizing: border-box;
  margin-bottom: 14px;
}
.interstate-obc-form input:focus,
.interstate-obc-form textarea:focus {
  outline: 2px solid var(--v1-blue);
  outline-offset: 1px;
}
/* Form submit button now uses .v1-btn .v1-btn--primary directly so it
   inherits site-wide brand button styling. Disabled-state override only. */
.interstate-obc-form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }
.interstate-obc-form__notice {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}
.interstate-obc-form__notice.is-ok {
  display: block;
  background: rgba(30, 159, 79, 0.16);
  color: #6ee7a0;
}
.interstate-obc-form__notice.is-err {
  display: block;
  background: rgba(248, 113, 113, 0.16);
  color: #fca5a5;
}
.interstate-obc-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.interstate-obc-form__alt {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.interstate-obc-form__alt a {
  color: var(--v1-blue);
  font-weight: 800;
  text-decoration: none;
}

/* ----- INLINE CALL-OUT BAND -----
   Dark card with phone CTA, used on Next Flight + How It Works. */
.interstate-callout {
  background: var(--v1-ink);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
}
.interstate-callout__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 167, 226, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.interstate-callout__title {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}
.interstate-callout__sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  margin-top: 4px;
  max-width: 480px;
}
.interstate-callout__body {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}
.interstate-callout__cta {
  text-align: center;
}
.interstate-callout__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--v1-blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  text-decoration: none;
}
.interstate-callout__hours {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* ----- UPSELL OBC ROW ----- */
.interstate-upsell-obc {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(0, 167, 226, 0.07) 0%, rgba(0, 167, 226, 0.02) 100%);
  border: 1px solid rgba(0, 167, 226, 0.30);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  transition: background 0.15s;
}
.interstate-upsell-obc:hover {
  background: linear-gradient(135deg, rgba(0, 167, 226, 0.12) 0%, rgba(0, 167, 226, 0.04) 100%);
}
.interstate-upsell-obc__icon { font-size: 28px; flex-shrink: 0; }
.interstate-upsell-obc__body { flex: 1; }
.interstate-upsell-obc h4 {
  font-family: 'Nunito', 'Nunito Fallback', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--v1-ink);
  margin: 0 0 4px;
}
.interstate-upsell-obc p {
  color: var(--v1-body);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.interstate-upsell-obc__arrow {
  color: var(--v1-blue);
  font-size: 22px;
  font-weight: 800;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .interstate-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .interstate-routes { grid-template-columns: repeat(2, 1fr); }
  .interstate-routes--compact { grid-template-columns: repeat(2, 1fr); }
  .interstate-cards-3 { grid-template-columns: repeat(2, 1fr); }
  .interstate-usecase-grid { grid-template-columns: 1fr; }
  .interstate-obc-compare { grid-template-columns: 1fr; }
  .interstate-stories { grid-template-columns: 1fr; }
  .interstate-hero-plane { font-size: 240px; opacity: 0.04; }
}

/* Comparison table collapses at tablet not desktop: at 769-1024 the
   1.2fr 1fr 1fr cells fall under 200px each which is too cramped. */
@media (max-width: 1024px) {
  .interstate-compare__row { grid-template-columns: 1fr 1fr; }
  .interstate-compare__row .interstate-compare__cell--feature { grid-column: 1 / -1; }
  .interstate-compare__row--header .interstate-compare__cell--feature { display: none; }
}

/* Premium feature grid keeps 2-col down to 640px (was collapsing at
   1024px which wasted tablet width). */
@media (max-width: 640px) {
  .interstate-prem-feats { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  /* Reset breakpoint inclusivity bug: tablet (≥640px) keeps 2-col grids
     for routes/cards/etc. The old @media (max-width:768px) was lowering
     these to 1-col at exact 768px, wasting tablet width. */
}

/* Drop routes/cards/compact to 1-col only at phone widths, not at
   exactly 768px (was wasting iPad-portrait width). */
@media (max-width: 640px) {
  .interstate-routes { grid-template-columns: 1fr; }
  .interstate-routes--compact { grid-template-columns: 1fr; }
  .interstate-cards-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Sub-nav sticks just below the global header. Header is 72px on
     mobile (public/css/styles.css:2928). Horizontal scroll with the
     edge-fade affordance below — the side-scroller pattern. */
  .interstate-subnav { top: 72px; }
  .interstate-subnav__label { font-size: 11px; padding: 5px 10px; }
  .interstate-subnav__link {
    font-size: 12.5px;
    /* WCAG 2.5.5 touch target: minimum 44x44px effective tap area */
    min-height: 44px;
    padding: 10px 12px;
  }
  /* Horizontal scroll affordance: fade out the right edge so users
     see there's more content to scroll to. */
  .interstate-subnav__inner {
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%);
  }
  .interstate-trust__inner { gap: 18px; padding: 22px 0; }
  .interstate-trust__val { font-size: 20px; }
  .interstate-timeline__step { grid-template-columns: 60px 40px 1fr; gap: 12px; }
  /* Centred on mobile node column: 60 + 12 + 40/2 = 92px, minus half
     line width = 91px. Was 78px (off by 13px). */
  .interstate-timeline__line { left: 91px; }
  .interstate-timeline__time { font-size: 12px; padding-top: 10px; }
  .interstate-timeline__node { width: 40px; height: 40px; font-size: 16px; }
  .interstate-example__row { grid-template-columns: 80px 1fr; }
  .interstate-example__row > div:nth-child(2) { grid-column: 2; }
  .interstate-example__duration { grid-column: 2; justify-self: start; margin-top: 4px; }
  /* Route filter chips need 44px touch height on mobile too. */
  .interstate-route-filter {
    min-height: 44px;
    padding: 11px 16px;
    display: inline-flex;
    align-items: center;
  }
  /* Filter label stacks above chips when wrapping on tablet/mobile so
     it doesn't get orphaned on row 1. */
  .interstate-route-filter-label {
    display: block;
    width: 100%;
    margin-bottom: 6px;
  }
  .interstate-callout { padding: 22px; flex-direction: column; align-items: stretch; text-align: center; }
  .interstate-callout__body { flex-direction: column; text-align: center; }
  .interstate-callout__cta { width: 100%; }
  .interstate-callout__phone { width: 100%; justify-content: center; box-sizing: border-box; }
  .interstate-hero-plane { font-size: 180px; }
}
