/* ============================================================
   SKILLBULLS GLOBAL — Design System
   Trust & Authority · Accessible & Ethical · Blue / White
   Fonts: Lexend (display) · Source Sans 3 (body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --navy:        #243040;   /* logo wordmark / headings / dark sections */
  --navy-900:    #1a2431;
  --navy-800:    #243040;
  --navy-700:    #33465c;
  --blue:        #007FAF;   /* logo mark / primary accent / CTA */
  --blue-600:    #0071a0;
  --blue-700:    #005f88;
  --blue-400:    #33a0c8;
  --blue-200:    #a9d6e8;
  --blue-tint:   #eaf4f9;   /* very light blue wash */
  --blue-tint-2: #f4f9fc;

  /* Neutrals */
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-alt:      #f5f9fc;
  --card:        #ffffff;
  --fg:          #1c2733;   /* body text */
  --fg-soft:     #4a5b6b;   /* secondary text */
  --muted:       #6b7a89;
  --border:      #e2ebf1;
  --border-soft: #eef4f8;

  /* Semantic */
  --ring:        #007FAF;
  --shadow-sm:   0 1px 2px rgba(36,48,64,.06), 0 1px 3px rgba(36,48,64,.05);
  --shadow-md:   0 4px 12px rgba(36,48,64,.08), 0 2px 4px rgba(36,48,64,.04);
  --shadow-lg:   0 18px 40px -12px rgba(36,48,64,.18);
  --shadow-blue: 0 12px 28px -10px rgba(0,127,175,.45);

  /* Type */
  --font-display: 'Lexend', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-6: 24px; --space-8: 32px; --space-12: 48px; --space-16: 64px;
  --space-20: 80px; --space-24: 96px;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color:#fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #dbe6ef; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #eaf6fb;
}
.section--blue h1, .section--blue h2, .section--blue h3 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Section heading kit ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-700);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--blue); border-radius: 2px;
}
.section--navy .eyebrow, .section--blue .eyebrow { color: #7cc7e2; }
.section--navy .eyebrow::before, .section--blue .eyebrow::before { background: #7cc7e2; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.section-head p { color: var(--fg-soft); font-size: 1.12rem; margin-bottom: 0; }
.section--navy .section-head p, .section--blue .section-head p { color: #b9cbdb; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; transition: all .22s var(--ease);
  min-height: 48px; white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-700); color:#fff; transform: translateY(-2px); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-900); color:#fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.btn-ghost-light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color:#fff; }
.btn-white { background:#fff; color: var(--blue-700); }
.btn-white:hover { background: var(--blue-tint); color: var(--blue-700); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; min-height: 56px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header > .container { max-width: 1360px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 1px; list-style: none;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .88rem;
  color: var(--navy-700); padding: 8px 10px; border-radius: 8px;
  transition: all .18s var(--ease); position: relative; white-space: nowrap;
}
.nav-cta .btn { padding: 11px 18px; font-size: .9rem; min-height: 44px; }
.nav-links a:hover { color: var(--blue); background: var(--blue-tint); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content:""; position:absolute; left:12px; right:12px; bottom:2px; height:2px;
  background: var(--blue); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 46px; height: 46px; border-radius: 8px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content:""; display:block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all .25s var(--ease); position: relative;
}
.nav-toggle span::before { position:absolute; top:-7px; }
.nav-toggle span::after { position:absolute; top:7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top:0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top:0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, var(--blue-tint-2) 55%, var(--blue-tint) 100%);
  padding: clamp(72px, 11vw, 140px) 0 clamp(64px, 9vw, 120px);
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(600px 400px at 88% 8%, rgba(0,127,175,.10), transparent 60%),
    radial-gradient(500px 380px at 4% 96%, rgba(36,48,64,.06), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; background:#fff;
  border:1px solid var(--border); box-shadow: var(--shadow-sm);
  padding: 7px 15px; border-radius: 999px; font-size:.82rem; font-weight:600;
  font-family: var(--font-display); color: var(--navy-700); margin-bottom: 22px;
}
.hero-badge .dot { width:8px; height:8px; border-radius:50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(0,127,175,.15); }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.06; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--blue); }
.hero-lead { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--fg-soft); max-width: 40ch; margin-bottom: 30px; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 14px; margin-bottom: 34px; }
.hero-stats { display:flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { display:block; font-family:var(--font-display); font-size:1.7rem; color:var(--navy); font-weight:700; }
.hero-stats .stat span { font-size:.86rem; color: var(--muted); }
.hero-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(150deg, var(--navy) 0%, var(--blue-700) 100%);
  box-shadow: var(--shadow-lg); padding: 40px; min-height: 380px;
  display:flex; flex-direction:column; justify-content:center;
}
.hero-visual::after {
  content:""; position:absolute; inset:0; opacity:.5;
  background:
    radial-gradient(340px 340px at 82% 12%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(240px 240px at 10% 92%, rgba(0,127,175,.4), transparent 60%);
}
.hero-visual-inner { position: relative; z-index:1; }
.hv-logo { height: 68px; width:auto; margin-bottom: 26px; }
.hv-list { list-style:none; display:grid; gap:14px; }
.hv-list li { display:flex; align-items:center; gap:13px; color:#dcebf4; font-weight:500; }
.hv-list .ico {
  flex-shrink:0; width:34px; height:34px; border-radius:9px; display:grid; place-items:center;
  background: rgba(255,255,255,.12); color:#8fd0e8;
}
.hv-list .ico svg { width:19px; height:19px; }

/* Simple hero (interior pages) */
.page-hero {
  position: relative; overflow:hidden; color:#e8f1f7;
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy) 45%, var(--blue-700) 130%);
  padding: clamp(72px, 10vw, 130px) 0 clamp(56px, 7vw, 92px);
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(560px 380px at 85% 10%, rgba(0,127,175,.5), transparent 60%),
    radial-gradient(400px 300px at 6% 100%, rgba(255,255,255,.07), transparent 60%);
}
.page-hero .container { position:relative; z-index:1; max-width: 880px; }
.page-hero .eyebrow { color:#7cc7e2; }
.page-hero .eyebrow::before { background:#7cc7e2; }
.page-hero h1 { color:#fff; font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.page-hero p { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color:#bcd2e2; max-width: 60ch; margin-bottom: 0; }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:.85rem; color:#9fb8c9; margin-bottom: 22px; font-family: var(--font-display); }
.breadcrumb a { color:#9fb8c9; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { color:#6f8698; }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--fg-soft); margin-bottom: 0; }
.card-ico {
  width: 54px; height: 54px; border-radius: 13px; display:grid; place-items:center;
  background: var(--blue-tint); color: var(--blue); margin-bottom: 20px;
}
.card-ico svg { width: 27px; height: 27px; }
.card--navy { background: var(--navy); border-color: var(--navy-700); color:#c8d6e2; }
.card--navy h3 { color:#fff; }
.card--navy p { color:#a9bccb; }
.card--navy .card-ico { background: rgba(255,255,255,.1); color:#7cc7e2; }

.card-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  width: 44px; height:44px; border-radius: 11px; display:grid; place-items:center;
  background: var(--blue); color:#fff; margin-bottom: 18px; flex-shrink:0;
}

/* Feature list two-col compare */
.compare-list { list-style:none; display:grid; gap: 2px; }
.compare-row {
  display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap: 20px;
  padding: 20px 24px; background:#fff; border:1px solid var(--border);
}
.compare-row:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.compare-row:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.compare-row + .compare-row { border-top: 0; }
.compare-row .others { color: var(--muted); text-align:right; }
.compare-row .us { color: var(--navy); font-weight:600; font-family:var(--font-display); }
.compare-row .vs {
  font-size:.7rem; font-weight:700; color: var(--blue); background: var(--blue-tint);
  width:34px; height:34px; border-radius:50%; display:grid; place-items:center; font-family:var(--font-display);
}

/* Flow / process chain */
.flow { display:flex; flex-wrap:wrap; gap: 14px; align-items:stretch; justify-content:center; }
.flow-step {
  background:#fff; border:1px solid var(--border); border-radius: 12px;
  padding: 16px 22px; font-family: var(--font-display); font-weight:600; color: var(--navy);
  display:flex; align-items:center; gap: 10px; box-shadow: var(--shadow-sm);
}
.flow-step .n { color: var(--blue); font-size:.8rem; }
.flow-arrow { display:grid; place-items:center; color: var(--blue-400); }
.section--navy .flow-step { background: var(--navy-700); border-color: var(--navy-700); color:#fff; }

/* Pillar / vertical tags */
.tag-grid { display:flex; flex-wrap:wrap; gap: 10px; }
.tag {
  background:#fff; border:1px solid var(--border); border-radius: 999px;
  padding: 9px 18px; font-weight:600; font-size:.92rem; color: var(--navy-700);
  font-family: var(--font-display); transition: all .2s var(--ease);
}
.tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.section--navy .tag, .section--blue .tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color:#e2eef5; }

/* Stat band */
.stat-band { display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat-band .stat { text-align:center; }
.stat-band .stat strong {
  display:block; font-family:var(--font-display); font-weight:700;
  font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--blue); line-height:1;
}
.section--navy .stat-band .stat strong, .section--blue .stat-band .stat strong { color:#7cc7e2; }
.stat-band .stat span { display:block; margin-top:8px; color: var(--fg-soft); font-size:.95rem; }
.section--navy .stat-band .stat span { color:#a9bccb; }

/* Leadership */
.leader-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); height:100%; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-photo {
  height: 190px; display:grid; place-items:center;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue-700) 120%); position:relative;
}
.leader-initials { font-family: var(--font-display); font-weight:700; font-size: 3rem; color: rgba(255,255,255,.92); }
.leader-body { padding: 24px; }
.leader-body h3 { font-size: 1.24rem; margin-bottom: 3px; }
.leader-role { color: var(--blue-700); font-weight:600; font-family:var(--font-display); font-size:.9rem; margin-bottom: 14px; }
.leader-body p { color: var(--fg-soft); font-size:.96rem; margin-bottom:0; }

/* Value / mission split */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.split-visual {
  border-radius: var(--radius-lg); padding: 44px; color:#fff; position:relative; overflow:hidden;
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-700) 100%);
  box-shadow: var(--shadow-lg);
}
.split-visual h3 { color:#fff; font-size:1.6rem; }
.split-visual p { color:#e0f1f8; margin-bottom:0; }
.split-visual::after { content:""; position:absolute; right:-40px; top:-40px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.09); }

/* Timeline */
.timeline { position:relative; display:grid; gap: 0; margin-left: 8px; }
.timeline-item { position:relative; padding: 0 0 34px 40px; border-left: 2px solid var(--border); }
.timeline-item:last-child { border-left-color: transparent; padding-bottom:0; }
.timeline-item::before {
  content:""; position:absolute; left:-9px; top:2px; width:16px; height:16px;
  border-radius:50%; background: var(--blue); border:3px solid #fff; box-shadow: 0 0 0 2px var(--blue-200);
}
.timeline-item h4 { font-size:1.15rem; margin-bottom:6px; }
.timeline-item p { color: var(--fg-soft); margin-bottom:0; }

/* Accordion / FAQ */
.accordion { border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; background:#fff; }
.acc-item + .acc-item { border-top:1px solid var(--border); }
.acc-trigger {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  padding: 22px 24px; font-family: var(--font-display); font-weight:600; font-size:1.05rem;
  color: var(--navy); display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.acc-trigger:hover { color: var(--blue); }
.acc-icon { flex-shrink:0; width:24px; height:24px; position:relative; transition: transform .3s var(--ease); color: var(--blue); }
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(180deg); }
.acc-panel { max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.acc-panel-inner { padding: 0 24px 24px; color: var(--fg-soft); }

/* Forms */
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display:flex; flex-direction:column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family:var(--font-display); font-weight:600; font-size:.9rem; color: var(--navy); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size:1rem; padding: 13px 15px;
  border:1.5px solid var(--border); border-radius: 10px; background:#fff; color: var(--fg);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease); width:100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,127,175,.14);
}
.field .hint { font-size:.82rem; color: var(--muted); }

/* Contact info items */
.contact-item { display:flex; gap:16px; align-items:flex-start; }
.contact-item .ci-ico { flex-shrink:0; width:46px; height:46px; border-radius:11px; background: var(--blue-tint); color:var(--blue); display:grid; place-items:center; }
.contact-item .ci-ico svg { width:22px; height:22px; }
.contact-item h4 { margin-bottom:3px; font-size:1.05rem; }
.contact-item p, .contact-item a { color: var(--fg-soft); margin:0; font-size:.98rem; }

/* News cards */
.news-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); height:100%; display:flex; flex-direction:column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-thumb { height: 170px; background: linear-gradient(150deg, var(--blue-tint) 0%, var(--blue-200) 130%); position:relative; display:grid; place-items:center; color: var(--blue-700); }
.news-thumb svg { width: 46px; height:46px; opacity:.55; }
.news-body { padding: 22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.news-meta { display:flex; gap:10px; align-items:center; font-size:.8rem; color: var(--muted); margin-bottom:10px; font-family:var(--font-display); }
.news-tag { background: var(--blue-tint); color: var(--blue-700); padding: 3px 10px; border-radius:999px; font-weight:600; }
.news-body h3 { font-size:1.15rem; margin-bottom:8px; }
.news-body p { color: var(--fg-soft); font-size:.95rem; flex:1; }

/* CTA band */
.cta-band { position:relative; overflow:hidden; text-align:center;
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy) 40%, var(--blue-700) 130%);
  color:#fff; border-radius: 26px; padding: clamp(48px, 7vw, 84px) 32px;
}
.cta-band::before { content:""; position:absolute; inset:0;
  background: radial-gradient(500px 300px at 82% 10%, rgba(0,127,175,.55), transparent 60%),
              radial-gradient(400px 260px at 10% 100%, rgba(255,255,255,.06), transparent 60%); }
.cta-band > * { position:relative; z-index:1; }
.cta-band h2 { color:#fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.cta-band p { color:#c4d6e4; font-size:1.12rem; max-width: 620px; margin: 0 auto 30px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* Lead bullets */
.check-list { list-style:none; display:grid; gap: 14px; }
.check-list li { display:flex; gap:13px; align-items:flex-start; color: var(--fg-soft); }
.check-list .ck { flex-shrink:0; width:26px; height:26px; border-radius:50%; background: var(--blue-tint); color: var(--blue); display:grid; place-items:center; margin-top:1px; }
.check-list .ck svg { width:15px; height:15px; }
.section--navy .check-list li { color:#c8d6e2; }
.section--navy .check-list .ck { background: rgba(255,255,255,.12); color:#7cc7e2; }

/* Prose lead */
.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--navy); line-height:1.5; font-family: var(--font-display); font-weight: 400; }
.text-block p { color: var(--fg-soft); font-size: 1.08rem; }
.pull { border-left: 4px solid var(--blue); padding: 6px 0 6px 24px; font-family:var(--font-display); font-size:1.3rem; color: var(--navy); font-weight:500; line-height:1.4; margin: 8px 0; }

/* Logo strip */
.logo-strip { display:flex; flex-wrap:wrap; gap: 16px; justify-content:center; align-items:center; }
.logo-chip {
  background:#fff; border:1px solid var(--border); border-radius: 12px; padding: 18px 26px;
  font-family: var(--font-display); font-weight:700; color: var(--navy-700); box-shadow: var(--shadow-sm);
  display:flex; align-items:center; gap:10px; font-size:.98rem;
}
.logo-chip .lc-ico { color: var(--blue); display:grid; place-items:center; }
.logo-chip .lc-ico svg { width:22px; height:22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color:#9db2c4; padding: 72px 0 32px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { color:#8ba2b6; font-size:.96rem; max-width: 34ch; }
.footer-col h4 { color:#fff; font-size:.95rem; font-family:var(--font-display); letter-spacing:.03em; margin-bottom: 18px; text-transform:uppercase; }
.footer-col ul { list-style:none; display:grid; gap: 11px; }
.footer-col a { color:#9db2c4; font-size:.95rem; }
.footer-col a:hover { color:#7cc7e2; }
.footer-social { display:flex; gap:12px; margin-top:22px; }
.footer-social a { width:40px; height:40px; border-radius:10px; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#c1d2e0; transition: all .2s var(--ease); }
.footer-social a:hover { background: var(--blue); color:#fff; }
.footer-social svg { width:19px; height:19px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top: 26px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.88rem; color:#7c93a8; }
.footer-bottom a { color:#7c93a8; }
.footer-bottom a:hover { color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal[data-delay="1"] { transition-delay:.08s; }
.reveal[data-delay="2"] { transition-delay:.16s; }
.reveal[data-delay="3"] { transition-delay:.24s; }

/* ---------- Inline SVG sizing (text-link arrows etc.) ---------- */
a svg, p svg { width: 1.05em; height: 1.05em; vertical-align: -.14em; }
.acc-icon svg { width: 22px; height: 22px; }
.card-num svg { width: 20px; height: 20px; }

/* ---------- Utilities ---------- */
.center { text-align:center; }
.mt-0 { margin-top:0; } .mb-0 { margin-bottom:0; }
.max-70 { max-width: 70ch; }
.mx-auto { margin-left:auto; margin-right:auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav-links { display:none; }
  .nav-toggle { display:grid; place-items:center; }
  .site-header > .container { max-width: var(--container); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .form-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-band { grid-template-columns: repeat(2,1fr); gap: 32px 20px; }
  .compare-row { grid-template-columns: 1fr auto 1fr; gap:12px; padding:16px; font-size:.95rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap:32px; }
  .footer-bottom { flex-direction:column; }
  .hero-stats { gap: 22px; }
  .btn { width:100%; }
  .hero-actions .btn, .cta-actions .btn { width:100%; }
  .flow { flex-direction:column; }
  .flow-arrow { transform: rotate(90deg); }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: #fff; padding: 24px; overflow-y:auto;
  transform: translateX(100%); transition: transform .3s var(--ease);
  display:flex; flex-direction:column; gap: 4px;
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  font-family: var(--font-display); font-weight:600; font-size:1.1rem; color: var(--navy);
  padding: 14px 12px; border-radius: 10px; border-bottom:1px solid var(--border-soft);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); background: var(--blue-tint); }
.mobile-nav .btn { margin-top: 18px; width:100%; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; }
}
