/* ─── Design tokens ─────────────────────────────────────── */
:root {
  --bg:         #f8f9fc;
  --surface:    #ffffff;
  --ink:        #0f172a;
  --mid:        #334155;
  --muted:      #64748b;
  --faint:      #94a3b8;
  --line:       #e2e8f0;
  --line-soft:  #f1f5f9;
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-soft:  #eff6ff;
  --blue-mid:   #bfdbfe;
  --green:      #059669;
  --green-soft: #d1fae5;
  --cyan:       #0891b2;
}

/* ─── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; line-height: 1; }
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }

/* ─── Announcement bar ──────────────────────────────────── */
.a-bar {
  background: var(--blue); color: #fff;
  text-align: center; padding: 9px 20px;
  font-size: .8rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.a-bar a { font-weight: 700; text-decoration: underline; }
.a-bar a:hover { opacity: .85; }

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav-inner { display: flex; align-items: center; height: 70px; gap: 24px; }
.brand { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: -.025em; display: flex; align-items: center; gap: 2px; }
.brand em { font-style: normal; color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 7px 13px; border-radius: 8px; font-size: .875rem; font-weight: 500; color: var(--muted); transition: all .15s; }
.nav-links a:hover { background: var(--blue-soft); color: var(--blue-dark); }
.nav-end { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  font: 600 .875rem 'Inter', sans-serif; cursor: pointer;
  transition: all .2s; border: none; text-decoration: none;
}
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,.28); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero { overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 460px; min-height: 580px; }

/* left */
.hero-left {
  padding: 80px 64px 80px 0;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; color: var(--blue);
  background: var(--blue-soft); padding: 5px 12px; border-radius: 6px;
  margin-bottom: 24px; width: fit-content;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: blink 2.2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.8rem); font-weight: 800;
  line-height: 1.02; letter-spacing: -.045em; margin-bottom: 22px; color: var(--ink);
}
.hero h1 span { color: var(--blue); }
.hero-copy { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 34px; max-width: 510px; }
.hero-copy strong { color: var(--mid); font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-note {
  display: flex; align-items: center; gap: 10px;
  font-size: .83rem; color: var(--muted);
}
.hero-note strong { color: var(--ink); }
.pulse {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(5,150,105,.4);
  animation: ripple 2s infinite;
}
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(5,150,105,.4)} 70%{box-shadow:0 0 0 8px rgba(5,150,105,0)} 100%{box-shadow:0 0 0 0 rgba(5,150,105,0)} }

/* right: scope card column */
.hero-right {
  background: var(--blue); color: #fff;
  padding: 52px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 320px; height: 320px; background: rgba(255,255,255,.05);
  border-radius: 50%; pointer-events: none;
}
.hero-right::after {
  content: ''; position: absolute; bottom: -70px; left: -60px;
  width: 220px; height: 220px; background: rgba(255,255,255,.03);
  border-radius: 50%; pointer-events: none;
}
.scope-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-mid);
  margin-bottom: 8px; position: relative; z-index: 1;
}
.hero-right h2 {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em;
  line-height: 1.25; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.scope-list { display: grid; gap: 12px; position: relative; z-index: 1; }
.scope-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 14px;
}
.scope-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 8px;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 900;
}
.scope-item b { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.scope-item small { font-size: .78rem; line-height: 1.4; opacity: .75; }
.scope-footer {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .78rem; line-height: 1.6; opacity: .65;
  position: relative; z-index: 1;
}

/* ─── Trust logos strip ─────────────────────────────────── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-inner { min-height: 100px; display: grid; grid-template-columns: auto repeat(4,1fr); gap: 32px; align-items: center; }
.trust-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--faint); line-height: 1.45; }
.trust-logo { display: flex; min-height: 58px; align-items: center; justify-content: center; filter: grayscale(1); opacity: .72; transition: opacity .2s; }
.trust-logo:hover { opacity: 1; }
.trust-logo img { display: block; height: auto; max-height: 46px; max-width: 128px; width: auto; }
.trust-logo--government img { max-height: 70px; max-width: 168px; transform: scale(1.34); }
.trust-logo--alcoa img { max-height: 52px; }

/* ─── Buyer assurance strip ────────────────────────────── */
.buyer-bar { background: var(--ink); color: #fff; }
.buyer-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.buyer-item {
  display: flex; gap: 16px; padding: 30px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.buyer-item:first-child { padding-left: 0; }
.buyer-item:last-child { border-right: 0; padding-right: 0; }
.buyer-item > span {
  display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 9px; background: rgba(255,255,255,.08); color: #67e8f9;
  font-size: .72rem; font-weight: 900;
}
.buyer-item h2 { font-family: 'Inter', sans-serif; font-size: .9rem; margin-bottom: 6px; }
.buyer-item p { color: rgba(255,255,255,.58); font-size: .77rem; line-height: 1.55; }

/* ─── Section shared ────────────────────────────────────── */
.section { padding: 96px 0; }
.section.soft { background: var(--bg); }
.section.white { background: var(--surface); }
.section-head { display: grid; grid-template-columns: 1fr .72fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; color: var(--blue);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--cyan); flex-shrink: 0; }
.section h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; margin-top: 10px; }
.section-head > p { color: var(--muted); line-height: 1.75; margin: 0; }

/* ─── Outcomes grid ─────────────────────────────────────── */
.outcome-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.outcome {
  border: 1.5px solid var(--line); border-radius: 18px;
  padding: 30px; background: var(--surface);
  text-decoration: none; transition: all .25s;
  position: relative; overflow: hidden;
}
.outcome:hover { border-color: var(--blue); box-shadow: 0 14px 40px rgba(37,99,235,.08); transform: translateY(-2px); }
.outcome::before {
  content: ''; position: absolute; inset: 0; top: auto;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.outcome:hover::before { transform: scaleX(1); }
.outcome-top { display: flex; justify-content: space-between; align-items: flex-start; }
.outcome-num { font-size: .72rem; font-weight: 900; color: var(--blue); letter-spacing: .1em; text-transform: uppercase; }
.outcome-arrow { font-size: 1.2rem; color: var(--blue); opacity: 0; transition: opacity .2s; }
.outcome:hover .outcome-arrow { opacity: 1; }
.outcome h3 { font-size: 1.2rem; margin: 20px 0 10px; }
.outcome p { color: var(--muted); font-size: .875rem; line-height: 1.65; margin: 0; }
.outcome-list {
  display: grid; gap: 8px; list-style: none;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
}
.outcome-list li { position: relative; padding-left: 18px; color: var(--mid); font-size: .79rem; line-height: 1.45; }
.outcome-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.outcome-cta { display: inline-flex; margin-top: 20px; color: var(--blue); font-size: .8rem; font-weight: 800; }
.outcome-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
}
.chip { padding: 5px 9px; border-radius: 6px; background: var(--blue-soft); color: var(--blue); font-size: .72rem; font-weight: 700; }

/* ─── Why Ultron / delivery map ────────────────────────── */
.why-section { background: #eaf1ff; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.why-copy h2 { font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.06; letter-spacing: -.045em; margin: 12px 0 20px; }
.why-copy > p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.why-list { display: grid; gap: 16px; list-style: none; margin-top: 28px; }
.why-list li {
  display: grid; grid-template-columns: 180px 1fr; gap: 18px;
  padding-top: 16px; border-top: 1px solid rgba(37,99,235,.14);
}
.why-list strong { font-size: .86rem; color: var(--ink); }
.why-list span { color: var(--muted); font-size: .82rem; line-height: 1.55; }
.why-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.delivery-map { background: var(--ink); color: #fff; border-radius: 24px; padding: 34px; box-shadow: 0 24px 70px rgba(15,23,42,.18); }
.delivery-map-head { display: grid; gap: 8px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.delivery-map-head span { color: #67e8f9; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.delivery-map-head strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.55rem; line-height: 1.2; }
.delivery-row { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.delivery-row:last-child { border-bottom: 0; padding-bottom: 0; }
.delivery-row > b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: var(--blue); font-size: .75rem; }
.delivery-row h3 { font-size: 1rem; margin-bottom: 7px; }
.delivery-row p { color: rgba(255,255,255,.57); font-size: .79rem; line-height: 1.55; }

/* ─── Starting engagements ─────────────────────────────── */
.start-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.start-card {
  position: relative; min-height: 360px; padding: 32px;
  border: 1.5px solid var(--line); border-radius: 18px; background: var(--surface);
  display: flex; flex-direction: column; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.start-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,99,235,.08); }
.start-number { position: absolute; top: 28px; right: 28px; color: var(--blue-mid); font-size: 2.4rem; font-weight: 900; letter-spacing: -.08em; }
.start-tag { color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.start-card h3 { max-width: 75%; font-size: 1.35rem; line-height: 1.2; margin-bottom: 10px; }
.start-card > p { color: var(--muted); font-size: .86rem; line-height: 1.62; }
.start-card ul { display: grid; gap: 9px; margin: 20px 0 24px; padding-left: 18px; color: var(--mid); font-size: .8rem; line-height: 1.45; }
.start-card a { margin-top: auto; color: var(--blue); font-size: .82rem; font-weight: 800; }
.start-card a:hover { text-decoration: underline; }

/* ─── Proof / case studies ──────────────────────────────── */
.proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.proof-feature {
  background: var(--ink); color: #fff;
  border-radius: 22px; padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 440px;
}
.proof-tag { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 14px; }
.proof-feature h3 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; line-height: 1.2; }
.proof-feature p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin: 0; }
.proof-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 26px 0; }
.proof-fact {
  background: rgba(255,255,255,.07); border-radius: 10px;
  padding: 14px 12px;
}
.proof-fact b { font-size: .82rem; display: block; margin-bottom: 4px; }
.proof-fact small { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.4; }
.proof-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .875rem; color: #fff; transition: gap .2s; }
.proof-link:hover { gap: 12px; }

.proof-stack { display: grid; gap: 16px; }
.proof-card {
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: 18px; padding: 28px; transition: all .2s;
}
.proof-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,.06); }
.proof-card-tag { font-size: .68rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; }
.proof-card h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.proof-card p { color: var(--muted); font-size: .875rem; line-height: 1.6; margin-bottom: 18px; }
.proof-card-link { font-size: .82rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.proof-card-link:hover { gap: 8px; }
.all-proof { display: flex; justify-content: center; margin-top: 32px; }
.proof-more { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 16px; }
.proof-card-roadmap { background: #faf5ff; border-color: #e9d5ff; }

/* ─── Process ───────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card {
  padding: 30px 26px;
  border-left: 3px solid var(--cyan);
  background: var(--surface);
  border-radius: 0 16px 16px 0;
  transition: box-shadow .2s;
}
.process-card:hover { box-shadow: 0 8px 24px rgba(37,99,235,.07); }
.process-card b { font-size: .72rem; color: var(--blue); letter-spacing: .1em; text-transform: uppercase; }
.process-card h3 { font-size: 1.2rem; margin: 16px 0 9px; }
.process-card p { color: var(--muted); font-size: .875rem; line-height: 1.65; }

/* ─── Fit panel ─────────────────────────────────────────── */
.fit-panel {
  margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--line); border-radius: 20px;
  overflow: hidden; background: var(--surface);
}
.fit-col { padding: 36px; }
.fit-col:last-child { background: #f0fdf4; border-left: 1.5px solid var(--line); }
.fit-col h3 { font-size: 1.15rem; margin-bottom: 18px; }
.fit-list { list-style: none; display: grid; gap: 12px; }
.fit-list li { position: relative; padding-left: 22px; color: var(--muted); font-size: .875rem; line-height: 1.55; }
.fit-list li::before { position: absolute; left: 0; top: 0; font-weight: 900; }
.fit-yes li::before { content: '✓'; color: var(--green); }
.fit-no  li::before { content: '–'; color: var(--faint); }

/* ─── FAQ ──────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -.04em; margin: 12px 0 18px; }
.faq-intro p { color: var(--muted); line-height: 1.7; margin-bottom: 26px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--surface); border: 1.5px solid var(--line); border-radius: 14px; padding: 0 22px; }
.faq-list details[open] { border-color: var(--blue-mid); box-shadow: 0 8px 24px rgba(37,99,235,.05); }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 20px 38px 20px 0; font: 750 .95rem/1.4 'Inter', sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 17px; color: var(--blue); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { color: var(--muted); font-size: .85rem; line-height: 1.65; padding: 0 0 20px; }

/* ─── Contact form section ──────────────────────────────── */
.form-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
}
.form-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.form-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.07; margin-top: 14px; }
.form-intro { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.75; margin-bottom: 30px; }
.form-points { display: grid; gap: 13px; }
.form-point { display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.55; }
.form-point i { font-style: normal; color: #67e8f9; font-weight: 900; flex-shrink: 0; padding-top: 2px; }
.form-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #67e8f9; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.form-eyebrow::before { content: ''; width: 20px; height: 2px; background: #67e8f9; }
.contact-direct { display: grid; gap: 9px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-direct span { color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct a { width: fit-content; color: #fff; font-size: .86rem; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.contact-direct a:hover { text-decoration-color: #fff; }

/* the white form card */
.lead-form {
  background: var(--surface); color: var(--ink);
  border-radius: 20px; padding: 36px;
  box-shadow: 0 32px 80px rgba(15,23,42,.3);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: .75rem; font-weight: 800; color: #374151; text-transform: uppercase; letter-spacing: .07em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 9px;
  background: var(--surface); padding: 12px 14px;
  color: var(--ink); font: 500 .9rem 'Inter', sans-serif; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.field textarea { resize: vertical; min-height: 108px; }
.f-submit { width: 100%; padding: 15px; font-size: .95rem; }
.form-privacy { font-size: .7rem; color: #9ca3af; margin-top: 12px; line-height: 1.5; }
#homepage-form-status, #page-form-status { display: none; margin-top: 12px; padding: 11px; border-radius: 9px; font-size: .82rem; font-weight: 700; }
#homepage-form-status.success, #page-form-status.success { display: block; background: var(--green-soft); color: #065f46; }
#homepage-form-status.error, #page-form-status.error { display: block; background: #fff0f0; color: #991b1b; }

/* ─── Service links bar ─────────────────────────────────── */
.svc-bar { padding: 36px 0; background: var(--surface); border-bottom: 1px solid var(--line); }
.svc-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.svc-bar h2 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700; white-space: nowrap; }
.svc-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.svc-links a { font-size: .78rem; font-weight: 700; color: var(--muted); transition: color .15s; }
.svc-links a:hover { color: var(--blue); text-decoration: underline; }

/* ─── Homepage service explorer ─────────────────────────── */
.service-explorer { padding: 86px 0; background: #f4f7fb; border-bottom: 1px solid var(--line); }
.service-explorer-head {
  display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr);
  gap: 56px; align-items: end; margin-bottom: 34px;
}
.service-explorer-head h2 {
  max-width: 720px; margin-top: 12px;
  font-size: clamp(2rem,3.7vw,3.35rem); line-height: 1.02; letter-spacing: -.045em;
}
.service-explorer-head > p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.service-explorer-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.service-explorer-card {
  min-height: 190px; padding: 24px; border: 1.5px solid #dce3ed; border-radius: 18px;
  background: #fff; color: var(--ink); display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(15,23,42,.02); transition: transform .18s, border-color .18s, box-shadow .18s;
}
.service-explorer-card:hover {
  transform: translateY(-3px); border-color: #93b4ff;
  box-shadow: 0 18px 40px rgba(15,23,42,.09);
}
.service-explorer-card > span { color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.service-explorer-card strong { display: block; margin: 30px 0 8px; font-size: 1.12rem; line-height: 1.25; }
.service-explorer-card small { color: var(--muted); font-size: .79rem; line-height: 1.55; }
.service-explorer-card b { align-self: flex-end; margin-top: auto; color: var(--blue); font-size: 1.35rem; line-height: 1; }
.service-explorer-card--all { background: var(--ink); border-color: var(--ink); color: #fff; }
.service-explorer-card--all > span, .service-explorer-card--all b { color: #67e8f9; }
.service-explorer-card--all small { color: rgba(255,255,255,.62); }

/* ─── Footer ────────────────────────────────────────────── */
.footer { padding: 56px 0 40px; background: var(--ink); color: #a8b3c5; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 52px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { width: 56px; height: auto; background: #fff; border-radius: 8px; padding: 6px; }
.footer-brand { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 800; color: #fff; }
.footer p { font-size: .8rem; line-height: 1.72; }
.footer h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { font-size: .85rem; color: #a8b3c5; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .72rem; color: #5a6478;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 0 48px; }
  .hero-right { padding: 48px 32px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-item, .buyer-item:first-child, .buyer-item:last-child { padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .buyer-item:last-child { border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 0; }
  .trust-label { grid-column: 1/-1; text-align: center; }
  .service-explorer-head { grid-template-columns: 1fr; gap: 18px; }
  .service-explorer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .proof-grid, .process-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .start-grid, .proof-more { grid-template-columns: 1fr; }
  .fit-panel { grid-template-columns: 1fr; }
  .fit-col:last-child { border-left: none; border-top: 1.5px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .f-row { grid-template-columns: 1fr; }
  .why-list li { grid-template-columns: 1fr; gap: 7px; }
  .delivery-map { padding: 26px 22px; }
  .start-card { min-height: auto; padding: 26px 22px; }
  .start-number { top: 22px; right: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .svc-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .trust-logo--government img { transform: scale(1.16); }
  .service-explorer { padding: 64px 0; }
  .service-explorer-grid { grid-template-columns: 1fr; }
  .service-explorer-card { min-height: 170px; }
}
