@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* ---------- National IT, tokens ---------- */
:root {
  --cobalt: #1825aa;
  --cobalt-deep: #0d1470;
  --cobalt-ink: #0d1470;
  --cornflower: #5b87da;
  --cornflower-soft: #e3ecfb;
  --bg: #f5f8fd;
  --bg-tint: #eef3fb;
  --surface: #ffffff;
  --ink: #0b1220;
  --ink-2: #2b334a;
  --ink-3: #51597a;
  --line: #e6e7e0;
  --line-2: #d9dbd2;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --sh-sm: 0 1px 2px rgba(11,18,64,0.06), 0 1px 0 rgba(11,18,64,0.04);
  --sh-md: 0 10px 30px -12px rgba(11,18,64,0.18);
  --sh-lg: 0 30px 60px -25px rgba(11,18,64,0.25);
}

/* ---------- Fonts: HK Grotesk (display, self-hosted licensed .otf) + Roboto (body/UI) ---------- */
@font-face { font-family: 'HK Grotesk'; src: url('fonts/HKGrotesk-Light.woff2') format('woff2'), url('fonts/HKGrotesk-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'HK Grotesk'; src: url('fonts/HKGrotesk-Regular.woff2') format('woff2'), url('fonts/HKGrotesk-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'HK Grotesk'; src: url('fonts/HKGrotesk-Italic.woff2') format('woff2'), url('fonts/HKGrotesk-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'HK Grotesk'; src: url('fonts/HKGrotesk-Medium.woff2') format('woff2'), url('fonts/HKGrotesk-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'HK Grotesk'; src: url('fonts/HKGrotesk-SemiBold.woff2') format('woff2'), url('fonts/HKGrotesk-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'HK Grotesk'; src: url('fonts/HKGrotesk-Bold.woff2') format('woff2'), url('fonts/HKGrotesk-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

h1, h2, h3, h4 {
  font-family: 'HK Grotesk', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
  font-weight: 500;
}
h1 { font-size: clamp(42px, 6.4vw, 84px); font-weight: 500; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 3.8vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 500; }
p  { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: 'HK Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--cobalt);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(0.32,0.72,0,1), background .3s cubic-bezier(0.32,0.72,0,1), color .3s cubic-bezier(0.32,0.72,0,1), border-color .3s cubic-bezier(0.32,0.72,0,1), box-shadow .3s cubic-bezier(0.32,0.72,0,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--cobalt); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 10px 24px -12px rgba(24,37,170,0.6); }
.btn-primary:hover { background: #0f1a8f; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--cobalt); }
.btn-light:hover { background: #eef1ff; }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,248,253,0.82);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--ink); font-weight: 400; font-size: 15px;
  position: relative; padding: 4px 0;
  white-space: nowrap;
}
.nav-links a:hover { text-decoration: none; color: var(--cobalt); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-weight: 500; font-size: 15px; color: var(--ink); white-space: nowrap; }
.nav-phone span { color: var(--ink-3); font-weight: 400; margin-right: 4px; }
@media (max-width: 1120px) {
  .nav-phone { display: none; }
}
/* ---------- Mobile nav ---------- */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0; background: transparent; cursor: pointer;
  border-radius: 8px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger .bar {
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s cubic-bezier(0.32,0.72,0,1), opacity .2s ease;
}
.nav.menu-open .nav-burger .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger .bar:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }
body.menu-locked { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
  .nav { position: sticky; }
  .nav.menu-open { background: var(--bg); }
  .mobile-menu {
    display: block;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    padding: 4px var(--pad) 24px;
    max-height: calc(100dvh - 67px);
    overflow-y: auto;
    animation: mm-in .28s cubic-bezier(0.32,0.72,0,1);
  }
  .mobile-menu[hidden] { display: none; }
  @keyframes mm-in { from { opacity: 0; transform: translateY(-8px); } }
  .mm-links { display: flex; flex-direction: column; }
  .mm-group {
    font-family: 'HK Grotesk', sans-serif;
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-3);
    padding: 20px 0 8px;
  }
  .mm-links a {
    color: var(--ink); font-size: 17px; font-weight: 400;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }
  .mm-links a:hover { text-decoration: none; color: var(--cobalt); }
  .mm-links a[aria-current="page"] { color: var(--cobalt); font-weight: 500; }
  .mm-cta { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; }
  .mm-cta .btn { justify-content: center; }
  .mm-phone { display: block; text-align: center; font-weight: 500; font-size: 15px; color: var(--ink); }
}
@media (max-width: 640px) {
  .nav-right .btn { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { animation: none; }
  .nav-burger .bar { transition: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 10vw, 120px) 0 clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 .brk { display: block; }
.hero h1 .accent { color: var(--cobalt); font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  margin-top: 28px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 28px 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .stat-n { font-family: 'HK Grotesk', sans-serif; font-size: 32px; font-weight: 500; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.hero-meta .stat-l { font-size: 13px; color: var(--ink-3); margin-top: 8px; letter-spacing: 0.02em; }

/* 360 visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}
.ring {
  position: absolute; inset: 0;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
}
.ring.r2 { inset: 10%; border-color: var(--line); }
.ring.r3 { inset: 22%; border-color: var(--cornflower); opacity: 0.4; }
.ring.dash {
  border-style: dashed; border-color: var(--cobalt); opacity: 0.5;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-core {
  position: absolute; inset: 30%;
  background: var(--cobalt);
  border-radius: 28px;
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  box-shadow: 0 30px 60px -25px rgba(24,37,170,0.5);
}
.hero-core .deg { font-family: 'HK Grotesk', sans-serif; font-size: 44px; font-weight: 500; letter-spacing: -0.03em; }
.hero-core .lbl { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }

.orb {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--sh-md);
  white-space: nowrap;
}
.orb.o1 { top: 4%; left: 22%; }
.orb.o2 { top: 14%; right: 2%; }
.orb.o3 { bottom: 8%; right: 6%; }
.orb.o4 { bottom: 4%; left: 4%; }
.orb.o5 { top: 44%; left: -2%; }
.orb .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--cobalt); margin-right: 8px; vertical-align: middle; }

@media (max-width: 900px) {
  .hero-visual { max-width: 340px; margin: 0 auto; }
}

/* ---------- Trust strip ---------- */
.trust {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: center;
}
.trust-row .tlogo {
  display: flex; align-items: center; justify-content: center;
  height: 60px;
  color: var(--ink-3);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.trust-row .tlogo:hover { color: var(--ink); }
@media (max-width: 800px) { .trust-row { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Sections ---------- */
section { padding-block: clamp(72px, 9vw, 128px); }
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 { margin-top: 0; }
.section-head p { margin-top: 18px; color: var(--ink-2); font-size: 18px; }

/* ---------- Approach (360 IT Care stages) ---------- */
.approach { background: var(--bg-tint); }
.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stage {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--bg-tint);
  transition: background .25s ease;
}
.stage:last-child { border-right: 0; }
.stage:hover { background: #fff; }
.stage-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 500; color: var(--cobalt);
  font-size: 17px;
  margin-bottom: 20px;
}
.stage h3 { margin-bottom: 8px; }
.stage .sub { color: var(--ink-3); font-size: 15px; margin-bottom: 16px; }
.stage p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 20px; }
.stage ul { list-style: none; padding: 0; margin: 0; font-size: 14.5px; color: var(--ink-2); }
.stage ul li { padding: 8px 0; border-top: 1px dashed var(--line-2); display: flex; align-items: center; gap: 10px; }
.stage ul li::before {
  content: ""; width: 5px; height: 5px; background: var(--cobalt); border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .stages { grid-template-columns: repeat(2, 1fr); }
  .stage:nth-child(2n) { border-right: 0; }
  .stage:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .stages { grid-template-columns: 1fr; }
  .stage { border-right: 0; border-bottom: 1px solid var(--line); }
  .stage:last-child { border-bottom: 0; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  position: relative;
  transition: border-color .35s cubic-bezier(0.32,0.72,0,1), transform .35s cubic-bezier(0.32,0.72,0,1), box-shadow .35s cubic-bezier(0.32,0.72,0,1);
}
.service:hover {
  border-color: var(--cobalt);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.service .sicon {
  width: 44px; height: 44px;
  background: var(--cornflower-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cobalt);
}
.service h3 { font-size: 21px; }
.service p { color: var(--ink-2); font-size: 15.5px; }
.service .slink {
  margin-top: auto; padding-top: 12px;
  font-weight: 500; font-size: 14.5px; color: var(--cobalt);
  display: inline-flex; align-items: center; gap: 6px;
}
.service:hover .slink .arr { transform: translateX(4px); }
.service .slink .arr { transition: transform .2s ease; }

/* ---------- Proof ---------- */
.proof { background: var(--cobalt); color: #fff; }
.proof .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .proof .wrap { grid-template-columns: 1fr; } }
.proof h2 { color: #fff; }
.proof .eyebrow { color: #9daff0; }
.proof .eyebrow::before { background: #9daff0; }
.proof p { color: #c5cff0; margin-top: 20px; font-size: 18px; max-width: 52ch; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--cobalt); padding: 32px 28px; }
.stat .n { font-size: clamp(40px, 4.5vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.stat .l { color: #c5cff0; font-size: 14.5px; margin-top: 12px; }

/* ---------- Testimonial ---------- */
.tmnl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .tmnl-grid { grid-template-columns: 1fr; } }
.tmnl {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.tmnl .qmark { color: var(--cornflower); font-size: 40px; line-height: 0.5; font-family: Georgia, serif; }
.tmnl blockquote {
  margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink); flex: 1;
}
.tmnl .who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.tmnl .ava { width: 40px; height: 40px; border-radius: 50%; background: var(--cornflower-soft); color: var(--cobalt); display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 14px; }
.tmnl .nm { font-weight: 500; font-size: 15px; }
.tmnl .rl { font-size: 13px; color: var(--ink-3); }

/* ---------- Case studies ---------- */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 800px) { .cases-grid { grid-template-columns: 1fr; } }
.case {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  color: #fff;
  transition: transform .2s ease;
}
.case:hover { transform: translateY(-3px); text-decoration: none; }
.case-bg-1 { background: linear-gradient(135deg, #0d1470 0%, #1825aa 60%, #5b87da 100%); }
.case-bg-2 { background: linear-gradient(135deg, #1825aa 0%, #4259d8 50%, #8aa8e6 100%); }
.case .tag { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin-bottom: 8px; }
.case h3 { color: #fff; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.025em; }
.case .cta { margin-top: 16px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.case svg.geo { position: absolute; top: 24px; right: 24px; opacity: 0.25; }

/* ---------- Community ---------- */
.community { background: var(--bg-tint); }
.community .wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .community .wrap { grid-template-columns: 1fr; } }
.partners { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.partner {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Client Care ---------- */
.care { background: var(--bg); }
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 900px) { .care-grid { grid-template-columns: 1fr; } }

.care-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.care-card.care-sla { background: var(--cornflower-soft); border-color: transparent; }

.care-tag {
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.care-sla .care-tag { background: #fff; border-color: transparent; }
.care-card h3 { font-size: 22px; letter-spacing: -0.015em; }

.care-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.care-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.care-list li:first-child { border-top: 0; padding-top: 0; }
.care-list li strong { font-weight: 500; color: var(--ink); font-size: 16px; }
.care-list li strong a { color: var(--cobalt); }
.care-list li span { color: var(--ink-3); font-size: 14.5px; }

.sla-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.sla-table th, .sla-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(11,18,64,0.08);
}
.sla-table th {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 500;
  border-bottom: 1px solid rgba(11,18,64,0.16);
}
.sla-table td:last-child { font-weight: 500; color: var(--ink); white-space: nowrap; }
.care-grid > .care-card { min-width: 0; }
@media (max-width: 640px) {
  .sla-table td:last-child { white-space: normal; }
}
.sla-table tr:last-child td { border-bottom: 0; }

.prio {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
}
.prio.p1 { background: #fde2e2; color: #8a1c1c; }
.prio.p2 { background: #fde9cf; color: #8a4a13; }
.prio.p3 { background: #e3ecfb; color: var(--cobalt); }
.prio.p4 { background: #e6e7e0; color: var(--ink-2); }

.care-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.care-steps li { display: flex; gap: 14px; align-items: flex-start; }
.care-steps .step-n {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cobalt); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
}
.care-steps li > div { display: flex; flex-direction: column; gap: 2px; }
.care-steps strong { font-weight: 500; color: var(--ink); font-size: 16px; }
.care-steps span { color: var(--ink-3); font-size: 14.5px; }

.care-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .care-cols { grid-template-columns: 1fr; } }
.col-head {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.col-head::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
}
.col-head.in { color: var(--cobalt); }
.col-head.in::before { background: var(--cobalt); }
.col-head.out { color: var(--ink-3); }
.col-head.out::before { background: var(--ink-3); }
.care-bullets { list-style: none; padding: 0; margin: 0; }
.care-bullets li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-2);
  border-top: 1px dashed var(--line-2);
}
.care-bullets li:first-child { border-top: 0; }

.care-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
}

/* ---------- CTA band ---------- */
.cta-band {
  margin: 0;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cobalt-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band .wrap { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: #aab0cf; margin-top: 16px; max-width: 44ch; }
.cta-band .tile {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: 360px; aspect-ratio: 1;
  background: var(--cobalt);
  border-radius: 28%;
  opacity: 0.25;
  filter: blur(2px);
}

/* ---------- Footer ---------- */
footer { background: #0d1470; color: #cdd2e8; padding: 72px 0 32px; }
.foot-soon { color: #8891b5; }
footer a { color: #cdd2e8; }
footer a:hover { color: #fff; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-logo img { height: 32px; width: auto; margin-bottom: 20px; }
.foot-grid h4 { color: #fff; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 6px 0; font-size: 15px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding-top: 24px;
  font-size: 14px; color: #8891b5;
  flex-wrap: wrap;
}
.foot-bottom .flinks { display: flex; gap: 24px; }
.foot-bottom .flinks a { font-size: 14px; }

/* ---------- Cyber ---------- */
.cyber {
  border-top: 3px solid var(--cobalt);
  background: var(--cobalt-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cyber::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% -10%, rgba(91,135,218,0.22), transparent 60%),
    radial-gradient(600px 400px at 0% 110%, rgba(24,37,170,0.35), transparent 60%);
  pointer-events: none;
}
.cyber .wrap { position: relative; }
.cyber h2, .cyber h4 { color: #fff; }
.cyber p { color: #c5cff0; }
.eyebrow-light { color: #9daff0; }
.eyebrow-light::before { background: #9daff0; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.cyber-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) { .cyber-grid { grid-template-columns: 1fr; gap: 40px; } }

.cyber-lede p { margin-top: 20px; font-size: 18px; max-width: 42ch; }
.cyber-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.cyber-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .cyber-pillars { grid-template-columns: 1fr; } }

.pillar {
  padding: 24px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 10px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.pillar:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.pillar .picon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(91,135,218,0.18);
  color: #9daff0;
  display: grid; place-items: center;
}
.pillar h4 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.pillar p { color: #c5cff0; font-size: 14.5px; line-height: 1.5; margin: 0; }

/* ---------- Utilities ---------- */
.reveal,
.reveal.in { opacity: 1; transform: none; transition: none; }

@media (max-width: 700px) { .hero-meta { grid-template-columns: repeat(2, auto) !important; } }

/* ---------- Hero: live service view ---------- */
.svc-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--sh-lg); padding: 26px 26px 20px; max-width: 400px; margin-left:auto; }
.svc-head { display:flex; align-items:center; gap:10px; font-weight:500; font-size:15px; color:var(--ink); padding-bottom:14px; border-bottom:1px solid var(--line); }
.svc-247 { margin-left:auto; font-size:12px; letter-spacing:.08em; color:var(--cobalt); background:var(--cornflower-soft); padding:4px 10px; border-radius:999px; font-weight:500; }
.pulse { width:9px; height:9px; border-radius:50%; background:#1a9e6b; position:relative; flex-shrink:0; }
.pulse::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:2px solid #1a9e6b; opacity:.4; animation:pulse 2.2s ease-out infinite; }
@keyframes pulse { 0%{transform:scale(.6);opacity:.5} 100%{transform:scale(1.4);opacity:0} }
.svc-row { display:flex; justify-content:space-between; align-items:baseline; padding:13px 2px; border-bottom:1px dashed var(--line-2); font-size:15px; color:var(--ink-2); }
.svc-row strong { font-weight:500; color:var(--ink); }
.svc-row.svc-hl { background:var(--cornflower-soft); border-bottom:none; border-radius:10px; padding:13px 12px; margin-top:6px; }
.svc-row.svc-hl strong { color:var(--cobalt); }
.svc-foot { padding-top:14px; font-size:13px; color:var(--ink-3); }
@media (prefers-reduced-motion: reduce){ .pulse::after{ animation:none; } }
@media (max-width:900px){ .svc-card{ margin:0 auto; } }

/* ---------- redesign-skill polish ---------- */
:focus-visible { outline: 2px solid var(--cornflower); outline-offset: 2px; border-radius: 2px; }
.btn:active { transform: translateY(1px) scale(.99); }
.nav-links a[aria-current="page"] { color: var(--cobalt); font-weight: 500; }
.stat-n, .sb-v, .hero-meta .stat-n { font-variant-numeric: tabular-nums; }
.skip-link { position:absolute; left:-9999px; top:0; z-index:100; }
.skip-link:focus { left:16px; top:12px; background:#fff; color:var(--cobalt); padding:8px 14px; border-radius:8px; box-shadow:var(--sh-md); }

/* ---------- high-end polish (brand-safe subset) ---------- */
/* button-in-button trailing arrow */
.btn-primary .arr, .btn-light .arr { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:999px; background:rgba(255,255,255,.16); margin-right:-8px; transition: transform .3s cubic-bezier(0.32,0.72,0,1), background .3s cubic-bezier(0.32,0.72,0,1); }
.btn-light .arr { background: var(--cornflower-soft); }
.btn:hover .arr { transform: translateX(2px) translateY(-1px); background: rgba(255,255,255,.26); }
.btn-light:hover .arr { background: #dbe7fa; }
/* machined double-bezel on the hero service card */
.svc-card { box-shadow: 0 0 0 1px var(--line), 0 0 0 8px var(--bg-tint), var(--sh-lg); border: none; }
/* card hovers get gentle lift with spring */
.service:hover, .tmnl:hover { transform: translateY(-3px); }
.tmnl { transition: transform .35s cubic-bezier(0.32,0.72,0,1), box-shadow .35s cubic-bezier(0.32,0.72,0,1); }
.tmnl:hover { box-shadow: var(--sh-md); }
@media (prefers-reduced-motion: reduce){ .reveal { filter:none; transform:none; opacity:1; transition:none; } }
