﻿:root {
  --ink: #10243a;
  --ink-2: #203a56;
  --navy: #071d34;
  --navy-2: #0d2b4a;
  --navy-3: #153b62;
  --blue: #245fdb;
  --blue-hover: #184bb8;
  --blue-soft: #eaf1ff;
  --brand: #ee9a27;
  --brand-soft: #fff4e4;
  --muted: #5f6f80;
  --muted-light: #9fb0c2;
  --line: #dce4ed;
  --line-strong: #c8d3df;
  --soft: #f3f6fa;
  --paper: #f9fbfd;
  --white: #ffffff;
  --danger: #b42338;
  --shadow-sm: 0 10px 30px rgba(7, 29, 52, .07);
  --shadow-md: 0 24px 64px rgba(7, 29, 52, .13);
  --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(16, 36, 58, .09);
  background: rgba(255, 255, 255, .98);
  transition: height .24s ease, box-shadow .24s ease;
}
.site-header.scrolled {
  height: 70px;
  box-shadow: 0 12px 36px rgba(7, 29, 52, .09);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  min-width: 248px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 42px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand-sub {
  margin-top: 5px;
  color: #718092;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .11em;
  white-space: nowrap;
}
.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: #34485e;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--blue); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.header-action {
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.phone-link .inline-icon { color: var(--blue); }
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: var(--blue);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0;
}
.menu-button::before,
.menu-button::after,
.menu-button span {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-open .menu-button span { opacity: 0; }
.menu-open .menu-button::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button::after { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop { display: none; }

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(.98) contrast(1.04);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: var(--navy);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 72px;
  left: calc(50% - 2px);
  width: 4px;
  height: 88px;
  background: var(--brand);
}
.hero-inner { position: relative; z-index: 3; }
.hero-copy {
  width: 530px;
  max-width: 43%;
  padding: 86px 0 90px;
}
.hero-home .hero-copy { width: 560px; }
.hero-home .hero-media { background-position: center; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f6b55c; }
.hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: -.035em;
}
.hero h1 span {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: #cbd7e4;
  font-size: 20px;
  font-weight: 550;
  line-height: 1.55;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 520px;
  margin: 0;
  color: #b8c7d6;
  font-size: 16px;
  line-height: 1.9;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  color: #e4ebf2;
  font-size: 12px;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2px;
  background: rgba(255,255,255,.055);
}
.hero .micro-icon { color: #f4ad4d; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.breadcrumb {
  margin-bottom: 26px;
  color: #8fa3b8;
  font-size: 12px;
}
.breadcrumb a { color: #dce6ef; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; color: #61788f; }
.page-hero { min-height: 500px; }
.page-hero .hero-copy { padding: 64px 0 70px; }
.page-hero h1 { font-size: clamp(40px, 3.4vw, 50px); }
.page-hero h1 span { font-size: 18px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 25px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  box-shadow: 0 10px 24px rgba(36, 95, 219, .22);
}
.btn.secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}
.btn.secondary:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
  box-shadow: none;
}
.hero .btn:not(.secondary) {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}
.hero .btn:not(.secondary):hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}
.hero .btn.secondary {
  border-color: rgba(255,255,255,.44);
  background: transparent;
  color: #fff;
}
.hero .btn.secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.btn.gold {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--navy);
}
.btn.gold:hover {
  border-color: #f7b555;
  background: #f7b555;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.inline-icon,
.micro-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.micro-icon { width: 14px; height: 14px; color: var(--blue); }

.section { padding: 92px 0; }
.section.compact { padding: 60px 0; }
.section.soft { background: var(--soft); }
.section.warm { background: #eaf0f6; }
.section.dark { color: #fff; background: var(--navy); }
.hero + .section.compact.warm {
  padding: 0;
  background: var(--white);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.section-head h2,
.intro-copy h2,
.contact-panel h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: -.025em;
}
.section-head h2 {
  position: relative;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0 14px, var(--blue) 14px 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s ease .12s;
}
.section-head.visible h2::after { transform: scaleX(1); }
.section-head p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.section-link,
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.section-link { flex: 0 0 auto; }
.card-more .inline-icon,
.section-link .inline-icon { transition: transform .22s ease; }
.service-card:hover .card-more .inline-icon,
.section-link:hover .inline-icon { transform: translateX(4px); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 6px 6px 0 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #bccce0;
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid #d5e1ef;
  border-radius: 5px;
  background: #edf3fa;
  color: var(--navy-3);
  transition: transform .24s ease, color .22s ease, background .22s ease, border-color .22s ease;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .card-icon {
  transform: translateY(-3px);
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.service-card h3,
.solution-card h3,
.case-card h3,
.team-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 720;
  line-height: 1.45;
}
.service-card p,
.solution-card p,
.case-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.card-more { margin-top: auto; padding-top: 22px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 76px;
  align-items: center;
}
.intro-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: visible;
  background: #dfe6ee;
}
.intro-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -16px;
  bottom: -16px;
  width: 52%;
  height: 46%;
  background: var(--navy);
}
.intro-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(7,29,52,.12);
  pointer-events: none;
  transition: transform .5s ease;
}
.intro-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform .5s ease;
}
.intro-image:hover { background: transparent; }
.intro-image:hover img { transform: translate(-4px, -4px); }
.intro-image:hover::after { transform: translate(-4px, -4px); }
.intro-copy p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 30px 0;
}
.feature-item {
  position: relative;
  min-height: 32px;
  padding: 5px 0 5px 24px;
  color: #31475f;
  font-size: 14px;
  font-weight: 600;
}
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 3px;
  background: var(--brand);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.solution-card,
.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.solution-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  border-color: #bdcce0;
  box-shadow: var(--shadow-md);
}
.solution-image,
.case-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe6ee;
}
.solution-image::after,
.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(7,29,52,.1);
  pointer-events: none;
}
.solution-image img,
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform .45s ease;
}
.solution-card:hover img,
.case-card:hover img { transform: scale(1.035); }
.solution-body,
.case-body { padding: 24px; }
.solution-tag {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
}
.process::before,
.process::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 9%;
  left: 4%;
  height: 2px;
}
.process::before { background: #cdd7e2; }
.process::after {
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s ease;
}
.process.in-view::after { transform: scaleX(1); }
.process-item {
  position: relative;
  min-height: 150px;
  padding-right: 34px;
}
.process-index {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid #cbd6e1;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.process.in-view .process-index {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.process.in-view .process-item:nth-child(1) .process-index { transition-delay: .08s; }
.process.in-view .process-item:nth-child(2) .process-index { transition-delay: .22s; }
.process.in-view .process-item:nth-child(3) .process-index { transition-delay: .36s; }
.process.in-view .process-item:nth-child(4) .process-index { transition-delay: .50s; }
.process.in-view .process-item:nth-child(5) .process-index { transition-delay: .64s; }
.process-item h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 720;
}
.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 13px;
}
.case-meta span {
  padding: 3px 9px;
  border: 1px solid #d8e2ed;
  border-radius: 2px;
  background: #f2f6fa;
  color: #4e6379;
  font-size: 11px;
}
.case-result {
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #263e57;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.logo-item {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #52677d;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: color .2s ease, background .2s ease;
}
.logo-item:hover {
  background: var(--navy);
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.quote {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.quote h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 720;
}
.quote p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.team-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #dfe6ee;
}
.team-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: none;
}
.team-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 510px;
  max-width: 58%;
  padding: 38px;
  border-top: 4px solid var(--brand);
  background: rgba(7, 29, 52, .95);
  color: #fff;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.team-caption h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 720;
}
.team-caption p { margin: 0; color: #c5d2df; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.team-card {
  min-height: 205px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}
.team-role {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}
.team-card p { margin-top: 14px; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open {
  border-color: #b8c9de;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 14px;
  font-weight: 650;
}
.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 23px;
  font-weight: 350;
  transition: transform .3s ease;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transition: grid-template-rows .38s ease, opacity .25s ease;
}
.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  line-height: 1.9;
  transition: padding-bottom .38s ease;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-item.open .faq-answer-inner { padding-bottom: 20px; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--navy-2);
  box-shadow: 0 20px 44px rgba(7,29,52,.13);
}
.stat-item {
  position: relative;
  padding: 30px 20px;
  text-align: center;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,.14);
}
.stat-number {
  min-width: 74px;
  color: #f5ad49;
  font-size: 32px;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
}
.stat-label {
  color: #c2cfdb;
  font-size: 12px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.challenge-item {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 3px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.challenge-item strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 14px;
}
.challenge-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  border-top: 5px solid var(--brand);
  background: var(--navy);
  color: #fff;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 8%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-band .eyebrow { margin-bottom: 10px; color: #f4ae4f; }
.cta-band h2 { color: #fff; }
.cta-band p { margin: 9px 0 0; color: #b9c8d7; font-size: 15px; }

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
}
.contact-panel {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-panel p { color: var(--muted); }
.contact-list { margin-top: 31px; }
.contact-line {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}
.contact-line span { color: var(--muted); font-size: 14px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #344a61;
  font-size: 12px;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ccd8e4;
  border-radius: 3px;
  outline: 0;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input,
.form-field select { height: 49px; padding: 0 14px; }
.form-field textarea {
  min-height: 128px;
  padding: 12px 14px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,95,219,.11);
}
.form-field.invalid input,
.form-field.invalid textarea { border-color: var(--danger); }
.form-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 11px;
}
.form-status {
  min-height: 26px;
  margin-top: 14px;
  color: #52708e;
  font-size: 13px;
}
.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #dfe6ee;
}
.location-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: none;
}
.map-label {
  position: absolute;
  left: 30px;
  bottom: 30px;
  min-width: 350px;
  padding: 24px 26px;
  border-left: 4px solid var(--brand);
  background: rgba(7,29,52,.95);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.map-label strong,
.map-label span { display: block; }
.map-label strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}
.map-label span { color: #c5d2df; font-size: 12px; }

.site-footer {
  color: #98aabd;
  background: #06182b;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .78fr) 1.2fr;
  gap: 42px;
  padding: 64px 0 46px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #8297ab; }
.footer-brand .brand-mark img {
  filter: none;
  opacity: 1;
}
.footer-brand p {
  margin: 22px 0 0;
  color: #8fa2b6;
  font-size: 13px;
}
.footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 9px;
  color: #94a7ba;
  font-size: 12px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #6f8499;
  font-size: 11px;
}

.mobile-bar { display: none; }
.back-to-top {
  position: fixed;
  z-index: 85;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d4df;
  border-radius: 3px;
  background: #fff;
  color: var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  box-shadow: var(--shadow-sm);
  transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover { background: var(--navy); color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1180px) {
  .site-nav { gap: 22px; }
  .header-action { min-width: auto; }
  .header-cta { display: none; }
  .hero-copy { max-width: 45%; }
  .solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.25fr repeat(2, .8fr) 1.1fr; }
  .footer-col.hide-tablet { display: none; }
}

@media (max-width: 960px) {
  .brand { min-width: 220px; }
  .phone-link span { display: none; }
  .header-action { min-width: 30px; }
  .hero-copy { max-width: 47%; }
  .hero h1 { font-size: 43px; }
  .hero h1 span { font-size: 17px; }
  .challenge-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body { padding-bottom: 58px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header,
  .site-header.scrolled { height: 66px; }
  .brand { min-width: 0; }
  .brand-mark { width: 37px; height: 30px; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 7px; }
  .header-action { display: none; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    z-index: 102;
    inset: 66px 0 0;
    display: block;
    height: auto;
    padding: 20px 26px 42px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .menu-open .site-nav { transform: translateX(0); }
  .nav-link {
    width: 100%;
    height: 58px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
  }
  .nav-link::after { display: none; }
  .nav-backdrop {
    position: fixed;
    z-index: 99;
    inset: 66px 0 0;
    display: block;
    background: rgba(7,29,52,.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .menu-open .nav-backdrop { opacity: 1; pointer-events: auto; }

  .hero,
  .page-hero {
    min-height: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .hero::before,
  .hero::after { display: none; }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    flex: 0 0 auto;
    background-position: center;
  }
  .hero-inner { width: min(calc(100% - 30px), var(--container)); }
  .hero-copy,
  .hero-home .hero-copy,
  .page-hero .hero-copy {
    width: 100%;
    max-width: none;
    padding: 58px 0 52px;
  }
  .hero h1,
  .page-hero h1 { font-size: 40px; }
  .hero h1 span,
  .page-hero h1 span { font-size: 17px; }
  .hero-lead { max-width: 650px; font-size: 15px; }
  .hero-points { margin-bottom: 30px; }
  .breadcrumb { margin-bottom: 20px; }

  .section { padding: 70px 0; }
  .section.compact { padding: 52px 0; }
  .hero + .section.compact.warm { padding: 0; }
  .section-head { align-items: flex-start; margin-bottom: 30px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .service-card { min-height: 238px; padding: 24px; }
  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-copy { order: -1; }
  .intro-image { overflow: hidden; }
  .intro-image::before { display: none; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 32px; }
  .process::before,
  .process::after { display: none; }
  .case-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-list { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.35fr 1fr 1fr; gap: 30px; }
  .footer-contact { grid-column: 1 / -1; }

  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-item { padding: 25px 12px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .challenge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .challenge-item:last-child { grid-column: 1 / -1; }

  .mobile-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -6px 24px rgba(7,29,52,.1);
    backdrop-filter: blur(16px);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-bar a + a {
    border-left: 1px solid rgba(255,255,255,.18);
    background: var(--blue);
    color: #fff;
  }
  .back-to-top { right: 14px; bottom: 72px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-copy { gap: 0; }
  .brand-name { font-size: 14px; letter-spacing: .02em; }
  .brand-sub { max-width: 145px; overflow: hidden; }
  .hero-inner { width: min(calc(100% - 30px), var(--container)); }
  .hero-media { height: 235px; }
  .hero-copy,
  .hero-home .hero-copy,
  .page-hero .hero-copy { padding: 45px 0 42px; }
  .hero h1,
  .page-hero h1 { font-size: 34px; }
  .hero h1 span,
  .page-hero h1 span { font-size: 15px; }
  .hero-lead { font-size: 14px; line-height: 1.85; }
  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: start;
    gap: 8px;
    margin: 22px 0 26px;
  }
  .hero-points li { padding: 0 9px; font-size: 11px; }
  .hero-actions .btn { flex: 1; min-width: 0; padding: 0 12px; }
  .btn { min-height: 45px; padding: 0 20px; }
  .section { padding: 60px 0; }
  .section.compact { padding: 46px 0; }
  .section-head { display: block; }
  .section-link { margin-top: 14px; }
  .section-head h2,
  .intro-copy h2,
  .contact-panel h2,
  .cta-band h2 { font-size: 29px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; padding: 24px; }
  .card-icon { width: 46px; height: 46px; margin-bottom: 22px; }
  .solution-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-item { min-height: 140px; padding-right: 18px; }
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-item { min-height: 76px; font-size: 13px; }
  .team-visual,
  .team-visual img { min-height: 420px; }
  .team-caption {
    width: 100%;
    max-width: none;
    padding: 26px;
  }
  .team-caption h3 { font-size: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-top: 48px;
  }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-panel { padding: 26px; }
  .map-panel { min-height: 330px; }
  .location-image { height: 330px; }
  .map-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 20px;
  }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-item:last-child { grid-column: auto; }
  .cta-band { padding: 58px 0; }
  .cta-band::after { right: -180px; }
}

@media (max-width: 350px) {
  .hero h1,
  .page-hero h1 { font-size: 31px; }
  .hero-actions { flex-direction: column; }
  .service-card { min-height: 0; }
}


/* Corporate editorial redesign — 2026-08-03 */
:root {
  --ink: #122238;
  --ink-2: #243b55;
  --navy: #082f5d;
  --navy-2: #0d437f;
  --navy-3: #15579f;
  --blue: #1768e5;
  --blue-hover: #0e54c2;
  --blue-soft: #eaf2ff;
  --brand: #f09422;
  --brand-soft: #fff3e3;
  --muted: #5d6d80;
  --muted-light: #9aabbd;
  --line: #dce4ee;
  --line-strong: #c5d1df;
  --soft: #f2f5f9;
  --paper: #f8fafc;
  --shadow-sm: 0 8px 26px rgba(18, 34, 56, .07);
  --shadow-md: 0 24px 60px rgba(18, 34, 56, .12);
  --container: 1280px;
}

body {
  color: var(--ink);
  background: #fff;
  font-size: 15px;
}
.container { width: min(calc(100% - 56px), var(--container)); }

.site-header {
  height: 82px;
  border-bottom-color: #e5eaf0;
  background: rgba(255, 255, 255, .985);
}
.site-header.scrolled {
  height: 72px;
  box-shadow: 0 10px 30px rgba(18, 34, 56, .08);
}
.header-inner { gap: 34px; }
.brand {
  min-width: 264px;
  gap: 12px;
}
.brand-mark {
  width: 45px;
  height: 36px;
}
.brand-name {
  color: #13243a;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: .025em;
}
.brand-sub {
  margin-top: 5px;
  color: #7b8999;
  font-size: 8px;
  letter-spacing: .125em;
}
.site-nav { gap: 36px; }
.nav-link {
  color: #364a60;
  font-size: 14px;
  font-weight: 620;
}
.nav-link::after {
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 2px;
  background: var(--blue);
}
.nav-link:hover,
.nav-link.active { color: var(--blue); }
.header-cta {
  min-height: 42px;
  padding: 0 20px;
  border-color: var(--blue);
  border-radius: 2px;
  background: var(--blue);
}
.header-cta:hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
}
.phone-link .inline-icon { color: var(--brand); }

.hero {
  min-height: 654px;
  overflow: hidden;
  background: #f5f7fa;
}
.hero::before {
  display: block;
  z-index: 0;
  top: 78px;
  right: 0;
  bottom: 0;
  left: auto;
  width: 40%;
  background: #e6edf6;
}
.hero::after {
  display: block;
  z-index: 2;
  top: 78px;
  left: max(28px, calc((100vw - var(--container)) / 2));
  width: 44px;
  height: 4px;
  background: var(--brand);
}
.hero-media {
  z-index: 1;
  inset: 44px max(28px, calc((100vw - 1380px) / 2)) 44px auto;
  width: min(52.5vw, 760px);
  border-radius: 4px;
  background-position: center;
  filter: none;
  box-shadow: 0 26px 62px rgba(16, 38, 63, .18);
}
.hero-home .hero-media { background-position: center; }
.hero-inner { z-index: 3; }
.hero-copy,
.hero-home .hero-copy {
  width: 535px;
  max-width: 42.5%;
  padding: 104px 0 96px;
}
.hero .eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .19em;
}
.hero h1 {
  margin-bottom: 24px;
  color: #10243c;
  font-size: clamp(46px, 4.15vw, 60px);
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: -.04em;
}
.hero h1 span {
  max-width: 530px;
  margin-top: 20px;
  color: #31516f;
  font-size: 21px;
  font-weight: 590;
  line-height: 1.55;
}
.hero-lead {
  max-width: 525px;
  color: #5c6e81;
  font-size: 16px;
  line-height: 1.95;
}
.hero-points {
  gap: 10px 24px;
  margin: 28px 0 34px;
  color: #354d66;
  font-size: 12px;
}
.hero-points li {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 600;
}
.hero .micro-icon { color: var(--brand); }
.hero .btn:not(.secondary) {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.hero .btn:not(.secondary):hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 104, 229, .22);
}
.hero .btn.secondary {
  border-color: #b9c7d6;
  background: #fff;
  color: #203a56;
}
.hero .btn.secondary:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}
.breadcrumb {
  margin-bottom: 26px;
  color: #7d8d9f;
}
.breadcrumb a { color: #294967; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: #aeb9c5; }
.page-hero { min-height: 566px; }
.page-hero .hero-copy { padding: 82px 0 78px; }
.page-hero h1 { font-size: clamp(43px, 3.7vw, 54px); }
.page-hero h1 span { font-size: 19px; }

.hero + .section.compact.warm {
  position: relative;
  z-index: 5;
  padding: 0 0 26px;
  background: #fff;
}
.hero + .section.compact.warm .stats-band {
  margin-top: -42px;
}

.section { padding: 100px 0; }
.section.compact { padding: 64px 0; }
.section.soft { background: #f2f5f9; }
.section.warm { background: #edf2f7; }
.section-head {
  margin-bottom: 42px;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}
.section-head h2,
.intro-copy h2,
.contact-panel h2,
.cta-band h2 {
  color: #12263d;
  font-weight: 740;
  letter-spacing: -.02em;
}
.section-head h2 {
  padding-bottom: 17px;
}
.section-head h2::after {
  width: 38px;
  height: 3px;
  background: var(--blue);
}
.section-head p {
  margin-top: 13px;
  color: #647488;
  line-height: 1.85;
}
.section-link,
.card-more {
  color: var(--blue);
  font-weight: 720;
}

.stats-band,
.stats-band.reveal {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid #d9e2ec;
  border-top: 4px solid var(--blue);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 34, 56, .11);
  opacity: 1;
  transform: none;
}
.stat-item {
  padding: 31px 18px 29px;
}
.stat-item + .stat-item::before {
  top: 24%;
  bottom: 24%;
  background: #dce4ed;
}
.stat-item::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%);
}
.stat-number {
  color: #124d91;
  font-size: 33px;
  font-weight: 760;
}
.stat-label {
  color: #68788a;
  font-size: 12px;
}

.service-grid { gap: 16px; }
.service-card {
  min-height: 258px;
  padding: 31px 32px 29px;
  border-color: #dfe6ee;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}
.service-card::before {
  top: 25px;
  right: auto;
  bottom: 25px;
  left: 0;
  width: 3px;
  height: auto;
  border-radius: 0;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #c6d4e3;
  box-shadow: 0 18px 40px rgba(20, 47, 77, .1);
}
.service-card:hover::before { transform: scaleY(1); }
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  border-color: #d6e2ef;
  border-radius: 3px;
  background: #edf4fc;
  color: #165ba7;
}
.service-card:nth-child(even) .card-icon {
  border-color: #efdbc0;
  background: var(--brand-soft);
  color: #b76808;
}
.service-card:hover .card-icon,
.service-card:nth-child(even):hover .card-icon {
  transform: none;
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.service-card h3,
.solution-card h3,
.case-card h3,
.team-card h3 {
  font-weight: 730;
}
.service-card p,
.solution-card p,
.case-card p,
.team-card p {
  color: #66768a;
  line-height: 1.85;
}
.card-more { padding-top: 20px; }

.intro-grid { gap: 88px; }
.intro-image {
  overflow: visible;
  background: #e1e8f0;
  transition: all .7s;
}
.intro-image::before {
  display: block;
  right: -14px;
  bottom: -14px;
  width: 100%;
  height: 100%;
  background: #dce7f4;
}
.intro-image::after {
  border-color: rgba(18, 34, 56, .1);
}
.intro-image img, img::after { filter: none; }
.intro-image:hover { background: transparent; }
.intro-image:hover img { transform: translate(-3px, -3px); }
.intro-image:hover::after { transform: translate(-3px, -3px); }
.intro-copy p {
  color: #627387;
  line-height: 1.95;
}
.feature-list { gap: 12px 28px; }
.feature-item {
  color: #304a65;
  font-weight: 620;
}
.feature-item::before {
  width: 9px;
  height: 3px;
  background: var(--brand);
}

.solution-grid { gap: 16px; }
.solution-card,
.case-card {
  border-color: #dce4ed;
  border-radius: 4px;
  box-shadow: none;
}
.solution-card:hover,
.case-card:hover {
  transform: translateY(-3px);
  border-color: #c4d2e1;
  box-shadow: 0 18px 42px rgba(18, 42, 68, .1);
}
.solution-image::after,
.case-image::after {
  border-bottom-color: rgba(18, 34, 56, .1);
}
.solution-body,
.case-body { padding: 25px; }
.solution-tag {
  color: var(--blue);
  letter-spacing: .08em;
}
.case-meta span {
  border-color: #d8e3ef;
  border-radius: 2px;
  background: #f3f7fb;
  color: #48627d;
}
.case-result {
  color: #294967;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: #0a3769;
}
.process-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}
.process-section .container { position: relative; z-index: 1; }
.process-section .eyebrow { color: #f4ae50; }
.process-section .section-head h2 { color: #fff; }
.process-section .section-head h2::after { background: #f0a03b; }
.process-section .section-head p { color: #becddd; }
.process-section .process::before { background: rgba(255,255,255,.22); }
.process-section .process::after { background: #f0a03b; }
.process-section .process-index {
  border-color: rgba(255,255,255,.42);
  background: #0a3769;
  color: #fff;
}
.process-section .process.in-view .process-index {
  border-color: #fff;
  background: #fff;
  color: #0a3769;
}
.process-section .process-item h3 { color: #fff; }
.process-section .process-item p { color: #b8c9da; }

.quote {
  min-height: 216px;
  border-top: 0;
  border-left: 4px solid var(--blue);
  border-radius: 3px;
  box-shadow: none;
}
.quote:hover { box-shadow: var(--shadow-sm); }
.logo-item {
  color: #4f667e;
  font-weight: 680;
}
.logo-item:hover {
  background: var(--blue);
  color: #fff;
}
.challenge-item {
  min-height: 142px;
  border-left-color: var(--blue);
  box-shadow: none;
}
.challenge-item:hover {
  border-color: #c7d5e4;
  border-left-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.team-caption {
  border-top-color: var(--brand);
  background: rgba(8,47,93,.96);
}
.team-card { border-radius: 3px; }

.faq-item { border-radius: 3px; }
.faq-item.open {
  border-color: #b8cbe0;
  box-shadow: 0 10px 26px rgba(18,34,56,.07);
}
.faq-question::after { color: var(--blue); }

.cta-band {
  padding: 72px 0;
  border-top: 0;
  background: #1059b4;
}
.cta-band::after { display: none; }
.cta-inner::before {
  content: "";
  width: 4px;
  align-self: stretch;
  flex: 0 0 auto;
  background: var(--brand);
}
.cta-inner > div { order: 1; margin-right: auto; }
.cta-inner > .btn { order: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d9e7f7; }
.btn.gold {
  border-color: #fff;
  background: #fff;
  color: #0c4f9e;
}
.btn.gold:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #17324d;
  box-shadow: 0 10px 24px rgba(0,0,0,.13);
}

.contact-panel {
  border-radius: 3px;
  box-shadow: none;
}
.contact-panel:hover { box-shadow: var(--shadow-sm); }
.form-field input,
.form-field select,
.form-field textarea { border-radius: 2px; }
.map-label {
  border-left-color: var(--brand);
  background: rgba(8,47,93,.96);
}

.site-footer { background: #071c31; }
.footer-main { padding-top: 68px; }
.footer-brand .brand-mark img {
  filter: none;
  opacity: 1;
}
.back-to-top {
  border-radius: 2px;
  color: var(--blue);
}
.back-to-top:hover { background: var(--blue); }


@media (max-width: 1180px) {
  .container { width: min(calc(100% - 44px), var(--container)); }
  .site-nav { gap: 24px; }
  .brand { min-width: 238px; }
  .hero-media {
    right: 22px;
    width: 51vw;
  }
  .hero::after { left: 22px; }
  .hero-copy,
  .hero-home .hero-copy { max-width: 44%; }
}

@media (max-width: 960px) {
  .brand { min-width: 220px; }
  .site-nav { gap: 19px; }
  .nav-link { font-size: 13px; }
  .hero-copy,
  .hero-home .hero-copy { max-width: 45%; }
  .hero h1 { font-size: 43px; }
  .hero h1 span { font-size: 17px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header,
  .site-header.scrolled { height: 68px; }
  .brand-mark { width: 40px; height: 32px; }
  .brand-name { font-size: 15px; }
  .site-nav { inset: 68px 0 0; }
  .nav-backdrop { inset: 68px 0 0; }

  .hero,
  .page-hero {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
    background: #f5f7fa;
  }
  .hero::before,
  .hero::after { display: none; }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 310px;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-inner { width: min(calc(100% - 30px), var(--container)); }
  .hero-copy,
  .hero-home .hero-copy,
  .page-hero .hero-copy {
    width: 100%;
    max-width: none;
    padding: 58px 0 50px;
  }
  .hero .eyebrow { margin-bottom: 16px; }
  .hero h1,
  .page-hero h1 {
    color: #10243c;
    font-size: 40px;
  }
  .hero h1 span,
  .page-hero h1 span {
    color: #31516f;
    font-size: 17px;
  }
  .hero-lead { color: #5c6e81; }
  .hero-points { color: #354d66; }
  .breadcrumb a { color: #294967; }

  .hero + .section.compact.warm {
    padding-bottom: 18px;
  }
  .hero + .section.compact.warm .stats-band {
    margin-top: -24px;
  }
  .section { padding: 74px 0; }
  .section.compact { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .service-card { min-height: 236px; }
  .intro-grid { gap: 46px; }
  .intro-image::before { display: none; }
  .stats-band { border-top-width: 3px; }
  .stat-item:nth-child(odd) { border-right-color: #dce4ed; }
  .stat-item:nth-child(-n+4) { border-bottom-color: #dce4ed; }
  .process-section .process::before,
  .process-section .process::after { display: none; }
  .cta-inner::before {
    width: 42px;
    height: 4px;
    align-self: auto;
  }
  .cta-inner > div { order: 1; }
  .cta-inner > .btn { order: 2; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header,
  .site-header.scrolled { height: 66px; }
  .site-nav,
  .nav-backdrop { inset: 66px 0 0; }
  .brand-mark { width: 37px; height: 30px; }
  .brand-name { font-size: 14px; }
  .hero-inner { width: min(calc(100% - 28px), var(--container)); }
  .hero-media { height: 232px; }
  .hero-copy,
  .hero-home .hero-copy,
  .page-hero .hero-copy { padding: 44px 0 42px; }
  .hero h1,
  .page-hero h1 { font-size: 34px; }
  .hero h1 span,
  .page-hero h1 span { font-size: 15px; }
  .hero-lead { font-size: 14px; }
  .hero-points {
    gap: 9px 14px;
    margin: 22px 0 27px;
  }
  .hero-points li { font-size: 11px; }
  .hero .btn.secondary { background: transparent; }
  .hero + .section.compact.warm .stats-band { margin-top: -18px; }
  .section { padding: 62px 0; }
  .section.compact { padding: 46px 0; }
  .service-card {
    min-height: 220px;
    padding: 25px;
  }
  .service-card::before {
    top: 22px;
    bottom: 22px;
  }
  .stats-band { box-shadow: 0 12px 30px rgba(18,34,56,.1); }
  .stat-item { padding: 25px 10px 22px; }
  .stat-item::after { top: 15px; }
  .stat-number { font-size: 29px; }
  .intro-image:hover img { transform: none; }
  .process-section::after { display: none; }
  .process-section .process-index {
    background: #0a3769;
  }
  .cta-band { padding: 60px 0; }
}

@media (max-width: 350px) {
  .hero h1,
  .page-hero h1 { font-size: 31px; }
}



