/* ============================================
   EQUICLEAR DESIGN SYSTEM
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-deep: #142A43;
  --navy-mid: #1D3A5C;
  --navy-light: #2C4F78;
  --navy-glow: #4A6E96;
  --cream: #FAF6EF;
  --cream-dark: #F1E9DA;
  --white: #FFFFFF;
  --text-dark: #17212E;
  --text-mid: #4B5866;
  --accent-amber: #E2962F;
  --accent-amber-deep: #C77C1E;
  --accent-coral: #E36449;
  --border-soft: rgba(20, 42, 67, 0.1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy-deep); line-height: 1.2; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100000;
  background: var(--navy-deep); color: var(--white); padding: 0.8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent-amber); outline-offset: 2px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy-deep); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--accent-amber); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle-bar { width: 24px; height: 2px; background: var(--navy-deep); border-radius: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links > li > a { text-decoration: none; color: var(--navy-deep); font-weight: 600; font-size: 0.95rem; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 0.6rem;
  background: var(--white); border-radius: 12px; border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(20,42,67,0.14); min-width: 240px; padding: 0.5rem; list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a { display: block; padding: 0.55rem 0.8rem; border-radius: 8px; text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.92rem; }
.nav-dropdown-menu li a:hover { background: var(--cream); color: var(--navy-deep); }
.nav-cta {
  background: var(--accent-amber); color: var(--navy-deep) !important; padding: 0.65rem 1.3rem;
  border-radius: 999px; font-weight: 700 !important; text-decoration: none; transition: filter 0.15s;
}
.nav-cta:hover { filter: brightness(0.94); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 85vw);
    background: var(--white); flex-direction: column; align-items: flex-start; gap: 0;
    padding: 5rem 1.5rem 2rem; transition: right 0.25s ease; overflow-y: auto; z-index: 9500;
  }
  .nav-links.nav-open { right: 0; }
  .nav-links > li { width: 100%; padding: 0.5rem 0; border-bottom: 1px solid var(--border-soft); }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; display: none; margin-top: 0.4rem; padding-left: 0.5rem; }
  .nav-dropdown-open .nav-dropdown-menu { display: block; }
  .nav-cta { display: inline-block; margin-top: 1rem; }
  body.nav-overlay-active::after {
    content: ""; position: fixed; inset: 0; background: rgba(20,42,67,0.4); z-index: 9400;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero { background: var(--navy-deep); color: var(--white); padding: 3.5rem 2rem 3rem; position: relative; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.hero--wide .hero-content { max-width: 720px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.4rem; }
.breadcrumb-short { display: none; }
@media (max-width: 560px) { .breadcrumb-full { display: none; } .breadcrumb-short { display: inline; } }

.hero h1 { color: var(--white); font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.hero h1 em, .hero-highlight { font-style: normal; color: var(--accent-amber); }
.hero p.hero-lede { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 620px; margin-bottom: 1.5rem; line-height: 1.7; }

.hero-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 0.9rem 1.2rem; min-width: 130px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-amber); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.hero-form-wrapper { background: var(--white); border-radius: 20px; padding: 1.5rem; box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

/* ============================================
   BUTTONS
   ============================================ */
.cta-btn, .cta-btn-large {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  background: var(--accent-amber); color: var(--navy-deep); font-weight: 700;
  border-radius: 999px; border: none; cursor: pointer; font-family: inherit; transition: filter 0.15s, transform 0.15s;
}
.cta-btn { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
.cta-btn-large { padding: 1rem 2rem; font-size: 1.05rem; }
.cta-btn:hover, .cta-btn-large:hover { filter: brightness(0.94); transform: translateY(-1px); }
.cta-btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }

/* ============================================
   TRUST BAR (lender logos, /start only)
   ============================================ */
.trust-bar { background: var(--white); padding: 1.4rem 2rem; border-bottom: 1px solid var(--border-soft); }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-bar-logo { height: 28px; width: auto; opacity: 0.75; filter: grayscale(1); }

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.hiw { background: var(--cream-dark); padding: 3.5rem 2rem; }
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.hiw-heading { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.section-tag { display: inline-block; color: var(--accent-amber-deep); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.6rem; }
.section-subtitle { color: var(--text-mid); font-size: 1.02rem; }
.hiw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.hiw-card { background: var(--white); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border-soft); }
.hiw-card-header { display: flex; align-items: center; gap: 0.8rem; }
.hiw-card-number { font-family: var(--font-display); font-weight: 800; color: var(--accent-amber); font-size: 1.3rem; }
.hiw-card-title { font-size: 1.05rem; }
.hiw-card-body p { color: var(--text-mid); margin-top: 0.7rem; font-size: 0.95rem; }
@media (max-width: 800px) { .hiw-cards { grid-template-columns: 1fr; } }

/* ============================================
   CONTENT / ARTICLE
   ============================================ */
.content-article { padding: 3rem 2rem; }
.content-article-inner, .guide-content-inner, .situation-content-inner { max-width: 780px; margin: 0 auto; }
.content-article h2, .guide-content-inner h2, .situation-content-inner h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.content-article h3, .guide-content-inner h3 { font-size: 1.15rem; margin: 1.4rem 0 0.6rem; }
.content-article p, .guide-content-inner p, .situation-content-inner p { margin-bottom: 1rem; color: var(--text-dark); }
.content-article ul, .guide-content-inner ul, .situation-content-inner ul,
.content-article ol, .guide-content-inner ol, .situation-content-inner ol { margin: 0 0 1rem 1.4rem; }
.content-article li, .guide-content-inner li { margin-bottom: 0.4rem; }
.content-article a, .guide-content-inner a, .situation-content-inner a { color: var(--accent-amber-deep); font-weight: 600; }
.content-article table, .guide-content-inner table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.95rem; }
.content-article th, .guide-content-inner th { text-align: left; background: var(--navy-deep); color: var(--white); padding: 0.7rem 0.9rem; }
.content-article td, .guide-content-inner td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--border-soft); }
.content-article tr:nth-child(even) td, .guide-content-inner tr:nth-child(even) td { background: var(--cream-dark); }

.content-section-collapsible { border-bottom: 1px solid var(--border-soft); padding-bottom: 1rem; margin-bottom: 1rem; }
.content-section-body.collapsed { max-height: 220px; overflow: hidden; position: relative; }
.content-section-body.collapsed::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 70px;
  background: linear-gradient(transparent, var(--cream));
}
.content-read-more {
  background: none; border: none; color: var(--accent-amber-deep); font-weight: 700; cursor: pointer;
  padding: 0.5rem 0; font-family: inherit; font-size: 0.9rem;
}

/* Quick answer / key facts boxes */
.answer-box, .key-facts-box {
  background: #EFF6FB; border-left: 4px solid var(--navy-light); border-radius: 6px;
  padding: 1.1rem 1.3rem; margin: 1rem 0 1.5rem; font-size: 1.02rem;
}
.key-facts-box ul { margin-left: 1.2rem; }
.key-facts-box { background: var(--cream-dark); border-left-color: var(--accent-amber); }

.not-right-box {
  background: #FBEEEA; border-left: 4px solid var(--accent-coral); border-radius: 6px;
  padding: 1.1rem 1.3rem; margin: 1.5rem 0;
}

.debt-advice-box {
  background: var(--navy-deep); color: var(--white); border-radius: 14px; padding: 1.5rem;
  margin: 1.8rem 0;
}
.debt-advice-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.debt-advice-box ul { list-style: none; margin: 0.8rem 0 0; }
.debt-advice-box li { margin-bottom: 0.5rem; }
.debt-advice-box a { color: var(--accent-amber); font-weight: 700; text-decoration: none; }
.debt-advice-box a:hover { text-decoration: underline; }
.debt-advice-box p.small { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

/* Disclaimer box */
.disclaimer {
  background: var(--cream-dark); border: 1px solid var(--border-soft); border-radius: 10px;
  padding: 1rem 1.3rem; margin: 1.3rem 0; font-size: 0.9rem; color: var(--text-mid);
}
.disclaimer strong { color: var(--text-dark); }
.disclaimer-footer { max-width: 1100px; margin: 0 auto 1.5rem; padding: 1rem 2rem; }

/* Author box */
.author-box { display: flex; align-items: center; gap: 1rem; background: var(--cream-dark); border-radius: 12px; padding: 1.1rem 1.3rem; margin: 1.8rem 0; }
.author-box-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-light); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.author-box p { margin: 0; font-size: 0.9rem; }
.author-box a { color: var(--accent-amber-deep); font-weight: 600; }
.last-updated { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1.2rem; }

/* ============================================
   INLINE CTA
   ============================================ */
.inline-cta {
  background: var(--navy-deep); color: var(--white); border-radius: 16px; padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
  margin: 1.8rem 0;
}
.inline-cta-title { color: var(--white); font-size: 1.1rem; margin-bottom: 0.3rem; }
.inline-cta-sub { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.inline-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; width: 100%; }

/* ============================================
   MID-PAGE / FINAL CTA
   ============================================ */
.mid-cta, .cta-section {
  background: var(--accent-amber); color: var(--navy-deep); text-align: center;
  padding: 3rem 2rem; margin: 2rem 0;
}
.mid-cta h2, .cta-section h2 { color: var(--navy-deep); margin-bottom: 0.6rem; }
.mid-cta p, .cta-section p { margin-bottom: 1.2rem; }
.mid-cta .cta-btn-large, .cta-section .cta-btn-large { background: var(--navy-deep); color: var(--white); }

/* ============================================
   SPOKES / RELATED PAGES GRID
   ============================================ */
.related-pages, .spokes-grid-section { padding: 3rem 2rem; }
.related-pages-inner, .spokes-grid-inner { max-width: 1100px; margin: 0 auto; }
.related-pages h2, .spokes-grid-inner h2 { text-align: center; margin-bottom: 1.5rem; }
.related-pages-grid, .spokes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.related-page-card, .spoke-card {
  display: block; background: var(--white); border: 1px solid var(--border-soft); border-radius: 14px;
  padding: 1.3rem; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s;
}
.related-page-card:hover, .spoke-card:hover { border-color: var(--accent-amber); transform: translateY(-2px); }
.related-page-card h3, .spoke-card h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.related-page-link { color: var(--accent-amber-deep); font-weight: 700; font-size: 0.9rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: 3rem 2rem; background: var(--cream-dark); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-inner h2 { text-align: center; margin-bottom: 1.5rem; }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 0.7rem; overflow: hidden; border: 1px solid var(--border-soft); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; padding: 1.1rem 1.3rem; font-family: inherit; font-weight: 700;
  font-size: 1rem; color: var(--navy-deep); cursor: pointer; text-align: left;
}
.faq-icon svg { transition: transform 0.2s; width: 16px; height: 16px; }
.faq-item.active .faq-icon svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer-content { padding: 0 1.3rem 1.1rem; color: var(--text-mid); font-size: 0.95rem; line-height: 1.65; }
.faq-answer-content p { margin-bottom: 0.6rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: 0.6rem; }
.footer-brand span { color: var(--accent-amber); }
.footer-desc { font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.8rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.55rem; }
.footer a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; }
.footer-legal { font-size: 0.78rem; line-height: 1.6; color: rgba(255,255,255,0.55); margin-bottom: 0.8rem; }
.footer-warning { font-weight: 700; color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-minimal { background: var(--navy-deep); color: rgba(255,255,255,0.8); padding: 2.5rem 2rem; }
.footer-minimal-inner { max-width: 780px; margin: 0 auto; }
.footer-minimal p { font-size: 0.78rem; line-height: 1.6; color: rgba(255,255,255,0.55); margin-bottom: 0.8rem; }
.footer-minimal a { color: rgba(255,255,255,0.8); }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 8000;
  background: var(--white); border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  padding: 0.8rem 1rem; transform: translateY(140%); transition: transform 0.3s ease;
  display: none;
}
.sticky-cta--visible { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.sticky-cta-text { display: flex; flex-direction: column; font-size: 0.82rem; }
.sticky-cta-button { display: inline-flex; align-items: center; gap: 0.3rem; background: var(--accent-amber); color: var(--navy-deep); padding: 0.6rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 700; }
.sticky-cta-close { position: absolute; top: 4px; right: 8px; background: none; border: none; font-size: 1.2rem; color: var(--text-mid); cursor: pointer; }
@media (max-width: 900px) { .sticky-cta { display: block; } }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; background: var(--white); border-top: 2px solid var(--navy-deep);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08); padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  z-index: 99999; font-size: 14px; line-height: 1.45; color: var(--navy-deep);
  transform: translateY(100%); transition: transform 280ms ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__close { position: absolute; top: 6px; right: 6px; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; color: #64748b; font-size: 24px; line-height: 1; padding: 0; }
.cookie-banner__close:hover { color: var(--navy-deep); }
.cookie-banner__text { margin: 0 36px 11px 0; font-size: 13px; }
.cookie-banner__text a { color: var(--accent-amber-deep); text-decoration: underline; font-weight: 600; }
.cookie-banner__buttons { display: flex; gap: 10px; }
.cookie-banner__btn { flex: 1; padding: 11px 14px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; border: 2px solid transparent; transition: opacity .15s, background .15s, border-color .15s; }
.cookie-banner__btn--accept { background: var(--accent-amber); color: var(--navy-deep); }
.cookie-banner__btn--accept:hover { filter: brightness(0.92); }
.cookie-banner__btn--reject { background: var(--white); color: var(--navy-deep); border-color: var(--navy-deep); }
.cookie-banner__btn--reject:hover { background: var(--cream); }
.cookie-banner__btn:active { opacity: .85; }
@media (min-width: 720px) {
  .cookie-banner { max-width: 540px; left: auto; right: 20px; bottom: 20px; border-radius: 14px; border: 1px solid rgba(0,0,0,.18); box-shadow: 0 6px 24px rgba(0,0,0,.12); transform: none; opacity: 0; transition: opacity 280ms ease; }
  .cookie-banner.visible { transform: none; opacity: 1; }
}

/* ============================================
   START / LANDING PAGE
   ============================================ */
.landing-topbar { padding: 0.6rem 2rem; background: var(--white); border-bottom: 1px solid var(--border-soft); }
.landing-topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.landing-logo { display: flex; align-items: center; gap: 0.6rem; }
.landing-logo img { height: 34px; }
.landing-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy-deep); }
.landing-logo-text span { color: var(--accent-amber); }
.landing-logo-tagline { font-size: 0.78rem; color: var(--text-mid); }

.landing-hero { background: var(--navy-deep); color: var(--white); padding: 3rem 2rem; }
.landing-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
.landing-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.8rem; }
.landing-hero h1 em { font-style: normal; color: var(--accent-amber); }
.landing-hero .subtitle { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 1.2rem; }
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.hero-bullets li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.98rem; }
.hero-bullets .check { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-amber); align-items: center; justify-content: center; flex-shrink: 0; }
.hero-bullets .check svg { width: 13px; height: 13px; fill: var(--navy-deep); }
@media (max-width: 900px) { .landing-hero-inner { grid-template-columns: 1fr; } }

.worked-example-section { padding: 3rem 2rem; }
.worked-example-inner { max-width: 900px; margin: 0 auto; }
.worked-example-inner h2 { text-align: center; margin-bottom: 0.5rem; }
.worked-example-inner > p.section-lede { text-align: center; color: var(--text-mid); margin-bottom: 1.2rem; }

.routes-section { padding: 3rem 2rem; background: var(--cream-dark); }
.routes-inner { max-width: 1100px; margin: 0 auto; }
.routes-inner h2 { text-align: center; margin-bottom: 1.8rem; }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.route-card { background: var(--white); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border-soft); }
.route-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.route-card p { color: var(--text-mid); font-size: 0.93rem; }
@media (max-width: 800px) { .routes-grid { grid-template-columns: 1fr; } }

/* Stat tiles reused on hubs */
.stat-tiles { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat-tile { background: var(--white); border: 1px solid var(--border-soft); border-radius: 12px; padding: 1rem 1.3rem; min-width: 150px; }
.stat-tile strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--navy-deep); }
.stat-tile span { font-size: 0.82rem; color: var(--text-mid); }

/* Generic section wrapper */
.section-wrap { padding: 3rem 2rem; }
.section-wrap-inner { max-width: 1100px; margin: 0 auto; }

/* Utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
