:root {
  --font-main: "Be Vietnam Pro", "Segoe UI", Arial, Helvetica, sans-serif;
  --navy-950: #03163f;
  --navy-900: #061f5f;
  --navy-800: #082a78;
  --blue-600: #0b67db;
  --blue-500: #1687ff;
  --cyan-500: #16d4e8;
  --cyan-300: #72efff;
  --teal-500: #14b8a6;
  --sky-50: #f4fbff;
  --slate-900: #132034;
  --slate-700: #334155;
  --slate-500: #64748b;
  --line: #d9e7f5;
  --surface: #ffffff;
  --surface-blue: #f0f8ff;
  --radius: 8px;
  --shadow-xs: 0 6px 18px rgba(6, 31, 95, 0.06);
  --shadow-sm: 0 14px 34px rgba(6, 31, 95, 0.08);
  --shadow-lg: 0 28px 70px rgba(6, 31, 95, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--slate-900);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 8% 6%, rgba(22, 212, 232, 0.18), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(11, 103, 219, 0.14), transparent 28%),
    linear-gradient(180deg, #f6fcff 0%, #ffffff 34%, #f7fbff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy-950);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 231, 245, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: auto;
  height: 32px;
  max-width: 138px;
  object-fit: contain;
}

.footer-logo {
  width: auto;
  height: 38px;
  max-width: 160px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--slate-700);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a,
.nav-dropdown-trigger {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.35;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.is-active {
  color: var(--blue-600);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-dropdown-trigger::after {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger[aria-expanded="true"]::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 60;
  display: grid;
  gap: 2px;
  width: min(420px, calc(100vw - 40px));
  padding: 10px;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: var(--radius);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  color: var(--blue-600);
  background: var(--surface-blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy-900);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  padding-right: 18px;
  padding-left: 18px;
  color: #fff;
  white-space: nowrap;
  background:
    linear-gradient(135deg, var(--blue-600), var(--cyan-500)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(22, 212, 232, 0.7)) border-box;
  box-shadow: 0 14px 26px rgba(11, 103, 219, 0.2);
}

.button {
  min-width: 158px;
  max-width: 100%;
}

.button.primary {
  color: #fff;
  background:
    linear-gradient(135deg, var(--navy-900), var(--blue-600) 62%, var(--cyan-500)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(22, 212, 232, 0.82)) border-box;
  box-shadow: 0 16px 34px rgba(11, 103, 219, 0.25);
}

.button.secondary {
  color: var(--navy-900);
  border-color: #b9d8f5;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 31, 95, 0.06);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.button.primary:hover {
  box-shadow: 0 18px 38px rgba(11, 103, 219, 0.28);
}

.button.secondary:hover {
  color: var(--blue-600);
  border-color: rgba(11, 103, 219, 0.42);
  background: #f7fcff;
  box-shadow: 0 16px 30px rgba(6, 31, 95, 0.1);
}

.nav-toggle:hover,
.solution-tab:hover,
.industry-grid a:hover,
.contact-methods a:hover {
  border-color: rgba(11, 103, 219, 0.36);
}

.button:focus-visible,
.header-cta:focus-visible,
.solution-tab:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
.industry-grid a:focus-visible,
.resource-card a:focus-visible,
.contact-methods a:focus-visible,
.site-nav a:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: 3px solid rgba(22, 212, 232, 0.28);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 48px;
  min-height: min(760px, calc(100vh - 78px));
  padding: 74px 5vw 60px;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead,
.section-heading p,
.highlight-copy p,
.contact-copy p {
  color: var(--slate-500);
  font-size: 18px;
  line-height: 1.75;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(22, 212, 232, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-points span::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgba(22, 212, 232, 0.14);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid rgba(114, 239, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-float {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 231, 245, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.hero-float strong {
  color: var(--blue-600);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.hero-float span {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 600;
}

.hero-float.top {
  top: 24px;
  right: -12px;
}

.hero-float.bottom {
  left: -18px;
  bottom: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 5vw;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.proof-strip div {
  display: grid;
  gap: 4px;
  min-height: 116px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.proof-strip strong {
  color: var(--navy-900);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.proof-strip span {
  color: var(--slate-500);
  font-size: 15px;
  font-weight: 500;
}

.section {
  padding: 88px 5vw;
}

.section-heading {
  min-width: 0;
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro,
.packages,
.faq {
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.challenge-grid,
.service-grid,
.industry-grid,
.package-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.challenge-grid,
.service-grid,
.package-grid,
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.challenge-card,
.service-card,
.package-card,
.resource-card {
  min-width: 0;
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.challenge-card:hover,
.service-card:hover,
.package-card:hover,
.resource-card:hover,
.process-steps article:hover,
.metric-grid div:hover {
  border-color: rgba(11, 103, 219, 0.24);
  box-shadow: 0 18px 42px rgba(6, 31, 95, 0.12);
  transform: translateY(-3px);
}

.challenge-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-900), var(--cyan-500));
}

.challenge-card p,
.service-card p,
.capability-list p,
.process-steps p,
.package-card p,
.package-card li,
.story-card span,
.metric-grid span,
.resource-card p,
.faq-answer p {
  color: var(--slate-500);
}

.solution {
  background: linear-gradient(180deg, #ffffff, #f4fbff 100%);
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.solution-tab {
  min-height: 46px;
  padding: 0 18px;
  color: var(--slate-700);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(217, 231, 245, 1);
  border-radius: var(--radius);
  background: #fff;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-tab.is-active {
  color: #fff;
  border-color: rgba(11, 103, 219, 0.95);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  box-shadow: 0 14px 26px rgba(11, 103, 219, 0.18);
}

.solution-tab:hover {
  transform: translateY(-1px);
}

.solution-panel {
  display: none;
}

.solution-panel.is-active {
  display: block;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--navy-900);
  font-weight: 800;
  border: 1px solid rgba(22, 212, 232, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 212, 232, 0.16), rgba(11, 103, 219, 0.08));
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 22, 63, 0.98), rgba(6, 31, 95, 0.94) 56%, rgba(14, 116, 144, 0.9)),
    linear-gradient(90deg, var(--navy-950), var(--blue-600));
}

.highlight .eyebrow,
.highlight h2,
.highlight h3 {
  color: #fff;
}

.highlight-copy {
  max-width: 560px;
}

.highlight-copy p,
.highlight .capability-list p {
  color: rgba(235, 248, 255, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--cyan-300);
  font-weight: 700;
}

.text-link::after,
.resource-card a::after {
  margin-left: 8px;
  content: "→";
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-list article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(114, 239, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.capability-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan-300);
  font-weight: 800;
}

.process {
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-steps article {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 8px rgba(22, 212, 232, 0.12);
}

.industries {
  background: var(--surface-blue);
}

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

.industry-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 20px;
  color: var(--navy-900);
  font-weight: 700;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.industry-grid a::after {
  color: var(--cyan-500);
  content: "→";
}

.industry-grid a:hover {
  color: var(--blue-600);
  box-shadow: 0 16px 34px rgba(6, 31, 95, 0.1);
  transform: translateY(-2px);
}

.package-card {
  min-height: 370px;
}

.package-card.featured {
  color: #fff;
  border-color: rgba(11, 103, 219, 0.95);
  background: linear-gradient(145deg, var(--navy-900), var(--blue-600) 72%, var(--cyan-500));
  box-shadow: var(--shadow-lg);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured li,
.package-card.featured .package-name {
  color: #fff;
}

.package-name {
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  display: flex;
  gap: 10px;
}

.package-card li::before {
  flex: 0 0 auto;
  color: var(--teal-500);
  content: "✓";
  font-weight: 800;
}

.package-card.featured li::before {
  color: var(--cyan-300);
}

.stories {
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
}

.story-card {
  min-height: 320px;
  padding: 34px;
  color: #fff;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.quote {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.story-card div {
  display: grid;
  gap: 4px;
  margin-top: 36px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid div {
  display: grid;
  align-content: center;
  min-height: 152px;
  padding: 28px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.metric-grid strong {
  color: var(--blue-600);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.resources {
  background: var(--surface-blue);
}

.resource-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--navy-900);
  font-weight: 700;
  transition: color 180ms ease;
}

.resource-card a:hover {
  color: var(--blue-600);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 20px 22px;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  border: 0;
  background: transparent;
}

.faq-question span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  position: absolute;
  inset: 9px 2px auto;
  height: 2px;
  content: "";
  background: var(--blue-600);
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question span::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: 46px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(3, 22, 63, 0.98), rgba(6, 31, 95, 0.9)),
    var(--navy-950);
}

.contact .eyebrow,
.contact h2 {
  color: #fff;
}

.contact-copy p {
  color: rgba(235, 248, 255, 0.76);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(114, 239, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(114, 239, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--slate-900);
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
  height: 46px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(22, 212, 232, 0.2);
  box-shadow: 0 0 0 1px rgba(11, 103, 219, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 34px 5vw;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand strong {
  color: var(--navy-900);
  font-size: 24px;
  font-weight: 800;
}

.footer-brand p,
.copyright {
  margin: 0;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--slate-700);
  font-weight: 600;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 14px;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.not-found-inner {
  max-width: 640px;
}

.not-found h1 {
  margin-bottom: 16px;
}

.not-found p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--slate-500);
  font-size: 18px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  gap: 42px;
  align-items: center;
  padding: 88px 5vw 72px;
  background:
    radial-gradient(circle at 86% 20%, rgba(22, 212, 232, 0.2), transparent 26%),
    linear-gradient(135deg, #f3fcff, #ffffff 64%, #edf7ff);
}

.subpage-hero-copy {
  max-width: 820px;
}

.subpage-hero-copy p:not(.eyebrow) {
  color: var(--slate-500);
  font-size: 18px;
  line-height: 1.75;
}

.subpage-hero-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.subpage-hero-panel img {
  width: min(100%, 260px);
}

.subpage-hero-panel strong {
  display: block;
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1.2;
}

.subpage-hero-panel span {
  color: var(--slate-500);
  font-weight: 600;
}

.info-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid article,
.document-grid article,
.about-list article {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info-grid span,
.document-grid span,
.about-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.35;
}

.info-grid p,
.document-grid p,
.about-list p,
.about-profile-copy p {
  color: var(--slate-500);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 22, 63, 0.98), rgba(6, 31, 95, 0.92) 62%, rgba(14, 116, 144, 0.9)),
    var(--navy-950);
}

.about-profile .eyebrow,
.about-profile h2,
.about-profile h3 {
  color: #fff;
}

.about-profile-copy {
  max-width: 620px;
}

.about-profile-copy p,
.about-list p {
  color: rgba(235, 248, 255, 0.78);
}

.about-list {
  display: grid;
  gap: 16px;
}

.about-list article {
  border-color: rgba(114, 239, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.about-list span {
  color: var(--cyan-300);
}

.documents-section {
  background: var(--surface-blue);
}

.document-grid article {
  min-height: 220px;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
}

.about-cta h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.service-hero .subpage-hero-panel {
  min-height: 310px;
}

.service-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-hero-stats div {
  display: grid;
  gap: 4px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: rgba(244, 251, 255, 0.82);
}

.service-hero-stats strong {
  color: var(--blue-600);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.service-overview {
  background: #fff;
}

.service-directory-grid,
.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-directory-card,
.service-related-grid a,
.service-content,
.service-aside-card,
.service-placeholder-list article,
.service-roadmap article {
  min-width: 0;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-directory-card {
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-directory-card:hover,
.service-related-grid a:hover,
.service-roadmap article:hover {
  border-color: rgba(11, 103, 219, 0.24);
  box-shadow: 0 18px 42px rgba(6, 31, 95, 0.12);
  transform: translateY(-3px);
}

.service-directory-card .card-index,
.service-detail-panel .card-index,
.service-content-block > span,
.service-placeholder-list span,
.service-roadmap span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-900), var(--cyan-500));
}

.service-directory-card h3 {
  margin-bottom: 0;
}

.service-directory-card p,
.service-detail-panel p,
.service-content p,
.service-content li,
.service-aside-card p,
.service-aside-card li,
.service-related-grid span,
.service-roadmap p {
  color: var(--slate-500);
}

.service-directory-card .text-link {
  margin-top: auto;
  color: var(--blue-600);
}

.service-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  background: var(--surface-blue);
}

.service-roadmap-list {
  display: grid;
  gap: 14px;
}

.service-roadmap article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 140px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-roadmap h3 {
  margin-bottom: 6px;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 22, 63, 0.98), rgba(6, 31, 95, 0.92) 62%, rgba(14, 116, 144, 0.9)),
    var(--navy-950);
}

.service-cta .eyebrow,
.service-cta h2 {
  color: #fff;
}

.service-cta h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.service-detail-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(22, 212, 232, 0.22), transparent 26%),
    linear-gradient(135deg, #f4fbff, #ffffff 58%, #edf7ff);
}

.service-detail-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.service-detail-panel strong {
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1.2;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 24px;
  align-items: start;
  background: #fff;
}

.service-content {
  padding: 32px;
}

.service-content-block + .service-content-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.service-content-block > span {
  margin-bottom: 18px;
}

.service-content ul,
.service-aside-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-content li,
.service-aside-card li {
  display: flex;
  gap: 10px;
}

.service-content li::before,
.service-aside-card li::before {
  flex: 0 0 auto;
  color: var(--teal-500);
  content: "✓";
  font-weight: 800;
}

.service-placeholder-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-placeholder-list article {
  min-height: 200px;
  padding: 22px;
}

.service-placeholder-list span {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  font-size: 14px;
}

.service-aside {
  display: grid;
  gap: 16px;
}

.service-aside-card {
  padding: 24px;
}

.service-aside-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.35;
}

.service-aside-card .button {
  width: 100%;
  margin-top: 18px;
}

.service-related {
  background: var(--surface-blue);
}

.service-related-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-related-grid strong {
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.35;
}

.service-related-grid span {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown-trigger {
    padding: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    line-height: 1.45;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 12px;
    overflow: hidden;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 440px;
    padding: 4px 0 8px 12px;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .nav-toggle {
    display: inline-block;
    grid-column: 4;
    justify-self: end;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero,
  .highlight,
  .story-layout,
  .faq,
  .contact,
  .subpage-hero,
  .about-profile,
  .service-roadmap,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-directory-grid,
  .service-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid,
  .document-grid,
  .service-placeholder-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .proof-strip,
  .challenge-grid,
  .service-grid,
  .service-directory-grid,
  .service-related-grid,
  .package-grid,
  .resource-grid,
  .capability-list,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-right: 20px;
    margin-left: 20px;
  }

  .hero-media {
    margin-top: 4px;
  }

  .hero-float {
    position: static;
    display: inline-grid;
    width: calc(50% - 8px);
    margin-top: 14px;
    margin-right: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    top: 68px;
    right: 20px;
    left: 20px;
  }

  .brand-logo {
    height: 44px;
    max-width: 168px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    grid-column: 3;
  }

  h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-copy,
  .hero-media {
    width: 100%;
    max-width: 350px;
  }

  .hero-lead,
  .section-heading p,
  .highlight-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .button,
  .solution-tab {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.78;
  }

  .hero-float {
    width: 100%;
    margin-right: 0;
  }

  .process-steps,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding: 44px 20px 54px;
  }

  .subpage-hero-panel {
    min-height: auto;
    padding: 22px;
  }

  .service-hero-stats,
  .service-roadmap article {
    grid-template-columns: 1fr;
  }

  .about-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .proof-strip,
  .section > .section-heading,
  .solution-tabs,
  .challenge-grid,
  .service-grid,
  .package-grid,
  .resource-grid,
  .capability-list,
  .process-steps,
  .industry-grid,
  .story-layout,
  .metric-grid,
  .faq-list,
  .highlight-copy,
  .contact-copy,
  .subpage-hero-copy,
  .subpage-hero-panel,
  .info-grid,
  .document-grid,
  .about-list,
  .about-profile-copy,
  .about-cta > div,
  .about-cta > .button,
  .service-hero-stats,
  .service-directory-grid,
  .service-roadmap > .section-heading,
  .service-roadmap-list,
  .service-cta > div,
  .service-cta > .button,
  .service-detail-panel,
  .service-content,
  .service-aside,
  .service-related-grid,
  .contact-form {
    width: 100%;
    max-width: 350px;
    margin-right: auto;
    margin-left: 0;
  }

  .proof-strip {
    margin-right: 20px;
    margin-left: 20px;
  }
}
