/* ═══════════════════════════════════════════════════════════════
   Infotech — site stylesheet
   Design from the Infotech Design System are inlined below
   (colors, fonts, typography, spacing, radius, shadows), followed
   by the Infotech brand overrides and the marketing-section styles.
   ═══════════════════════════════════════════════════════════════ */

/* Geist — self-hosted variable font (one file, weights 400–700). No third-party fetch. */
@font-face {
  font-family: 'Geist';
  src: url('fonts/geist-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ── Fonts ── */
  --font-sans: "Geist", -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;

  /* ── Decorative sticker palette — illustrations, icon tiles &
        category dots ONLY. Never a CTA, never a structural fill. */
  --color-accent-sky: #62aef0;
  --color-accent-purple: #d6b6f6;
  --color-accent-purple-deep: #391c57;
  --color-accent-pink: #ff64c8;
  --color-accent-orange: #dd5b00;
  --color-accent-orange-deep: #793400;
  --color-accent-teal: #2a9d99;
  --color-accent-green: #1aae39;
  --color-accent-brown: #523410;

  /* ── Surface — cool navy-tinted canvas under pure-white cards ── */
  --color-canvas: #ffffff;
  --color-surface: #ffffff;
  --color-canvas-soft: #f3f7fa;
  --color-canvas-mist: #fafcfe;
  --color-hairline: #e2e9ee;

  /* ── Text — soft true-black down to a warm ash ── */
  --color-ink: #000000;
  --color-ink-95: rgba(0, 0, 0, 0.95);
  --color-ink-secondary: #31302e;
  --color-ink-muted: #615d59;
  --color-ink-faint: #767069; /* AA-compliant on white (~5:1) while still reading as muted */

  /* ── Spacing — 8px base unit ── */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 28px;
  --space-xxl: 32px;

  /* ── Radius — pill marketing CTAs vs. tight utility corners ── */
  --radius-xs: 4px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Elevation — barely-there layered shadows ── */
  --shadow-soft:
    rgba(0, 0, 0, 0.01) 0 0.175px 1.041px,
    rgba(0, 0, 0, 0.02) 0 0.8px 2.925px,
    rgba(0, 0, 0, 0.027) 0 2.025px 7.847px,
    rgba(0, 0, 0, 0.04) 0 4px 18px;
  --shadow-elevated:
    rgba(0, 0, 0, 0.012) 0 0.5px 1.4px,
    rgba(0, 0, 0, 0.018) 0 1.4px 3.9px,
    rgba(0, 0, 0, 0.024) 0 3.4px 9.3px,
    rgba(0, 0, 0, 0.035) 0 8px 22px,
    rgba(0, 0, 0, 0.05) 0 23px 52px;

  /* Layout-only vars */
  --gutter: 24px;
  --container: 1180px;
  --container-wide: 1400px;
  --container-narrow: 760px;

  /* ── Infotech brand ────────────────────────────────────────
     Two brand colours: deep navy bands + electric-cyan accent.
     Cyan is brilliant on dark / as fills (with dark text), but
     unreadable as text on white — so accent text/icons on light
     surfaces use --color-accent-ink (the navy). */
  --color-secondary: #09314D;          /* large dark bands */
  --color-primary: #13f6ff;            /* electric-cyan accent / fills / on-dark */
  --color-primary-active: #0bd3dc;     /* pressed cyan */
  --color-on-primary: #052532;         /* dark text/glyph on cyan fill */
  --color-accent-ink: #09314D;         /* accent text/icons on white surfaces */
  --color-focus-ring: rgba(9, 49, 77, 0.38);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--color-canvas-mist);
  color: var(--color-ink-95);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--color-focus-ring); outline-offset: 2px; border-radius: var(--radius-xs); }
.topbar :focus-visible, .nav :focus-visible, .mobile-menu :focus-visible,
.hero :focus-visible, .band-dark :focus-visible,
.cta-panel :focus-visible { outline-color: rgba(19,246,255,0.75); }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  background: var(--color-surface); color: var(--color-accent-ink);
  font-weight: 600; font-size: 15px; padding: 10px 18px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-elevated);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ── Layout helpers ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--container-wide); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(56px, 9vw, 112px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.stack > * + * { margin-top: 1rem; }

/* ── Type roles ────────────────────────────────────────────── */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-accent-ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow.on-dark { color: var(--color-primary); }
.display {
  font-size: clamp(40px, 6.4vw, 66px); font-weight: 700; line-height: 1.02;
  letter-spacing: -0.03em; text-wrap: balance;
}
.h1 { font-size: clamp(32px, 4.4vw, 44px); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; }
.h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; text-wrap: balance; }
.h3 { font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--color-ink-muted); text-wrap: pretty; }
.body { font-size: 16px; line-height: 1.6; color: var(--color-ink-muted); text-wrap: pretty; }
.fine { font-size: 14px; color: var(--color-ink-faint); }
.on-dark .lead, .lead.on-dark { color: rgba(255,255,255,0.72); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 16px; font-weight: 500; line-height: 1.5;
  padding: 12px 22px; min-height: 46px; border: 1px solid transparent;
  border-radius: var(--radius-full); cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease, color .12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--color-primary); color: var(--color-on-primary); }
.btn-primary:hover { background: var(--color-primary-active); }
.btn-secondary { background: var(--color-secondary); color: #fff; }
.btn-secondary:hover { background: #0c3a59; }
.btn-ghost-dark { background: transparent; color: #fff; border-color: var(--color-primary); }
.btn-ghost-dark:hover { background: rgba(19,246,255,0.12); }
.btn-outline { background: transparent; color: var(--color-accent-ink); border-color: var(--color-primary-active); }
.btn-outline:hover { background: rgba(19,246,255,0.1); }
.btn-utility {
  border-radius: var(--radius-md); border: 1px solid var(--color-hairline);
  background: var(--color-surface); color: var(--color-ink-95);
  padding: 8px 16px; min-height: 40px; font-size: 15px;
}
.btn-utility:hover { border-color: var(--color-ink-faint); }
.btn-lg { padding: 15px 28px; min-height: 52px; font-size: 17px; }
.btn-link { color: var(--color-accent-ink); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.btn-link:hover { gap: 11px; }
.btn-link .arr { transition: transform .15s ease; }
.btn-link:hover .arr { transform: translateX(2px); }

/* ── Badge / pill ──────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-full); padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: var(--color-ink-secondary); white-space: nowrap;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent-green); }
.pill.on-dark { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }

/* ═══ TOP ANNOUNCEMENT BAR (sticky with the nav: 40px) ═════ */
.topbar { background: #062438; color: rgba(255,255,255,0.85); font-size: 13.5px; position: sticky; top: 0; z-index: 101; }
.topbar-inner { display: flex; align-items: center; gap: 18px; min-height: 40px; padding-block: 4px; }
.topbar .msg { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar .more { color: var(--color-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar .more:hover { gap: 9px; }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.topbar-right a { color: rgba(255,255,255,0.72); font-weight: 500; }
.topbar-right a:hover { color: #fff; }
.topbar-right .tb-pre { color: rgba(255,255,255,0.5); font-weight: 500; margin-right: 5px; }

/* ═══ NAV (sticky below the topbar: 84px, 124px total) ═════ */
.nav {
  position: sticky; top: 40px; z-index: 100;
  background: var(--color-secondary);
}
.nav-inner { display: flex; align-items: center; gap: 16px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand img { height: 40px; width: auto; display: block; }
.brand .mark {
  width: 30px; height: 30px; border-radius: var(--radius-md);
  background: var(--color-secondary); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 17px; letter-spacing: -0.04em;
}
.nav .brand { color: #fff; font-size: 21px; }
.nav .brand .mark { background: var(--color-primary); color: var(--color-on-primary); }
.nav-links { display: flex; align-items: stretch; align-self: stretch; gap: 12px; flex: 1; justify-content: center; }
.nav-links a {
  position: relative; display: inline-flex; align-items: center;
  padding: 0 16px; font-size: 15.5px; font-weight: 600;
  color: #fff; transition: color .12s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 0; height: 4px;
  background: var(--color-primary);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav .btn-utility { background: transparent; border-color: rgba(255,255,255,0.32); color: #fff; }
.nav .btn-utility:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-md); background: transparent; cursor: pointer;
  align-items: center; justify-content: center; touch-action: manipulation;
}
.nav-toggle span { position: relative; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: inherit; border-radius: 2px; transition: .2s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: #fff; }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: #fff; }

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
  background: var(--color-secondary); border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px var(--gutter) 24px; display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-elevated); max-height: calc(100dvh - 84px); overflow-y: auto;
}
body.menu-open .mobile-menu { display: flex; }
.mobile-menu a { padding: 14px 12px; border-radius: var(--radius-md); font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.85); }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-menu .btn { margin-top: 10px; }
.mobile-menu .btn-primary { color: var(--color-on-primary); }
.mobile-menu .btn-utility { background: transparent; border-color: rgba(255,255,255,0.32); color: #fff; }
/* Mobile "Services" disclosure */
.m-svc { display: flex; flex-direction: column; }
.m-svc-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%;
  padding: 14px 12px; border: 0; background: transparent; cursor: pointer; text-align: left;
  border-radius: var(--radius-md); font: inherit; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.85);
}
.m-svc-toggle:hover, .m-svc-toggle.active { background: rgba(255,255,255,0.07); color: #fff; }
.m-svc-toggle .chev { width: 20px; height: 20px; flex: none; transition: transform 0.2s ease; }
.m-svc-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.m-svc-list { display: flex; flex-direction: column; gap: 2px; padding: 2px 0 6px 12px; }
.m-svc-list[hidden] { display: none; }
.m-svc-list a { font-size: 15.5px; padding: 11px 12px; color: rgba(255,255,255,0.72); }
.nav.light .m-svc-toggle { color: var(--color-ink-95); }
.nav.light .m-svc-toggle:hover, .nav.light .m-svc-toggle.active { background: var(--color-canvas-soft); color: var(--color-accent-ink); }
.nav.light .m-svc-list a { color: var(--color-ink-95); }

/* ── Inverted (light) header for inner pages ──────────────── */
.nav.light { background: var(--color-surface); border-bottom: 1px solid var(--color-hairline); }
.nav.light .brand { color: var(--color-ink-95); }
.nav.light .brand .mark { background: var(--color-secondary); color: #fff; }
.nav.light .nav-links a { color: var(--color-ink-95); }
.nav.light .nav-links a:hover { color: var(--color-primary-active); }
.nav.light .nav-links a::after { background: var(--color-primary-active); }
.nav.light .btn-ghost-dark { color: var(--color-accent-ink); border-color: var(--color-primary-active); background: transparent; }
.nav.light .btn-ghost-dark:hover { background: rgba(19,246,255,0.1); }
.nav.light .nav-toggle { border-color: var(--color-hairline); }
.nav.light .nav-toggle span { background: var(--color-ink-95); }
body.menu-open .nav.light .nav-toggle span { background: transparent; }
body.menu-open .nav.light .nav-toggle span::before,
body.menu-open .nav.light .nav-toggle span::after { background: var(--color-ink-95); }
.nav.light .mobile-menu { background: var(--color-surface); border-bottom-color: var(--color-hairline); }
.nav.light .mobile-menu a { color: var(--color-ink-95); }
.nav.light .mobile-menu a:hover, .nav.light .mobile-menu a.active { background: var(--color-canvas-soft); color: var(--color-accent-ink); }
.nav.light .mobile-menu .btn-primary { color: var(--color-on-primary); }
.nav.light .mobile-menu .btn-ghost-dark { color: var(--color-accent-ink); border-color: var(--color-primary-active); }
.nav.light :focus-visible { outline-color: var(--color-focus-ring); }

/* ── Services mega menu ───────────────────────────────────── */
.has-mega { display: inline-flex; align-items: stretch; }
.nav-links .chev { width: 14px; height: 14px; margin-left: 6px; flex: none; transition: transform .25s cubic-bezier(.16,.84,.3,1); }
.has-mega.open .chev { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 6px); left: 50%; z-index: 110;
  width: min(880px, calc(100vw - 48px));
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: 16px; padding: 18px;
  box-shadow: 0 30px 70px rgba(2,18,28,0.18);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(0.99); transform-origin: top center;
  transition: opacity .2s ease, transform .26s cubic-bezier(.16,.84,.3,1), visibility 0s linear .26s;
}
.has-mega.open .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity .22s ease, transform .28s cubic-bezier(.16,.84,.3,1);
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 8px; }
.nav-links .mega a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 12px; transform: none;
  font-weight: 500; color: var(--color-ink-95);
  transition: background-color .15s ease;
}
.nav-links .mega a::after { content: none; }
.nav .nav-links .mega a:hover { color: var(--color-ink-95); background: var(--color-canvas-soft); transform: none; }
.mega .coin {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: rgba(9,49,77,0.06); color: var(--color-accent-ink);
  display: grid; place-items: center;
  transition: box-shadow .25s ease;
}
.mega .coin svg { width: 17px; height: 17px; }
.nav .nav-links .mega a:hover .coin {
  box-shadow: 0 0 0 1px rgba(11,211,220,0.65), 0 0 12px rgba(19,246,255,0.45);
}
.mega b { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.mega .md { display: block; font-size: 12.5px; color: var(--color-ink-muted); margin-top: 2px; line-height: 1.4; }
.mega-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--color-hairline); margin-top: 14px; padding: 14px 12px 2px;
}
.mega-foot .fine { font-size: 13.5px; }
.nav .nav-links .mega-foot a {
  display: inline-flex; padding: 0; border-radius: 0;
  color: var(--color-accent-ink); font-weight: 600; font-size: 14.5px;
}
.nav .nav-links .mega-foot a:hover { background: none; color: var(--color-accent-ink); }
.mega-foot a .arr { transition: transform .15s ease; margin-left: 6px; }
.mega-foot a:hover .arr { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .mega, .nav-links .chev { transition: none; } }

/* Frosted scrim behind an open mega menu (injected into body via JS) */
.mega-scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(9,49,77,0.25);
  -webkit-backdrop-filter: blur(4px) saturate(115%);
  backdrop-filter: blur(4px) saturate(115%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s ease, visibility 0s linear .28s;
}
body.mega-open .mega-scrim { opacity: 1; visibility: visible; transition: opacity .28s ease; }
@media (prefers-reduced-motion: reduce) { .mega-scrim { transition: none; } }

/* ═══ HERO ═════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--color-secondary);
  color: #fff;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(56px, 8vw, 104px);
}
/* Stop grid tracks blowing out past the viewport from nowrap dashboard content */
.hero-grid > *, .ph-grid > * { min-width: 0; }
.hero h1 { color: #fff; font-size: clamp(44px, 7vw, 74px); }
.hero .lead { color: rgba(255,255,255,0.74); max-width: 58ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 34px; }
.hero-trust .item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.78); }
.hero-trust .ic { width: 20px; height: 20px; color: var(--color-primary); flex: none; }

/* Hero media = a fluid window; .hero-stage is the fixed-size composition (dashboard + the
   two overlay cards). JS scales the stage to fit the column via --hero-scale, so the whole
   unit shrinks together and everything stays visible at any width. The cards sit in the
   stage's padding so they overhang the dashboard but never escape it. */
.hero-media { position: relative; width: 100%; }
.hero-stage {
  position: relative; box-sizing: border-box;
  width: 600px; padding: 30px 40px 30px 44px;
  transform-origin: top left;
  transform: scale(var(--hero-scale, 1));
}
.float-card {
  position: absolute; top: 0; right: 0; z-index: 2;
  width: min(56%, 320px); height: auto;
  filter: drop-shadow(0 18px 40px rgba(2,18,28,0.5));
  animation: float-in 1.4s cubic-bezier(.16,.84,.3,1) .5s backwards;
}
@keyframes float-in { from { opacity: 0; transform: translateX(60px); } }
.float-card-2 {
  position: absolute; bottom: 0; left: 0; z-index: 2;
  width: min(50%, 290px); height: auto;
  filter: drop-shadow(0 18px 40px rgba(2,18,28,0.5));
  animation: float-in-left 1.4s cubic-bezier(.16,.84,.3,1) .75s backwards;
}
/* HTML twin of the patch-compliance SVG card (editable text) */
.comp-card {
  box-sizing: border-box; border-radius: 9px; border: 1px solid transparent; color: #fff;
  padding: 16px 18px 17px;
  background:
    linear-gradient(rgb(9, 52, 79), rgb(9,52,79)) padding-box,
    linear-gradient(135deg, #13f6ff, rgba(4,255,136,0.05)) border-box;
}
.comp-card .cc-title { font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em; }
.comp-card .cc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 9px; }
.comp-card .cc-num { font-size: 27px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.comp-card .cc-sub { font-size: 12.5px; color: rgb(149,160,168); white-space: nowrap; }
.comp-card .cc-bar { height: 11px; border-radius: 5px; background: #004668; margin-top: 13px; overflow: hidden; }
.comp-card .cc-bar i { display: block; height: 100%; background: #13f6ff; border-radius: 5px; }
@keyframes float-in-left { from { opacity: 0; transform: translateX(-60px); } }
@media (prefers-reduced-motion: reduce) { .float-card, .float-card-2 { animation: none; } }
/* Floats stay visible at every width — the whole stage scales to fit, so they never break. */

/* Hero dashboard illustration */
.mock {
  background: var(--color-surface); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated); overflow: hidden; border: 1px solid rgba(255,255,255,0.5);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--color-hairline); background: #fafcfd; }
.mock-bar .tl { width: 11px; height: 11px; border-radius: 50%; background: var(--color-hairline); }
.mock-bar .title { margin-left: 8px; font-size: 13px; font-weight: 600; color: var(--color-ink-muted); }
.mock-body { display: grid; grid-template-columns: 64px 1fr; min-height: 320px; }
.mock-side { background: #fafafa; border-right: 1px solid var(--color-hairline); padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mock-side .si { width: 30px; height: 30px; border-radius: var(--radius-md); background: #eef1f5; }
.mock-side .si.on { background: var(--color-primary); }
.mock-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-stat { border: 1px solid var(--color-hairline); border-radius: var(--radius-md); padding: 12px; }
.mock-stat .k { font-size: 11px; color: var(--color-ink-faint); font-weight: 600; }
.mock-stat .v { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }
.mock-stat .v.green { color: var(--color-accent-green); }
.mock-stat .v.blue { color: var(--color-accent-ink); }
.mock-chart { border: 1px solid var(--color-hairline); border-radius: var(--radius-md); padding: 14px; flex: 1; }
.mock-chart .ct { font-size: 12px; font-weight: 600; color: var(--color-ink-muted); margin-bottom: 12px; }
.mock-bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; }
.mock-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(var(--color-primary), var(--color-secondary)); }
.mock-rows { display: flex; flex-direction: column; gap: 8px; }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-row .av { width: 22px; height: 22px; border-radius: 50%; flex: none; }
.mock-row .ln { height: 8px; border-radius: 4px; background: #eef1f5; }
.mock-row .tag { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); }

/* Hero dashboard mock v2 — sidebar + KPIs + chart + SLA bars */
.dash-body { display: grid; grid-template-columns: 138px 1fr; background: var(--color-surface); }
.dash-side { background: #fafcfd; border-right: 1px solid var(--color-hairline); padding: 14px 10px 12px; display: flex; flex-direction: column; gap: 16px; }
.ds-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; padding: 2px 6px; }
.ds-brand .mk { width: 22px; height: 22px; border-radius: 6px; background: var(--color-secondary); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; flex: none; }
.ds-nav { display: flex; flex-direction: column; gap: 2px; }
.ds-item { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 500; color: var(--color-ink-muted); padding: 7px 8px; border-radius: var(--radius-md); }
.ds-item svg { width: 14px; height: 14px; flex: none; }
.ds-item.on { background: rgba(9,49,77,0.07); color: var(--color-secondary); font-weight: 600; }
.ds-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--color-ink-muted); padding: 0 6px; }
.ds-foot .av { width: 24px; height: 24px; border-radius: 50%; background: var(--color-accent-teal); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 600; flex: none; }
.dash-main { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 12px; }
.dm-top { display: flex; align-items: center; gap: 10px; }
.dm-search { flex: 1; display: flex; align-items: center; gap: 8px; border: 1px solid var(--color-hairline); border-radius: var(--radius-full); padding: 6px 12px; font-size: 11.5px; color: var(--color-ink-faint); background: #fafcfd; }
.dm-search svg { width: 12px; height: 12px; flex: none; }
.dm-bell { position: relative; width: 28px; height: 28px; border: 1px solid var(--color-hairline); border-radius: 50%; display: grid; place-items: center; color: var(--color-ink-muted); background: var(--color-surface); flex: none; }
.dm-bell svg { width: 13px; height: 13px; }
.dm-bell .ping { position: absolute; top: 4px; right: 5px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent-green); border: 1.5px solid #fff; }
.dm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.dm-head .t { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.dm-head .s { font-size: 11px; color: var(--color-ink-faint); margin-top: 2px; }
.dm-chip { font-size: 10.5px; font-weight: 600; color: var(--color-ink-secondary); border: 1px solid var(--color-hairline); border-radius: var(--radius-full); padding: 4px 10px; background: var(--color-surface); white-space: nowrap; }
.kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kpi { border: 1px solid var(--color-hairline); border-radius: var(--radius-md); padding: 10px 12px; }
.kpi .k { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-ink-faint); }
.kpi .v { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; }
.kpi .d { font-size: 10.5px; font-weight: 600; margin-top: 3px; color: var(--color-accent-green); }
.dchart { border: 1px solid var(--color-hairline); border-radius: var(--radius-md); padding: 12px; }
.dchart .hd { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 8px; }
.dchart .tt { font-size: 11.5px; font-weight: 600; color: var(--color-ink-secondary); }
.dchart .lgnd { display: flex; gap: 10px; font-size: 10px; color: var(--color-ink-muted); align-items: center; white-space: nowrap; }
.dchart .lgnd i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.dchart .lgnd .cy { background: var(--color-primary-active); }
.dchart .lgnd .nv { background: var(--color-secondary); }
.dchart svg { width: 100%; height: auto; display: block; }
.dchart .xax { display: flex; justify-content: space-between; font-size: 9px; color: var(--color-ink-faint); margin-top: 6px; padding-inline: 2px; }
.slas { display: flex; flex-direction: column; gap: 8px; }
.sla { display: flex; align-items: center; gap: 10px; font-size: 11px; }
.sla .t { flex: none; width: 44%; color: var(--color-ink-secondary); font-weight: 500; }
.sla .bar { flex: 1; height: 6px; border-radius: 3px; background: #eef1f5; overflow: hidden; }
.sla .bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--color-primary-active), var(--color-secondary)); }
.sla .pc { flex: none; font-weight: 700; font-size: 11px; color: var(--color-secondary); }
@media (max-width: 560px) {
  .dash-body { grid-template-columns: 52px 1fr; }
  .ds-item .lb, .ds-brand .lb, .ds-foot .lb { display: none; }
  .ds-item { justify-content: center; padding: 8px; }
  .ds-brand { justify-content: center; padding: 2px 0; }
  .ds-foot { justify-content: center; }
  .kpi .v { font-size: 17px; }
}

/* Hero dashboard v3 — dark security operations concept */
.mock.dark {
  background: #0a2942;
  border-color: rgba(9,246,255,0.22);
  box-shadow: 0 30px 70px rgba(2,18,28,0.55);
}
.mock.dark .mock-bar { background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mock.dark .mock-bar .tl { background: rgba(255,255,255,0.16); }
.mock.dark .mock-bar .title { color: rgba(255,255,255,0.7); }
.sec-main { padding: 16px; display: flex; flex-direction: column; gap: 12px; color: #fff; }
.sec-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.sec-top .t { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.sec-top .s { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.sec-chip {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: 10.5px; font-weight: 600; padding: 4px 11px; border-radius: var(--radius-full);
  border: 1px solid rgba(19,246,255,0.3); color: var(--color-primary); background: rgba(19,246,255,0.07);
}
.sec-chip .pulse { width: 7px; height: 7px; border-radius: 50%; background: #04ff88; animation: pulse-ring 2.2s ease-out infinite; }
.sec-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sec-kpi { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 10px 12px; background: rgba(255,255,255,0.03); }
.sec-kpi .k { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.sec-kpi .v { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; font-variant-numeric: tabular-nums; }
.sec-kpi .v .d { font-size: 10.5px; font-weight: 600; margin-left: 6px; color: #2ee06a; }
.sec-kpi svg { width: 100%; height: 18px; margin-top: 7px; display: block; }
.sec-table { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow: hidden; }
.sec-table .hd {
  display: flex; justify-content: space-between; align-items: center; padding: 9px 12px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sec-row { display: flex; align-items: center; gap: 9px; padding: 8px 12px; font-size: 11.5px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sec-row:last-child { border-bottom: 0; }
.sec-row .sev { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.sev-crit { background: #ff6b6b; }
.sev-high { background: var(--color-accent-orange); }
.sev-low { background: rgba(255,255,255,0.35); }
.sec-row .nm { color: rgba(255,255,255,0.85); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sec-row .tag2 { margin-left: auto; font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); white-space: nowrap; flex: none; }
.t-blocked { background: rgba(46,224,106,0.14); color: #2ee06a; }
.t-active { background: rgba(19,246,255,0.13); color: var(--color-primary); }
.sec-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 10.5px; color: rgba(255,255,255,0.5); }
@media (prefers-reduced-motion: reduce) { .sec-chip .pulse { animation: none; } }

/* ═══ LOGO BAR (scrolling marquee in the navy hero band) ═══ */
.logobar { background: var(--color-secondary); }
.logobar-inner { padding-block: 8px 56px; }
.logobar .label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 24px; }
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track { display: flex; align-items: center; width: max-content; animation: logo-scroll 40s linear infinite; }
.logo-track .lg {
  flex: none; height: 48px; margin-inline: 26px;
  display: flex; align-items: center; justify-content: center;
}
.logo-track .lg img {
  height: 26px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.55; transition: opacity .25s ease;
}
.logo-marquee:hover .logo-track .lg:hover img { opacity: 1; }
@keyframes logo-scroll { to { transform: translateX(-50%); } }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; gap: 14px 0; }
  .logo-track .lg.dup { display: none; }
  .logo-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ═══ SECTION HEADING ══════════════════════════════════════ */
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 14px; }
.section-head .lead { margin-top: 16px; }

/* ═══ CARDS / GRIDS ════════════════════════════════════════ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg); padding: 26px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card.hover:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); border-color: #dcdcdc; }
.card .h3 { margin-top: 18px; }
.card .body { margin-top: 9px; }

.icon-tile {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: grid; place-items: center; color: #fff;
}
.icon-tile svg { width: 24px; height: 24px; }
.tile-sky { background: var(--color-accent-sky); }
.tile-blue { background: var(--color-secondary); }
.tile-teal { background: var(--color-accent-teal); }
.tile-green { background: var(--color-accent-green); }
.tile-purple { background: var(--color-accent-purple-deep); }
.tile-pink { background: var(--color-accent-pink); }
.tile-orange { background: var(--color-accent-orange); }

/* ═══ SERVICES SHOWCASE (homepage "What we do") ════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.svc-feature, .svc-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-xl); text-decoration: none;
  transition: transform .25s cubic-bezier(.16,.84,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.svc-feature:hover, .svc-card:hover { transform: translateY(-4px); }

/* Featured navy panels: gradient hairline matches the hero SVG cards */
.svc-feature {
  grid-column: span 6; padding: 30px; color: #fff;
  border: 1px solid transparent;
  background:
    linear-gradient(150deg, #0c3a59, var(--color-secondary) 60%) padding-box,
    linear-gradient(135deg, rgba(19,246,255,0.7), rgba(19,246,255,0.08) 45%, rgba(4,255,136,0.3)) border-box;
}
.svc-feature:hover { box-shadow: 0 26px 60px rgba(2,18,28,0.35); }
.svc-feature::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(480px circle at var(--mx, 75%) var(--my, 20%), rgba(19,246,255,0.12), transparent 65%);
  transition: opacity .3s ease;
}
.svc-feature:hover::after { opacity: 1; }

/* Standard white cards: cursor spotlight */
.svc-card {
  grid-column: span 3; padding: 24px;
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
}
.svc-card:hover { border-color: rgba(9,49,77,0.28); box-shadow: var(--shadow-soft); }
.svc-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(19,246,255,0.14), transparent 65%);
  transition: opacity .3s ease;
}
.svc-card:hover::after { opacity: 1; }

.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-coin {
  width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center; flex: none;
  background: var(--color-secondary); color: #fff;
  transition: background-color .22s ease, color .22s ease, transform .25s cubic-bezier(.16,.84,.3,1);
}
.svc-feature .svc-coin { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--color-primary); }
.svc-coin svg { width: 22px; height: 22px; }
.svc-feature:hover .svc-coin, .svc-card:hover .svc-coin {
  background: var(--color-primary); border-color: var(--color-primary);
  color: var(--color-on-primary); transform: scale(1.06);
}
.svc-arrow {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none;
  border: 1px solid var(--color-hairline); color: var(--color-ink-faint);
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .25s cubic-bezier(.16,.84,.3,1);
}
.svc-feature .svc-arrow { border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.55); }
.svc-arrow svg { width: 15px; height: 15px; }
.svc-feature:hover .svc-arrow, .svc-card:hover .svc-arrow {
  background: var(--color-primary); border-color: var(--color-primary);
  color: var(--color-on-primary); transform: translate(2px, -2px);
}
.svc-title { font-size: 21px; font-weight: 700; line-height: 1.25; letter-spacing: -0.012em; margin-top: 18px; color: inherit; }
.svc-card .svc-title { font-size: 17.5px; margin-top: 16px; color: var(--color-ink-95); }
.svc-body { font-size: 15.5px; line-height: 1.55; margin-top: 8px; color: rgba(255,255,255,0.74); text-wrap: pretty; }
.svc-card .svc-body { font-size: 14.5px; margin-top: 7px; color: var(--color-ink-muted); }

.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px; }
.svc-chips .chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.svc-chips .pulse { width: 7px; height: 7px; border-radius: 50%; background: #04ff88; animation: pulse-ring 2.2s ease-out infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(4,255,136,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(4,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(4,255,136,0); }
}
.svc-spark, .svc-bars { margin-top: 16px; }
.svc-spark { width: 100%; height: 56px; display: block; }
.svc-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.svc-bars i { flex: 1; border-radius: 2px; background: rgba(19,246,255,0.18); }
.svc-bars i.hi { background: var(--color-primary); }

/* Staggered entrance (within the existing reveal system) */
.svc-grid.reveal > * { opacity: 0; transform: translateY(16px); }
.svc-grid.reveal.in > * { opacity: 1; transform: none; animation: svc-in .65s cubic-bezier(.16,.84,.3,1) backwards; }
.svc-grid.reveal.in > *:nth-child(2) { animation-delay: .07s; }
.svc-grid.reveal.in > *:nth-child(3) { animation-delay: .14s; }
.svc-grid.reveal.in > *:nth-child(4) { animation-delay: .21s; }
.svc-grid.reveal.in > *:nth-child(5) { animation-delay: .28s; }
.svc-grid.reveal.in > *:nth-child(6) { animation-delay: .35s; }
@keyframes svc-in { from { opacity: 0; transform: translateY(16px); } }

@media (max-width: 1000px) {
  .svc-feature { grid-column: span 12; }
  .svc-card { grid-column: span 6; }
}
@media (max-width: 600px) {
  .svc-card { grid-column: span 12; }
  .svc-feature { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-grid.reveal > *, .svc-grid.reveal.in > * { opacity: 1; transform: none; animation: none; }
  .svc-chips .pulse { animation: none; }
  .svc-feature, .svc-card, .svc-coin, .svc-arrow { transition: none; }
  .svc-feature:hover, .svc-card:hover { transform: none; }
}

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: -1; }
.media-frame {
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 16px; box-shadow: var(--shadow-soft);
}

/* ═══ AUTOFEED — overnight activity timeline ═══════════════ */
.autofeed { width: 100%; max-width: 470px; margin-inline: auto; }
.af-head { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--color-ink-secondary); margin: 0 0 16px 2px; }
.af-head svg { width: 15px; height: 15px; color: var(--color-accent-ink); flex: none; }
.af-list { list-style: none; margin: 0; padding: 0; position: relative; display: flex; flex-direction: column; gap: 10px; }
.af-list::before {
  content: ""; position: absolute; left: 66px; top: 16px; bottom: 16px; width: 2px; border-radius: 1px;
  background: linear-gradient(rgba(9,49,77,0.10), rgba(11,211,220,0.55));
}
.af-item { display: flex; align-items: flex-start; gap: 12px; position: relative; }
.af-time { flex: none; width: 42px; text-align: right; font-size: 12px; font-weight: 600; color: var(--color-ink-muted); font-variant-numeric: tabular-nums; padding-top: 14px; }
.af-node {
  flex: none; width: 26px; height: 26px; margin-top: 10px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--color-surface); border: 1px solid var(--color-hairline); color: var(--color-accent-ink);
}
.af-node svg { width: 12px; height: 12px; }
.af-card { flex: 1; background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: var(--radius-lg); padding: 11px 15px; }
.af-card b { display: block; font-size: 14.5px; font-weight: 600; color: var(--color-ink-95); letter-spacing: -0.005em; }
.af-card span { display: block; font-size: 13px; line-height: 1.45; color: var(--color-ink-muted); margin-top: 2px; }
.af-item.live .af-node { border-color: rgba(11,211,220,0.6); }
.af-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary-active); animation: af-pulse 2.2s ease-out infinite; }
@keyframes af-pulse {
  0% { box-shadow: 0 0 0 0 rgba(11,211,220,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(11,211,220,0); }
  100% { box-shadow: 0 0 0 0 rgba(11,211,220,0); }
}
.af-item.live .af-card {
  border-color: rgba(11,211,220,0.55);
  background: linear-gradient(rgba(19,246,255,0.06), rgba(19,246,255,0.06)), var(--color-surface);
  box-shadow: 0 10px 30px rgba(11,211,220,0.12);
}
.split-media.reveal.in .af-item { animation: af-in .55s cubic-bezier(.16,.84,.3,1) backwards; }
.split-media.reveal.in .af-item:nth-child(2) { animation-delay: .08s; }
.split-media.reveal.in .af-item:nth-child(3) { animation-delay: .16s; }
.split-media.reveal.in .af-item:nth-child(4) { animation-delay: .24s; }
.split-media.reveal.in .af-item:nth-child(5) { animation-delay: .32s; }
@keyframes af-in { from { opacity: 0; transform: translateX(18px); } }
@media (max-width: 600px) {
  .af-time { width: 36px; font-size: 11px; }
  .af-list::before { left: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .split-media.reveal.in .af-item { animation: none; }
  .af-live-dot { animation: none; }
}

/* Check list */
.checks { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; padding-left: 0; }
.checks li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.checks .ck {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(9,49,77,0.09);
  color: var(--color-accent-ink); display: grid; place-items: center; flex: none; margin-top: 1px;
}
.checks .ck svg { width: 13px; height: 13px; }
.checks .txt { font-size: 16px; color: var(--color-ink-secondary); }
.checks .txt b { color: var(--color-ink-95); font-weight: 600; }

/* ═══ SERVICE GAUGE & RADAR (services page flagships) ══════ */
.gauge-wrap { max-width: 400px; margin-inline: auto; text-align: center; }
.gauge { position: relative; width: min(300px, 82%); margin-inline: auto; aspect-ratio: 1; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-track, .gauge-arc { fill: none; stroke-width: 12; }
.gauge-track { stroke: rgba(9,49,77,0.08); }
.gauge-arc {
  stroke: var(--color-primary-active); stroke-linecap: round;
  stroke-dasharray: 528; stroke-dashoffset: 528;
  transition: stroke-dashoffset 1.8s cubic-bezier(.16,.84,.3,1) .25s;
  filter: drop-shadow(0 0 10px rgba(19,246,255,0.45));
}
.reveal.in .gauge-arc { stroke-dashoffset: 21; }
.gauge-center { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.gn { font-size: clamp(44px, 5vw, 60px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--color-ink-95); font-variant-numeric: tabular-nums; }
.gn .gu, .gv .gu { color: var(--color-secondary); }
.gn .gu { font-size: 0.45em; font-weight: 700; margin-left: 2px; }
.gl { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--color-ink-muted); }
.gstats { display: flex; justify-content: center; gap: 32px; margin-top: 28px; text-align: left; }
.gstat { padding-left: 16px; border-left: 1px solid var(--color-hairline); }
.gv { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--color-ink-95); font-variant-numeric: tabular-nums; }
.gv .gu { font-size: 15px; }
.gk { font-size: 13px; color: var(--color-ink-muted); margin-top: 3px; }

.radar { position: relative; width: min(270px, 76%); aspect-ratio: 1; margin-inline: auto; }
.radar i { position: absolute; display: block; }
.radar .rr { inset: 0; border: 1px solid rgba(9,49,77,0.15); border-radius: 50%; }
.radar .r2 { inset: 18%; }
.radar .r3 { inset: 36%; }
.radar .sweep {
  inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(19,246,255,0.38), rgba(19,246,255,0.05) 70deg, transparent 95deg);
  animation: radar-sweep 4.5s linear infinite;
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
.radar .core { left: 50%; top: 50%; width: 12px; height: 12px; margin: -6px; border-radius: 50%; background: var(--color-primary-active); box-shadow: 0 0 12px rgba(19,246,255,0.7); }
.radar .blip { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary-active); opacity: 0; animation: radar-blip 4.5s infinite; }
.radar .b1 { left: 22%; top: 30%; animation-delay: .4s; }
.radar .b2 { left: 68%; top: 24%; animation-delay: 1.9s; }
.radar .b3 { left: 60%; top: 70%; animation-delay: 3.1s; }
@keyframes radar-blip {
  0%, 10% { opacity: 0; transform: scale(.5); }
  15% { opacity: 1; transform: scale(1); }
  45% { opacity: .25; }
  60%, 100% { opacity: 0; }
}
.radar-stat { margin-top: 24px; }
@media (prefers-reduced-motion: reduce) {
  .gauge-arc { transition: none; stroke-dashoffset: 21; }
  .radar .sweep { animation: none; }
  .radar .blip { animation: none; opacity: .55; }
}

/* ═══ "AND THE REST" CARDS (services page) ═════════════════ */
.rest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rest-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-xl); border: 1px solid var(--color-hairline);
  background: linear-gradient(180deg, var(--color-surface), var(--color-canvas-soft));
  padding: 32px 32px 0;
  transition: transform .25s cubic-bezier(.16,.84,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.rest-card::before { content: ""; position: absolute; inset: 0; background: var(--color-surface); opacity: 0; transition: opacity .3s ease; }
.rest-card > * { position: relative; z-index: 1; }
.rest-card:hover { transform: translateY(-4px); border-color: rgba(9,49,77,0.22); box-shadow: var(--shadow-elevated); }
.rest-card:hover::before { opacity: 1; }
.rest-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.rest-head .h3 { font-size: 22px; letter-spacing: -0.015em; }
.rest-card:hover .svc-arrow { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary); transform: translate(2px, -2px); }
.rest-body { font-size: 15.5px; line-height: 1.55; color: var(--color-ink-muted); margin-top: 10px; max-width: 52ch; }
.rest-visual { margin-top: 28px; transform: translateY(14px); transition: transform .35s cubic-bezier(.16,.84,.3,1); }
.rest-card:hover .rest-visual { transform: translateY(4px); }
.mini { background: var(--color-surface); border: 1px solid var(--color-hairline); border-bottom: 0; border-radius: 14px 14px 0 0; box-shadow: var(--shadow-soft); padding: 16px 18px 20px; }
.mini-top { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.mini-top .d { width: 8px; height: 8px; border-radius: 50%; background: var(--color-hairline); }
.mini-top .t { margin-left: 7px; font-size: 11.5px; font-weight: 600; color: var(--color-ink-muted); }
.mini-row { display: flex; align-items: center; gap: 10px; margin-top: 11px; }
.mini-ln { height: 8px; border-radius: 4px; background: #e8eef3; }
.mini-tag { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-full); white-space: nowrap; }
.tag-good { background: rgba(26,174,57,0.13); color: var(--color-accent-green); }
.tag-navy { background: rgba(9,49,77,0.08); color: var(--color-secondary); }
.mini-bar { flex: 1; height: 8px; border-radius: 4px; background: #e8eef3; overflow: hidden; }
.mini-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--color-primary-active), var(--color-secondary)); }
.mini-sq { width: 26px; height: 26px; border-radius: 7px; flex: none; }
.mini-wave { display: flex; align-items: flex-end; gap: 3px; height: 24px; flex: 1; }
.mini-wave i { flex: 1; border-radius: 2px; background: rgba(11,211,220,0.6); }
.mini-av { width: 24px; height: 24px; border-radius: 50%; flex: none; background: var(--color-secondary); }
.rest-cta { border-style: dashed; background: transparent; justify-content: center; padding: 32px; }
.rest-cta::before { display: none; }
@media (max-width: 860px) { .rest-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .rest-card, .rest-visual { transition: none; }
  .rest-card:hover { transform: none; }
  .rest-card:hover .rest-visual { transform: translateY(14px); }
}

/* ═══ STATS BAND ═══════════════════════════════════════════ */
.band-dark {
  background: var(--color-secondary); color: #fff; position: relative; overflow: hidden;
  background-image: radial-gradient(900px 480px at 85% 120%, rgba(19,246,255,0.16), transparent 60%);
}
.band-dark .h2, .band-dark .display { color: #fff; }
.band-dark .lead { color: rgba(255,255,255,0.74); }
.band-dark .body { color: rgba(255,255,255,0.62); }
.band-deep { padding-block: clamp(88px, 12vw, 160px); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px 24px; }
.stats .stat { padding-left: 22px; border-left: 1px solid rgba(255,255,255,0.15); }
.stat .num { font-size: clamp(48px, 6.5vw, 84px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .num .u { color: var(--color-primary); }
.stat .lbl { margin-top: 12px; font-size: 15.5px; line-height: 1.45; color: rgba(255,255,255,0.72); max-width: 24ch; }
.stats-center .stat { text-align: center; padding-inline: 16px; border-left: 1px solid rgba(255,255,255,0.15); }
.stats-center .stat:first-child { border-left: 0; }
.stats-center .stat .lbl { margin-inline: auto; }

/* ═══ STEPS ════════════════════════════════════════════════ */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .no {
  counter-increment: step; flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-hairline); display: grid; place-items: center;
  font-weight: 700; color: var(--color-accent-ink); background: var(--color-surface);
}
.step .no::before { content: counter(step); }

/* ═══ TESTIMONIAL ══════════════════════════════════════════ */
.quote { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; line-height: 1.4; letter-spacing: -0.02em; text-wrap: balance; }
.quote-by { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.quote-by .ph { width: 52px; height: 52px; border-radius: 50%; flex: none; overflow: hidden; }
.quote-by .nm { font-weight: 600; }
.quote-by .rl { font-size: 14px; color: var(--color-ink-muted); }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--color-secondary); color: #fff;
  display: grid; place-items: center; font-size: 17px; font-weight: 600; letter-spacing: 0.02em;
}

/* ═══ TEAM DECK (about page "Who we are") ══════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.team-deck { position: relative; width: min(360px, 86%); margin-inline: auto; aspect-ratio: 10 / 11.5; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.team-card {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border-radius: 22px; border: 1px solid transparent; padding: 30px;
  background:
    linear-gradient(160deg, #0c3a59, var(--color-secondary) 60%) padding-box,
    linear-gradient(135deg, rgba(19,246,255,0.55), rgba(19,246,255,0.07) 45%, rgba(4,255,136,0.25)) border-box;
  color: #fff; will-change: transform;
  transition: transform .55s cubic-bezier(.16,.84,.3,1), opacity .55s ease, filter .55s ease, box-shadow .55s ease;
}
.team-card .tp {
  width: 128px; height: 128px; border-radius: 50%; object-fit: cover; flex: none;
  border: 3px solid rgba(19,246,255,0.5); margin-bottom: 16px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
  font-size: 38px; font-weight: 700; color: rgba(255,255,255,0.85);
}
.team-card .tn { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.team-card .tr { font-size: 14px; font-weight: 600; color: var(--color-primary); margin-top: 3px; }
.team-card.p0 { z-index: 4; transform: none; box-shadow: 0 24px 60px rgba(2,18,28,0.4); }
.team-card.p1 { z-index: 3; transform: rotate(5deg) translate(26px, 6px) scale(.96); filter: blur(1px) brightness(.8); }
.team-card.p2 { z-index: 2; transform: rotate(10deg) translate(52px, 12px) scale(.92); filter: blur(2px) brightness(.65); }
.team-card.p3 { z-index: 1; transform: rotate(10deg) translate(52px, 12px) scale(.92); filter: blur(2px) brightness(.6); opacity: 0; }
.team-hint { text-align: center; font-size: 13px; color: var(--color-ink-faint); margin-top: 18px; }
@media (max-width: 600px) {
  .team-card.p1 { transform: rotate(4deg) translate(14px, 4px) scale(.96); }
  .team-card.p2, .team-card.p3 { transform: rotate(8deg) translate(28px, 8px) scale(.92); }
}
@media (prefers-reduced-motion: reduce) { .team-card { transition: none; } }

/* ═══ TESTIMONIAL WALL (about page) ════════════════════════ */
.tm-rows { display: flex; flex-direction: column; gap: 10px; margin-top: 52px; }
.tm-marquee {
  overflow: hidden; padding-block: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.tm-track { display: flex; width: max-content; animation: tm-scroll 60s linear infinite; }
.tm-track.rev { animation-duration: 75s; animation-direction: reverse; }
.tm-marquee:hover .tm-track { animation-play-state: paused; }
@keyframes tm-scroll { to { transform: translateX(-50%); } }
.tm-card {
  width: min(400px, 80vw); flex: none; margin-right: 18px;
  background: var(--color-canvas-soft); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg); padding: 22px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tm-card:hover { transform: translateY(-3px); border-color: rgba(9,49,77,0.22); box-shadow: var(--shadow-soft); }
.tm-card blockquote { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--color-ink-secondary); text-wrap: pretty; }
.tm-card blockquote::before { content: "\201C"; display: block; font-size: 38px; font-weight: 700; line-height: 1; color: var(--color-secondary); margin-bottom: 4px; }
.tm-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.tm-av { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 13px; font-weight: 600; background: var(--color-secondary); color: #fff; }
.tm-av.alt { background: rgba(9,49,77,0.09); color: var(--color-secondary); }
.tm-who b { display: block; font-size: 14.5px; font-weight: 600; color: var(--color-ink-95); }
.tm-who span { display: block; font-size: 13px; color: var(--color-ink-muted); margin-top: 1px; }
.tm-dup { display: contents; }
@media (prefers-reduced-motion: reduce) {
  .tm-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; gap: 18px; }
  .tm-card { margin-right: 0; }
  .tm-dup { display: none; }
  .tm-marquee[aria-hidden="true"] { display: none; }
  .tm-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ═══ CTA PANEL (contained rounded card) ═══════════════════ */
.cta-wrap { background: var(--color-surface); padding-block: 0 clamp(56px, 9vw, 112px); }
.cta-panel {
  position: relative; overflow: hidden;
  background: var(--color-secondary); color: #fff;
  border-radius: 24px;
  padding: clamp(44px, 6.5vw, 88px) clamp(28px, 5vw, 80px);
}
.cta-panel h2 {
  position: relative; z-index: 1; color: #fff;
  font-size: clamp(30px, 4vw, 48px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em;
  max-width: 18ch; text-wrap: balance;
}
.cta-panel .row { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.cta-lines {
  position: absolute; top: 0; right: 0; height: 100%; width: 58%;
  object-fit: cover; object-position: right center;
  opacity: 0.35; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%);
  mask-image: linear-gradient(90deg, transparent, #000 40%);
}
@media (max-width: 600px) {
  .cta-lines { width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%); mask-image: linear-gradient(90deg, transparent, #000 70%); }
  /* Centre the CTA panel + stack buttons full-width on mobile. */
  .cta-panel { text-align: center; }
  .cta-panel h2 { margin-inline: auto; }
  .cta-panel .row { flex-direction: column; align-items: stretch; }
  .cta-panel .row .btn { width: 100%; }
}

/* ═══ FAQ ══════════════════════════════════════════════════ */
.faq details { border-bottom: 1px solid var(--color-hairline); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; position: relative; transition: transform .2s; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--color-ink-muted); border-radius: 2px; }
.faq summary .pm::before { top: 12px; left: 5px; width: 16px; height: 2px; }
.faq summary .pm::after { left: 12px; top: 5px; width: 2px; height: 16px; transition: opacity .2s; }
.faq details[open] summary .pm::after { opacity: 0; }
.faq .ans { padding: 0 0 24px; color: var(--color-ink-muted); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* ═══ CONTACT ══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--color-ink-secondary); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 16px; color: var(--color-ink-95);
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md); padding: 12px 14px; width: 100%;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--color-ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--color-accent-ink); box-shadow: 0 0 0 3px var(--color-focus-ring);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: var(--radius-lg); padding: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list .ci { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci .ic { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-canvas-soft); color: var(--color-accent-ink); display: grid; place-items: center; flex: none; }
.contact-list .ci .ic svg { width: 21px; height: 21px; }
.contact-list .ci .k { font-size: 13px; font-weight: 600; color: var(--color-ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-list .ci .v { font-size: 17px; font-weight: 500; margin-top: 3px; }
.contact-list .ci .v a:hover { color: var(--color-accent-ink); }

/* ═══ PAGE HEADER (inner pages, light) ═════════════════════ */
.page-light { background: var(--color-surface); }
hr.sep { border: 0; border-top: 1px solid var(--color-hairline); margin: 0; }
.page-head { background: var(--color-surface); }
.page-head-inner { padding-block: clamp(48px, 6vw, 80px) clamp(64px, 8vw, 104px); max-width: var(--container); border-bottom: 1px solid var(--color-hairline); }
.page-head h1 { color: var(--color-ink-95); font-size: clamp(38px, 5vw, 58px); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; }
.page-head .lead { color: var(--color-ink-muted); margin-top: 22px; max-width: 48ch; font-size: clamp(17px, 1.5vw, 19px); }
.crumbs { font-size: 15px; color: var(--color-ink-faint); margin-bottom: clamp(32px, 4vw, 48px); display: flex; gap: 8px; align-items: center; }
.crumbs a { color: var(--color-accent-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(9,49,77,0.28); }
.crumbs a:hover { text-decoration-color: currentColor; }

/* ═══ PHOTO CARD ═══════ */
.photo-slot {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-xl);
  border: 1.5px dashed var(--color-hairline); background: var(--color-canvas-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--color-ink-faint); font-size: 13px; font-weight: 500; text-align: center; padding: 16px;
}
.photo-slot svg { width: 28px; height: 28px; opacity: .5; }

/* Anchor targets clear the 124px sticky header */
[id] { scroll-margin-top: 140px; }

/* ═══ SERVICE INDEX (services page header) — 2-col compact ═ */
.svc-index { width: 100%; max-width: 520px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 22px; }
.svc-index a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 4px; border-bottom: 1px solid var(--color-hairline);
  color: var(--color-ink-95); font-size: 14.5px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.25;
  transition: color .15s ease;
}
.svc-index a:hover { color: var(--color-accent-ink); }
.svc-index .coin {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: rgba(9,49,77,0.06); color: var(--color-accent-ink);
  display: grid; place-items: center;
  transition: box-shadow .25s ease;
}
.svc-index .coin svg { width: 16px; height: 16px; }
.svc-index a:hover .coin { box-shadow: 0 0 0 1px rgba(11,211,220,0.65), 0 0 12px rgba(19,246,255,0.45); }
.svc-index .go { display: none; }
@media (max-width: 560px) { .svc-index { grid-template-columns: 1fr; max-width: 360px; } }
.ph-visual.reveal.in .svc-index a { animation: svc-in .5s cubic-bezier(.16,.84,.3,1) backwards; }
.ph-visual.reveal.in .svc-index a:nth-child(2) { animation-delay: .05s; }
.ph-visual.reveal.in .svc-index a:nth-child(3) { animation-delay: .1s; }
.ph-visual.reveal.in .svc-index a:nth-child(4) { animation-delay: .15s; }
.ph-visual.reveal.in .svc-index a:nth-child(5) { animation-delay: .2s; }
.ph-visual.reveal.in .svc-index a:nth-child(6) { animation-delay: .25s; }
.ph-visual.reveal.in .svc-index a:nth-child(7) { animation-delay: .3s; }
.ph-visual.reveal.in .svc-index a:nth-child(8) { animation-delay: .35s; }
.ph-visual.reveal.in .svc-index a:nth-child(9) { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .ph-visual.reveal.in .svc-index a { animation: none; } }

/* ═══ PAGE-HEAD VISUAL COLLAGES (inner pages) ══════════════ */
.ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; min-height: 380px; }
.ph-visual { position: relative; }
/* Compact dark dashboard for service page-heads: smaller and tighter than the homepage hero */
.ph-visual .mock.dark { max-width: 380px; margin-inline: auto; }
.ph-visual .mock.dark .sec-main { padding: 13px; gap: 10px; }
.ph-visual .mock.dark .sec-kpis { gap: 8px; }
.ph-visual .mock.dark .sec-kpi { padding: 8px 9px; }
.ph-visual .mock.dark .sec-kpi .v { font-size: 17px; }
.ph-visual .mock.dark .sec-kpi svg { height: 14px; margin-top: 5px; }
.ph-visual .mock.dark .sec-top .t { font-size: 13.5px; }
.ph-visual .mock.dark .sec-row { padding: 7px 11px; font-size: 11px; }
.ph-visual .mock.dark .mock-bar { padding: 10px 14px; }
.ph-card { background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: 16px; box-shadow: var(--shadow-elevated); }
.ph-main { width: min(430px, 94%); margin-inline: auto; padding: 18px 20px; }
.ph-main.photo { padding: 12px; }
.ph-main.photo img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 10px; display: block; }
.ph-cap { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--color-ink-muted); padding: 12px 6px 4px; }
.ph-cap svg { width: 14px; height: 14px; color: var(--color-accent-ink); flex: none; }
.ph-float { position: absolute; padding: 14px 16px; animation: float-in 1.2s cubic-bezier(.16,.84,.3,1) .45s backwards; }
.ph-float.bl { left: -8px; bottom: -34px; width: 215px; }
.ph-float.br { right: -8px; bottom: -34px; }
.ph-pill {
  position: absolute; top: -16px; right: 4px;
  background: var(--color-secondary); color: #fff; white-space: nowrap;
  font-size: 12.5px; font-weight: 600; padding: 8px 15px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  animation: float-in 1.2s cubic-bezier(.16,.84,.3,1) .65s backwards;
}
.ph-k { font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-ink-faint); }
.ph-v { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--color-ink-95); margin-top: 2px; font-variant-numeric: tabular-nums; }
.ph-spark { width: 100%; height: 26px; margin-top: 8px; display: block; }
.ph-bars { display: flex; align-items: flex-end; gap: 7px; height: 96px; margin-top: 14px; }
.ph-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(var(--color-primary), var(--color-secondary)); }
.ph-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.ph-avatars { display: flex; }
.ph-avatars img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; margin-left: -10px; }
.ph-avatars img:first-child { margin-left: 0; }
.ph-float .who { font-size: 12.5px; font-weight: 600; color: var(--color-ink-secondary); margin-top: 10px; }
@media (max-width: 1000px) {
  .ph-grid { grid-template-columns: 1fr; min-height: 0; gap: 40px; }
  /* Stacked: left-align the dashboard with the copy (was centred, which read as
     "floating in white space" under the left-aligned heading). */
  .ph-visual { width: 100%; max-width: 480px; margin-inline: 0; }
  .ph-visual .mock.dark { max-width: 100%; margin-inline: 0; }
}
@media (prefers-reduced-motion: reduce) { .ph-float, .ph-pill { animation: none; } }

/* ═══ CYBER ESSENTIALS PAGE ════════════════════════════════ */
/* Header badge card */
.ce-badge { width: min(400px, 100%); margin-inline: auto; background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: 20px; box-shadow: var(--shadow-elevated); padding: 32px; text-align: center; }
.ce-badge-mark { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 22px; background: linear-gradient(160deg, #0c3a59, var(--color-secondary)); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(9,49,77,0.25); }
.ce-badge-mark svg { width: 42px; height: 42px; color: var(--color-primary); }
.ce-badge-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.ce-badge-sub { font-size: 14px; color: var(--color-ink-muted); margin-top: 4px; }
.ce-badge-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.ce-badge-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--color-ink-secondary); }
.ce-badge-list .tick { width: 22px; height: 22px; flex: none; border-radius: 50%; background: rgba(9,49,77,0.08); color: var(--color-accent-ink); display: grid; place-items: center; }
.ce-badge-list .tick svg { width: 12px; height: 12px; }

/* Compare cards */
.ce-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ce-compare .card { display: flex; flex-direction: column; }
.ce-compare .lvl { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-accent-ink); }
.ce-compare .card.feature { border-color: rgba(9,49,77,0.25); box-shadow: var(--shadow-soft); }
.ce-compare h3 { font-size: 22px; margin-top: 8px; letter-spacing: -0.015em; }
.ce-compare .desc { margin-top: 10px; }
.ce-compare .checks { margin-top: 18px; }
.ce-compare .checks li { font-size: 14.5px; }
@media (max-width: 760px) { .ce-compare { grid-template-columns: 1fr; } }

/* Product accordion (white card on navy band) */
.ce-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.ce-section-head .h2 { color: #fff; }
.ce-section-head p { color: rgba(255,255,255,0.7); margin-top: 14px; font-size: 17px; }
.ce-panel { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 56px); align-items: center; background: var(--color-surface); border-radius: 24px; padding: clamp(22px, 3.5vw, 44px); box-shadow: 0 30px 70px rgba(2,18,28,0.4); }
.ce-art { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 320px; margin-inline: auto; border-radius: 20px; background: linear-gradient(160deg, #0c3a59, var(--color-secondary)); overflow: hidden; }
.ce-art .layer { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; opacity: 0; transform: scale(.94); transition: opacity .4s ease, transform .4s cubic-bezier(.16,.84,.3,1); }
.ce-art .layer.on { opacity: 1; transform: none; }
.ce-art .layer svg { width: 84px; height: 84px; color: var(--color-primary); }
.ce-art .layer span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.82); letter-spacing: 0.01em; }
.ce-list { border-left: 1px solid var(--color-hairline); }
.ce-item { position: relative; }
.ce-item::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 3px; background: var(--color-primary-active); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.ce-item.active::before { transform: scaleY(1); }
.ce-q { display: block; width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 16px 18px; font-family: inherit; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--color-ink-faint); transition: color .2s ease; }
.ce-q:hover { color: var(--color-ink-secondary); }
.ce-item.active .ce-q { color: var(--color-ink-95); font-size: 21px; }
.ce-a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .35s ease, opacity .3s ease; padding-inline: 18px; }
.ce-a-inner { overflow: hidden; }
.ce-item.active .ce-a { grid-template-rows: 1fr; opacity: 1; padding-bottom: 14px; }
.ce-a p { font-size: 15.5px; line-height: 1.6; color: var(--color-ink-muted); max-width: 46ch; }
.ce-credit { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; color: rgba(255,255,255,0.6); font-size: 14px; }
.ce-credit img { height: 30px; width: auto; }
@media (max-width: 820px) {
  .ce-panel { grid-template-columns: 1fr; }
  .ce-art { max-width: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  .ce-art .layer, .ce-a, .ce-item::before { transition: none; }
}

/* ═══ VOIP PAGE ════════════════════════════════════════════ */
/* Softphone card (header visual) */
.phone-card { width: min(380px, 100%); margin-inline: auto; background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: 22px; box-shadow: var(--shadow-elevated); padding: 24px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; font-weight: 600; color: var(--color-ink-muted); }
.phone-head .live { display: inline-flex; align-items: center; gap: 7px; color: var(--color-accent-ink); }
.phone-head .live i { width: 7px; height: 7px; border-radius: 50%; background: #04ff88; animation: pulse-ring 2.2s ease-out infinite; }
.phone-contact { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.phone-av { width: 52px; height: 52px; border-radius: 50%; flex: none; background: var(--color-secondary); color: #fff; display: grid; place-items: center; font-size: 17px; font-weight: 600; }
.phone-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.phone-meta { font-size: 13px; color: var(--color-ink-muted); margin-top: 2px; font-variant-numeric: tabular-nums; }
.phone-wave { display: flex; align-items: center; gap: 4px; height: 40px; margin-top: 22px; }
.phone-wave i { flex: 1; height: 100%; border-radius: 3px; background: rgba(11,211,220,0.55); transform-origin: center; animation: phone-eq 1.1s ease-in-out infinite; }
@keyframes phone-eq { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.phone-wave i:nth-child(2n) { animation-delay: .15s; }
.phone-wave i:nth-child(3n) { animation-delay: .3s; }
.phone-wave i:nth-child(4n) { animation-delay: .45s; }
.phone-controls { display: flex; justify-content: center; gap: 18px; margin-top: 22px; }
.phone-btn { width: 48px; height: 48px; border-radius: 50%; flex: none; border: 1px solid var(--color-hairline); background: var(--color-surface); color: var(--color-ink-secondary); display: grid; place-items: center; }
.phone-btn svg { width: 20px; height: 20px; }
.phone-btn.on { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary); }
.phone-btn.end { background: #e5484d; border-color: #e5484d; color: #fff; }
@media (prefers-reduced-motion: reduce) { .phone-wave i, .phone-head .live i { animation: none; } .phone-wave i { transform: scaleY(0.7); } }

/* Number-type chips (navy band) */
.num-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.num-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 22px; color: #fff; transition: border-color .2s ease, background-color .2s ease; }
.num-chip:hover { border-color: rgba(19,246,255,0.4); background: rgba(19,246,255,0.06); }
.num-chip .pfx { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--color-primary); }
.num-chip .nl { font-size: 14.5px; font-weight: 600; margin-top: 8px; }
.num-chip .nd { font-size: 13px; color: rgba(255,255,255,0.62); margin-top: 3px; line-height: 1.45; }

/* ═══ BELIEFS (about page "What we believe") ═══════════════ */
.beliefs-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.beliefs-head { position: sticky; top: 140px; }
.beliefs-head .h2 { margin-top: 14px; }
.beliefs-head .body { margin-top: 16px; max-width: 32ch; }
.beliefs-list { display: flex; flex-direction: column; }
.belief { position: relative; padding: clamp(26px, 3.5vw, 40px) 0; border-top: 1px solid var(--color-hairline); overflow: hidden; }
.belief:last-child { border-bottom: 1px solid var(--color-hairline); }
.belief-body { position: relative; z-index: 1; transition: transform .35s cubic-bezier(.16,.84,.3,1); }
.belief h3 { font-size: clamp(23px, 2.6vw, 31px); font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; transition: color .25s ease; }
.belief p { font-size: 16px; line-height: 1.6; color: var(--color-ink-muted); margin-top: 12px; max-width: 50ch; }
.belief-ic { position: absolute; right: -6px; top: 50%; width: clamp(92px, 12vw, 148px); height: auto; color: rgba(9,49,77,0.055); transform: translateY(-50%) rotate(-7deg); transition: color .35s ease, transform .4s cubic-bezier(.16,.84,.3,1); pointer-events: none; }
.belief:hover .belief-body { transform: translateX(14px); }
.belief:hover h3 { color: var(--color-accent-ink); }
.belief:hover .belief-ic { color: rgba(19,246,255,0.16); transform: translateY(-50%) rotate(0deg) scale(1.04); }
.beliefs-list.reveal.in .belief { animation: svc-in .6s cubic-bezier(.16,.84,.3,1) backwards; }
.beliefs-list.reveal.in .belief:nth-child(2) { animation-delay: .1s; }
.beliefs-list.reveal.in .belief:nth-child(3) { animation-delay: .2s; }
.beliefs-list.reveal.in .belief:nth-child(4) { animation-delay: .3s; }
@media (max-width: 900px) {
  .beliefs-grid { grid-template-columns: 1fr; }
  .beliefs-head { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .belief-body, .belief-ic { transition: none; }
  .belief:hover .belief-body { transform: none; }
  .beliefs-list.reveal.in .belief { animation: none; }
}

/* ═══ IT SUPPORT PAGE ══════════════════════════════════════ */
/* Two ways to be supported */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.way { position: relative; border: 1px solid var(--color-hairline); border-radius: var(--radius-xl); padding: clamp(26px, 3vw, 36px); background: var(--color-surface); display: flex; flex-direction: column; }
.way.flag { border-color: transparent; background:
    linear-gradient(160deg, #0c3a59, var(--color-secondary) 60%) padding-box,
    linear-gradient(135deg, rgba(19,246,255,0.6), rgba(19,246,255,0.08) 45%, rgba(4,255,136,0.25)) border-box; color: #fff; }
.way .tagline { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-accent-ink); }
.way.flag .tagline { color: var(--color-primary); }
.way h3 { font-size: clamp(22px, 2.4vw, 27px); font-weight: 700; letter-spacing: -0.02em; margin-top: 8px; }
.way .way-lead { font-size: 16px; line-height: 1.6; color: var(--color-ink-muted); margin-top: 12px; }
.way.flag .way-lead { color: rgba(255,255,255,0.78); }
.way .checks { margin-top: 22px; margin-bottom: 26px; }
.way.flag .checks .ck { background: rgba(19,246,255,0.14); color: var(--color-primary); }
.way.flag .checks .txt { color: rgba(255,255,255,0.82); }
.way.flag .checks .txt b { color: #fff; }
.way .way-foot { margin-top: auto; }
.way .price-note { font-size: 14px; color: var(--color-ink-faint); margin-bottom: 14px; }
.way.flag .price-note { color: rgba(255,255,255,0.6); }

/* Managed tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { border: 1px solid var(--color-hairline); border-radius: var(--radius-lg); padding: 28px; background: var(--color-surface); display: flex; flex-direction: column; }
.tier.signature { border-color: rgba(9,49,77,0.28); box-shadow: var(--shadow-soft); position: relative; }
.tier .tier-name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.tier .tier-for { font-size: 14px; color: var(--color-ink-muted); margin-top: 4px; min-height: 40px; }
.tier .seal-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-accent-ink); background: rgba(9,49,77,0.07); border-radius: var(--radius-full); padding: 5px 11px; margin-bottom: 14px; align-self: flex-start; }
.tier .seal-badge svg { width: 13px; height: 13px; }
.tier ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 11px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--color-ink-secondary); }
.tier li svg { width: 17px; height: 17px; color: var(--color-accent-ink); flex: none; margin-top: 2px; }
.tier .tier-cta { margin-top: 24px; }

/* The Infotech Standard (gold-standard blueprint) */
.standard { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.standard-copy h2 { color: #fff; }
.standard-copy .lead { color: rgba(255,255,255,0.74); margin-top: 16px; }
.standard-copy .body { color: rgba(255,255,255,0.62); margin-top: 14px; }
.seal { position: relative; width: min(460px, 100%); aspect-ratio: 1; margin-inline: auto; display: grid; place-items: center; }
.seal-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(19,246,255,0.3); }
.seal-ring.r2 { inset: 22px; border-color: rgba(255,255,255,0.12); }
.seal-core { width: 60%; height: 60%; border-radius: 50%; background: linear-gradient(160deg, #0c3a59, var(--color-secondary)); border: 1px solid rgba(19,246,255,0.35); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 18px 50px rgba(2,18,28,0.5); }
.seal-core svg { width: 34px; height: 34px; color: var(--color-primary); }
.seal-core .st { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-top: 10px; }
.seal-core .sy { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.seal-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 12px rgba(19,246,255,0.7); }

/* ═══ PLAN FINDER (interactive) ════════════════════════════ */
.finder { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.finder-panel { background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: var(--radius-xl); padding: clamp(24px, 3vw, 38px); min-height: 360px; }
.finder-prog { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.finder-prog .seg { height: 4px; flex: 1; border-radius: 2px; background: var(--color-hairline); overflow: hidden; }
.finder-prog .seg i { display: block; height: 100%; width: 0; background: var(--color-primary-active); border-radius: 2px; transition: width .4s cubic-bezier(.16,.84,.3,1); }
.finder-prog .seg.done i { width: 100%; }
.finder-step { font-size: 13px; font-weight: 600; color: var(--color-ink-faint); }
.finder-q { font-size: clamp(20px, 2.3vw, 26px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-top: 6px; }
.finder-opts { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.finder-opt { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; font-family: inherit; font-size: 16px; font-weight: 500; color: var(--color-ink-95); background: var(--color-surface); border: 1px solid var(--color-hairline); border-radius: var(--radius-md); padding: 16px 18px; cursor: pointer; transition: border-color .15s ease, background-color .15s ease, transform .15s ease; }
.finder-opt:hover { border-color: rgba(9,49,77,0.3); transform: translateX(3px); }
.finder-opt.sel { border-color: var(--color-primary-active); background: rgba(19,246,255,0.07); }
.finder-opt .tick { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--color-hairline); flex: none; display: grid; place-items: center; color: transparent; transition: border-color .15s ease, background-color .15s ease, color .15s ease; }
.finder-opt .tick svg { width: 12px; height: 12px; }
.finder-opt.sel .tick { border-color: var(--color-primary-active); background: var(--color-primary-active); color: var(--color-on-primary); }
.finder-back { margin-top: 22px; font-size: 14px; font-weight: 600; color: var(--color-ink-muted); background: none; border: 0; cursor: pointer; padding: 6px 0; display: inline-flex; align-items: center; gap: 6px; }
.finder-back:hover { color: var(--color-accent-ink); }
.finder-back[hidden] { display: none; }

/* Result: navy recommendation card beside the white questions */
.finder-result { background: var(--color-secondary); border-radius: var(--radius-xl); padding: clamp(24px, 3vw, 34px); color: #fff; position: sticky; top: 140px; overflow: hidden; }
.finder-result::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px circle at 80% -10%, rgba(19,246,255,0.14), transparent 60%); pointer-events: none; }
.fr-card { position: relative; z-index: 1; background: none; padding: 0; }
.fr-head { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.fr-meter { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); margin-top: 12px; overflow: hidden; }
.fr-meter i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--color-primary-active), var(--color-primary)); border-radius: 3px; transition: width .5s cubic-bezier(.16,.84,.3,1); }
.fr-title { font-size: clamp(22px, 2.6vw, 29px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.14; color: #fff; margin-top: 22px; }
.fr-title .tier { display: block; width: fit-content; background: #fff; color: var(--color-secondary); padding: 10px 20px; border-radius: 10px; margin-top: 16px; line-height: 1; }
.fr-blurb { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.72); margin-top: 16px; }
.fr-points { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.fr-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,0.86); animation: fr-in .4s cubic-bezier(.16,.84,.3,1) backwards; }
.fr-points li svg { width: 18px; height: 18px; color: var(--color-primary); flex: none; margin-top: 1px; }
@keyframes fr-in { from { opacity: 0; transform: translateY(8px); } }
.fr-cta { margin-top: 24px; width: 100%; }
.fr-cta[hidden] { display: none; }
.fr-hint { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 14px; }

/* Lead capture inside result */
.fr-form { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.fr-form[hidden] { display: none; }
.fr-form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fr-form input { font-family: inherit; font-size: 15px; color: #fff; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-md); padding: 12px 14px; width: 100%; }
.fr-form input::placeholder { color: rgba(255,255,255,0.5); }
.fr-form input:focus { outline: none; border-color: var(--color-primary-active); box-shadow: 0 0 0 3px rgba(19,246,255,0.2); }
.fr-form .btn { width: 100%; }
.fr-success[hidden] { display: none; }
.fr-success .ico { width: 52px; height: 52px; border-radius: 50%; background: rgba(19,246,255,0.15); color: var(--color-primary); display: grid; place-items: center; margin-bottom: 16px; }
.fr-success .ico svg { width: 26px; height: 26px; }
.fr-summary { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 16px; margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,0.82); line-height: 1.6; white-space: pre-line; }

@media (max-width: 900px) {
  .ways { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .standard { grid-template-columns: 1fr; gap: 40px; }
  .finder { grid-template-columns: 1fr; }
  .finder-result { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .finder-opt, .fr-meter i, .finder-prog .seg i { transition: none; }
  .fr-points li { animation: none; }
}

/* ═══ MANAGED SERVICES WHEEL (it-support header) ═══════════ */
.managed-wheel { display: block; width: 100%; max-width: 440px; height: auto; margin-inline: auto; }
.managed-wheel .wheel-hot { transition: transform .3s cubic-bezier(.16,.84,.3,1), filter .3s ease; }
.managed-wheel .wheel-hot:hover { transform: translateY(-10px); filter: drop-shadow(0 10px 16px rgba(2,18,28,0.35)); }
@media (prefers-reduced-motion: reduce) {
  .managed-wheel .wheel-hot { transition: none; }
  .managed-wheel .wheel-hot:hover { transform: none; filter: none; }
}

/* ═══ CYBER SECURITY PAGE ══════════════════════════════════ */
/* "Stopped at every step" attack-defence flow (navy band) */
.killchain { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.killchain::before { content: ""; position: absolute; top: 31px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, rgba(19,246,255,0.12), rgba(19,246,255,0.55)); }
.kc { position: relative; text-align: center; }
.kc-node { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto; background: linear-gradient(160deg, #0c3a59, var(--color-secondary)); border: 1px solid rgba(19,246,255,0.45); display: grid; place-items: center; color: var(--color-primary); position: relative; z-index: 1; }
.kc-node svg { width: 27px; height: 27px; }
.kc-step { font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 16px; }
.kc-title { color: #fff; font-weight: 700; font-size: 16.5px; letter-spacing: -0.01em; margin-top: 4px; }
.kc-text { color: rgba(255,255,255,0.66); font-size: 13.5px; line-height: 1.5; margin-top: 8px; max-width: 30ch; margin-inline: auto; min-height: 2lh; }
.kc-tag { display: inline-flex; align-items: center; margin-top: 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; padding: 4px 11px; border-radius: var(--radius-full); background: rgba(19,246,255,0.07); border: 1px solid rgba(19,246,255,0.20); color: rgba(255,255,255,0.90); }
.kc-tag .pulse { display: none; }
@media (max-width: 820px) { .killchain { grid-template-columns: 1fr 1fr; gap: 32px 20px; } .killchain::before { display: none; } }
@media (max-width: 480px) { .killchain { grid-template-columns: 1fr; } }

/* ═══ Google rating badge ═══ */
.g-rating { display: inline-flex; align-items: center; gap: 14px; padding: 13px 18px; border: 1px solid var(--color-hairline); border-radius: var(--radius-lg); background: #fff; text-decoration: none; box-shadow: 0 1px 2px rgba(9,49,77,0.04); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.g-rating:hover { border-color: #d4dde4; box-shadow: 0 6px 18px rgba(9,49,77,0.09); transform: translateY(-1px); }
.g-rating .g-logo { width: 28px; height: 28px; flex: none; }
.g-rating .g-main { display: flex; flex-direction: column; gap: 3px; }
.g-rating .g-top { display: flex; align-items: center; gap: 8px; }
.g-rating .g-score { font-size: 18px; font-weight: 700; color: var(--color-ink); letter-spacing: -0.01em; line-height: 1; }
.g-rating .g-stars { display: inline-flex; gap: 1px; color: #fbbc04; }
.g-rating .g-stars svg { width: 15px; height: 15px; display: block; }
.g-rating .g-sub { font-size: 12.5px; color: var(--color-ink-muted); line-height: 1.2; }

/* Header radar sizing on the security page */
.sec-radar { width: 100%; max-width: 380px; margin-inline: auto; }
.sec-radar .radar { width: min(300px, 78%); }
.sec-radar .radar-stat { text-align: center; }
.sec-radar .gn { font-size: clamp(40px, 5vw, 52px); }

/* ═══ FOOTER ═══════════════════════════════════════════════ */
.footer { background: var(--color-canvas-soft); border-top: 1px solid var(--color-hairline); padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; }
.footer-brand { max-width: 280px; }
.footer-brand .body { margin-top: 14px; font-size: 15px; }
.footer-col h3 { font-size: 14px; font-weight: 600; color: var(--color-ink-95); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; padding-left: 0; }
.footer-col a { font-size: 15px; color: var(--color-ink-secondary); }
.footer-col a:hover { color: var(--color-accent-ink); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--color-hairline); }
.footer-bottom .fine { font-size: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--radius-md); border: 1px solid var(--color-hairline); display: grid; place-items: center; color: var(--color-ink-muted); background: var(--color-surface); }
.footer-social a:hover { color: var(--color-accent-ink); border-color: var(--color-accent-ink); }
.footer-social svg { width: 18px; height: 18px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  /* Collapse the nav to the hamburger here. The full 4-link nav fits comfortably above
     this width, so collapsing earlier just leaves a near-empty header. */
  .topbar-right { display: none; }
  .topbar { position: static; }
  .nav { top: 0; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost-dark { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: auto; }
  /* Let "Learn more" flow inline after the message instead of dropping to its own line as a flex item. */
  .topbar .msg { display: block; }
  .topbar .msg .more { margin-left: 8px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  /* Stack the hero here; below this a 2-col scaled dashboard gets too small, so it goes
     full-width and the stage scales up to fill it. */
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .row .btn { flex: 1 1 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mock-body { min-height: 280px; }
  .nav-cta .btn { padding: 8px 14px; min-height: 40px; font-size: 14px; }
}
@media (max-width: 400px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ═══ VIDEO FEATURE (click-to-play player) ═══════════════════ */
.video-player {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1;
  width: 100%; max-width: 432px; margin-inline: auto;
  background: #08263b; border: 1px solid rgba(19,246,255,0.22);
  box-shadow: 0 30px 70px rgba(2,18,28,0.55);
}
.vp-media { width: 100%; height: 100%; object-fit: cover; object-position: center; background: #08263b; display: block; }
.vp-cover {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  text-align: left; color: #fff; font: inherit;
  background:
    radial-gradient(120% 90% at 50% 38%, rgba(19,246,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(8,38,59,0.30) 0%, rgba(8,38,59,0.18) 42%, rgba(5,23,36,0.88) 100%);
  transition: opacity .4s ease, visibility .4s ease;
}
.vp-tag {
  position: absolute; top: 22px; left: 22px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-primary);
  background: rgba(19,246,255,0.10); border: 1px solid rgba(19,246,255,0.32);
  padding: 6px 13px; border-radius: var(--radius-full);
}
.vp-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: var(--color-primary); color: var(--color-secondary);
  box-shadow: 0 12px 34px rgba(19,246,255,0.38); transition: transform .3s cubic-bezier(.16,.84,.3,1), box-shadow .3s ease;
}
.vp-play svg { width: 30px; height: 30px; margin-left: 4px; }
.vp-play::after {
  content: ""; position: absolute; inset: -9px; border-radius: 50%;
  border: 1px solid rgba(19,246,255,0.45); animation: vp-pulse 2.6s ease-out infinite;
}
.vp-cover:hover .vp-play, .vp-cover:focus-visible .vp-play { transform: translate(-50%,-50%) scale(1.09); box-shadow: 0 16px 44px rgba(19,246,255,0.55); }
.vp-caption { position: relative; font-size: clamp(18px, 2.1vw, 23px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; }
.video-player.playing .vp-cover { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes vp-pulse { 0% { transform: scale(0.92); opacity: 0.7; } 100% { transform: scale(1.55); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .vp-play::after { animation: none; }
  .vp-cover, .vp-play { transition: none; }
  .vp-cover:hover .vp-play, .vp-cover:focus-visible .vp-play { transform: translate(-50%,-50%); }
}
@media (max-width: 600px) {
  .vp-cover { padding: 20px; }
  .vp-play { width: 60px; height: 60px; }
  .vp-play svg { width: 24px; height: 24px; }
  .vp-caption { font-size: 18px; }
}

/* ═══ CONTACT MAP ════════════════════════════════════════════ */
.map-wrap {
  position: relative; margin-top: 34px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--color-hairline); box-shadow: var(--shadow-elevated);
}
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; }
.map-card {
  position: absolute; top: 78px; left: 24px; max-width: 310px;
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: 16px; box-shadow: var(--shadow-elevated); padding: 24px;
}
.map-card .k { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-accent-ink); }
.map-card .addr { margin-top: 10px; font-size: 16px; font-weight: 600; line-height: 1.45; color: var(--color-ink-95); }
.map-card .w3w { margin-top: 8px; font-size: 13px; }
.map-card .w3w a { color: var(--color-ink-muted); }
.map-card .btn { margin-top: 18px; width: 100%; }
@media (max-width: 640px) {
  .map-wrap iframe { height: 320px; }
  .map-card { position: static; max-width: none; border: 0; border-top: 1px solid var(--color-hairline); border-radius: 0; box-shadow: none; }
}
