/* ============================================================
   NTFSA — National Taxi Financial Services Association
   Design system: "The Route" — institutional navy + taxi-livery ribbon
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Trust foundation */
  --ink:      #0B1B2E;   /* deep institutional navy */
  --ink-2:    #102A45;   /* raised navy surface */
  --ink-3:    #1B3A5B;   /* hairlines on navy */
  --paper:    #F6F4EE;   /* warm off-white */
  --paper-2:  #ECE8DE;   /* sunk paper */
  --white:    #FFFFFF;

  /* Taxi-livery accents (the SA minibus stripe) */
  --green:  #1FA938;
  --amber:  #F4A91B;
  --red:    #E0322A;
  --blue:   #1E40C4;
  --gold:   #E6B23C;   /* premium accent on navy */

  /* Text */
  --text:     #14202E;
  --text-mut: #51606E;
  --text-inv: #EAF1F8;
  --text-inv-mut: #93A7BC;

  /* System */
  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:28px;
  --shadow-sm: 0 1px 2px rgba(11,27,46,.06), 0 4px 14px rgba(11,27,46,.06);
  --shadow:    0 10px 30px rgba(11,27,46,.10), 0 2px 8px rgba(11,27,46,.06);
  --shadow-lg: 0 30px 70px rgba(11,27,46,.18);
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: 'Sora', system-ui, sans-serif;
  --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; color: var(--ink); }
.display { font-weight: 800; }
p { color: var(--text-mut); }
.lead { font-size: clamp(1.05rem, 1rem + .6vw, 1.3rem); color: var(--text-mut); line-height: 1.6; }

.eyebrow {
  font-family: var(--ff-display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--amber), var(--red), var(--blue), var(--green));
}
.eyebrow.on-dark { color: var(--gold); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 9vw, 110px); position: relative; }
.section.tight { padding-block: clamp(40px, 6vw, 70px); }
.bg-ink { background: var(--ink); color: var(--text-inv); }
.bg-ink h1,.bg-ink h2,.bg-ink h3,.bg-ink h4 { color: var(--white); }
.bg-ink p { color: var(--text-inv-mut); }
.bg-paper2 { background: var(--paper-2); }

.sec-head { max-width: 660px; margin-bottom: clamp(34px,5vw,56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.85rem, 1.3rem + 2.6vw, 3.1rem); margin-top: 16px; }
.sec-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Livery ribbon (signature) ---------- */
.ribbon {
  height: 7px; width: 100%;
  background: linear-gradient(90deg,
    var(--amber) 0%, var(--amber) 25%,
    var(--red) 25%, var(--red) 50%,
    var(--blue) 50%, var(--blue) 75%,
    var(--green) 75%, var(--green) 100%);
  background-size: 220px 100%;
}
.ribbon-flow {
  height: 6px; width: 100%;
  background: linear-gradient(90deg, var(--amber), var(--red) 33%, var(--blue) 66%, var(--green));
  background-size: 300% 100%;
  animation: ribbonShift 9s linear infinite;
}
@keyframes ribbonShift { to { background-position: 300% 0; } }

/* ---------- Wordmark ---------- */
.wordmark { font-family: var(--ff-display); font-weight: 800; letter-spacing: -.01em; line-height: 1; white-space: nowrap; }
.wordmark .n{color:var(--green);}
.wordmark .t{color:var(--amber);}
.wordmark .f{color:var(--red);}
.wordmark .s{color:var(--blue);}
.wordmark .a{color:var(--blue);}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .96rem;
  padding: .92rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  cursor: pointer; line-height: 1; text-align: center;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--ink-2); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(230,178,60,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(11,27,46,.22); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-block { width: 100%; }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,244,238,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(11,27,46,.08);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(246,244,238,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo .wordmark { font-size: 1.45rem; }
.nav-logo .nav-tag { display: none; }
@media (min-width: 460px) {
  .nav-logo .nav-tag { display: block; font-family: var(--ff-display); font-weight: 500; font-size: .56rem; letter-spacing: .04em; color: var(--text-mut); text-transform: uppercase; margin-top: 2px; }
}
.nav-links { display: none; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--ff-display); font-weight: 600; font-size: .89rem; color: var(--ink); white-space: nowrap;
  padding: .55rem .66rem; border-radius: 10px; position: relative; transition: color .2s, background .2s;
}
.nav-links a:hover { background: rgba(11,27,46,.05); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content:""; position:absolute; left:.8rem; right:.8rem; bottom:.28rem; height:2px; border-radius:2px;
  background: linear-gradient(90deg,var(--amber),var(--red),var(--blue),var(--green));
}
.nav-cta { display: none; }
.nav-contact { display: none; font-family: var(--ff-display); font-weight: 600; font-size: .9rem; color: var(--ink); padding: .55rem .7rem; border-radius: 10px; transition: color .2s, background .2s; }
.nav-contact:hover { background: rgba(11,27,46,.05); color: var(--blue); }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 70px 0 auto 0; z-index: 99;
  background: var(--paper);
  border-bottom: 1px solid rgba(11,27,46,.1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%); transition: transform .4s var(--ease);
  padding: 14px 22px 26px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
  padding: 1rem .2rem; border-bottom: 1px solid rgba(11,27,46,.08);
}
.mobile-menu a.active { color: var(--blue); }
.mobile-menu .btn { margin-top: 18px; color: var(--white); border-bottom: 0; justify-content: center; }
.mobile-menu .btn:hover { color: var(--white); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--text-inv); overflow: hidden; }
.hero-grid {
  display: grid; gap: 36px;
  padding-block: clamp(48px, 8vw, 96px);
  align-items: center;
}
.hero-eyebrow { color: var(--gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 1.5rem + 5vw, 4.4rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.02;
  margin-top: 18px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub { margin-top: 22px; max-width: 540px; font-size: clamp(1.02rem,1rem + .4vw,1.18rem); color: var(--text-inv-mut); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--ink-3); }
.hero-trust .ht { }
.hero-trust .ht-num { font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; color: var(--white); line-height: 1; }
.hero-trust .ht-num .unit { color: var(--gold); }
.hero-trust .ht-label { font-size: .82rem; color: var(--text-inv-mut); margin-top: 6px; }

.hero-media { position: relative; }
.hero-media .photo-frame {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
}
.hero-media .photo-frame img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
.hero-media .ribbon-tag {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(11,27,46,.62); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
}
.ribbon-tag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,169,56,.25); flex: none; }
.ribbon-tag span { font-size: .82rem; color: var(--text-inv); font-family: var(--ff-display); font-weight: 500; }

/* Hero ambient livery sweep */
.hero-sweep { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.hero-sweep svg { position: absolute; right: -10%; top: -20%; width: 80%; height: 140%; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(11,27,46,.1); border-radius: var(--radius); overflow: hidden; }
.statband .stat { background: var(--paper); padding: 26px 22px; }
.bg-ink .statband { background: var(--ink-3); }
.bg-ink .statband .stat { background: var(--ink); }
.stat .num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem,1.4rem+1.6vw,2.6rem); color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.bg-ink .stat .num { color: var(--white); }
.stat .num .unit { color: var(--blue); }
.bg-ink .stat .num .unit { color: var(--gold); }
.stat .cap { margin-top: 10px; font-size: .9rem; color: var(--text-mut); }
.bg-ink .stat .cap { color: var(--text-inv-mut); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--white); border: 1px solid rgba(11,27,46,.08);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(11,27,46,.14); }
.card-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ink); color: var(--gold); margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { font-size: .95rem; }
.card .card-strip { position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg,var(--amber),var(--red),var(--blue),var(--green)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover .card-strip { transform: scaleX(1); }
.card-link { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--ff-display); font-weight:600; font-size:.9rem; color:var(--blue); margin-top:16px; }
.card-link svg { width: 1em; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* numbered focus list */
.focus-card { display: flex; gap: 16px; align-items: flex-start; }
.focus-card .fc-num { font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; color: var(--blue); flex: none;
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(30,64,196,.08); }

/* ---------- Split / feature ---------- */
.split { display: grid; gap: 36px; align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 16px; margin-top: 22px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(31,169,56,.12); color: var(--green); margin-top: 2px; }
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list strong { color: var(--text); font-weight: 700; font-family: var(--ff-display); display: block; font-size: .98rem; }
.feature-list span { font-size: .92rem; color: var(--text-mut); }
.bg-ink .feature-list strong { color: #fff; }
.bg-ink .feature-list span { color: var(--text-inv-mut); }
.bg-ink .feature-list .tick { background: rgba(31,169,56,.22); }

/* ---------- Audience pills ---------- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.who {
  background: var(--white); border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius-sm);
  padding: 20px 18px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s;
}
.who:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.who .who-ico { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 50%; display: grid; place-items: center; color: var(--white); }
.who .who-ico svg { width: 22px; height: 22px; }
.who h4 { font-size: 1rem; }
.who p { font-size: .82rem; margin-top: 4px; }

/* ---------- Vision / Mission cards ---------- */
.vm-card {
  background: var(--white); border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius);
  padding: clamp(26px,4vw,40px); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.vm-card::before { content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
  background: linear-gradient(180deg,var(--amber),var(--red),var(--blue),var(--green)); }
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vm-card .vm-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: var(--white); margin-bottom: 18px; }
.vm-card .vm-ico svg { width: 28px; height: 28px; }
.vm-card h3 { font-size: 1.45rem; }
.vm-card p { margin-top: 12px; font-size: 1.02rem; }

/* ---------- Partner logo strip ---------- */
.logo-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.logo-chip {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: var(--white); border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius-sm);
  padding: 20px 16px; color: var(--ink); font-family: var(--ff-display); font-weight: 600; font-size: .92rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.logo-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(30,64,196,.3); }
.logo-chip svg { width: 26px; height: 26px; color: var(--blue); flex: none; }

/* ---------- Story tag ---------- */
.story-tag { display: inline-block; margin-top: 16px; font-family: var(--ff-display); font-weight: 600;
  font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; color: var(--text-mut);
  padding-top: 14px; border-top: 1px solid rgba(11,27,46,.08); width: 100%; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 10px; padding-left: 30px; }
.timeline::before { content:""; position:absolute; left: 7px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(180deg,var(--amber),var(--red),var(--blue),var(--green)); border-radius: 3px; }
.tl-item { position: relative; padding: 0 0 30px 8px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position:absolute; left: -30px; top: 3px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--blue); box-shadow: 0 0 0 4px rgba(30,64,196,.12); }
.tl-item.future::before { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(230,178,60,.18); }
.tl-year { font-family: var(--ff-display); font-weight: 800; font-size: .92rem; color: var(--blue); letter-spacing: .03em; }
.tl-item.future .tl-year { color: var(--gold-ink, #b8860b); }
.tl-item h3 { font-size: 1.18rem; margin-top: 4px; }
.tl-item p { margin-top: 7px; font-size: .96rem; }
.bg-ink .timeline::before { opacity: .9; }
.bg-ink .tl-item::before { background: var(--ink); }
.bg-ink .tl-item h3 { color: #fff; }
.bg-ink .tl-item p { color: var(--text-inv-mut); }
.bg-ink .tl-year { color: var(--gold); }

/* ---------- Resource / download cards ---------- */
.res-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white);
  border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius-sm); padding: 20px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(30,64,196,.25); }
.res-card .res-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(30,64,196,.08); color: var(--blue); }
.res-card .res-ico svg { width: 24px; height: 24px; }
.res-card h4 { font-size: 1.02rem; }
.res-card p { font-size: .88rem; margin-top: 4px; }
.res-card .res-meta { display: inline-flex; align-items: center; gap: .4rem; margin-top: 12px;
  font-family: var(--ff-display); font-weight: 600; font-size: .82rem; color: var(--blue); }
.res-card .res-meta svg { width: 1em; }

/* ---------- Mini benefit (membership) ---------- */
.mini-benefit { display: flex; gap: 12px; align-items: flex-start; background: var(--white);
  border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius-sm); padding: 15px; }
.mini-benefit .mb-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(30,64,196,.08); color: var(--blue); }
.mini-benefit .mb-ico svg { width: 20px; height: 20px; }
.mini-benefit strong { display: block; font-family: var(--ff-display); font-size: .92rem; color: var(--ink); }
.mini-benefit span { display: block; font-size: .8rem; color: var(--text-mut); margin-top: 2px; }

/* ---------- Contact rows ---------- */
.contact-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 24px; }
.contact-row { display: flex; gap: 14px; align-items: center; background: var(--white);
  border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius-sm); padding: 16px 18px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
a.contact-row:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); border-color: rgba(30,64,196,.25); }
.contact-row .cr-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(30,64,196,.08); color: var(--blue); }
.contact-row .cr-ico svg { width: 22px; height: 22px; }
.contact-row strong { display: block; font-family: var(--ff-display); font-size: .98rem; color: var(--ink); }
.contact-row span { display: block; font-size: .88rem; color: var(--text-mut); margin-top: 2px; }

/* ---------- Map ---------- */
.map-card { background: var(--white); border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-sm); }
.map-card p svg { width: 1em; height: 1em; vertical-align: -0.12em; margin-right: .15em; }
p > svg:first-child { width: 1em; height: 1em; vertical-align: -0.12em; }

/* ---------- Narrow container & step list ---------- */
.container.narrow { max-width: 820px; }
.step-list .feature-list { margin-top: 16px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: var(--text-inv); border-radius: var(--radius-lg); padding: clamp(34px,5vw,56px); }
.cta-band .ribbon { position: absolute; left: 0; right: 0; top: 0; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem,1.2rem+2vw,2.6rem); }
.cta-band p { color: var(--text-inv-mut); margin-top: 14px; max-width: 520px; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-emblem { position: absolute; right: -40px; bottom: -40px; width: 230px; opacity: .10; pointer-events: none; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid rgba(11,27,46,.08); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; color: var(--text);
  background: var(--paper); border: 1.5px solid rgba(11,27,46,.12); border-radius: 12px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(30,64,196,.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; gap: 18px; }
.form-note { font-size: .82rem; color: var(--text-mut); margin-top: 4px; }
.form-success { display:none; padding: 16px 18px; border-radius: 12px; background: rgba(31,169,56,.1); border:1px solid rgba(31,169,56,.3); color:#15692a; font-size:.92rem; margin-bottom: 18px; font-family: var(--ff-display); font-weight: 500; }
.form-success.show { display:block; }
.form-error { display:none; padding: 16px 18px; border-radius: 12px; background: rgba(224,50,42,.08); border:1px solid rgba(224,50,42,.3); color:#a3271f; font-size:.9rem; margin-bottom: 18px; font-family: var(--ff-display); font-weight: 500; }
.form-error.show { display:block; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact aside ---------- */
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--ink-3); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .ci-ico { flex:none; width: 42px; height: 42px; border-radius: 12px; display:grid; place-items:center; background: rgba(255,255,255,.06); color: var(--gold); }
.contact-item .ci-ico svg { width: 20px; height: 20px; }
.contact-item h4 { color: var(--white); font-size: .98rem; }
.contact-item p, .contact-item a { color: var(--text-inv-mut); font-size: .92rem; }
.contact-item a:hover { color: var(--gold); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--ink); color: var(--text-inv); position: relative; overflow: hidden; }
.page-hero .ribbon { position: absolute; top: 0; left: 0; right: 0; }
.page-hero-inner { padding-block: clamp(48px,7vw,84px); position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,1.4rem+3.4vw,3.4rem); font-weight: 800; margin-top: 16px; }
.page-hero p { color: var(--text-inv-mut); margin-top: 18px; font-size: 1.1rem; max-width: 600px; }
.breadcrumb { font-size: .82rem; color: var(--text-inv-mut); font-family: var(--ff-display); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero-emblem { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); width: 280px; opacity: .08; }

/* ---------- Accordion ---------- */
.acc-item { border-bottom: 1px solid rgba(11,27,46,.1); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.acc-q .acc-ico { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: rgba(30,64,196,.08); color: var(--blue); transition: transform .3s var(--ease); }
.acc-item.open .acc-ico { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a p { padding-bottom: 22px; font-size: .98rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-inv-mut); padding-top: 0; }
.footer-grid { display: grid; gap: 38px; padding-block: clamp(48px,6vw,72px); }
.footer-brand .wordmark { font-size: 1.8rem; }
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: .92rem; }
.footer-col h4 { color: var(--white); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; padding: 7px 0; color: var(--text-inv-mut); font-size: .94rem; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom { border-top: 1px solid var(--ink-3); padding-block: 22px; display: flex; flex-direction: column; gap: 12px; font-size: .84rem; }
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--text-inv); transition: background .25s, transform .25s; }
.social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.text-center { text-align: center; }
.pill { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--ff-display); font-weight:600; font-size:.8rem;
  padding:.45rem .9rem; border-radius:999px; background:rgba(30,64,196,.08); color:var(--blue); }
.pill.on-dark { background: rgba(255,255,255,.08); color: var(--gold); }
.divider-ribbon { display:flex; }

/* ============================================================
   Responsive — mobile-first breakpoints
   ============================================================ */
@media (min-width: 560px) {
  .who-grid { grid-template-columns: repeat(3,1fr); }
  .cols-4 { grid-template-columns: 1fr 1fr; }
  .field-row.two { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 760px) {
  .cols-2 { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: repeat(3,1fr); }
  .hero-trust .ht-num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .statband { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 50px; }
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.media-right .split-media { order: 2; }
  .cols-4 { grid-template-columns: repeat(4,1fr); }
  .who-grid { grid-template-columns: repeat(5,1fr); }
  .logo-strip { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
  .container { padding-inline: 30px; }
}
@media (min-width: 1180px) {
  .nav-contact { display: inline-flex; }
}
@media (min-width: 1100px) {
  .hero h1 { font-size: clamp(3rem, 2rem + 3vw, 4.6rem); }
}
