/* ============================================================
   TeamShield Group - Design System
   Premium business & technology advisory
   Palette: Deep navy + slate + restrained gold
   Author: Ankit Gupta
   Company - Website Design by : IOGOOS Solution Pvt Ltd
   ============================================================ */

:root {
  /* Core palette */
  --navy-900: #0a1626;
  --navy-800: #0e2138;
  --navy-700: #122c4a;
  --navy-600: #18395f;
  --slate-700: #243b53;
  --slate-600: #334e68;
  --slate-500: #486581;
  --slate-400: #627d98;
  --slate-300: #829ab1;
  --slate-200: #bcccdc;
  --slate-100: #d9e2ec;
  --slate-050: #f0f4f8;
  --paper: #f7f9fc;
  --white: #ffffff;

  /* Gold accent */
  --gold-700: #9a7b2e;
  --gold-600: #b8923a;
  --gold-500: #c8a24b;
  --gold-400: #d8b86a;
  --gold-100: #f3e9d2;

  /* Semantic */
  --ink: #0a1626;
  --body: #3c5066;
  --muted: #627d98;
  --line: #e3eaf1;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
    --container: 1280px;
    --container-padding: 24px;
  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 880px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 38, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 22, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 22, 38, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.container,
.wrap {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.1em; }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.narrow { 
  /* max-width: var(--maxw-narrow); */
  max-width: 100%;
   margin-left: auto; margin-right: auto; }
.section { padding: 110px 0; }
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .page-head {
        padding: 80px 0 60px;
    }
}
.section--tight { padding: 80px 0; }
.bg-paper { background: var(--paper); }
.bg-slate { background: var(--slate-050); }
.bg-navy { background: var(--navy-900); color: var(--slate-100); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.center { text-align: center; }
.maxw-text { max-width: 720px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 1.1rem;
  display: inline-block;
}
.bg-navy .eyebrow { color: var(--gold-400); }

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  color: var(--slate-500);
}
.bg-navy .lede { color: var(--slate-200); }

.rule {
  width: 54px; height: 3px; background: var(--gold-500);
  border: 0; margin: 0 0 1.8rem;
}
.center .rule { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: var(--radius);
  border: 1px solid transparent; transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn-primary:hover { background: var(--gold-400); border-color: var(--gold-400); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.btn-dark:hover { background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--slate-200); }
.btn-ghost:hover { border-color: var(--navy-700); background: var(--white); }
.bg-navy .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.28); }
.bg-navy .btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(10,22,38,0.06); }


.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 30px; height: 34px; flex-shrink: 0; }
.brand-name {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1;
}
.brand-name .grp { color: var(--gold-600); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 9px 13px; font-size: 0.9rem; font-weight: 500;
  color: var(--slate-600); border-radius: var(--radius); position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a.active { color: var(--navy-900); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--gold-500);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); transition: 0.3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 540px at 78% -10%, rgba(200,162,75,0.16), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--slate-700) 130%);
  color: var(--white);
  padding: 130px 0 120px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 600px at 20% 30%, #000 30%, transparent 80%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero .btn-row { margin-top: 0.5rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 48px; margin-top: 64px;
  padding-top: 38px; border-top: 1px solid var(--line-dark);
}
.hero-stat .n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-400); line-height: 1; }
.hero-stat .l { font-size: 0.82rem; color: var(--slate-300); letter-spacing: 0.04em; margin-top: 8px; }

/* ---------- Page header (interior) ---------- */
.page-head {
  background:
    radial-gradient(900px 460px at 85% -20%, rgba(200,162,75,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white); padding: 96px 0 80px;
}
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--slate-300); margin-bottom: 1.4rem; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Section heads ---------- */
.shead { margin-bottom: 56px; }
.shead.center { margin-left: auto; margin-right: auto; }
.shead h2 { margin-bottom: 0; }
.shead p { color: var(--slate-500); font-size: 1.12rem; margin-top: 1rem; margin-bottom: 0; }
.shead.center p { margin-left: auto; margin-right: auto; max-width: 64ch; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; padding: 36px 32px; transition: all 0.3s var(--ease);
  position: relative; height: 100%;
}
.card:hover { border-color: var(--slate-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card p { color: var(--slate-500); font-size: 0.98rem; margin-bottom: 0; }
.card .num {
  font-family: var(--serif); font-size: 0.95rem; color: var(--gold-600);
  font-weight: 600; letter-spacing: 0.08em; margin-bottom: 18px; display: block;
}
.card .ico {
  width: 46px; height: 46px; margin-bottom: 22px; color: var(--gold-600);
}
.card-link {
  margin-top: 22px; font-size: 0.9rem; font-weight: 600; color: var(--navy-700);
  display: inline-flex; align-items: center; gap: 7px;
}
.card-link .arr { transition: transform 0.25s var(--ease); }
.card:hover .card-link { color: var(--gold-700); }
.card:hover .card-link .arr { transform: translateX(4px); }

/* Outcome card variant */
.card-outcome { border-top: 3px solid var(--gold-500); }

/* Dark card */
.card-dark {
  background: var(--navy-800); border: 1px solid var(--line-dark); color: var(--slate-200);
}
.card-dark:hover { border-color: rgba(200,162,75,0.4); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: var(--slate-300); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
@media (max-width: 992px) {
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split--reverse .split-media {
        order: initial;
    }
}
.split--reverse .split-media { order: 2; }
.split-body h2 { margin-bottom: 0.6em; }
.split-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.split-list li {
  position: relative; padding: 0 0 0 30px; margin-bottom: 16px;
  color: var(--slate-600); font-size: 1rem;
}
.split-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  background: var(--gold-500); transform: rotate(45deg);
}

/* ---------- Framework diagram ---------- */
.framework { display: grid; gap: 18px; }
.fw-tier {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 28px 32px; box-shadow: var(--shadow-sm);
}
.fw-tier .fw-label {
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-600); margin-bottom: 14px;
}
.fw-items { display: flex; flex-wrap: wrap; gap: 10px; }
.fw-chip {
  background: var(--slate-050); border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 18px; font-size: 0.92rem;
  font-weight: 500; color: var(--slate-700);
}
.fw-tier--accent { background: var(--navy-900); border-color: var(--navy-900); }
.fw-tier--accent .fw-label { color: var(--gold-400); }
.fw-tier--accent .fw-chip { background: rgba(255,255,255,0.06); border-color: var(--line-dark); color: var(--white); }
.fw-arrow { text-align: center; color: var(--slate-300); font-size: 1.3rem; line-height: 0.5; }

/* ---------- AEGIS visual ---------- */
.aegis-visual {
  position: relative;
  min-height: 650px;
  max-width: 1040px;
  margin: 56px auto 0;
  scroll-margin-top: 110px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(520px 340px at 50% 48%, rgba(94,154,232,0.24), transparent 62%),
    radial-gradient(420px 260px at 86% 12%, rgba(216,184,106,0.16), transparent 58%),
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: 0 30px 80px rgba(0,29,61,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.aegis-visual-section {
  padding-top: 92px;
  scroll-margin-top: 110px;
}
.aegis-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 0 48%, transparent 82%);
  pointer-events: none;
}
.aegis-outcomes {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.aegis-outcomes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(216,184,106,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.aegis-lines {
  position: absolute;
  inset: 42px 56px 24px;
  width: calc(100% - 112px);
  height: calc(100% - 66px);
  z-index: 1;
  pointer-events: none;
}
.aegis-lines path {
  fill: none;
  stroke: url(#aegisLine);
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0.42;
  stroke-dasharray: 7 10;
}
.aegis-core {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 4;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.30), transparent 30%),
    linear-gradient(145deg, #0a3d72, #001d3d);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 26px 70px rgba(0,29,61,0.35),
    0 0 0 14px rgba(94,154,232,0.10),
    0 0 0 30px rgba(255,255,255,0.035);
}
.core-mark {
  font-family: var(--serif);
  color: #fff;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}
.core-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
}
.aegis-stage {
  position: absolute;
  width: 218px;
  min-height: 154px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(207,227,248,0.72);
  box-shadow: 0 20px 50px rgba(0,29,61,0.18);
  z-index: 5;
}
.aegis-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.aegis-stage h3 {
  color: var(--brand-navy);
  font-size: 1.22rem;
  margin-bottom: 0.35rem;
}
.aegis-stage p {
  color: #41627f;
  font-size: 0.88rem;
  line-height: 1.48;
  margin: 0;
}
.stage-letter {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-blue), #7db7ff);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.45rem;
  box-shadow: 0 10px 24px rgba(79,145,238,0.24);
}
.stage-a { left: 8%; top: 34%; }
.stage-e { left: 38%; top: 14%; }
.stage-g { right: 8%; top: 34%; }
.stage-i { right: 18%; bottom: 8%; }
.stage-s { left: 18%; bottom: 8%; }

/* Chrome-stable AEGIS process map */
.aegis-visual {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  padding: 34px;
  overflow: visible;
}
.aegis-lines { display: none; }
.aegis-outcomes {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  grid-column: 1 / -1;
  order: 1;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.aegis-core {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  grid-column: 1 / -1;
  order: 2;
  justify-self: center;
  width: min(560px, 100%);
  height: auto;
  min-height: 112px;
  border-radius: 999px;
  margin: 8px 0 16px;
}
.aegis-core::before,
.aegis-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(220px, 24vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,183,255,0.66));
}
.aegis-core::before {
  right: calc(100% + 18px);
}
.aegis-core::after {
  left: calc(100% + 18px);
  transform: scaleX(-1);
}
.aegis-stage {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 238px;
  order: 3;
  display: flex;
  flex-direction: column;
}
.aegis-stage::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(125,183,255,0.18), rgba(125,183,255,0.72));
}
.stage-a::before { display: none; }
.stage-a, .stage-e, .stage-g, .stage-i, .stage-s {
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

/* ---------- Stepper (AEGIS) ---------- */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 120px 1fr; gap: 40px;
  padding: 40px 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--serif); font-size: 3.4rem; line-height: 1;
  color: var(--gold-500); font-weight: 500;
}
.step-letter { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-400); display: block; margin-top: 6px; }
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--slate-500); margin-bottom: 0; }

/* ---------- Logo / credential strip ---------- */
.credstrip { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credstrip .label { text-align: center; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.cred-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.cred-items span { font-family: var(--serif); font-size: 1.25rem; color: var(--slate-500); font-weight: 500; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.statband .stat { text-align: center; }
.statband .n { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold-400); line-height: 1; }
.statband .l { color: var(--slate-300); font-size: 0.96rem; margin-top: 12px; }

/* ---------- Case study cards ---------- */
.case {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: all 0.3s var(--ease);
}
.case:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-top { padding: 34px 32px 0; }
.case-tag { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.case-metric { font-family: var(--serif); font-size: 2.6rem; color: var(--navy-900); line-height: 1.05; margin: 18px 0 10px; }
.case-body { padding: 0 32px 34px; }
.case-body h3 { font-size: 1.18rem; }
.case-body p { color: var(--slate-500); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- People ---------- */
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.person {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 40px; transition: all 0.3s var(--ease);
}
.person:hover { box-shadow: var(--shadow-md); }
.person-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin-bottom: 22px;
  background: linear-gradient(150deg, var(--navy-700), var(--slate-500));
  color: var(--gold-400); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
}
.person h3 { margin-bottom: 0.15rem; }
.person .role { color: var(--gold-700); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 1rem; }
.person p { color: var(--slate-500); font-size: 0.97rem; }
.person .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.person .tags span { font-size: 0.78rem; background: var(--slate-050); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; color: var(--slate-600); }

.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.advisor { text-align: center; padding: 32px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.advisor .person-avatar { margin: 0 auto 18px; }
.advisor h3 { font-size: 1.15rem; }
.advisor p { color: var(--slate-500); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Big CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 80% 120%, rgba(200,162,75,0.18), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white); text-align: center; padding: 100px 0;
}
.cta-band h2 { color: var(--white); max-width: 20ch; margin-left: auto; margin-right: auto; }
.cta-band p { color: var(--slate-200); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.12rem; }

/* ---------- Checklist / deliverables ---------- */
.deliverables { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.deliverables li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 20px 22px; font-weight: 500; color: var(--slate-700);
}
.deliverables li .chk {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-700);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  margin-top: 1px;
}

/* ---------- Pill list ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pills span { background: var(--slate-050); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: 0.9rem; color: var(--slate-600); }

/* ---------- Insights ---------- */
.post {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 34px 32px; height: 100%; transition: all 0.3s var(--ease); display: flex; flex-direction: column;
}
.post:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post .cat { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin-bottom: 14px; }
.post h3 { font-size: 1.25rem; }
.post p { color: var(--slate-500); font-size: 0.96rem; flex-grow: 1; }
.post .meta { font-size: 0.84rem; color: var(--muted); margin-top: 18px; }

/* ---------- Quote ---------- */
.pullquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.32; color: var(--ink); font-weight: 500;
   /* max-width: 22ch; */
   max-width: 100%;
}
.bg-navy .pullquote { color: var(--white); }
.pullquote .accent { color: var(--gold-600); }
.bg-navy .pullquote .accent { color: var(--gold-400); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--slate-300); padding: 80px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: var(--slate-400); font-size: 0.96rem; max-width: 34ch; margin-top: 18px; }
.footer-col h4 { font-family: var(--sans); font-size: 20px; font-weight:bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--slate-200); font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 30px; }
.footer-bottom p { margin: 0; font-size: 0.86rem; color: var(--slate-400); }
.footer-bottom .tm { color: var(--slate-300); }

/* ---------- Contact form ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 44px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--slate-700); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 0.98rem;
  border: 1px solid var(--slate-200); border-radius: var(--radius); color: var(--ink);
  background: var(--white); transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(200,162,75,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .aegis-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 104px 22px 24px;
  }
  .aegis-lines { display: none; }
  .aegis-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
    order: 0;
    width: 168px;
    height: 168px;
    margin: 0 0 8px;
  }
  .aegis-stage {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
  }
  .stage-a, .stage-e, .stage-g, .stage-i, .stage-s {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 76px; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--line); padding: 14px 20px 22px; gap: 2px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a,
  .nav-links.open .nav-menu-toggle {
    width: 100%;
    text-align: left;
    padding: 13px 12px;
    font-size: 1rem;
  }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    padding: 2px 0 8px 12px;
    margin: -2px 0 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-left: 2px solid var(--brand-line);
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .nav-links.open .has-menu.open .nav-dropdown,
  .nav-links.open .has-menu:focus-within .nav-dropdown {
    display: block;
  }
  .nav-links.open .nav-dropdown a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  .section { padding: 76px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr; gap: 32px; }
  .deliverables { grid-template-columns: 1fr; }
  .people, .advisor-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 64px 1fr; gap: 22px; }
  .step-num { font-size: 2.4rem; }
  .hero { padding: 90px 0 80px; }
  .field-row { grid-template-columns: 1fr; }
  .wrap { padding: 0 22px; }
  .aegis-visual {
    grid-template-columns: 1fr;
    padding-top: 158px;
    border-radius: 22px;
  }
  .aegis-outcomes {
    top: 22px;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 44px);
  }
  .aegis-outcomes span {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    white-space: normal;
    text-align: center;
  }
  .aegis-core {
    width: 148px;
    height: 148px;
  }
  .core-mark { font-size: 2.15rem; }
  .aegis-stage { padding: 20px; }
}

/* ============================================================
   TeamShield Group 2026 Bright Brand Refresh
   Source: LinkedIn banner visual identity
   ============================================================ */

:root {
  --brand-navy: #002b5c;
  --brand-navy-2: #073e78;
  --brand-blue: #4f91ee;
  --brand-blue-2: #72a4d8;
  --brand-ice: #f7fbff;
  --brand-line: #d9e9fb;
  --brand-green: #417b5a;
  --brand-yellow: #edf3d1;

  --navy-900: #06294f;
  --navy-800: #08345f;
  --navy-700: #0d477e;
  --navy-600: #145b9a;
  --slate-700: #14314e;
  --slate-600: #294a68;
  --slate-500: #51708d;
  --slate-400: #7291ad;
  --slate-300: #9ab5ce;
  --slate-200: #c6d8e9;
  --slate-100: #e6f0fa;
  --slate-050: #f4f9ff;
  --paper: #f7fbff;
  --gold-700: #0d66ba;
  --gold-600: #2f7ee8;
  --gold-500: #4f91ee;
  --gold-400: #72a4d8;
  --gold-100: #eaf4ff;
  --ink: #072a52;
  --body: #2f4e6b;
  --muted: #6a86a2;
  --line: #dceaf8;
  --line-dark: rgba(255, 255, 255, 0.22);
  --shadow-sm: 0 1px 2px rgba(8, 52, 95, 0.05);
  --shadow-md: 0 16px 36px rgba(25, 91, 160, 0.10);
  --shadow-lg: 0 28px 70px rgba(8, 52, 95, 0.16);
}

body {
  background:
    radial-gradient(900px 520px at 100% 0%, rgba(114,164,216,0.18), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--brand-ice) 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  pointer-events: none;
}
.site-header.scrolled { box-shadow: none; }

.nav {
  position: relative;
  height: 82px;
  width: 100%;
  max-width: var(--container);
  margin: 22px auto 0;
  padding: 0 var(--container-padding);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5, 20, 39, 0.88);
  box-shadow: 0 24px 70px rgba(8, 52, 95, 0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
display: flex; align-items: center; justify-content: space-between;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 650px;
}

/* .brand-image {
  width: 176px;
  min-width: 176px;
  height: 44px;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(114,164,216,0.26),
    0 6px 18px rgba(8,52,95,0.14);
} */
.brand-logo {
    display: block;
    width: 220px;
    max-width: 220px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}
.footer-logo {
  display: block;
  width: min(245px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,43,92,0.10));
}
.footer-contact {
  max-width: 42ch;
  margin-top: 16px;
  color: rgba(230,240,250,0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}
.footer-contact a {
  color: #eaf4ff;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #9fc9ff;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  padding-left: 9px;
  padding-right: 9px;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active::after { display: none; }

.nav-links {
  gap: 2px;
  margin-left: 12px;
  margin-right: auto;
}

.nav-links > li {
  position: relative;
}

.nav-menu-toggle {
  display: block;
  padding: 8px 9px;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-menu-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu-toggle:hover,
.nav-menu-toggle.active,
.has-menu:focus-within > .nav-menu-toggle {
  color: #fff;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 270px;
  padding: 10px;
  background: rgba(7, 24, 46, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(5,20,39,0.30);
  backdrop-filter: blur(18px) saturate(150%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 140;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.has-menu:hover > .nav-dropdown,
.has-menu:focus-within > .nav-dropdown,
.has-menu.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 0px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.25;
  border-bottom: 1px solid #ffffff40;
}


.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-dropdown a.active::after {
  display: none;
}

.nav-cta {
  gap: 6px;
  margin-left: 8px;
}
.nav-cta .btn {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
}
.nav-cta .btn-ghost {
  display: none;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.nav-cta .btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.nav-cta .btn-primary {
  box-shadow: none;
}

.btn { border-radius: 999px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), #6da9ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 30px rgba(79,145,238,0.23);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3b82e6, #83b8ff);
  border-color: transparent;
}
.btn-dark { background: var(--brand-navy); border-color: var(--brand-navy); }
.btn-ghost { background: rgba(255,255,255,0.72); border-color: var(--brand-line); color: var(--brand-navy); }

.hero {
  color: var(--ink);
  background:
    radial-gradient(880px 520px at 88% 18%, rgba(114,164,216,0.18), transparent 62%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 52%, #f4f9ff 100%);
  padding: 140px 0 102px;
  min-height: 690px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  display: none;
  position: absolute;
  top: 96px;
  right: -142px;
  bottom: 22px;
  width: min(54vw, 740px);
  background: url("../assets/teamshield-hero-visual.svg?v=20260622-no-check") right center / contain no-repeat;
  opacity: 0.88;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  display: none;
}
.hero .wrap {
  max-width: var(--maxw);
  position: relative;
  z-index: 2;
}
.hero .eyebrow,
.hero h1,
.hero .lede,
.hero .btn-row,
.hero .hero-stats {
  max-width: 780px;
  position: relative;
  z-index: 3;
}
.hero h1 {
  color: #001d3d;
  font-weight: 700;
  text-shadow: 0 2px 0 rgba(255,255,255,0.86);
}
.hero .lede { color: #244b70; font-weight: 500; }
.hero-stats { border-top-color: rgba(79,145,238,0.22); }
.hero-stat .n { color: var(--brand-blue); }
.hero-stat .l { color: #5c7893; }

@media (max-width: 768px) {

    .hero {
        padding: 100px 0 80px;
    }

    .hero-stats {
        gap: 24px;
        flex-direction: column;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero .lede {
        max-width: 100%;
    }
}
.page-head {
  background:
    radial-gradient(760px 380px at 92% 20%, rgba(114,164,216,0.22), transparent 62%),
    linear-gradient(110deg, #ffffff 0%, #ffffff 54%, #f3f9ff 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--brand-line);
  position: relative;
  overflow: hidden;

    padding: 118px 0 102px;
    min-height: 690px;
    display: flex;
    align-items: center;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(79,145,238,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,145,238,0.055) 1px, transparent 1px),
    radial-gradient(540px 320px at 86% 24%, rgba(79,145,238,0.18), transparent 64%),
    radial-gradient(360px 220px at 16% 86%, rgba(114,164,216,0.10), transparent 62%);
  background-size: 44px 44px, 44px 44px, auto, auto;
  opacity: 1;
  pointer-events: none;
  transform: none;
}
.page-head .wrap {
  position: relative;
  z-index: 1;
}
.page-head h1 { color: var(--brand-navy); }
.page-head .lede { color: #335a7b; }
.breadcrumb { color: #6d8ba7; }
.bg-navy .eyebrow,
.eyebrow { color: var(--brand-blue); }

.bg-paper,
.bg-slate {
  background:
    linear-gradient(rgba(79,145,238,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,145,238,0.045) 1px, transparent 1px),
    radial-gradient(920px 460px at 100% 0%, rgba(114,164,216,0.18), transparent 62%),
    radial-gradient(760px 360px at 0% 100%, rgba(79,145,238,0.065), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--brand-ice) 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}
.bg-navy {
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(760px 420px at 86% 12%, rgba(114,164,216,0.24), transparent 56%),
    radial-gradient(520px 320px at 10% 92%, rgba(79,145,238,0.15), transparent 60%),
    linear-gradient(145deg, var(--brand-navy), #073b70 58%, #0a518e);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.section.bg-paper,
.section.bg-slate,
.section.bg-navy,
.credstrip,
.cta-band,
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.card,
.case,
.person,
.advisor,
.post,
.form-card,
.fw-tier,
.deliverables li {
  border-color: rgba(114,164,216,0.28);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(8,52,95,0.05);
}
.card:hover,
.case:hover,
.post:hover {
  border-color: rgba(79,145,238,0.42);
  box-shadow: 0 20px 46px rgba(8,52,95,0.13);
}
.card-outcome {
  border-top: 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(79,145,238,0.72), rgba(114,164,216,0.16)) border-box;
  border: 1px solid transparent;
}

.rule,
.split-list li::before { background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2)); }
.ico,
.card .ico { color: var(--brand-blue); }
.credstrip { background: #fff; border-color: var(--brand-line); }
.cred-items span { color: #4f6f8c; }
.person-avatar { background: linear-gradient(145deg, var(--brand-navy), var(--brand-blue)); color: #fff; }

.cta-band,
.site-footer {
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(760px 420px at 82% 18%, rgba(114,164,216,0.26), transparent 58%),
    radial-gradient(520px 320px at 14% 88%, rgba(79,145,238,0.16), transparent 60%),
    linear-gradient(145deg, #05284f, #073b70 62%, #0b4f88);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}
.footer-col a:hover { color: #9fc9ff; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(79,145,238,0.16);
}
.pills span,
.fw-chip,
.person .tags span {
  background: var(--brand-ice);
  border-color: var(--brand-line);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(114,164,216,0.30);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(8,52,95,0.07);
}
.service-panel h3 { font-size: 1.18rem; }
.service-panel ul { margin: 14px 0 0; padding: 0; list-style: none; }
.service-panel li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: var(--slate-600);
  font-size: 0.93rem;
  line-height: 1.42;
}
.service-panel li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  position: absolute;
  left: 0;
  top: 0.62em;
}

@media (max-width: 1120px) {
  .brand-logo { width: 140px; max-width: 140px; height: auto; max-height: 32px; }
  .brand-image { width: 168px; min-width: 168px; }
  .nav-links a { padding-left: 8px; padding-right: 8px; }
  .nav-menu-toggle { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 1040px) {
  .nav-cta .btn-ghost { display: none; }
  .brand-logo { width: 132px; max-width: 132px; height: auto; max-height: 31px; }
  .brand-image { width: 158px; min-width: 158px; }
}

@media (max-width: 860px) {
  .nav {
    width: min(100% - 28px, 720px);
    margin-top: 14px;
    padding-right: 10px;
  }
  .nav-cta { display: none; }
  .brand-image { width: 154px; min-width: 154px; }
  .brand-logo { width: 128px; max-width: 128px; height: auto; max-height: 30px; }
  .nav-toggle span { background: #fff; }
  .nav-links.open {
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7, 24, 46, 0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(5,20,39,0.32);
  }
  .nav-links.open a,
  .nav-links.open .nav-menu-toggle {
    color: rgba(255,255,255,0.84);
  }
  .nav-links.open a:hover,
  .nav-links.open .nav-menu-toggle:hover,
  .nav-links.open a.active {
    color: #fff;
    background: rgba(255,255,255,0.07);
  }
  .nav-links.open .nav-dropdown {
    border-left-color: rgba(94,154,232,0.55);
  }
  .nav-links.open .nav-dropdown a {
    color: rgba(255,255,255,0.72);
  }
  .hero {
    min-height: auto;
    padding: 88px 0 74px;
    background:
      radial-gradient(620px 340px at 92% 10%, rgba(114,164,216,0.20), transparent 62%),
      linear-gradient(180deg, #ffffff, #f7fbff);
  }
  .hero::before {
    top: 74px;
    right: -170px;
    bottom: auto;
    width: 520px;
    height: 360px;
    opacity: 0.18;
    background-size: contain;
  }
  .service-matrix { grid-template-columns: 1fr; }
}


.mw-100 {
    max-width: 100% !important;
}
.person-avatar img {
    border-radius: 50%;
}
.cta-band .reveal {
    max-width: 100%;
}
.cta-band .btn-row {
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.cont-wrap .wrap {
  max-width: 100%;
}
.cont-wrap .pullquote {
    max-width: 100% !important;
}

.agis-section .split {
    align-items: start;
}

.check-field input {
    width: fit-content;
}
.g-gap{
  gap: 12px;
}
.g-gap .card{
  padding: 20px;
}
.full-grid {
  max-width: 100%;
  grid-template-columns: repeat(3, 1fr);

}
.two-grid{
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

form.js-form {
    border: 1px solid #ffffff33;
    padding: 20px;
    border-radius: 5px;
}

.service-card-wrap .card, #cont-form {
    scroll-margin-top: 150px;
}

.grid-dropdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 435px;
    gap: 0 16px;
}
