@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/inter-800.ttf") format("truetype");
}

:root {
  --ink: #102c3f;
  --text: #243b4a;
  --muted: #627b8d;
  --blue-900: #003d66;
  --blue-800: #004b76;
  --blue-700: #005f96;
  --blue-100: #eaf7ff;
  --blue-050: #f4fbff;
  --teal: #138779;
  --teal-soft: #d9f4ef;
  --orange: #f6a23a;
  --line: #c9ddeb;
  --line-soft: #e2edf5;
  --surface: #ffffff;
  --surface-muted: #f3f5f7;
  --shadow: 0 18px 45px rgba(0, 61, 102, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue-900);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-900);
}

.skip-link:focus {
  top: 16px;
}

.notice-bar {
  color: #fff;
  background: var(--blue-900);
  font-size: 0.92rem;
}

.notice-bar__inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.notice-bar span:first-child {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(212px, 52vw);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--blue-800);
  background: var(--blue-050);
}

.nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle__line {
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  position: absolute;
  left: 0;
}

.nav-toggle__line::before {
  top: -6px;
}

.nav-toggle__line::after {
  top: 6px;
}

.section {
  padding: 92px 0;
}

.section--tint {
  background: var(--blue-050);
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  overflow: hidden;
  place-items: center;
  background: var(--blue-100);
}

.hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.98);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(234, 247, 255, 0.94), rgba(234, 247, 255, 0.72), rgba(234, 247, 255, 0.94)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), transparent 55%);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 950px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: 800;
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: #29485c;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--blue-800);
  border-color: var(--blue-800);
}

.button--primary:hover {
  color: #fff;
  background: var(--blue-900);
}

.button--secondary,
.button--ghost {
  color: var(--blue-800);
  background: #fff;
  border-color: var(--blue-700);
}

.button--secondary:hover,
.button--ghost:hover {
  color: var(--blue-900);
  background: var(--blue-050);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(840px, 100%);
  margin: 44px 0 0;
}

.hero-facts div {
  min-height: 112px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 75, 118, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-facts dt {
  color: var(--blue-800);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 600;
}

.section-heading {
  max-width: 620px;
}

.section-heading--wide {
  max-width: 850px;
  margin-bottom: 36px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.05fr 0.72fr;
  gap: 42px;
  align-items: start;
}

.profile-copy {
  font-size: 1.05rem;
}

.profile-panel {
  padding: 28px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.offer-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-050) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.offer-copy {
  font-size: 1.08rem;
}

.offer-copy p:last-child {
  margin-bottom: 0;
}

.offer-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-points article,
.why-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 61, 102, 0.08);
}

.offer-points span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.offer-points p,
.why-grid p {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 10px;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.service-card,
.capability-list article,
.process-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  min-height: 250px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 61, 102, 0.08);
}

.service-card img {
  width: 180px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.capability-list article {
  padding: 24px;
}

.capability-list p,
.service-card p,
.process-list p {
  margin-bottom: 0;
}

.link-section {
  background: #fff;
}

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

.resource-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resource-card--accent {
  background: var(--teal-soft);
  border-color: rgba(19, 135, 121, 0.32);
}

.resource-card p:not(.card-kicker) {
  margin-bottom: 22px;
}

.resource-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 9px 12px;
  color: var(--blue-800);
  background: #fff;
  border: 2px solid var(--blue-700);
  border-radius: 4px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.resource-card a:hover {
  color: #fff;
  background: var(--blue-800);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 270px;
  padding: 28px;
}

.process-list span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--blue-800);
  border-radius: 50%;
  font-weight: 800;
}

.why-section {
  background: var(--surface-muted);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

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

.why-grid article:nth-child(2) {
  border-top-color: var(--teal);
}

.why-grid article:nth-child(3) {
  border-top-color: var(--orange);
}

.contact-section {
  color: #fff;
  background: var(--blue-900);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
}

.contact-layout p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  min-width: 340px;
}

.legal-section {
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.legal-layout article {
  padding: 28px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.legal-layout h2 {
  font-size: 2rem;
}

.legal-layout h3 {
  margin-top: 24px;
}

.legal-note {
  padding: 14px;
  color: #5b3d00;
  background: #fff5dd;
  border: 1px solid #f3cf86;
  border-radius: 4px;
}

.site-footer {
  padding: 28px 0;
  color: #fff;
  background: #052b44;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid a {
  color: #fff;
}

@media (max-width: 1020px) {
  .profile-layout,
  .offer-layout,
  .why-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .process-list,
  .capability-list,
  .resource-grid,
  .offer-points,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .notice-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 9px 0;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
  }

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

  .main-nav a {
    padding: 12px;
    border: 1px solid var(--line-soft);
  }

  .hero {
    min-height: 760px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero__visual {
    object-position: 52% 50%;
    opacity: 0.28;
  }

  .hero__actions,
  .contact-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .service-grid,
  .process-list,
  .capability-list,
  .resource-grid,
  .offer-points,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 520px) {
  .brand {
    width: min(172px, 58vw);
  }

  .nav-toggle__text {
    display: none;
  }

  .hero-facts div {
    min-height: 96px;
  }

  .profile-panel,
  .offer-points article,
  .why-grid article,
  .resource-card,
  .capability-list article,
  .process-list li,
  .legal-layout article {
    padding: 22px;
  }
}
