:root {
  --navy: #031a45;
  --navy-2: #06285c;
  --navy-3: #0c3b68;
  --teal: #0b7e7c;
  --teal-2: #119b96;
  --teal-soft: #e8f5f4;
  --ink: #12213a;
  --slate: #556273;
  --muted: #6c7888;
  --ivory: #fbf8f3;
  --warm: #f4eee5;
  --light: #f7fafc;
  --white: #ffffff;
  --line: #dce3ea;
  --line-dark: rgba(255,255,255,.15);
  --success: #17795e;
  --danger: #a63838;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(3,26,69,.08);
  --shadow: 0 24px 65px rgba(3,26,69,.14);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--teal); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-warm { background: var(--ivory); }
.section-light { background: var(--light); }
.section-navy { color: #fff; background: var(--navy); }
.section-teal { color: #fff; background: var(--teal); }

.utility-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: #dfe9f3;
  background: var(--navy);
  font-size: .74rem;
}
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-tagline { letter-spacing: .02em; }
.utility-links { display: flex; align-items: center; gap: 24px; }
.utility-links a { text-decoration: none; }
.utility-links a:hover { color: #fff; }
.utility-item { display: inline-flex; align-items: center; gap: 8px; }
.utility-icon { width: 15px; height: 15px; opacity: .85; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(3,26,69,.09);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 236px; flex: 0 0 auto; display: block; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 31px 0 27px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 690;
}
.primary-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button[aria-expanded="true"]::after { transform: scaleX(1); }
.primary-nav > a:hover,
.primary-nav > a.active,
.nav-dropdown > button:hover { color: var(--teal); }
.primary-nav .nav-cta {
  padding: 13px 19px;
  color: #fff;
  background: var(--teal);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(11,126,124,.22);
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { color: #fff; background: #086d6b; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: 7px; }
.chevron { width: 10px; height: 10px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.mega-menu {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  width: min(850px, calc(100vw - 40px));
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu a { display: flex; gap: 13px; padding: 14px; text-decoration: none; border-radius: 12px; }
.mega-menu a:hover { background: var(--teal-soft); }
.mega-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal); background: var(--teal-soft); border-radius: 11px; }
.mega-icon svg { width: 20px; height: 20px; }
.mega-menu strong { display: block; color: var(--navy); font-size: .87rem; }
.mega-menu span { display: block; margin-top: 3px; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.display-title { margin: 0; color: var(--navy); font-size: clamp(2.7rem, 5.4vw, 5.3rem); line-height: .98; letter-spacing: -.055em; }
.display-title span { color: var(--teal); }
.page-title { margin: 0; color: #fff; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.05em; }
.section-title { margin: 0; color: var(--navy); font-size: clamp(2.1rem, 4.1vw, 3.9rem); line-height: 1.04; letter-spacing: -.045em; }
.section-title-light { color: #fff; }
.section-lead { margin: 20px 0 0; max-width: 730px; color: var(--muted); font-size: 1.04rem; line-height: 1.78; }
.section-navy .section-lead { color: #c7d2e1; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 760;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--teal); box-shadow: 0 12px 30px rgba(11,126,124,.24); }
.button-primary:hover { background: #086d6b; box-shadow: 0 15px 36px rgba(11,126,124,.28); }
.button-secondary { color: var(--navy); background: transparent; border-color: rgba(3,26,69,.26); }
.button-secondary:hover { border-color: var(--teal); background: var(--teal-soft); }
.button-light { color: var(--navy); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.55); }
.button-outline-light:hover { background: rgba(255,255,255,.09); border-color: #fff; }
.button-arrow { width: 17px; height: 17px; }

.hero-master {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-master::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3,26,69,.98) 0%, rgba(3,26,69,.88) 39%, rgba(3,26,69,.38) 63%, rgba(3,26,69,.08) 100%);
}
.hero-master-grid { position: relative; z-index: 2; min-height: 680px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; }
.hero-master-copy { max-width: 690px; padding: 88px 0 82px; }
.hero-master .eyebrow { color: #83ddd8; }
.hero-master h1 { margin: 0; max-width: 720px; font-size: clamp(3rem, 5.5vw, 5.55rem); line-height: .96; letter-spacing: -.055em; }
.hero-master h1 span { color: #78d6d1; }
.hero-master-lead { max-width: 680px; margin: 26px 0 0; color: #d7e0eb; font-size: 1.08rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.hero-proof-item { display: flex; gap: 11px; }
.hero-proof-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: #86ddd8; border: 1px solid rgba(134,221,216,.38); border-radius: 50%; }
.hero-proof-icon svg { width: 20px; height: 20px; }
.hero-proof strong { display: block; font-size: .78rem; }
.hero-proof span { display: block; margin-top: 2px; color: #bccadd; font-size: .68rem; line-height: 1.4; }
.hero-collage { position: absolute; inset: 0 0 0 42%; display: grid; grid-template-columns: 1.4fr .72fr .72fr .72fr; }
.hero-panel { position: relative; overflow: hidden; border-left: 2px solid rgba(255,255,255,.45); transform: skewX(-8deg); transform-origin: bottom; }
.hero-panel img { width: 120%; height: 100%; object-fit: cover; transform: skewX(8deg) translateX(-6%); filter: saturate(.92) contrast(1.05); }
.hero-panel-team img { object-position: 55% center; }
.hero-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,26,69,.04), rgba(3,26,69,.18)); }

.pathways { position: relative; z-index: 4; margin-top: -52px; }
.pathway-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pathway-card { display: grid; grid-template-columns: auto 1fr auto; gap: 19px; align-items: center; min-height: 165px; padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); text-decoration: none; }
.pathway-card:hover { border-color: rgba(11,126,124,.45); transform: translateY(-3px); }
.pathway-icon { width: 64px; height: 64px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; }
.pathway-card:nth-child(2) .pathway-icon { background: var(--navy); }
.pathway-icon svg { width: 31px; height: 31px; }
.pathway-card h2 { margin: 0; color: var(--navy); font-size: 1.28rem; }
.pathway-card p { margin: 6px 0 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.pathway-arrow { width: 40px; height: 40px; display: grid; place-items: center; color: var(--teal); background: var(--teal-soft); border-radius: 50%; }

.trust-strip { padding: 42px 0 48px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { min-height: 104px; display: flex; align-items: center; gap: 13px; padding: 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal); border: 1px solid #b9d8d6; border-radius: 50%; }
.trust-icon svg { width: 20px; height: 20px; }
.trust-item strong { display: block; color: var(--navy); font-size: .78rem; }
.trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: .68rem; line-height: 1.4; }

.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 70px; align-items: end; margin-bottom: 52px; }
.section-heading > p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.75; }
.section-heading-light > p { color: #c7d3e3; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { position: relative; min-height: 320px; padding: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 25px rgba(3,26,69,.05); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.capability-card:hover { transform: translateY(-5px); border-color: rgba(11,126,124,.36); box-shadow: var(--shadow-sm); }
.capability-card-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--teal), var(--teal-2)); border-radius: 12px; }
.capability-card-icon svg { width: 24px; height: 24px; }
.capability-card h3 { margin: 42px 0 12px; color: var(--navy); font-size: 1.2rem; line-height: 1.2; }
.capability-card p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.68; }
.capability-link { position: absolute; left: 28px; bottom: 25px; color: var(--teal); text-decoration: none; font-size: .78rem; font-weight: 780; }
.capability-link:hover { text-decoration: underline; }
.capability-card.featured { color: #fff; background: linear-gradient(145deg, var(--navy), var(--navy-2)); border-color: transparent; }
.capability-card.featured h3 { color: #fff; }
.capability-card.featured p { color: #cbd7e5; }
.capability-card.featured .capability-link { color: #8ee1dc; }

.lifecycle { position: relative; overflow: hidden; }
.lifecycle::after { content: ""; position: absolute; width: 520px; height: 520px; right: -250px; bottom: -280px; border: 85px solid rgba(11,126,124,.14); border-radius: 50%; }
.lifecycle-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 2.1fr; gap: 70px; align-items: start; }
.lifecycle-intro h2 { margin: 0; max-width: 420px; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; }
.lifecycle-intro p { margin: 22px 0 0; color: #c7d3e3; }
.lifecycle-steps { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 13px; }
.lifecycle-steps::before { content: ""; position: absolute; top: 25px; right: 6%; left: 6%; height: 1px; background: rgba(96,215,207,.42); }
.lifecycle-step { position: relative; z-index: 2; }
.step-number { width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: var(--teal); border: 5px solid var(--navy); border-radius: 50%; box-shadow: 0 0 0 1px rgba(96,215,207,.45); font-size: .78rem; font-weight: 800; }
.lifecycle-step strong { display: block; margin-top: 18px; font-size: .76rem; }
.lifecycle-step span { display: block; margin-top: 5px; color: #b9c8dc; font-size: .67rem; line-height: 1.45; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card { position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; padding: 27px; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--navy), var(--navy-3)); border-radius: 18px; text-decoration: none; }
.industry-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -80px; top: -80px; border: 40px solid rgba(80,210,201,.16); border-radius: 50%; }
.industry-card:nth-child(even) { background: linear-gradient(145deg, #0a3b66, var(--teal)); }
.industry-tag { position: relative; z-index: 2; display: inline-flex; width: fit-content; padding: 6px 10px; color: #d9fffb; background: rgba(255,255,255,.1); border-radius: 999px; font-size: .64rem; font-weight: 760; text-transform: uppercase; letter-spacing: .09em; }
.industry-card h3 { position: relative; z-index: 2; margin: 15px 0 9px; font-size: 1.28rem; }
.industry-card p { position: relative; z-index: 2; margin: 0; color: #d5e0ec; font-size: .8rem; line-height: 1.6; }

.solution-band { padding: 82px 0; color: #fff; background: linear-gradient(110deg, var(--teal), #086766); }
.solution-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.solution-band h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -.045em; }
.solution-band p { margin: 20px 0 0; max-width: 700px; color: #e2fffc; }
.solution-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.solution-point { padding: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); border-radius: 14px; }
.solution-point strong { display: block; font-size: .8rem; }
.solution-point span { display: block; margin-top: 4px; color: #dcf7f4; font-size: .7rem; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0 94px; color: #fff; background: linear-gradient(125deg, var(--navy), var(--navy-2)); }
.page-hero::before { content: ""; position: absolute; width: 560px; height: 560px; top: -280px; right: -120px; border: 95px solid rgba(11,126,124,.22); border-radius: 50%; }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(90deg, transparent 15%, #000); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .65fr; gap: 80px; align-items: end; }
.page-hero p { margin: 24px 0 0; max-width: 760px; color: #cfdaea; font-size: 1.05rem; line-height: 1.75; }
.page-breadcrumb { margin-bottom: 20px; color: #8edfd9; font-size: .72rem; font-weight: 760; text-transform: uppercase; letter-spacing: .11em; }
.page-breadcrumb a { color: inherit; text-decoration: none; }
.page-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.page-stat { padding: 17px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 13px; }
.page-stat strong { display: block; font-size: .8rem; }
.page-stat span { display: block; margin-top: 4px; color: #c4d1e2; font-size: .69rem; line-height: 1.45; }

.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.content-card { padding: 31px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.content-card h3 { margin: 0; color: var(--navy); font-size: 1.28rem; }
.content-card p { margin: 12px 0 0; color: var(--muted); font-size: .88rem; }
.content-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.content-card li { position: relative; padding: 7px 0 7px 19px; color: #46566b; font-size: .82rem; }
.content-card li::before { content: ""; position: absolute; left: 0; top: 15px; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }

.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.feature-media { min-height: 520px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.feature-media img { width: 100%; height: 520px; object-fit: cover; }
.feature-copy h2 { margin: 0; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.04; letter-spacing: -.045em; }
.feature-copy > p { margin: 22px 0 0; color: var(--muted); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.feature-list div { padding: 17px; background: var(--light); border-radius: 12px; }
.feature-list strong { display: block; color: var(--navy); font-size: .78rem; }
.feature-list span { display: block; margin-top: 4px; color: var(--muted); font-size: .69rem; }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.method-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.method-card-number { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--navy); border-radius: 12px; font-size: .78rem; font-weight: 800; }
.method-card h3 { margin: 34px 0 10px; color: var(--navy); font-size: 1rem; }
.method-card p { margin: 0; color: var(--muted); font-size: .78rem; }

.company-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.company-fact { padding: 26px; background: var(--light); border-radius: 16px; }
.company-fact span { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.company-fact strong { display: block; margin-top: 9px; color: var(--navy); font-size: .94rem; line-height: 1.4; }

.contact-section { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: start; }
.contact-copy h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.03; letter-spacing: -.045em; }
.contact-copy > p { margin: 22px 0 0; color: var(--muted); }
.contact-details { margin-top: 37px; display: grid; gap: 14px; }
.contact-detail { display: flex; gap: 13px; align-items: flex-start; }
.contact-detail-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal); background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.contact-detail strong { display: block; color: var(--navy); font-size: .79rem; }
.contact-detail span, .contact-detail a { display: block; margin-top: 2px; color: var(--muted); font-size: .76rem; text-decoration: none; }
.contact-form { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-size: .73rem; font-weight: 720; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #cdd6df; border-radius: 10px; color: var(--ink); background: #fff; outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.form-field input, .form-field select { min-height: 49px; padding: 0 13px; }
.form-field textarea { min-height: 155px; padding: 13px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,126,124,.12); }
.form-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .68rem; }
.form-status { min-height: 24px; margin: 15px 0 0; font-size: .76rem; font-weight: 680; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.contact-form .button { margin-top: 19px; }

.legal-content { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0; }
.legal-content h1 { margin: 0; color: var(--navy); font-size: clamp(2.5rem, 5vw, 4.3rem); letter-spacing: -.045em; }
.legal-content h2 { margin: 48px 0 10px; color: var(--navy); font-size: 1.35rem; }
.legal-content p, .legal-content li { color: #4f5d6f; }
.legal-meta { margin-top: 8px; color: var(--muted); font-size: .76rem; }

.site-footer { color: #d7e1ed; background: #021532; }
.footer-main { padding: 72px 0 48px; display: grid; grid-template-columns: 1.25fr repeat(3, .7fr); gap: 55px; }
.footer-brand { width: 230px; padding: 11px; background: #fff; border-radius: 9px; }
.footer-about { max-width: 400px; margin: 22px 0 0; color: #aebdd0; font-size: .8rem; }
.footer-column h2 { margin: 0 0 17px; color: #fff; font-size: .77rem; text-transform: uppercase; letter-spacing: .11em; }
.footer-column a { display: block; margin: 9px 0; color: #b8c6d8; text-decoration: none; font-size: .76rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); color: #92a3ba; font-size: .69rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { color: #fff; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .primary-nav { gap: 18px; }
  .brand { width: 205px; }
  .hero-collage { left: 45%; }
  .hero-master-grid { grid-template-columns: 1.15fr .85fr; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-proof-item:last-child { display: none; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-grid { grid-template-columns: 1fr; }
  .lifecycle-steps { grid-template-columns: repeat(7, minmax(100px, 1fr)); overflow-x: auto; padding-bottom: 14px; }
  .lifecycle-steps::before { display: none; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 1120px) {
  .utility-tagline { display: none; }
  .utility-inner { justify-content: flex-end; }
  .utility-links { width: 100%; justify-content: space-between; gap: 12px; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 190px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    z-index: 1001;
    top: 114px;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    display: block;
    padding: 24px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 35px 50px rgba(3,26,69,.16);
    transform: translateX(105%);
    transition: transform .25s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > a, .nav-dropdown > button { width: 100%; display: flex; justify-content: space-between; padding: 15px 4px; text-align: left; border-bottom: 1px solid var(--line); }
  .primary-nav > a::after, .nav-dropdown > button::after { display: none; }
  .primary-nav .nav-cta { margin-top: 18px; padding: 14px 18px; justify-content: center; border: 0; }
  .mega-menu { position: static; width: 100%; grid-template-columns: 1fr; padding: 9px 0 10px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-dropdown.open .mega-menu { display: grid; transform: none; }
  .hero-master, .hero-master-grid { min-height: 750px; }
  .hero-master::after { background: linear-gradient(90deg, rgba(3,26,69,.98), rgba(3,26,69,.84)); }
  .hero-master-grid { display: block; }
  .hero-master-copy { max-width: 720px; padding: 84px 0 70px; }
  .hero-collage { inset: 0; opacity: .45; grid-template-columns: 1fr 0 0 0; }
  .hero-panel { border: 0; transform: none; }
  .hero-panel img { width: 100%; transform: none; }
  .hero-panel:not(:first-child) { display: none; }
  .pathway-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-media, .feature-media img { min-height: 410px; height: 410px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 56px 0; }
  .utility-bar { min-height: 34px; }
  .utility-links .utility-location { display: none; }
  .site-header { top: 0; }
  .primary-nav { top: 110px; }
  .brand { width: 170px; }
  .hero-master, .hero-master-grid { min-height: 700px; }
  .hero-master-copy { padding: 70px 0 62px; }
  .hero-master h1 { font-size: clamp(2.85rem, 13vw, 4.3rem); }
  .hero-master-lead { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 35px; }
  .hero-proof-item:nth-child(2) { display: none; }
  .pathways { margin-top: -34px; }
  .pathway-card { grid-template-columns: auto 1fr; min-height: 150px; padding: 20px; }
  .pathway-arrow { display: none; }
  .pathway-icon { width: 52px; height: 52px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-title { font-size: 2.55rem; }
  .capability-grid, .industry-grid, .content-grid, .method-grid, .company-facts { grid-template-columns: 1fr; }
  .capability-card { min-height: 295px; }
  .solution-points { grid-template-columns: 1fr; }
  .page-hero { padding: 78px 0 68px; }
  .page-title { font-size: 2.85rem; }
  .page-stat-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-media, .feature-media img { min-height: 330px; height: 330px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .contact-form { padding: 23px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { padding: 22px 0; align-items: flex-start; flex-direction: column; }
}

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

/* === Homepage v3: approved Warm Corporate + Engineering Authority direction === */
@media (min-width: 1025px) {
  .utility-bar { min-height: 35px; }
  .nav-wrap { min-height: 86px; }
  .brand { width: 245px; }
  .primary-nav { gap: 27px; }
  .primary-nav > a,
  .nav-dropdown > button { padding-top: 31px; padding-bottom: 27px; font-size: .84rem; }

  .hero-master {
    min-height: 430px;
    overflow: visible;
  }
  .hero-master::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(circle at 50% 42%, rgba(3,26,69,.18) 0, rgba(3,26,69,.56) 44%, rgba(3,26,69,.72) 100%),
      linear-gradient(90deg, rgba(3,26,69,.26), rgba(3,26,69,.62) 36%, rgba(3,26,69,.62) 64%, rgba(3,26,69,.24));
    pointer-events: none;
  }
  .hero-master::after { display: none; }
  .hero-master-grid {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-master-copy {
    width: min(920px, 78vw);
    max-width: none;
    padding: 72px 0 88px;
    text-align: center;
  }
  .hero-master .eyebrow { display: none; }
  .hero-master h1 {
    max-width: none;
    font-size: clamp(2.45rem, 3.6vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    text-shadow: 0 2px 16px rgba(0,0,0,.24);
  }
  .hero-master h1 span { display: block; margin-top: 4px; }
  .hero-master-lead {
    max-width: 820px;
    margin: 19px auto 0;
    color: #eef4f9;
    font-size: 1rem;
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(0,0,0,.34);
  }
  .hero-actions { justify-content: center; margin-top: 25px; }
  .hero-actions .button { min-width: 198px; }
  .hero-collage {
    inset: 0;
    display: grid;
    grid-template-columns: 31% 25% 22% 22%;
  }
  .hero-panel {
    transform: none;
    border-left: 1px solid rgba(255,255,255,.3);
  }
  .hero-panel:first-child { border-left: 0; }
  .hero-panel img {
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    filter: saturate(.92) contrast(1.04);
  }
  .hero-panel-team img { object-position: center 42%; }
  .hero-panel::after {
    background: linear-gradient(180deg, rgba(3,26,69,.08), rgba(3,26,69,.2));
  }

  .pathways { margin-top: -2px; padding-top: 0; }
  .pathway-grid {
    width: min(1220px, calc(100% - 80px));
    margin: -1px auto 0;
    gap: 18px;
    transform: translateY(-1px);
  }
  .pathway-card {
    min-height: 158px;
    padding: 28px 30px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(3,26,69,.12);
  }
  .pathway-icon { width: 66px; height: 66px; }
  .pathway-card h2 { font-size: 1.32rem; }
  .pathway-card p { max-width: 440px; font-size: .87rem; }

  .trust-strip { padding: 25px 0 39px; }
  .trust-grid { border-top: 0; }
  .trust-item { min-height: 88px; padding: 17px 20px; }
  .capability-overview { padding-top: 76px; }
}

@media (max-width: 1024px) {
  .hero-master { min-height: 650px; }
  .hero-master::after {
    background: linear-gradient(180deg, rgba(3,26,69,.68), rgba(3,26,69,.86));
  }
  .hero-master-grid { min-height: 650px; display: flex; justify-content: center; text-align: center; }
  .hero-master-copy { max-width: 720px; padding: 96px 0 120px; }
  .hero-master .eyebrow { display: none; }
  .hero-master h1 { font-size: clamp(2.65rem, 7vw, 4.1rem); line-height: 1.05; }
  .hero-master h1 span { display: block; }
  .hero-master-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-collage { inset: 0; grid-template-columns: 48% 0 26% 26%; }
  .hero-collage .hero-panel:nth-child(2) { display: none; }
  .hero-panel { transform: none; border-left: 1px solid rgba(255,255,255,.25); }
  .hero-panel img { width: 100%; transform: none; }
  .pathways { margin-top: -56px; }
  .pathway-grid { position: relative; z-index: 4; }
}

@media (max-width: 720px) {
  .utility-bar { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 178px; }
  .hero-master { min-height: 615px; }
  .hero-master-grid { min-height: 615px; align-items: flex-start; }
  .hero-master-copy { padding: 110px 0 135px; }
  .hero-master h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .hero-master-lead { font-size: .94rem; line-height: 1.6; }
  .hero-actions { display: grid; width: 100%; max-width: 310px; margin: 27px auto 0; }
  .hero-actions .button { width: 100%; }
  .hero-collage { grid-template-columns: 58% 0 42% 0; }
  .hero-collage .hero-panel:nth-child(4) { display: none; }
  .pathways { margin-top: -76px; }
  .pathway-grid { gap: 12px; }
  .pathway-card { min-height: 150px; grid-template-columns: auto 1fr; padding: 22px; }
  .pathway-arrow { display: none; }
  .pathway-icon { width: 52px; height: 52px; }
  .pathway-card h2 { font-size: 1.06rem; }
  .trust-strip { padding-top: 24px; }
}


/* v3 QA corrections */
html, body { overflow-x: clip; }
@media (max-width: 1120px) {
  .utility-bar { display: none; }
  .primary-nav { top: 76px; }
  .site-header { top: 0; }
}
@media (max-width: 720px) {
  .primary-nav { top: 72px; }
}
@media (min-width: 1121px) {
  .hero-master, .hero-master-grid { min-height: 382px; }
  .hero-master-copy { padding: 48px 0 62px; }
  .hero-master h1 { font-size: clamp(2.35rem, 3.25vw, 3.35rem); }
  .hero-master-lead { margin-top: 14px; }
  .hero-actions { margin-top: 22px; }
  .capability-overview { padding-top: 50px; }
}
/* Critical above-the-fold content is never animation-gated. */
.js .hero-master .reveal,
.js .pathways .reveal,
.js .trust-strip .reveal {
  opacity: 1;
  transform: none;
}
/* The next-section cue remains visible at the bottom of the opening viewport. */
.js .capability-overview .section-heading.reveal {
  opacity: 1;
  transform: none;
}
.js #capabilities .section-heading.reveal {
  opacity: 1;
  transform: none;
}
@media (min-width: 1121px) {
  #capabilities { padding-top: 42px; }
}
.primary-nav .nav-cta,
.primary-nav .nav-cta.active,
.primary-nav .nav-cta:hover {
  color: #fff;
}
.primary-nav .nav-cta.active::after { display: none; }
