/* ============================================================
   Zabryx — Enterprise Shield
   Dark slate · blue accent · clean sans-serif
   ============================================================ */

:root {
  --bg:         #0d1117;
  --bg-2:       #161b22;
  --bg-3:       #1c2128;
  --panel:      rgba(255,255,255,0.038);
  --panel-brd:  rgba(255,255,255,0.065);
  --ink:        #e6edf3;
  --muted:      #8b949e;
  --faint:      #484f58;

  --accent:     #4493f8;
  --accent-2:   #388bfd;
  --accent-dim: rgba(68,147,248,0.1);
  --grad:       linear-gradient(135deg, #4493f8, #79c0ff);

  --ok:         #3fb950;
  --warn:       #d29922;
  --crit:       #f85149;

  --r:          12px;
  --r-sm:       8px;
  --max:        1180px;
  --ease:       cubic-bezier(.22,.68,.18,1);

  --sans:  "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(68,147,248,0.3); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---------- backdrop ---------- */
.aurora {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(68,147,248,0.045), transparent 60%),
    var(--bg);
}
.aurora::before, .aurora::after { display: none; }

.grid-overlay {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; background: none;
}
.grid-overlay::before, .grid-overlay::after { display: none; }

.bg-canvas {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  width: 100%; height: 100%; display: none;
}

/* ---------- shared ---------- */
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  font-family: var(--mono); font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); display: inline-flex;
  align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; display: block; width: 20px; height: 1.5px;
  background: var(--accent); flex-shrink: 0;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .08em;
  color: var(--muted); padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--panel-brd); background: var(--panel);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: .88rem;
  padding: 13px 26px; border-radius: var(--r-sm); cursor: pointer;
  letter-spacing: .01em; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  text-decoration: none; -webkit-text-fill-color: currentColor; position: relative;
}
.btn--solid {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(68,147,248,0.2);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(68,147,248,0.3);
  background: var(--accent-2); border-color: var(--accent-2);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent); color: var(--accent);
}
.btn--block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,17,23,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-brd);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; }
.brand__mark { color: var(--accent); font-size: 1.3rem; }
.brand__logo { width: 30px; height: 30px; display: block; transition: opacity .3s; }
.brand:hover .brand__logo { opacity: .8; }
.brand__accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { color: #fff !important; padding: 9px 18px; font-size: .82rem !important; background: var(--accent); border-radius: var(--r-sm); transition: background .2s; }
.nav__cta:hover { background: var(--accent-2); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

.section, .svc-cat, .hero { scroll-margin-top: 86px; }

/* ---------- hero (centered) ---------- */
.hero--center { padding: 88px 0 68px; text-align: center; }
.hero--center .hero__inner { max-width: 860px; margin-inline: auto; }
.hero--center h1 {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  line-height: 1.08; font-weight: 800;
  letter-spacing: -.035em; margin: 0 0 22px;
}
.hero--center .lead { font-size: 1.08rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.hero--center .hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 34px 0 0; }
.hero__logo { width: 72px; height: 72px; margin: 0 auto; }

.trustbar {
  display: flex; flex-wrap: wrap; margin-top: 52px;
  border: 1px solid var(--panel-brd); border-radius: var(--r);
  background: var(--panel); overflow: hidden;
}
.trustbar .tb {
  flex: 1 1 180px; padding: 26px 18px; text-align: center;
  border-right: 1px solid var(--panel-brd);
}
.trustbar .tb:last-child { border-right: none; }
.trustbar .tb strong {
  display: block; font-size: 2rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.trustbar .tb span { color: var(--faint); font-size: .8rem; letter-spacing: .04em; }

/* ---------- hero (split) ---------- */
.hero { padding: 78px 0 88px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.08; font-weight: 800;
  margin: 20px 0 16px; letter-spacing: -.03em;
}
.lead { color: var(--muted); font-size: 1.05rem; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; margin: 28px 0 38px; flex-wrap: wrap; }
.stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.8rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--faint); font-size: .85rem; }

/* terminal */
.terminal {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--panel-brd); background: rgba(13,17,23,0.95);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.terminal__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(255,255,255,.02); border-bottom: 1px solid var(--panel-brd); }
.tdot { width: 12px; height: 12px; border-radius: 50%; }
.tdot--r { background: #ff5f57; } .tdot--y { background: #febc2e; } .tdot--g { background: #28c840; }
.terminal__title { margin-left: 10px; font-family: var(--mono); font-size: .78rem; color: var(--faint); }
.terminal__body { padding: 20px; font-family: var(--mono); font-size: .86rem; line-height: 1.8; overflow-x: auto; }
.c-prompt { color: var(--accent); } .c-dim { color: var(--faint); } .c-ok { color: var(--ok); }
.c-warn { color: var(--warn); } .c-crit { color: var(--crit); }
.cursor { color: var(--accent); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- sections ---------- */
.section { padding: 80px 0; }
.section--alt {
  background: var(--bg-2);
}
.section__head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__head h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -.025em; line-height: 1.12;
}
.section__head h2::after { display: none; }
.section__head p { color: var(--muted); margin-top: 14px; font-size: 1rem; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; padding: 28px 24px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.card::before { display: none; }
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.055);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.card__no { font-family: var(--mono); font-size: .8rem; color: var(--accent); }
.card h3 { margin: 10px 0 8px; font-size: 1.1rem; font-weight: 700; }
.card p { color: var(--muted); font-size: .92rem; }

/* ---------- story ---------- */
.story__copy { max-width: 800px; margin-inline: auto; text-align: center; }
.story__copy > p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; text-align: left; }
.pillar {
  padding: 26px; border-radius: var(--r); background: var(--panel);
  border: 1px solid var(--panel-brd);
}
.pillar h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); font-weight: 700; }
.pillar h4::before { content: none; }
.pillar p { color: var(--muted); font-size: .92rem; }

/* ---------- credentials ---------- */
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin-inline: auto; }
.creds__col {
  padding: 26px; border-radius: var(--r); background: var(--panel);
  border: 1px solid var(--panel-brd);
}
.creds__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-family: var(--mono); font-size: .82rem; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--panel-brd); background: rgba(255,255,255,.02); color: var(--ink);
  transition: border-color .2s;
}
.chips li:hover { border-color: rgba(68,147,248,0.3); }
.chips--center { justify-content: center; max-width: 720px; margin: 0 auto; }
.chips--center li { font-size: .92rem; padding: 11px 20px; cursor: default; }

/* ---------- home: services overview ---------- */
.svc-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svco {
  display: block; padding: 28px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.svco:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.055);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.svco__top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.svco__no { font-family: var(--mono); font-size: .85rem; color: var(--accent); }
.svco__top h3 { font-size: 1.2rem; font-weight: 700; }
.svco > p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.svco__list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.svco__list li {
  font-family: var(--mono); font-size: .74rem; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--panel-brd); color: var(--muted); background: rgba(255,255,255,.02);
}
.svco__link { font-weight: 600; font-size: .9rem; color: var(--accent); }

/* ---------- home: badge strip ---------- */
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.badge-row img {
  width: 78px; height: 78px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  transition: transform .25s var(--ease);
}
.badge-row a:hover img { transform: translateY(-4px) scale(1.06); }

/* ---------- home: industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ind {
  padding: 22px 14px; text-align: center; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .25s var(--ease), border-color .25s;
}
.ind:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.ind__ic { font-size: 1.6rem; margin-bottom: 8px; }
.ind span { display: block; font-size: .86rem; color: var(--muted); }

/* ---------- certifications page ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert {
  padding: 24px 18px; border-radius: var(--r); text-align: center;
  background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.cert:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.cert__badge {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem; color: #fff;
  background: var(--accent); box-shadow: 0 4px 14px rgba(68,147,248,0.2);
}
.cert__media {
  width: 100%; height: 110px; margin: 0 auto 14px; padding: 10px;
  border-radius: 10px; background: rgba(255,255,255,.03);
  border: 1px solid var(--panel-brd); display: grid; place-items: center; overflow: hidden;
}
.cert__media img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.cert__media .ph {
  width: 50px; height: 50px; border-radius: 12px; background: var(--accent);
  display: grid; place-items: center; color: #fff; font-size: 1.2rem;
}
.cert__abbr { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.cert__full { color: var(--muted); font-size: .84rem; line-height: 1.45; }
.cert-summary { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 6px; }
.cert-summary .tb { text-align: center; }
.cert-summary .tb strong { display: block; font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cert-summary .tb span { color: var(--faint); font-size: .82rem; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll 32s linear infinite; }
.marquee__track span {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 600; letter-spacing: .02em;
  color: var(--faint); white-space: nowrap; transition: color .2s;
}
.marquee__track span:hover { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- testimonials ---------- */
.quotes { columns: 3; column-gap: 16px; }
.quote {
  break-inside: avoid; margin-bottom: 16px; padding: 24px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
}
.quote blockquote { font-size: .96rem; color: var(--ink); font-style: italic; line-height: 1.7; }
.quote figcaption { margin-top: 14px; color: var(--faint); font-size: .84rem; font-family: var(--mono); }
.quote figcaption strong { color: var(--accent); }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.accordion { display: flex; flex-direction: column; gap: 8px; }
.acc { border-radius: var(--r-sm); border: 1px solid var(--panel-brd); background: var(--panel); overflow: hidden; }
.acc__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; padding: 16px 18px; background: none; border: 0;
  color: var(--ink); font-family: var(--sans); font-size: .98rem; font-weight: 600; cursor: pointer;
  transition: color .2s;
}
.acc__q:hover { color: var(--accent); }
.acc__ic { color: var(--accent); font-size: 1.3rem; transition: transform .25s; }
.acc.open .acc__ic { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc__a p { padding: 0 18px 16px; color: var(--muted); font-size: .94rem; }

/* ---------- contact ---------- */
.contact__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ccard {
  display: flex; align-items: center; gap: 14px; padding: 18px;
  border-radius: var(--r); background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .25s var(--ease), border-color .25s;
}
a.ccard:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.ccard__ic {
  flex-shrink: 0; width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 10px; background: var(--accent); color: #fff; font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(68,147,248,0.2);
}
.ccard span { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.ccard strong { font-size: .93rem; color: var(--ink); word-break: break-word; }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__intro h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 14px; letter-spacing: -.02em;
}
.contact__intro p { color: var(--muted); font-size: 1rem; }
.contact__meta { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact__meta li { display: flex; flex-direction: column; }
.contact__meta span { font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.contact__meta a { color: var(--accent); }
.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 30px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  box-shadow: 0 16px 44px rgba(0,0,0,.3);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.field input, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  background: rgba(13,17,23,.8); border: 1px solid var(--panel-brd);
  border-radius: var(--r-sm); padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(68,147,248,0.1);
}
.contact__form .btn { grid-column: 1 / -1; }
.form__note { grid-column: 1 / -1; color: var(--ok); font-size: .9rem; font-family: var(--mono); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--panel-brd); padding: 40px 0 28px; background: rgba(13,17,23,.8); }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-bottom: 22px; border-bottom: 1px solid var(--panel-brd);
}
.footer__tag { font-family: var(--mono); font-size: .82rem; color: var(--faint); letter-spacing: .08em; }
.footer__contact { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.footer__contact a { color: var(--accent); }
.footer__contact a:hover { text-decoration: underline; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 22px; color: var(--faint); font-size: .84rem;
}
.footer__socials { display: flex; gap: 18px; }
.footer__socials a:hover { color: var(--accent); }

/* ============================================================
   Services page
   ============================================================ */
.page-hero { padding: 72px 0 40px; text-align: center; }
.page-hero h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem); letter-spacing: -.03em; line-height: 1.08;
  margin: 16px auto 14px; max-width: 720px;
}
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.crumbs { font-family: var(--mono); font-size: .78rem; color: var(--faint); letter-spacing: .04em; }
.crumbs a { color: var(--accent); }

.svc-cat { padding: 48px 0; border-top: 1px solid var(--panel-brd); }
.svc-cat__head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.svc-cat__no { font-family: var(--mono); font-size: .85rem; color: var(--accent); }
.svc-cat__head h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); letter-spacing: -.02em;
}
.svc-cat__head p { color: var(--muted); flex-basis: 100%; max-width: 700px; font-size: 1rem; }

.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc {
  display: flex; gap: 16px; padding: 24px 22px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.055);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.svc__ic {
  flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 10px; background: var(--accent); color: #fff; font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(68,147,248,0.2);
}
.svc h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.svc p { color: var(--muted); font-size: .92rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.svc__tags span { font-family: var(--mono); font-size: .72rem; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--panel-brd); color: var(--faint); }

/* process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step {
  position: relative; padding: 26px 20px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
}
.step__no {
  font-family: var(--sans); font-size: 2.2rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h4 { margin: 8px 0 6px; font-size: 1.05rem; font-weight: 700; }
.step p { color: var(--muted); font-size: .9rem; }

/* cta band */
.cta-band {
  margin: 28px auto 0; text-align: center; padding: 56px 30px;
  border-radius: var(--r);
  background: rgba(68,147,248,0.04);
  border: 1px solid rgba(68,147,248,0.1);
  position: relative; overflow: hidden;
}
.cta-band::after { display: none; }
.cta-band h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 12px; letter-spacing: -.025em;
}
.cta-band p { color: var(--muted); max-width: 500px; margin: 0 auto 26px; }

/* ============================================================
   Service detail + About + Contact pages
   ============================================================ */
.detail-hero { padding: 66px 0 28px; }
.detail-hero .crumbs { margin-bottom: 14px; }
.detail-hero h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem); letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 14px; max-width: 720px;
}
.detail-hero .lead { font-size: 1.05rem; }
.tagchip {
  display: inline-block; font-family: var(--mono); font-size: .74rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); padding: 6px 14px;
  border: 1px solid rgba(68,147,248,0.25); border-radius: 999px; margin-bottom: 16px;
  background: rgba(68,147,248,0.05);
}

.detail__grid { display: grid; grid-template-columns: 1.6fr .9fr; gap: 36px; align-items: start; }
.prose h2 { font-size: 1.35rem; font-weight: 700; margin: 32px 0 10px; letter-spacing: -.01em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 14px; }

.checklist { list-style: none; display: grid; gap: 10px; margin: 8px 0 6px; }
.checklist li { position: relative; padding-left: 28px; color: var(--ink); }
.checklist li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px;
  color: #fff; background: var(--ok);
  width: 18px; height: 18px; border-radius: 5px;
  display: grid; place-items: center; font-size: .68rem; font-weight: 700;
}
.checklist li span { color: var(--muted); }

.sidecard {
  padding: 26px 22px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  position: sticky; top: 88px;
}
.sidecard h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 14px; }
.sidecard ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.sidecard ul a { color: var(--muted); font-size: .93rem; display: flex; justify-content: space-between; transition: color .2s; }
.sidecard ul a:hover { color: var(--accent); }
.sidecard ul a::after { content: "\2192"; opacity: .5; }
.facts { list-style: none; display: grid; gap: 12px; margin-bottom: 22px !important; }
.facts li { display: flex; flex-direction: column; }
.facts span { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.facts strong { font-size: 1.02rem; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related a {
  display: block; padding: 20px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--panel-brd);
  transition: transform .25s var(--ease), border-color .25s;
}
.related a:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.related h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.related p { color: var(--muted); font-size: .9rem; }

/* about feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media {
  padding: 30px; border-radius: var(--r); background: var(--panel);
  border: 1px solid var(--panel-brd);
}
.split h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; letter-spacing: -.025em;
}
.split p { color: var(--muted); margin-bottom: 12px; }
.bignums { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.bignums .stat strong { font-size: 2.2rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__terminal { order: -1; }
  .cards, .pillars { grid-template-columns: repeat(2, 1fr); }
  .quotes { columns: 2; }
  .faq, .contact__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .svc-overview { grid-template-columns: 1fr; }
  .detail__grid, .split, .split--rev .split__media { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .sidecard { position: static; }
  .related { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .nav__links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(13,17,23,.97); border-bottom: 1px solid var(--panel-brd);
    padding: 12px 24px 24px; transform: translateY(-130%); transition: transform .3s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--panel-brd); }
  .nav__cta { margin-top: 10px; }
  .nav__toggle { display: flex; }
  .cards, .pillars, .creds { grid-template-columns: 1fr; }
  .quotes { columns: 1; }
  .contact__form { grid-template-columns: 1fr; }
  .stats { gap: 24px; }
  .svc-list, .process { grid-template-columns: 1fr; }
  .trustbar .tb { flex-basis: 50%; border-right: none; }
  .contact__cards { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .cert-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
