@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #06101a;
  --ink-2: #0a1927;
  --ink-3: #10283d;
  --steel: #637687;
  --muted: #708292;
  --line: #dbe3e9;
  --paper: #f4f7f9;
  --white: #ffffff;
  --blue: #1387df;
  --blue-bright: #47b6ff;
  --blue-pale: #e5f4ff;
  --green: #19a877;
  --shadow-sm: 0 10px 35px rgba(5, 20, 32, .08);
  --shadow-lg: 0 28px 80px rgba(3, 16, 27, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 86px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -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 { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 48px), 820px); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section-sm { padding: 76px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-blue { color: var(--white); background: var(--blue); }
.section-white { background: var(--white); }
.section-grid {
  background-image:
    linear-gradient(rgba(15, 48, 71, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 48, 71, .055) 1px, transparent 1px);
  background-size: 50px 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .77rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.eyebrow--light { color: var(--blue-bright); }

.section-title {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-title em { color: var(--blue); font-style: normal; }
.section-title--sm { font-size: clamp(2rem, 4vw, 3.45rem); }
.section-lead { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-lead { color: #aebbc6; }

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-heading-row .section-title { margin-bottom: 0; }
.section-heading-row .section-lead { max-width: 430px; margin-bottom: 8px; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); background: #0875c2; box-shadow: 0 12px 30px rgba(19, 135, 223, .25); }
.btn svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.btn--light { color: var(--ink); background: var(--white); }
.btn--light:hover { background: var(--blue-pale); }
.btn--outline { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .04); backdrop-filter: blur(8px); }
.btn--outline:hover { border-color: var(--blue-bright); background: rgba(71, 182, 255, .12); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: var(--ink-3); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 750;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link.light { color: var(--blue-bright); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background .25s, box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled,
.header-solid .site-header {
  border-color: rgba(255, 255, 255, .07);
  background: rgba(6, 16, 26, .94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(15px);
}
.header-shell {
  display: flex;
  width: min(calc(100% - 48px), 1400px);
  height: var(--header-height);
  align-items: center;
  margin-inline: auto;
}

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; color: var(--white); }
.brand__mark { width: 38px; height: 38px; color: var(--blue); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: .13em; }
.brand__text small { margin-top: 7px; color: #9eafbd; font-size: .61rem; font-weight: 650; letter-spacing: .25em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 36px; margin: 0 auto; }
.main-nav > a,
.nav-group__head > a {
  position: relative;
  padding: 31px 0;
  color: #dce6ed;
  font-size: .88rem;
  font-weight: 650;
  white-space: nowrap;
}
.main-nav > a::after,
.nav-group__head > a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav a[aria-current="page"] { color: var(--white); }
.nav-group { position: relative; }
.nav-group__head { display: flex; align-items: center; }
.submenu-toggle { display: grid; width: 26px; height: 30px; place-items: center; padding: 0; border: 0; background: none; color: #b8c6d0; cursor: pointer; }
.submenu-toggle svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 360px;
  padding: 12px;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(7, 21, 33, .98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: .2s var(--ease);
}
.submenu::before { position: absolute; top: -16px; left: 0; width: 100%; height: 18px; content: ""; }
.submenu a { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 7px; color: #d6e2ea; font-size: .84rem; font-weight: 600; transition: background .2s, color .2s; }
.submenu a:hover,
.submenu a[aria-current="page"] { color: var(--white); background: rgba(71, 182, 255, .1); }
.submenu a span { color: var(--blue-bright); font-size: .67rem; letter-spacing: .12em; }
.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.is-open .submenu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }

.header-cta { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; padding: 0 18px; border-radius: 7px; background: var(--blue); font-size: .78rem; font-weight: 750; transition: background .2s, transform .2s; }
.header-cta:hover { background: #0574c5; transform: translateY(-1px); }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; margin-left: auto; padding: 0; border: 1px solid rgba(255, 255, 255, .18); border-radius: 7px; background: transparent; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--white); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  max-height: 980px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroScale 18s ease-out both; }
.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 13, 22, .97) 0%, rgba(4, 13, 22, .86) 39%, rgba(4, 13, 22, .32) 72%, rgba(4, 13, 22, .28) 100%),
    linear-gradient(0deg, rgba(4, 13, 22, .72) 0%, transparent 45%);
}
@keyframes heroScale { from { transform: scale(1.04); } to { transform: scale(1); } }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.hero__line { position: absolute; top: 0; left: calc(50% - 620px); width: 1px; height: 100%; background: rgba(255, 255, 255, .12); }
.hero__line::after { position: absolute; top: 33%; left: -3px; width: 7px; height: 54px; content: ""; background: var(--blue); }
.hero__content { position: relative; z-index: 2; max-width: 850px; padding-top: var(--header-height); }
.hero__kicker { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 24px; color: #dbe8f0; font-size: .78rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.hero__kicker i { display: inline-block; width: 8px; height: 8px; border: 2px solid var(--blue-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(71, 182, 255, .12); }
.hero h1 { max-width: 820px; margin-bottom: 26px; font-size: clamp(3.4rem, 7.2vw, 7rem); font-weight: 690; line-height: .96; letter-spacing: -.06em; }
.hero h1 span { color: var(--blue-bright); }
.hero__lead { max-width: 650px; margin-bottom: 38px; color: #c1ced7; font-size: clamp(1.02rem, 1.5vw, 1.25rem); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { position: absolute; z-index: 2; right: max(24px, calc((100vw - 1240px) / 2)); bottom: 38px; display: flex; gap: 38px; margin: 0; padding: 0; list-style: none; }
.hero__meta-item { min-width: 130px; padding-left: 14px; border-left: 2px solid rgba(255,255,255,.25); }
.hero__meta-item strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__meta-item span { color: #9cadba; font-size: .72rem; }

.capability-bar { color: var(--white); background: var(--blue); }
.capability-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.capability-item { display: flex; min-height: 104px; align-items: center; gap: 16px; padding: 20px 30px; border-right: 1px solid rgba(255,255,255,.22); }
.capability-item:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.capability-item span { color: rgba(255,255,255,.65); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.capability-item strong { font-size: .92rem; }

.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.intro-aside { position: sticky; top: 130px; }
.intro-aside p { max-width: 310px; color: var(--muted); }
.intro-copy p { margin-bottom: 24px; color: var(--steel); font-size: 1.08rem; }
.intro-copy p:first-of-type { color: var(--ink); font-size: clamp(1.35rem, 2.3vw, 1.85rem); font-weight: 550; line-height: 1.5; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 20px rgba(5,20,32,.03);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.service-card:nth-child(1), .service-card:nth-child(2) { grid-column: span 6; min-height: 430px; }
.service-card:hover { z-index: 1; border-color: rgba(19,135,223,.45); box-shadow: var(--shadow-sm); transform: translateY(-7px); }
.service-card__number { display: block; margin-bottom: 68px; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.service-card:nth-child(n+3) .service-card__number { margin-bottom: 48px; }
.service-card__icon { position: absolute; top: 28px; right: 28px; width: 58px; height: 58px; opacity: .68; fill: none; stroke: var(--blue); stroke-width: 1.2; }
.service-card h3 { max-width: 340px; margin-bottom: 16px; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.2; letter-spacing: -.03em; }
.service-card p { max-width: 420px; margin-bottom: 28px; color: var(--muted); }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 690px; }
.split-feature__media { position: relative; min-height: 540px; overflow: hidden; }
.split-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.split-feature__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, transparent 45%, rgba(6,16,26,.46)); }
.split-feature__content { display: flex; align-items: center; padding: clamp(54px, 8vw, 120px); color: var(--white); background: var(--ink-2); }
.split-feature__content-inner { max-width: 580px; }
.feature-list { display: grid; gap: 18px; margin: 34px 0 40px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 14px; color: #c2d0d9; }
.feature-list li::before { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 4px; content: ""; border: 5px solid rgba(71,182,255,.22); border-radius: 50%; background: var(--blue-bright); }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 56px; background: var(--line); }
.process-step { position: relative; min-height: 300px; padding: 30px 25px; background: var(--paper); }
.process-step::after { position: absolute; top: 51px; right: -5px; z-index: 2; width: 9px; height: 9px; content: ""; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px var(--blue-pale); }
.process-step:last-child::after { display: none; }
.process-step__number { display: block; margin-bottom: 55px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.process-step h3 { margin-bottom: 12px; font-size: 1.05rem; }
.process-step p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.stats-wrap { position: relative; overflow: hidden; background: var(--blue); color: var(--white); }
.stats-wrap::before { position: absolute; top: -190px; right: -120px; width: 560px; height: 560px; content: ""; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.035), 0 0 0 180px rgba(255,255,255,.025); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 230px; padding: 50px 34px; border-right: 1px solid rgba(255,255,255,.22); }
.stat:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.stat strong { display: block; margin-bottom: 15px; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 650; line-height: 1; letter-spacing: -.06em; }
.stat span { color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.project-card:hover img { transform: scale(1.045); }
.project-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(4,13,22,.96) 0%, rgba(4,13,22,.18) 72%); }
.project-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; }
.project-card__tag { display: inline-block; margin-bottom: 13px; color: var(--blue-bright); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-card h3 { margin-bottom: 10px; font-size: 1.4rem; line-height: 1.25; }
.project-card p { color: #b9c7d0; font-size: .88rem; }
.project-result { display: flex; align-items: baseline; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }
.project-result strong { color: var(--blue-bright); font-size: 1.75rem; }
.project-result span { color: #c4d0d8; font-size: .75rem; }

.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.industry { min-height: 180px; padding: 28px; background: var(--white); transition: background .25s, color .25s; }
.industry:hover { color: var(--white); background: var(--ink-3); }
.industry span { display: block; margin-bottom: 40px; color: var(--blue); font-size: .72rem; font-weight: 800; }
.industry h3 { margin-bottom: 7px; font-size: 1rem; }
.industry p { color: var(--muted); font-size: .82rem; }
.industry:hover p { color: #b9c8d2; }

.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; padding: clamp(45px, 7vw, 85px); overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: var(--ink-2); }
.cta-panel::after { position: absolute; top: -160px; right: 110px; width: 390px; height: 390px; content: ""; border: 60px solid rgba(71,182,255,.06); border-radius: 50%; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 730px; margin-bottom: 17px; font-size: clamp(2.2rem, 4.7vw, 4.35rem); line-height: 1.07; letter-spacing: -.045em; }
.cta-panel p { position: relative; z-index: 1; max-width: 620px; color: #afbec8; }
.cta-panel .btn { position: relative; z-index: 1; }

.page-hero { position: relative; display: flex; min-height: 570px; align-items: flex-end; padding: 170px 0 80px; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(4,13,22,.96) 0%, rgba(4,13,22,.72) 52%, rgba(4,13,22,.38)), linear-gradient(0deg, rgba(4,13,22,.72), transparent 70%); }
.page-hero__grid { 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: 64px 64px; }
.page-hero__content { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; color: #aebcc6; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--blue-bright); }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(3rem, 7vw, 6.2rem); font-weight: 680; line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 680px; margin-bottom: 0; color: #c3d0d8; font-size: 1.12rem; }

.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.overview-card { position: relative; min-height: 440px; padding: 38px; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--ink-2); }
.overview-card:first-child { grid-column: 1 / -1; min-height: 510px; }
.overview-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .44; transition: transform .6s var(--ease), opacity .4s; }
.overview-card:hover img { opacity: .55; transform: scale(1.035); }
.overview-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(4,13,22,.97) 3%, rgba(4,13,22,.25) 75%); }
.overview-card__content { position: absolute; z-index: 2; right: 38px; bottom: 34px; left: 38px; }
.overview-card__number { display: block; margin-bottom: 13px; color: var(--blue-bright); font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.overview-card h2 { margin-bottom: 11px; font-size: clamp(1.65rem, 3vw, 2.7rem); line-height: 1.15; }
.overview-card p { max-width: 610px; color: #bdcad3; }

.service-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.service-intro__copy > p { color: var(--steel); font-size: 1.05rem; }
.service-intro__lead { color: var(--ink) !important; font-size: 1.42rem !important; font-weight: 550; line-height: 1.55; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
.check-item { position: relative; padding: 16px 15px 16px 44px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); font-size: .86rem; font-weight: 650; }
.check-item::before { position: absolute; top: 19px; left: 17px; width: 14px; height: 8px; content: ""; border-bottom: 2px solid var(--blue); border-left: 2px solid var(--blue); transform: rotate(-45deg); }

.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scope-card { min-height: 270px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: var(--ink-2); transition: border-color .25s, transform .25s; }
.scope-card:hover { border-color: rgba(71,182,255,.5); transform: translateY(-4px); }
.scope-card span { display: block; margin-bottom: 44px; color: var(--blue-bright); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.scope-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.scope-card p { color: #aebcc6; font-size: .88rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.benefit { min-height: 260px; padding: 34px; background: var(--white); }
.benefit__icon { display: grid; width: 47px; height: 47px; place-items: center; margin-bottom: 50px; border-radius: 50%; color: var(--blue); background: var(--blue-pale); font-size: 1.1rem; font-weight: 800; }
.benefit h3 { margin-bottom: 10px; font-size: 1.12rem; }
.benefit p { color: var(--muted); font-size: .88rem; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.accordion__button span:last-child { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.accordion__button span:last-child::before,
.accordion__button span:last-child::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 2px; content: ""; background: var(--blue); transition: transform .25s; }
.accordion__button span:last-child::after { transform: rotate(90deg); }
.accordion__button[aria-expanded="true"] span:last-child::after { transform: rotate(0); }
.accordion__panel { padding: 0 45px 24px 0; color: var(--muted); font-size: .92rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); transition: border-color .25s, transform .25s; }
.related-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.related-card span { color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .13em; }
.related-card h3 { margin: 31px 0 12px; font-size: 1.1rem; }
.related-card p { color: var(--muted); font-size: .85rem; }

.about-statement { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.about-statement blockquote { margin: 0; font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 570; line-height: 1.3; letter-spacing: -.04em; }
.about-statement blockquote em { color: var(--blue); font-style: normal; }
.about-image-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; min-height: 650px; }
.about-image-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-image-grid img:nth-child(2) { margin-top: 80px; height: calc(100% - 80px); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.value { min-height: 330px; padding: 36px 28px; background: var(--ink); }
.value span { display: block; margin-bottom: 75px; color: var(--blue-bright); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.value h3 { margin-bottom: 13px; font-size: 1.18rem; }
.value p { color: #9fafba; font-size: .87rem; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 126px; width: 1px; content: ""; background: var(--line); }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 48px; padding: 0 0 60px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__marker { position: relative; color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.timeline-item__marker::after { position: absolute; top: 7px; right: -22px; width: 11px; height: 11px; content: ""; border: 3px solid var(--paper); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.timeline-item h3 { margin-bottom: 10px; font-size: 1.35rem; }
.timeline-item p { max-width: 690px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-panel { position: sticky; top: 120px; padding: 38px; border-radius: var(--radius); color: var(--white); background: var(--ink-2); }
.contact-panel h2 { margin-bottom: 14px; font-size: 1.65rem; }
.contact-panel > p { color: #aebdc7; }
.contact-channel { display: block; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-channel:first-of-type { margin-top: 32px; }
.contact-channel span { display: block; margin-bottom: 5px; color: #8499a8; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-channel strong { color: var(--blue-bright); font-size: 1.05rem; }
.response-note { display: flex; align-items: center; gap: 13px; margin-top: 25px; padding: 16px; border-radius: 8px; background: rgba(71,182,255,.08); color: #c8d6df; font-size: .82rem; }
.response-note i { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(25,168,119,.12); }

.contact-form { padding: 46px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-form h2 { margin-bottom: 11px; font-size: 1.8rem; }
.contact-form > p { margin-bottom: 34px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 750; }
.field label span { color: var(--blue); }
.field input,
.field select,
.field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cdd9e1; border-radius: 7px; background: #fbfcfd; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 155px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(19,135,223,.11); }
.field [aria-invalid="true"] { border-color: #bd2f3e; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1; margin: 5px 0 8px; color: var(--muted); font-size: .78rem; }
.checkbox input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--blue); }
.checkbox a { color: var(--blue); text-decoration: underline; }
.form-footer { display: flex; align-items: center; gap: 22px; grid-column: 1 / -1; }
.form-status { flex: 1; margin: 0; font-size: .8rem; font-weight: 650; }
.form-status.is-info { color: #6b5700; }
.form-status.is-error { color: #ad2634; }
.form-status.is-success { color: #0b7855; }
.contact-form button:disabled { cursor: wait; opacity: .65; }

.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 120px; display: grid; gap: 8px; padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.legal-nav strong { margin-bottom: 8px; font-size: .8rem; }
.legal-nav a { color: var(--muted); font-size: .8rem; }
.legal-nav a:hover { color: var(--blue); }
.legal-content { max-width: 780px; }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.45rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 30px 0 10px; font-size: 1rem; }
.legal-content p,
.legal-content li { color: var(--steel); font-size: .92rem; }
.placeholder-box { margin: 24px 0; padding: 20px; border: 1px solid #bfdcf0; border-radius: 8px; background: var(--blue-pale); color: #22475e; font-size: .84rem; }

.site-footer { position: relative; overflow: hidden; color: var(--white); background: #040c13; }
.footer-glow { position: absolute; top: -230px; left: 22%; width: 500px; height: 500px; border-radius: 50%; background: rgba(19,135,223,.08); filter: blur(80px); }
.footer-main { position: relative; display: grid; grid-template-columns: 1.5fr .95fr .75fr 1fr; gap: 60px; padding: 90px 0 70px; }
.footer-brand .brand { margin-bottom: 28px; }
.footer-brand > p { max-width: 360px; margin-bottom: 25px; color: #95a6b2; font-size: .9rem; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h2 { margin-bottom: 15px; color: #758a99; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a,
.footer-column p { color: #bdcad3; font-size: .8rem; transition: color .2s; }
.footer-column a:hover { color: var(--blue-bright); }
.footer-label { margin-top: 10px; color: #667b8a; font-size: .63rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-contact a { color: var(--white); }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #728695; font-size: .7rem; }

[data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal="left"] { transform: translateX(-25px); }
[data-reveal="right"] { transform: translateX(25px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 1100px) {
  :root { --header-height: 76px; }
  .header-cta { display: none; }
  .main-nav { margin-right: 0; }
  .service-card { grid-column: span 6; }
  .service-card:last-child { grid-column: 4 / span 6; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 35px; }
  .footer-contact h2 { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .container, .narrow { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 82px 0; }
  .section-sm { padding: 58px 0; }
  .header-shell { width: calc(100% - 36px); }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; display: block; padding: 25px 18px 45px; overflow-y: auto; visibility: hidden; background: rgba(6,16,26,.99); opacity: 0; transform: translateX(100%); transition: visibility .3s, opacity .3s, transform .3s var(--ease); }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav > a,
  .nav-group__head > a { display: block; padding: 18px 10px; font-size: 1.2rem; }
  .main-nav > a { border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav > a::after,
  .nav-group__head > a::after { display: none; }
  .nav-group { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-group__head { justify-content: space-between; }
  .submenu-toggle { width: 52px; height: 54px; }
  .submenu { position: static; width: 100%; max-height: 0; padding: 0; overflow: hidden; visibility: visible; border: 0; box-shadow: none; opacity: 1; background: transparent; transform: none; transition: max-height .35s var(--ease), padding .35s; }
  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu { max-height: 0; padding: 0; transform: none; }
  .nav-group.is-open .submenu { max-height: 440px; padding: 0 0 16px; }
  .submenu a { padding-left: 22px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero__media::after { background: linear-gradient(90deg, rgba(4,13,22,.94), rgba(4,13,22,.5)), linear-gradient(0deg, rgba(4,13,22,.8), transparent 60%); }
  .hero h1 { font-size: clamp(3.15rem, 11vw, 5.5rem); }
  .hero__meta { display: none; }
  .hero__line { left: 18px; }
  .capability-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .capability-item { min-height: 82px; padding: 17px; }
  .capability-item:nth-child(2) { border-right: 0; }
  .section-heading-row { display: block; }
  .section-heading-row .section-title { margin-bottom: 20px; }
  .intro-grid,
  .service-intro,
  .faq-layout,
  .contact-grid,
  .about-statement { grid-template-columns: 1fr; gap: 42px; }
  .intro-aside, .contact-panel { position: static; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__content { padding: 65px 28px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3)::after { display: block; }
  .process-step:nth-child(even)::after { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 430px; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card:first-child { grid-column: auto; }
  .scope-grid, .benefit-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image-grid { min-height: 520px; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --header-height: 70px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .brand__mark { width: 34px; height: 34px; }
  .brand__text strong { font-size: .92rem; }
  .brand__text small { font-size: .54rem; }
  .hero { min-height: 690px; max-height: 860px; }
  .hero__content { padding-top: 50px; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.2rem); }
  .hero__lead { font-size: .98rem; }
  .hero__actions { display: grid; }
  .hero__actions .btn { width: 100%; }
  .hero__line { display: none; }
  .capability-bar__inner { grid-template-columns: 1fr; }
  .capability-item, .capability-item:first-child { border-right: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .capability-item:last-child { border-bottom: 0; }
  .section-title { font-size: clamp(2.1rem, 11vw, 3.3rem); }
  .service-grid { display: block; }
  .service-card { min-height: 360px !important; margin-bottom: 16px; }
  .service-card__number, .service-card:nth-child(n+3) .service-card__number { margin-bottom: 55px; }
  .split-feature__media { min-height: 400px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 230px; }
  .process-step::after { display: none !important; }
  .process-step__number { margin-bottom: 38px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat, .stat:first-child { min-height: 175px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .industries { grid-template-columns: 1fr; }
  .cta-panel { padding: 42px 24px; }
  .page-hero { min-height: 520px; padding: 140px 0 60px; }
  .page-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .page-hero p { font-size: .98rem; }
  .overview-card, .overview-card:first-child { min-height: 430px; padding: 25px; }
  .overview-card__content { right: 25px; bottom: 24px; left: 25px; }
  .check-grid,
  .scope-grid,
  .benefit-grid,
  .related-grid,
  .value-grid { grid-template-columns: 1fr; }
  .scope-card, .benefit { min-height: 230px; }
  .about-image-grid { grid-template-columns: 1fr; min-height: 0; }
  .about-image-grid img { height: 420px; }
  .about-image-grid img:nth-child(2) { height: 360px; margin-top: 0; }
  .timeline::before { left: 15px; }
  .timeline-item { grid-template-columns: 31px 1fr; gap: 23px; }
  .timeline-item__marker { color: transparent; font-size: 0; }
  .timeline-item__marker::after { top: 8px; right: auto; left: 10px; }
  .contact-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full, .checkbox, .form-footer { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .btn { width: 100%; }
  .legal-nav { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; padding: 70px 0 50px; }
  .footer-contact { grid-column: auto; display: flex; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

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