:root {
  --blue-950: #071538;
  --blue-900: #0b2c92;
  --blue-800: #114ce3;
  --blue-600: #1777ff;
  --cyan: #20d6ff;
  --mint: #10b981;
  --ink: #101729;
  --muted: #647084;
  --line: #e4e9f2;
  --soft: #f3f6fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(14, 38, 91, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8vw;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(7, 21, 56, .09);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}
.brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.brand-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.brand-mark span:nth-child(1) { transform: translateY(-7px); }
.brand-mark span:nth-child(2) { transform: translate(-6px, 5px); }
.brand-mark span:nth-child(3) { transform: translate(6px, 5px); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.nav-links a { opacity: .9; }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: .9;
}
.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.client-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 26px);
  left: 50%;
  width: 285px;
  padding: 10px 0;
  background: #081124;
  border-right: 5px solid var(--blue-600);
  border-radius: 3px;
  box-shadow: 0 24px 60px rgba(4, 18, 77, .28);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.client-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  height: 26px;
}
.client-menu a {
  display: block;
  padding: 14px 18px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 1 !important;
}
.client-menu a:hover,
.client-menu a:focus {
  background: rgba(255,255,255,.08);
  outline: 0;
}
.nav-dropdown:hover .client-menu,
.nav-dropdown:focus-within .client-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header-cta {
  background: #fff;
  color: var(--blue-900);
  border-radius: 4px;
  padding: 13px 19px;
  font-size: 13px;
  font-weight: 800;
}
.is-scrolled .header-cta {
  background: var(--blue-800);
  color: #fff;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  min-height: 880px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 78% 28%, rgba(34, 218, 255, .9) 0, rgba(34, 218, 255, .45) 18%, transparent 34%),
              linear-gradient(142deg, #0925b6 0%, #115df5 52%, #0537df 100%);
  padding: 118px 8vw 92px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -9% -23% -9%;
  height: 330px;
  background: radial-gradient(ellipse at center, rgba(32, 214, 255, .75), transparent 68%);
  filter: blur(10px);
}
.hero-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-one {
  width: 500px;
  height: 500px;
  right: -120px;
  top: 170px;
  background: rgba(255,255,255,.13);
}
.hero-bg-two {
  width: 330px;
  height: 330px;
  left: -115px;
  bottom: 40px;
  border: 2px solid rgba(255,255,255,.12);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}
.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.small-label,
.section-kicker {
  margin: 0 0 13px;
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 800;
}
.hero .small-label { color: #dff9ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .98;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 730px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-light { background: #fff; color: var(--blue-900); }
.btn-primary { background: var(--blue-800); color: #fff; }
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}
.hero-stage {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.hero-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(4, 18, 77, .34);
  border: 8px solid rgba(255,255,255,.2);
}
.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  padding: 18px;
  box-shadow: var(--shadow);
  width: 245px;
}
.floating-card strong {
  display: block;
  font-size: 14px;
  margin: 7px 0 6px;
}
.floating-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.people-card { left: -82px; bottom: -35px; }
.support-card {
  right: -90px;
  bottom: -25px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 13px;
}
.support-card p { grid-column: 2; }
.avatar-row { display: flex; }
.avatar-row span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -7px;
  background: linear-gradient(135deg, #6ee7ff, #155df4);
}
.avatar-row span:nth-child(2) { background: linear-gradient(135deg, #ffc857, #ff5a5f); }
.avatar-row span:nth-child(3) { background: linear-gradient(135deg, #96f7d2, #10b981); }
.avatar-row span:nth-child(4) { background: linear-gradient(135deg, #d8b4fe, #4f46e5); }
.round-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-800);
  color: #fff;
  font-weight: 900;
}
.stamp {
  position: absolute;
  top: -28px;
  right: -54px;
  width: 86px;
  height: 86px;
  border: 2px dashed rgba(255,255,255,.78);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  transform: rotate(-12deg);
}

.section {
  padding: 112px 8vw;
}
.split,
.wide-split {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.split h2,
.wide-split h2,
.section-heading h2,
.contact-cta h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.split p,
.wide-split p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-800);
  font-weight: 800;
}
.portrait-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portrait-strip img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.portrait-strip img:nth-child(2) { margin-top: 34px; }

.stats-band {
  max-width: 1120px;
  margin: -22px auto 0;
  position: relative;
  z-index: 3;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--blue-800);
  font-size: 38px;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.services,
.history,
.faq {
  background: var(--soft);
}
.section-heading {
  max-width: 690px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-intro {
  margin: -6px auto 22px;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}
.service-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.04fr 1fr;
  gap: 24px;
  align-items: center;
}
.service-list {
  display: grid;
  gap: 22px;
}
.service-card {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 15px 45px rgba(14, 38, 91, .08);
}
.service-icon {
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 900;
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}
.service-card p,
.history-grid p,
.competency-grid p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.service-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.wide-split img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.steps {
  max-width: 1120px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps article {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  min-height: 206px;
}
.steps .active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #156cff, #26c6ff);
  box-shadow: var(--shadow);
}
.steps span,
.history-grid span,
.large-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 900;
}
.steps .active span,
.steps .active p { color: rgba(255,255,255,.82); }
.steps h3 { font-size: 17px; margin-bottom: 11px; }
.steps p { color: var(--muted); line-height: 1.6; font-size: 13px; margin: 0; }

.history-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.history-grid article {
  background: #fff;
  border-radius: 6px;
  padding: 26px;
  border-top: 4px solid var(--blue-800);
}
.history-grid h3 { margin-bottom: 10px; }

.achievement-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 215px 215px;
  gap: 20px;
}
.achievement-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}
.achievement-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.large-card {
  grid-row: span 2;
}
.large-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,17,44,.8));
}
.large-card div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: #fff;
}
.large-card span { color: #fff; }
.large-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.competency-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.competency-grid article {
  text-align: center;
}
.logo-panel {
  width: 100%;
  height: 270px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #071538, #114ce3);
  box-shadow: var(--shadow);
}
.logo-panel::before,
.logo-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.logo-panel::before {
  width: 170px;
  height: 170px;
  right: -48px;
  top: -42px;
  background: rgba(32, 214, 255, .28);
}
.logo-panel::after {
  width: 120px;
  height: 120px;
  left: -38px;
  bottom: -36px;
  border: 1px solid rgba(255, 255, 255, .22);
}
.logo-panel span,
.logo-panel small {
  position: relative;
  z-index: 1;
}
.logo-panel > span:first-child {
  font-size: 28px;
  font-weight: 900;
}
.logo-panel small {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
.security-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
  gap: 12px;
}
.security-panel span,
.architecture-panel span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  font-weight: 900;
  font-size: 14px;
}
.architecture-panel {
  background: linear-gradient(135deg, #09245f, #13a4ff);
}
.responsibility-panel {
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(135deg, #071538, #0b2c92);
  background-size: 26px 26px, 26px 26px, auto;
}
.responsibility-panel > span:first-child {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
}
.competency-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}
details p { margin-top: 12px; }

.testimonials {
  background: #fff;
}
.testimonial-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.testimonial-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(14, 38, 91, .08);
}
.featured-testimonial {
  grid-row: span 3;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(32, 214, 255, .34), transparent 30%),
    linear-gradient(135deg, #071538, #114ce3);
  border-color: transparent;
}
.quote-mark {
  position: absolute;
  top: 14px;
  right: 28px;
  color: rgba(255,255,255,.18);
  font-size: 110px;
  line-height: 1;
  font-weight: 800;
}
.stars {
  color: #1d7bff;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}
.featured-testimonial .stars {
  color: #8be5ff;
}
.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.featured-testimonial p {
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.85;
}
.testimonial-card footer {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}
.testimonial-card strong {
  color: var(--ink);
  font-size: 15px;
}
.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.featured-testimonial strong {
  color: #fff;
}
.featured-testimonial span {
  color: rgba(255,255,255,.68);
}

.contact-cta {
  padding: 96px 8vw;
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(24,119,255,.55), transparent 34%),
              linear-gradient(135deg, #071538, #0b1e4d 55%, #061026);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.contact-cta > div,
.contact-form {
  max-width: 560px;
}
.contact-cta .section-kicker { color: #7cdcff; }
.contact-cta p {
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  justify-self: end;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 4px;
  min-height: 48px;
  padding: 0 16px;
  font: inherit;
}
.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.58); }
.contact-form button { justify-self: start; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 54px 8vw;
  color: rgba(255,255,255,.74);
  background: #050b18;
}
.site-footer h3 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 15px;
}
.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255,255,255,.68);
  margin: 0 0 10px;
  line-height: 1.6;
  font-size: 14px;
}
.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.services-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 132px 8vw 80px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(32, 214, 255, .52), transparent 31%),
    linear-gradient(142deg, #071538 0%, #0b2c92 52%, #115df5 100%);
}
.services-hero-copy {
  max-width: 760px;
}
.services-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
}
.services-hero p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.75;
}
.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.anchor-pills a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 4px;
  padding: 0 14px;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 800;
}
.services-hero-visual {
  position: relative;
}
.services-hero-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 80px rgba(4, 18, 77, .4);
}
.service-orbit {
  position: absolute;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  font-weight: 900;
}
.orbit-one { top: -28px; left: -28px; }
.orbit-two { right: -30px; top: 42%; }
.orbit-three { left: 18%; bottom: -28px; }
.service-detail {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: start;
  padding: 104px 8vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.service-detail.alt {
  background: var(--soft);
}
.service-number {
  position: sticky;
  top: 104px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  background: #eef6ff;
  border-radius: 50%;
  font-weight: 900;
}
.service-detail-main {
  max-width: 730px;
}
.service-detail-main h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.service-detail-main p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.detail-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(14, 38, 91, .08);
}
.alt .detail-panel {
  border-color: transparent;
}
.detail-panel h3 {
  margin: 0 0 14px;
  font-size: 17px;
}
.detail-panel h3:not(:first-child) {
  margin-top: 28px;
}
.detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.detail-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-800);
  box-shadow: 0 0 0 5px #eef6ff;
}
.detail-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header { padding: 0 5vw; }
  .nav-links,
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header.is-open {
    height: auto;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(7, 21, 56, .96);
    color: #fff;
  }
  .site-header.is-open .nav-links {
    display: grid;
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 70px;
    gap: 16px;
    padding: 22px 0;
    background: transparent;
  }
  .site-header.is-open .nav-dropdown {
    display: grid;
    gap: 12px;
  }
  .site-header.is-open .nav-dropdown-trigger {
    justify-self: start;
    color: inherit;
  }
  .site-header.is-open .client-menu {
    position: static;
    width: min(320px, 100%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }
  .site-header.is-open .client-menu::before {
    display: none;
  }
  .hero { min-height: 760px; padding-left: 5vw; padding-right: 5vw; }
  .hero-stage { max-width: 680px; }
  .people-card { left: 16px; }
  .support-card { right: 16px; }
  .stamp { right: 10px; }
  .split,
  .wide-split,
  .contact-cta,
  .services-hero,
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-number {
    position: static;
  }
  .service-layout,
  .steps,
  .history-grid,
  .competency-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-testimonial {
    grid-row: auto;
    grid-column: span 2;
  }
  .service-image { order: -1; }
  .service-image img { height: 340px; }
  .achievement-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px 200px;
  }
  .large-card { grid-column: span 2; grid-row: span 1; }
  .contact-form { justify-self: stretch; max-width: none; }
}

@media (max-width: 680px) {
  .hero {
    min-height: 840px;
    padding-top: 104px;
  }
  .hero-image-wrap img { height: 280px; }
  .floating-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }
  .support-card { display: block; }
  .support-card p { grid-column: auto; }
  .round-icon { margin-bottom: 10px; }
  .stamp { display: none; }
  .section { padding: 78px 5vw; }
  .stats-band,
  .service-layout,
  .steps,
  .history-grid,
  .competency-grid,
  .faq-grid,
  .testimonial-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .featured-testimonial {
    grid-column: auto;
  }
  .stats-band {
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .portrait-strip { gap: 10px; }
  .portrait-strip img { height: 250px; }
  .achievement-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .large-card { grid-column: auto; min-height: 310px; }
  .contact-cta { padding: 76px 5vw; }
  .services-hero { padding: 112px 5vw 72px; }
  .services-hero-visual img { height: 300px; }
  .service-detail { padding: 76px 5vw; gap: 24px; }
  .detail-panel { padding: 22px; }
}
