:root {
  --blue-950: #051b3e;
  --blue-900: #062550;
  --blue-800: #073a7f;
  --blue-700: #0755c7;
  --blue-600: #0a6ee8;
  --blue-500: #1888ff;
  --blue-100: #eaf4ff;
  --blue-50: #f4f9ff;
  --ink: #0a1729;
  --text: #324158;
  --muted: #68768a;
  --line: #dce6f2;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --success: #0b8a5f;
  --shadow-sm: 0 10px 30px rgba(17, 44, 83, 0.08);
  --shadow-md: 0 24px 70px rgba(14, 42, 82, 0.14);
  --shadow-lg: 0 35px 90px rgba(3, 24, 55, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.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;
}
.skip-link {
  position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px;
  color: #fff; background: var(--blue-700); border-radius: 8px;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: 84px;
  background: rgba(255, 255, 255, 0.92); border-bottom: 1px solid rgba(216, 228, 241, 0.7);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { height: 74px; background: rgba(255,255,255,.97); box-shadow: 0 8px 30px rgba(11, 34, 67, .08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; width: 278px; height: 64px; overflow: hidden; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; color: #23344c; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 28px 0; }
.primary-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px;
  background: var(--blue-600); transition: right .25s ease;
}
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after { right: 0; }
.nav-cta { padding: 11px 19px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); border-radius: 10px; box-shadow: 0 9px 22px rgba(7, 85, 199, .25); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(7, 85, 199, .32); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

/* Type and buttons */
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 6.2vw, 76px); font-weight: 780; }
h2 { font-size: clamp(36px, 4.1vw, 54px); font-weight: 760; }
h3 { font-size: 21px; font-weight: 740; }
p { margin: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--blue-700); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #8fc6ff; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 13px 23px; border: 1px solid transparent; border-radius: 11px;
  font-size: 15px; font-weight: 780; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 14px 30px rgba(7, 85, 199, .27); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(7, 85, 199, .34); }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: #b9cde3; }
.button-secondary svg { width: 18px; height: 18px; color: var(--blue-700); }
.button-light { color: var(--blue-950); background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.button.full { width: 100%; }
.section-heading { max-width: 750px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-size: 18px; }

/* Hero */
.hero {
  position: relative; min-height: 830px; padding-top: 184px; padding-bottom: 100px; overflow: hidden;
  background:
    radial-gradient(circle at 88% 28%, rgba(24, 136, 255, .1), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fe 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .28; pointer-events: none;
  background-image: linear-gradient(rgba(7,85,199,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(7,85,199,.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -170px; top: 120px; background: radial-gradient(circle, rgba(24,136,255,.14), transparent 67%); }
.hero-glow-two { width: 300px; height: 300px; left: -180px; top: 420px; background: radial-gradient(circle, rgba(7,85,199,.1), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.hero-copy { max-width: 680px; }
.hero h1 span { color: var(--blue-700); }
.hero-lead { max-width: 650px; margin-top: 28px; color: #43536a; font-size: 20px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; padding-top: 28px; border-top: 1px solid #d7e3ef; }
.hero-trust div { min-width: 0; }
.hero-trust strong { display: block; color: var(--ink); font-size: 15px; }
.hero-trust span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.tech-panel {
  position: relative; width: min(100%, 520px); padding: 26px; color: #fff;
  background: linear-gradient(155deg, #07234c 0%, #06182f 58%, #0a2d62 100%);
  border: 1px solid rgba(255,255,255,.12); border-radius: 28px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.tech-panel::before {
  content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; right: -100px; top: -120px;
  background: radial-gradient(circle, rgba(24,136,255,.38), transparent 68%);
}
.panel-top { position: relative; display: flex; align-items: center; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 12px; font-weight: 700; color: #b7c9e2; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #28d797; box-shadow: 0 0 0 5px rgba(40,215,151,.12); }
.panel-top .online { margin-left: auto; padding: 5px 9px; color: #74e9bb; background: rgba(40,215,151,.1); border: 1px solid rgba(40,215,151,.18); border-radius: 99px; }
.panel-score { position: relative; display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 22px; padding: 30px 0; }
.score-ring { width: 108px; height: 108px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: conic-gradient(#2c9cff 0 356deg, rgba(255,255,255,.12) 356deg 360deg); position: relative; }
.score-ring::after { content: ""; position: absolute; inset: 8px; background: #092451; border-radius: 50%; }
.score-ring span, .score-ring small { position: relative; z-index: 2; color: #fff; }
.score-ring span { font-size: 37px; font-weight: 800; letter-spacing: -.05em; }
.score-ring small { align-self: center; margin-top: 12px; font-size: 12px; }
.panel-score strong { display: block; font-size: 22px; letter-spacing: -.025em; }
.panel-score p { margin-top: 8px; color: #9fb5d0; font-size: 13px; line-height: 1.55; }
.metric-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.metric-card { display: flex; align-items: center; gap: 12px; min-height: 82px; padding: 14px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.metric-card:hover { background: rgba(255,255,255,.09); }
.metric-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(24,136,255,.16); color: #66b6ff; }
.metric-icon svg { width: 21px; height: 21px; }
.metric-card strong { display: block; font-size: 12px; line-height: 1.3; }
.metric-card small { display: block; margin-top: 3px; color: #8ea6c3; font-size: 10px; }
.floating-badge { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid #dce7f3; border-radius: 13px; box-shadow: var(--shadow-md); font-size: 12px; font-weight: 750; }
.floating-badge span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: var(--blue-600); font-size: 12px; }
.floating-badge-one { left: -24px; bottom: 16px; }
.floating-badge-two { right: -22px; top: 78px; }

/* Trust bar */
.trust-bar { position: relative; z-index: 3; background: #fff; border-top: 1px solid #e5edf5; border-bottom: 1px solid #e5edf5; }
.trust-bar-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #607087; font-size: 13px; }
.trust-bar-inner > span { color: var(--blue-700); font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.trust-bar-inner strong { color: #495a70; font-size: 13px; font-weight: 700; }

/* Services */
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; padding: 31px 29px 27px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 8px 28px rgba(13, 44, 82, .045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); transition: width .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #c5d8ed; box-shadow: 0 22px 50px rgba(13, 44, 82, .11); }
.service-card:hover::after { width: 100%; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 23px; color: var(--blue-700); background: linear-gradient(145deg, var(--blue-50), #e0efff); border-radius: 15px; }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { min-height: 126px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card a { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--blue-700); font-size: 13px; font-weight: 800; }
.service-card a span { transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(4px); }



/* Capabilities */
.capabilities-section { background: var(--soft); border-top: 1px solid #e7eef6; }
.capabilities-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 56px; }
.capabilities-heading h2 { max-width: 720px; }
.capabilities-heading > p { max-width: 520px; padding-bottom: 7px; color: var(--muted); font-size: 17px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.capability-card { position: relative; min-height: 330px; padding: 33px 30px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 8px 30px rgba(13,44,82,.045); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.capability-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--blue-500), var(--blue-700)); opacity: .9; }
.capability-card:hover { transform: translateY(-5px); border-color: #c8d9eb; box-shadow: 0 22px 50px rgba(13,44,82,.1); }
.capability-number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 21px; color: var(--blue-700); background: var(--blue-50); border: 1px solid #d5e7fa; border-radius: 12px; font-size: 12px; font-weight: 850; }
.capability-card h3 { margin-bottom: 18px; }
.capability-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.capability-card li { position: relative; padding-left: 20px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.capability-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600); transform: translateY(-50%); }
.technology-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: center; margin-top: 30px; padding: 34px 37px; color: #d8e5f4; background: linear-gradient(140deg, #051a39, #073c80); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.technology-panel-copy span, .technology-panel-copy strong { display: block; }
.technology-panel-copy span { margin-bottom: 8px; color: #83c5ff; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.technology-panel-copy strong { color: #fff; font-size: 19px; line-height: 1.35; }
.technology-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.technology-tags span { padding: 7px 11px; color: #d5e6f8; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: 11px; font-weight: 700; }

/* Sector experience */
.sectors-section { background: #fff; }
.sectors-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.sectors-copy > p { max-width: 620px; margin: 24px 0 31px; color: var(--muted); font-size: 17px; }
.sector-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sector-list > div { min-height: 190px; padding: 27px 25px; background: var(--soft); border: 1px solid var(--line); border-radius: 17px; }
.sector-list span { display: block; margin-bottom: 19px; color: var(--blue-700); font-size: 12px; font-weight: 850; }
.sector-list strong { display: block; color: var(--ink); font-size: 16px; }
.sector-list p { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.6; }

/* Four-step process */
.process-grid.four-steps { grid-template-columns: repeat(4, 1fr); gap: 25px; }
.process-grid.four-steps::before { left: 12.5%; right: 12.5%; }

/* Business section */
.business-section { position: relative; color: #d8e4f4; background: linear-gradient(145deg, #04162f 0%, #062a5b 56%, #053d87 100%); overflow: hidden; }
.business-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px); background-size: 28px 28px; opacity: .27; }
.business-section::after { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; right: -260px; top: -300px; background: radial-gradient(circle, rgba(36,145,255,.3), transparent 68%); }
.split-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 95px; }
.split-copy h2 { color: #fff; }
.split-copy > p { margin-top: 25px; color: #bfd0e6; font-size: 17px; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 28px; margin: 35px 0 38px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 13px; }
.check-list li > span { flex: 0 0 auto; width: 27px; height: 27px; display: grid; place-items: center; color: #07234c; background: #77caff; border-radius: 50%; font-size: 13px; font-weight: 900; }
.check-list strong, .check-list small { display: block; }
.check-list strong { color: #fff; font-size: 14px; }
.check-list small { margin-top: 4px; color: #9fb7d5; font-size: 12px; line-height: 1.5; }
.business-visual { position: relative; min-height: 470px; }
.network-core { position: absolute; z-index: 3; left: 50%; top: 50%; width: 150px; height: 150px; display: grid; place-items: center; transform: translate(-50%, -50%); background: #fff; border: 10px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 28px 70px rgba(0,0,0,.34); }
.network-core img { width: 122px; height: 122px; object-fit: contain; }
.network-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(126, 196, 255, .28); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 330px; height: 330px; }
.orbit-two { width: 455px; height: 455px; border-style: dashed; }
.network-node { position: absolute; z-index: 4; width: 96px; height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: rgba(8, 38, 79, .94); border: 1px solid rgba(124, 194, 255, .28); border-radius: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.26); }
.network-node span { font-size: 24px; font-weight: 850; color: #65b8ff; line-height: 1; }
.network-node small { margin-top: 7px; color: #b4cbe5; font-size: 10px; font-weight: 700; }
.node-one { left: 5%; top: 17%; }
.node-two { right: 4%; top: 13%; }
.node-three { left: 11%; bottom: 8%; }
.node-four { right: 7%; bottom: 7%; }

/* Security */
.security-section { background: var(--blue-50); }
.security-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; }
.security-copy > p { max-width: 680px; margin-top: 23px; color: var(--muted); font-size: 17px; }
.security-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 34px; margin-top: 38px; }
.security-points > div { position: relative; padding-left: 48px; }
.security-points span { position: absolute; left: 0; top: 0; width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue-700); background: #fff; border: 1px solid #cfe1f5; border-radius: 10px; font-size: 11px; font-weight: 850; }
.security-points strong, .security-points small { display: block; }
.security-points strong { color: var(--ink); font-size: 15px; }
.security-points small { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.security-card { position: relative; padding: 42px 38px 38px; color: #c8d9eb; background: linear-gradient(155deg, #071e41, #063878); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.security-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(38,156,255,.42), transparent 68%); }
.security-card-icon { position: relative; width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 26px; color: #fff; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.15); border-radius: 17px; }
.security-card-icon svg { width: 34px; height: 34px; }
.card-label { position: relative; color: #79c1ff; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.security-card h3 { position: relative; margin-top: 11px; color: #fff; font-size: 30px; }
.security-card p { position: relative; margin: 17px 0 28px; color: #b5c9df; font-size: 14px; }

/* About */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 85px; align-items: start; }
.about-copy > p { max-width: 720px; margin-top: 22px; color: var(--muted); font-size: 16px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 37px; }
.about-values > div { padding-top: 18px; border-top: 2px solid var(--blue-600); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--ink); font-size: 14px; }
.about-values span { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.experience-card { padding: 42px 38px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.experience-number { display: block; color: var(--blue-700); font-size: 82px; font-weight: 850; line-height: .9; letter-spacing: -.08em; }
.experience-number span { font-size: 35px; vertical-align: top; }
.experience-card > strong { display: block; margin-top: 20px; color: var(--ink); font-size: 21px; }
.experience-card > p { margin-top: 13px; color: var(--muted); font-size: 13px; }
.experience-line { height: 1px; margin: 28px 0; background: var(--line); }
.experience-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.experience-card li { position: relative; padding-left: 20px; color: #4f6076; font-size: 13px; }
.experience-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; background: var(--blue-600); border-radius: 50%; transform: translateY(-50%); }

/* Process */
.process-section { background: var(--soft); border-top: 1px solid #e9eff6; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.process-grid::before { content: ""; position: absolute; left: 16.66%; right: 16.66%; top: 31px; height: 1px; background: #c8d9eb; }
.process-step { position: relative; text-align: center; }
.process-step > span { position: relative; z-index: 2; width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 22px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); border: 7px solid var(--soft); border-radius: 50%; box-shadow: 0 10px 26px rgba(7,85,199,.22); font-weight: 850; }
.process-step h3 { font-size: 19px; }
.process-step p { max-width: 310px; margin: 11px auto 0; color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.faq-intro { position: sticky; top: 115px; align-self: start; }
.faq-intro p { margin-top: 20px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; color: var(--ink); font-size: 17px; font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue-700); background: var(--blue-50); border-radius: 50%; font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 58px 25px 4px; color: var(--muted); font-size: 14px; }

/* Contact */
.contact-section { position: relative; color: #d7e4f4; background: linear-gradient(140deg, #041329 0%, #06234a 55%, #073d80 100%); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 50px 50px; }
.contact-section::after { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; left: -360px; bottom: -460px; background: radial-gradient(circle, rgba(30,143,255,.32), transparent 68%); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { margin-top: 22px; color: #afc3dc; font-size: 17px; }
.contact-details { display: grid; gap: 14px; margin-top: 36px; }
.contact-details > a, .contact-location { display: flex; align-items: center; gap: 14px; padding: 13px 15px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; transition: background .2s ease, transform .2s ease; }
.contact-details > a:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.contact-details > a > span, .contact-location > span { width: 42px; height: 42px; display: grid; place-items: center; color: #83c6ff; background: rgba(39,151,255,.13); border-radius: 11px; }
.contact-details svg { width: 22px; height: 22px; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { color: #86a1bf; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { color: #fff; font-size: 14px; }
.contact-form-card { padding: 37px; color: var(--text); background: #fff; border-radius: var(--radius-lg); box-shadow: 0 35px 90px rgba(0,0,0,.27); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; color: #23344b; font-size: 12px; font-weight: 750; }
.field label span { color: #d53e55; }
.field input, .field select, .field textarea { width: 100%; color: var(--ink); background: #f9fbfd; border: 1px solid #d7e2ee; border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input, .field select { height: 49px; padding: 0 13px; }
.field textarea { min-height: 132px; padding: 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(10,110,232,.11); }
.field textarea::placeholder { color: #96a2b2; }
.form-privacy { margin-top: 13px; color: #7b8797; font-size: 10px; text-align: center; }
.form-privacy a { color: var(--blue-700); text-decoration: underline; }
.form-notice { margin-bottom: 20px; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.form-notice.success { color: #075c41; background: #e8f8f1; border: 1px solid #bdebd8; }
.form-notice.error { color: #9a2b3c; background: #fff0f2; border: 1px solid #f3c9cf; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Footer */
.site-footer { color: #95a4b8; background: #030d1c; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(4, 1fr); gap: 45px; padding: 70px 0 52px; }
.footer-brand img { width: 245px; padding: 5px 10px; background: #fff; border-radius: 10px; }
.footer-brand p { margin-top: 17px; color: #67809e; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid strong { margin-bottom: 7px; color: #fff; font-size: 13px; }
.footer-grid a, .footer-grid span { font-size: 12px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.footer-bottom a { color: #bdc8d6; }
.compact-footer .footer-bottom { border-top: 0; }

/* Legal */
.legal-page { background: var(--soft); }
.legal-page .site-header { position: relative; }
.legal-page main { min-height: calc(100vh - 180px); padding-top: 76px; }
.legal-back { min-height: 44px; padding: 10px 18px; }
.legal-content { max-width: 820px; padding: 55px 65px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-content h1 { font-size: 52px; }
.legal-content h2 { margin-top: 34px; font-size: 24px; }
.legal-content p { margin-top: 15px; color: var(--muted); }
.legal-content a { color: var(--blue-700); text-decoration: underline; }
.legal-updated { font-size: 13px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.service-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(5), .service-grid .reveal:nth-child(8) { transition-delay: .08s; }
.service-grid .reveal:nth-child(6), .service-grid .reveal:nth-child(9) { transition-delay: .16s; }
.capability-grid .reveal:nth-child(2), .capability-grid .reveal:nth-child(5) { transition-delay: .08s; }
.capability-grid .reveal:nth-child(3), .capability-grid .reveal:nth-child(6) { transition-delay: .16s; }

/* Responsive */
@media (max-width: 1080px) {
  .section-pad { padding: 95px 0; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(46px, 6vw, 66px); }
  .floating-badge-two { right: 0; }
  .service-card { padding: 27px 24px; }
  .split-grid { gap: 55px; }
  .contact-grid { gap: 55px; }
  .capabilities-heading { gap: 45px; }
  .sectors-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .site-header, .site-header.scrolled { height: 72px; }
  .brand { width: 235px; height: 55px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 72px 0 auto 0; display: grid; gap: 0; padding: 16px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(10, 29, 56, .12); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s ease; }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > a:not(.nav-cta) { padding: 14px 5px; border-bottom: 1px solid #edf2f7; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 14px; text-align: center; }

  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid, .split-grid, .security-grid, .about-grid, .faq-grid, .contact-grid, .capabilities-heading, .sectors-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 65px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 500px; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: flex-start; padding: 24px 0; }
  .trust-bar-inner > span { width: 100%; }
  .service-grid, .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card p { min-height: auto; }
  .split-grid { gap: 75px; }
  .business-visual { order: 2; max-width: 550px; width: 100%; margin: 0 auto; }
  .security-grid { gap: 55px; }
  .security-card { max-width: 600px; }
  .about-grid { gap: 55px; }
  .experience-card { max-width: 620px; }
  .faq-grid { gap: 45px; }
  .faq-intro { position: static; }
  .contact-grid { gap: 55px; }
  .contact-copy { max-width: 650px; }
  .technology-panel { grid-template-columns: 1fr; gap: 24px; }
  .process-grid.four-steps { grid-template-columns: repeat(2, 1fr); gap: 38px; }
  .process-grid.four-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 76px 0; }
  h2 { font-size: 38px; }
  .brand { width: 205px; }
  .hero { padding-top: 120px; padding-bottom: 78px; }
  .hero h1 { font-size: 46px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 14px; }
  .hero-trust div { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 10px; }
  .hero-trust span { margin: 0; }
  .hero-visual { min-height: 450px; }
  .tech-panel { padding: 19px; border-radius: 22px; }
  .panel-score { grid-template-columns: 92px 1fr; gap: 15px; }
  .score-ring { width: 90px; height: 90px; }
  .score-ring span { font-size: 31px; }
  .metric-grid { gap: 8px; }
  .metric-card { min-height: 74px; padding: 10px; gap: 9px; }
  .metric-icon { width: 34px; height: 34px; }
  .floating-badge { padding: 9px 11px; font-size: 10px; }
  .floating-badge-one { left: -2px; bottom: 2px; }
  .floating-badge-two { right: -2px; top: 35px; }
  .trust-bar-inner { gap: 12px 20px; }
  .trust-bar-inner strong { width: calc(50% - 10px); }
  .service-grid, .capability-grid, .sector-list { grid-template-columns: 1fr; }
  .check-list, .security-points, .about-values { grid-template-columns: 1fr; }
  .business-visual { min-height: 390px; transform: scale(.88); margin-top: -25px; margin-bottom: -25px; }
  .network-orbit.orbit-two { width: 390px; height: 390px; }
  .network-orbit.orbit-one { width: 285px; height: 285px; }
  .network-core { width: 130px; height: 130px; }
  .network-core img { width: 106px; height: 106px; }
  .network-node { width: 84px; height: 84px; }
  .experience-card, .security-card, .contact-form-card { padding: 30px 24px; border-radius: 22px; }
  .capability-card { min-height: auto; }
  .technology-panel { padding: 28px 24px; }
  .sector-list > div { min-height: auto; }
  .process-grid, .process-grid.four-steps { grid-template-columns: 1fr; gap: 35px; }
  .process-grid::before { display: none; }
  .process-step { display: grid; grid-template-columns: 62px 1fr; gap: 0 15px; text-align: left; }
  .process-step > span { grid-row: 1 / 3; margin: 0; }
  .process-step p { margin: 8px 0 0; }
  .faq-list summary { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 25px; padding-top: 55px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; gap: 20px; }
  .legal-content { padding: 38px 25px; }
  .legal-content h1 { font-size: 42px; }
  .legal-back { font-size: 12px; min-height: 40px; padding: 8px 12px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 40px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 58px; }
  .hero-visual { min-height: 545px; }
  .floating-badge-two { top: 15px; }
  .trust-bar-inner strong { width: 100%; }
  .business-visual { transform: scale(.75); margin: -50px -10% -50px; width: 120%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child, .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Multi-page SEO site additions */
.primary-nav a[aria-current="page"]::after { right: 0 !important; }
.section-pad-sm { padding: 72px 0; }
.soft-section { background: var(--soft); border-top: 1px solid #e7eef6; border-bottom: 1px solid #e7eef6; }
.page-hero { position: relative; overflow: hidden; padding: 170px 0 95px; background: linear-gradient(180deg,#fbfdff 0%,#eef6ff 100%); }
.page-hero.compact { padding-bottom: 72px; }
.page-hero::before { content:""; position:absolute; inset:0; opacity:.22; background-image:linear-gradient(rgba(7,85,199,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(7,85,199,.08) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(to bottom,#000,transparent 95%); }
.page-hero-glow { position:absolute; width:580px; height:580px; right:-220px; top:-210px; border-radius:50%; background:radial-gradient(circle,rgba(24,136,255,.22),transparent 67%); }
.page-hero-grid { position:relative; display:grid; grid-template-columns:1.12fr .58fr; gap:80px; align-items:center; }
.page-hero-copy { position:relative; z-index:1; }
.page-hero h1 { max-width:880px; font-size:clamp(46px,5.6vw,70px); }
.page-hero-copy > p, .page-hero > .container > p { max-width:760px; margin-top:25px; color:#43536a; font-size:20px; line-height:1.7; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; color:var(--muted); font-size:13px; }
.breadcrumbs a { color:var(--blue-700); font-weight:700; }
.page-hero-card { position:relative; padding:34px; color:#d9e7f7; background:linear-gradient(145deg,#051a39,#073c80); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-md); box-shadow:var(--shadow-md); }
.page-hero-card .card-label { display:block; margin-bottom:12px; color:#83c5ff; font-size:11px; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.page-hero-card > strong { display:block; color:#fff; font-size:23px; line-height:1.35; }
.page-hero-card p { margin-top:15px; color:#bad0e9; font-size:14px; }
.page-hero-card ul { display:grid; gap:10px; margin:24px 0 0; padding:20px 0 0; border-top:1px solid rgba(255,255,255,.12); list-style:none; }
.page-hero-card li { position:relative; padding-left:20px; font-size:13px; }
.page-hero-card li::before { content:"✓"; position:absolute; left:0; color:#75d9b3; font-weight:900; }
.content-grid { display:grid; grid-template-columns:1fr 360px; gap:80px; align-items:start; }
.prose { max-width:780px; }
.prose h2 { margin-bottom:25px; }
.prose h3 { margin:35px 0 18px; font-size:25px; }
.prose p { margin-top:18px; color:var(--muted); font-size:17px; }
.page-check-list { display:grid; gap:13px; margin:22px 0 0; padding:0; list-style:none; }
.page-check-list li { display:flex; gap:13px; align-items:flex-start; padding:13px 15px; background:#fff; border:1px solid var(--line); border-radius:12px; color:#405068; }
.page-check-list li > span { flex:0 0 auto; width:24px; height:24px; display:grid; place-items:center; color:#fff; background:var(--blue-700); border-radius:50%; font-size:12px; font-weight:900; }
.side-panel { position:sticky; top:110px; padding:30px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
.side-panel > span { display:block; color:var(--blue-700); font-size:11px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.side-panel > strong { display:block; margin-top:10px; color:var(--ink); font-size:23px; line-height:1.35; }
.side-panel p { margin-top:15px; color:var(--muted); font-size:14px; }
.side-panel a { display:inline-block; margin-top:22px; color:var(--blue-700); font-size:13px; font-weight:800; }
.side-panel hr { margin:25px 0; border:0; border-top:1px solid var(--line); }
.plain-list { display:grid; gap:8px; margin:18px 0 0; padding:0; list-style:none; color:#506079; font-size:14px; }
.plain-list li { padding-bottom:8px; border-bottom:1px solid #edf2f7; }
.detail-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.detail-card { min-height:260px; padding:30px 28px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); box-shadow:0 8px 28px rgba(13,44,82,.045); }
.detail-card > span { display:inline-grid; place-items:center; width:40px; height:40px; margin-bottom:22px; color:var(--blue-700); background:var(--blue-50); border-radius:11px; font-size:11px; font-weight:850; }
.detail-card h3 { margin-bottom:13px; }
.detail-card p { color:var(--muted); font-size:14px; }
.related-section { background:#fff; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.related-card { min-height:220px; padding:30px; background:var(--soft); border:1px solid var(--line); border-radius:var(--radius-md); transition:.2s ease; }
.related-card:hover { transform:translateY(-4px); border-color:#bfd3ea; box-shadow:var(--shadow-sm); }
.related-card strong { display:block; color:var(--ink); font-size:21px; line-height:1.3; }
.related-card p { margin-top:13px; color:var(--muted); font-size:14px; }
.related-card > span { display:block; margin-top:24px; color:var(--blue-700); font-size:13px; font-weight:800; }
.page-cta { color:#fff; background:linear-gradient(135deg,#04162f,#063d83); }
.page-cta-inner { display:flex; align-items:center; justify-content:space-between; gap:50px; }
.page-cta span { color:#8fc6ff; font-size:12px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.page-cta h2 { max-width:850px; margin-top:8px; color:#fff; font-size:clamp(28px,3.5vw,44px); }
.case-note { max-width:900px; margin-bottom:32px; padding:22px 25px; background:#edf6ff; border:1px solid #cfe4fb; border-radius:15px; }
.case-note strong { color:var(--ink); } .case-note p { margin-top:7px; color:var(--muted); font-size:14px; }
.case-study-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.case-study-card { min-height:340px; padding:36px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
.case-study-card > span { color:var(--blue-700); font-size:11px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.case-study-card h2 { margin-top:18px; font-size:30px; }
.case-study-card p { margin-top:19px; color:var(--muted); }
.case-study-card small { display:block; margin-top:28px; padding-top:18px; border-top:1px solid var(--line); color:#506079; font-weight:700; }
.utility-page { min-height:100vh; display:grid; place-items:center; padding:150px 0 90px; background:linear-gradient(180deg,#f8fbff,#edf5ff); }
.utility-card { max-width:760px; padding:52px; text-align:center; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.utility-card > img.utility-logo {
  width: min(310px, 78%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto 30px;
}
.utility-card .eyebrow { justify-content:center; }
.utility-card h1 { font-size:clamp(38px,5vw,58px); }
.utility-card > p { max-width:600px; margin:22px auto 0; color:var(--muted); font-size:18px; }
.utility-card .hero-actions { justify-content:center; }
.legal-copy { max-width:850px; }
.legal-copy h2 { margin:38px 0 12px; font-size:28px; }
.legal-copy h2:first-child { margin-top:0; }
.legal-copy p { margin-top:12px; color:var(--muted); }
.legal-copy a { color:var(--blue-700); text-decoration:underline; }
.form-status { min-height:1.4em; margin-top:10px; color:var(--muted); font-size:12px; }
button:disabled { opacity:.65; cursor:wait; transform:none !important; }
@media (max-width: 1000px) { .page-hero-grid,.content-grid { grid-template-columns:1fr; gap:45px; } .page-hero-card { max-width:620px; } .side-panel { position:static; max-width:620px; } .detail-card-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 760px) { .page-hero { padding:135px 0 70px; } .page-hero-copy > p,.page-hero > .container > p { font-size:17px; } .detail-card-grid,.related-grid,.case-study-grid { grid-template-columns:1fr; } .page-cta-inner { flex-direction:column; align-items:flex-start; } .utility-card { padding:35px 24px; } .utility-card > img.utility-logo { width:min(260px,82%); margin-bottom:24px; } }
