/* ============================================================
   Driven Hire — Modern Redesign
   Shared design system
   ============================================================ */

:root {
  /* Brand palette — matched to the Driven Hire logo (blue + red + black) */
  --navy: #0c1622;        /* near-black brand dark */
  --navy-800: #12212f;
  --navy-700: #1b3450;
  --ink: #141a22;
  --slate: #475569;
  --slate-light: #64748b;
  --mist: #f5f7fb;
  --mist-2: #eef2f9;
  --line: #e2e8f0;
  --white: #ffffff;

  /* Brand accents — sampled from the logo (confirm exact hex if you have them) */
  --accent: #e83c2b;      /* Driven Hire red */
  --accent-600: #c93122;
  --brand: #1ba1dd;       /* Driven Hire blue */
  --brand-600: #1687bd;
  --brand-glow: rgba(27, 161, 221, 0.35);
  --teal: #14b3c6;        /* supportive cyan */

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 27, 63, 0.18);

  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--slate); }
a { color: var(--brand); text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow.light { color: #9dc0ff; }

.section { padding: 88px 0; }
.section.tight { padding: 60px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head p { font-size: 1.08rem; }

.lead { font-size: 1.18rem; color: var(--slate); max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(255, 90, 44, 0.32); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 8px 22px var(--brand-glow); }
.btn-brand:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

.arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -.02em; }
.brand .logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1rem;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.brand span.dot { color: var(--accent); }
.brand-logo { height: 40px; width: auto; display: block; }
@media (max-width: 720px) { .brand-logo { height: 34px; } }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .96rem; position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brand); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--navy); font-size: .95rem; white-space: nowrap; }

/* Login dropdown */
.login-menu { position: relative; }
.login-menu .caret { font-size: .7rem; transition: transform .2s ease; }
.login-menu.open .caret { transform: rotate(180deg); }
.login-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 70;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.login-menu:hover .login-dropdown,
.login-menu.open .login-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.login-dropdown a {
  display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none; transition: background .15s;
}
.login-dropdown a:hover { background: var(--mist); }
.login-dropdown .ld-title { display: block; font-weight: 700; color: var(--navy); font-size: .95rem; }
.login-dropdown .ld-sub { display: block; font-size: .82rem; color: var(--slate-light); margin-top: 1px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #1a3a86 0%, transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 55%, #0a1733 100%);
  color: #fff;
  padding: 96px 0 100px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .grad {
  background: linear-gradient(100deg, #5cc6f2, #1ba1dd);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { color: #c6d4ee; font-size: 1.2rem; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: #93a7cc; font-size: .9rem; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #dbe6ff; padding: 8px 15px; border-radius: 999px; font-size: .85rem; font-weight: 600;
}
.pill .ic { color: var(--teal); }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

/* Hero mock card */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.hero-card .hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hero-card .hc-title { font-weight: 700; color: #fff; font-size: 1rem; }
.hc-status { font-size: .75rem; font-weight: 700; color: #062; background: #b8f5c9; padding: 4px 10px; border-radius: 999px; }
.hc-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 13px 15px; margin-bottom: 10px;
}
.hc-row .l { display: flex; align-items: center; gap: 11px; color: #e7eefc; font-weight: 600; font-size: .92rem; }
.hc-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(47,107,255,.25); color: #9dc0ff; font-size: .95rem; }
.hc-badge { font-size: .74rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.hc-badge.done { background: rgba(23,195,178,.2); color: #7ff0e2; }
.hc-badge.prog { background: rgba(255,90,44,.18); color: #ffb59e; }
.hc-bar { height: 7px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 14px; }
.hc-bar > i { display: block; height: 100%; width: 82%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--teal)); }

/* ---------- Stats bar ---------- */
.stats { background: var(--navy); color: #fff; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .num { font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat .num .u { color: var(--accent); }
.stat .lbl { color: #a9bbdc; font-size: .92rem; font-weight: 600; }

/* ---------- Cards / features ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdd8ea; }
.card .ic-box {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 18px;
  background: linear-gradient(135deg, #eaf1ff, #f3f6ff); color: var(--brand);
}
.card .ic-box.alt { background: linear-gradient(135deg, #ffefe9, #fff4ef); color: var(--accent); }
.card .ic-box.teal { background: linear-gradient(135deg, #e4faf7, #eefdfb); color: #0e9c8c; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin-bottom: 0; }
.card .more { display: inline-flex; gap: 6px; margin-top: 16px; font-weight: 700; font-size: .92rem; color: var(--brand); }

/* Monogram icon (consistent, emoji-free) */
.ic-mono {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800; margin-bottom: 18px; letter-spacing: -.02em;
  background: linear-gradient(135deg, #eaf1ff, #f3f6ff); color: var(--brand); border: 1px solid #dbe7ff;
}
.ic-mono.plus { background: linear-gradient(135deg, #e4faf7, #eefdfb); color: #0e9c8c; border-color: #cdeef0; }

/* Service list style */
.svc-card { position: relative; overflow: hidden; }
.svc-card .tag { position: absolute; top: 20px; right: 20px; font-size: .72rem; font-weight: 700; color: var(--slate-light); background: var(--mist-2); padding: 4px 10px; border-radius: 999px; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 210px;
  padding: 24px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--navy); border: 1px solid rgba(255,255,255,.06);
  transition: transform .18s ease, box-shadow .2s;
}
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ind::before { content: ""; position: absolute; inset: 0; opacity: .92; }
.ind.i1::before { background: linear-gradient(160deg, #17356e, #0b1b3f); }
.ind.i2::before { background: linear-gradient(160deg, #b0421f, #6d2410); }
.ind.i3::before { background: linear-gradient(160deg, #0e6b60, #063f38); }
.ind.i4::before { background: linear-gradient(160deg, #274a8f, #14245a); }
.ind.i5::before { background: linear-gradient(160deg, #7a3b12, #4a2208); }
.ind.i6::before { background: linear-gradient(160deg, #285a55, #123330); }
.ind > * { position: relative; z-index: 1; }
.ind .ind-ic { font-size: 1.7rem; margin-bottom: auto; }
.ind h3 { color: #fff; margin: 0 0 4px; }
.ind p { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; }

/* ---------- Integrations ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-cell {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  height: 92px; display: grid; place-items: center; font-weight: 700; color: var(--slate);
  box-shadow: var(--shadow-sm); transition: transform .15s, border-color .2s; text-align: center; padding: 10px; font-size: .95rem;
}
.logo-cell:hover { transform: translateY(-3px); border-color: #cdd8ea; color: var(--navy); }
.logo-cell small { display: block; font-weight: 600; color: var(--slate-light); font-size: .72rem; margin-top: 2px; }

/* ---------- Split / support ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.support-visual {
  border-radius: var(--radius-lg); padding: 40px;
  background: radial-gradient(600px 300px at 20% 0%, #234b9e 0, transparent 60%), linear-gradient(160deg, var(--navy), #0a1733);
  color: #fff; box-shadow: var(--shadow-lg);
}
.support-visual .quote { font-size: 1.35rem; font-weight: 600; color: #fff; line-height: 1.4; }
.support-visual .by { margin-top: 18px; color: #a9bbdc; font-weight: 600; font-size: .92rem; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--slate); font-size: 1.02rem; }
.check-list .ck { flex: none; width: 24px; height: 24px; border-radius: 999px; background: #e4faf7; color: #0e9c8c; display: grid; place-items: center; font-weight: 800; font-size: .8rem; margin-top: 2px; }
.check-list b { color: var(--ink); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .n { font-size: 2.4rem; font-weight: 800; color: var(--mist-2); line-height: 1; letter-spacing: -.04em; }
.step .n b { color: var(--accent); }
.step h3 { margin: 10px 0 6px; }
.step p { font-size: .94rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: #ffb800; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { color: var(--ink); font-size: 1rem; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.who .name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.who .org { color: var(--slate-light); font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg); padding: 56px; text-align: center; color: #fff;
  background: radial-gradient(700px 300px at 50% -30%, #1ba1dd 0, transparent 60%), linear-gradient(160deg, var(--navy), #08111c);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c6d4ee; max-width: 52ch; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Applicant experience / phone mockup ---------- */
.phone {
  width: 264px; margin: 0 auto; background: #0c1622; border-radius: 40px; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid #223; position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; background: #2a3550; border-radius: 999px; z-index: 3;
}
.phone-screen { background: #fff; border-radius: 30px; overflow: hidden; }
.ps-head { background: linear-gradient(135deg, var(--brand), #1687bd); color: #fff; padding: 30px 20px 18px; text-align: center; }
.ps-head .logo { font-weight: 800; letter-spacing: -.02em; font-size: 1.05rem; }
.ps-head .sub { font-size: .8rem; color: #dcefff; margin-top: 3px; }
.ps-body { padding: 18px 18px 22px; }
.ps-title { font-weight: 700; color: var(--navy); font-size: .98rem; margin-bottom: 4px; }
.ps-note { font-size: .78rem; color: var(--slate-light); margin-bottom: 16px; }
.ps-field { background: var(--mist); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
.ps-field .lab { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-light); font-weight: 700; }
.ps-field .txt { font-size: .85rem; color: var(--ink); font-weight: 600; margin-top: 2px; }
.ps-check { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--slate); margin: 12px 2px 16px; }
.ps-check .bx { width: 16px; height: 16px; border-radius: 5px; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: .6rem; flex: none; }
.ps-btn { background: var(--accent); color: #fff; text-align: center; font-weight: 700; padding: 12px; border-radius: 999px; font-size: .9rem; }
.ps-foot { text-align: center; font-size: .72rem; color: var(--slate-light); margin-top: 12px; }
.phone-caption { text-align: center; margin-top: 18px; color: var(--slate-light); font-size: .85rem; font-weight: 600; }

/* ---------- U.S.-based trust band ---------- */
.usa-band {
  background: radial-gradient(700px 320px at 15% 0%, #1b3450 0, transparent 60%), linear-gradient(160deg, var(--navy), #08111c);
  color: #fff;
}
.usa-band h2 { color: #fff; }
.usa-band > .container > .split { align-items: center; }
.usa-band p { color: #c6d4ee; }
.usa-list { list-style: none; padding: 0; margin: 22px 0 26px; }
.usa-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: #dbe6ff; font-size: 1.02rem; }
.usa-list b { color: #fff; }
.usa-list .ck { flex: none; width: 24px; height: 24px; border-radius: 999px; background: rgba(23,195,178,.22); color: #7ff0e2; display: grid; place-items: center; font-weight: 800; font-size: .8rem; margin-top: 2px; }
.usa-visual {
  border-radius: var(--radius-lg); padding: 40px 34px; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg);
}
.usa-flag { font-size: 4.4rem; line-height: 1; }
.usa-visual .big { font-size: 2rem; font-weight: 800; color: #fff; margin: 14px 0 4px; letter-spacing: -.02em; }
.usa-visual .sub { color: #a9bbdc; font-weight: 600; }
.usa-visual .rule { height: 1px; background: rgba(255,255,255,.12); margin: 22px 0; }
.usa-visual .rowline { display: flex; align-items: center; justify-content: center; gap: 9px; color: #dbe6ff; font-weight: 600; font-size: .95rem; margin-bottom: 10px; }
.usa-visual .rowline:last-child { margin-bottom: 0; }
.usa-visual .rowline .ic { color: #7ff0e2; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(900px 400px at 85% -20%, #1a3a86 0, transparent 55%), linear-gradient(160deg, var(--navy), #0a1733);
  color: #fff; padding: 72px 0 76px; text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #c6d4ee; font-size: 1.15rem; max-width: 60ch; margin: 0 auto; }
.crumbs { color: #8fa4cc; font-size: .85rem; margin-bottom: 14px; }
.crumbs a { color: #b9c9ea; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(47,107,255,.12); }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; gap: 15px; align-items: flex-start; }
.ci-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, #eaf1ff, #f3f6ff); color: var(--brand); display: grid; place-items: center; font-size: 1.2rem; }
.ci-item .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-light); font-weight: 700; }
.ci-item .val { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.ci-item .val a { color: var(--navy); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #c6d4ee; padding: 64px 0 28px; }
.footer a { color: #c6d4ee; }
.footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.foot-logo { display: inline-block; margin-bottom: 16px; }
.foot-logo img { height: 42px; width: auto; display: block; }
.footer .fdesc { color: #90a4c9; font-size: .95rem; max-width: 32ch; }
.foot-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: 0; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; font-size: .92rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #8299bf; font-size: .85rem; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.badge-row .b { font-size: .72rem; font-weight: 700; color: #bcd0f5; border: 1px solid rgba(255,255,255,.18); padding: 6px 11px; border-radius: 999px; }

/* ---------- Answer box (GEO / featured snippet) ---------- */
.answer-box {
  background: linear-gradient(135deg, #f3f7ff, #eef8f6);
  border: 1px solid #d8e6ff; border-left: 5px solid var(--brand);
  border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-sm);
  max-width: 860px; margin: 0 auto;
}
.answer-tag {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.answer-box p { font-size: 1.18rem; color: var(--ink); margin-bottom: 18px; line-height: 1.5; }
.answer-box strong { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.faq-item h3 { margin: 0 0 8px; font-size: 1.08rem; }
.faq-item p { margin: 0; font-size: 1rem; }

/* ---------- Utilities ---------- */
.bg-mist { background: var(--mist); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-4, .ind-grid, .quotes, .steps { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow); align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--mist-2); }
  .nav-links a { display: block; padding: 15px 0; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .nav .btn { padding: 11px 15px; font-size: .88rem; }
  .btn-login { padding: 11px 13px; }
  .grid-3, .grid-2, .grid-4, .ind-grid, .quotes, .steps { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band, .support-visual { padding: 34px 24px; }
  .hero { padding: 64px 0 72px; }
}

/* nav-toggle animation when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
