:root {
  --ink: #101a33;
  --muted: #5a657a;
  --navy: #14255a;
  --blue: #2857d6;
  --blue-light: #e8efff;
  --aqua: #4bd1c8;
  --cream: #f5f7fb;
  --white: #ffffff;
  --line: rgba(20, 37, 90, 0.12);
  --shadow: 0 24px 70px rgba(16, 26, 51, 0.14);
  --radius: 26px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.topbar {
  color: var(--white);
  background: var(--navy);
}
.topbar__inner {
  width: var(--container);
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--aqua); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: var(--container);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: 188px; height: auto; }
.navigation { display: flex; align-items: center; gap: 28px; }
.navigation__intro,
.navigation__contact { display: none; }
.navigation > a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.navigation > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}
.navigation > a:hover::after,
.navigation > a[aria-current="page"]::after { right: 0; }
.navigation .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}
.navigation .nav-cta::after { display: none; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.menu-button:hover,
.menu-button:focus-visible { color: var(--blue); border-color: rgba(40,87,214,.38); background: var(--blue-light); outline: 0; }
.menu-button[aria-expanded="true"] { color: var(--blue); border-color: rgba(40,87,214,.38); background: var(--blue-light); }
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) var(--hero-image) center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,70,0.96) 0%, rgba(20,37,90,0.78) 48%, rgba(40,87,214,0.18) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -280px;
  width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,0.025), 0 0 0 160px rgba(255,255,255,0.018);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  padding: 118px 0 96px;
  margin: 0 auto;
}
.hero__content { max-width: 760px; }
.hero__brand { width: 145px; margin-bottom: 30px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero .eyebrow { color: var(--aqua); }
.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero__lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--navy); background: var(--aqua); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.button--blue { color: var(--white); background: var(--blue); }
.button--outline { color: var(--navy); background: transparent; border-color: var(--line); }

.section { padding: 112px 0; }
.section--soft { background: var(--cream); }
.section--navy { color: var(--white); background: var(--navy); }
.container { width: var(--container); margin: 0 auto; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2,
.split__content h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-heading p { margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.section--navy .section-heading p { color: rgba(255,255,255,0.7); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 76px;
  align-items: center;
}
.split--reverse { grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr); }
.split--reverse .split__media { order: -1; }
.split__content p { margin: 24px 0 0; color: var(--muted); }
.split__content p + p { margin-top: 18px; }
.split__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy) var(--image) center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split__media::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card__image { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.service-card__body { padding: 28px; }
.service-card h3 { margin: 0; font-size: 23px; letter-spacing: -0.03em; }
.service-card p { margin: 14px 0 22px; color: var(--muted); font-size: 15px; }
.text-link { color: var(--blue); font-size: 13px; font-weight: 850; text-decoration: none; text-transform: uppercase; }
.text-link::after { content: "  →"; }

.feature-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 42px;
  color: var(--white);
  background: var(--navy) var(--image) center / cover no-repeat;
  border-radius: var(--radius);
}
.feature-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,18,48,.97) 0%, rgba(8,18,48,.84) 58%, rgba(8,18,48,.68) 100%); }
.feature-card__content { position: relative; width: 100%; max-width: 520px; }
.feature-card h3 { margin: 0 0 16px; font-size: 30px; line-height: 1.12; letter-spacing: -0.035em; }
.feature-card p { margin: 0; color: rgba(255,255,255,.78); }
.feature-card .check-list { font-size: 15px; }
.feature-card .check-list li { padding: 8px 0 8px 34px; border-color: rgba(255,255,255,.18); }
.feature-card .check-list li::before { top: 9px; }

.list-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.list-panel__media { min-height: 470px; background: var(--navy) var(--image) center / cover no-repeat; }
.list-panel__content { padding: 54px; }
.list-panel__content h3 { margin: 0 0 28px; font-size: 30px; line-height: 1.15; letter-spacing: -0.035em; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-top: 1px solid var(--line); }
.check-list li:first-child { border-top: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--aqua);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 530px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) var(--hero-image) center / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,27,70,.96), rgba(20,37,90,.72) 62%, rgba(40,87,214,.16)); }
.page-hero__inner { position: relative; width: var(--container); padding: 110px 0 84px; margin: 0 auto; }
.page-hero__lead { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 19px; }

.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 54px; }
.logo-tile { min-height: 112px; display: grid; place-items: center; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.logo-tile img { max-height: 50px; width: auto; }

.contact-section { padding: 48px 0 112px; background: var(--cream); }
.contact-wrap { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-panel { padding: 58px; color: var(--white); background: var(--navy); }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-details { display: grid; gap: 20px; margin-top: 42px; }
.contact-detail { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.contact-detail__icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); background: var(--aqua); border-radius: 50%; font-size: 20px; font-weight: 900; line-height: 1; }
.contact-detail__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail p { margin: 0; color: var(--white); line-height: 1.55; }
.contact-detail a { text-decoration: none; }
.contact-form { padding: 58px; background: var(--white); }
.contact-form h2 { margin: 0 0 28px; font-size: clamp(30px, 3vw, 42px); letter-spacing: -0.04em; }
.field { margin-top: 16px; }
.field label { display: block; margin: 0 0 7px; font-size: 13px; font-weight: 800; }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: 0;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,87,214,.12); }
.field--honeypot { position: absolute; left: -9999px; }
.form-turnstile { min-height: 0; margin-top: 18px; }
.form-turnstile:empty { display: none; }
.form-privacy-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.form-privacy-note a { color: var(--blue); font-weight: 750; }
.form-status { min-height: 26px; margin: 16px 0 0; font-size: 14px; font-weight: 700; }
.form-status[hidden] { display: none; }
.form-status[data-state="success"] { color: #117a5f; }
.form-status[data-state="error"] { color: #b33333; }
.contact-form .button { border: 0; cursor: pointer; }
.contact-form .button:disabled { cursor: wait; opacity: .65; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.67); background: #0d1738; }
.site-footer__inner { width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 13px; }
.site-footer img { width: 150px; filter: brightness(0) invert(1); opacity: .8; }
.site-footer__legal { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.site-footer__legal > div { display: flex; justify-content: flex-end; gap: 16px; }
.site-footer__legal a,
.site-footer__legal button { padding: 0; color: rgba(255,255,255,.78); background: none; border: 0; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.site-footer__legal a:hover,
.site-footer__legal button:hover { color: var(--aqua); }

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  width: var(--container);
  max-width: 1020px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(8,18,48,.26);
  transform: translateX(-50%);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice__content { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: end; }
.cookie-notice .eyebrow { margin-bottom: 8px; }
.cookie-notice h2 { margin: 0; font-size: 28px; line-height: 1.1; letter-spacing: -.035em; }
.cookie-notice p:not(.eyebrow) { max-width: 700px; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cookie-notice__actions { display: flex; align-items: center; gap: 18px; }
.cookie-notice__actions > a { color: var(--blue); font-size: 13px; font-weight: 800; white-space: nowrap; }
.cookie-notice__actions .button { min-height: 46px; border: 0; cursor: pointer; }

.legal-section { background: var(--white); }
.legal-content { max-width: 920px; }
.legal-content h2 { margin: 52px 0 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.15; letter-spacing: -.035em; }
.legal-content h2:first-of-type { margin-top: 20px; }
.legal-content p { margin: 18px 0 0; color: var(--muted); }
.legal-content a { color: var(--blue); }
.legal-updated { color: var(--blue) !important; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.legal-content code { padding: 2px 6px; color: var(--navy); background: var(--blue-light); border-radius: 5px; font-size: .9em; }
.cookie-table { margin-top: 24px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.cookie-table table { width: 100%; min-width: 680px; border-collapse: collapse; }
.cookie-table th,
.cookie-table td { padding: 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cookie-table th { color: var(--white); background: var(--navy); font-size: 13px; }
.cookie-table tr:last-child td { border-bottom: 0; }

.outcome-card { max-width: 820px; padding: 52px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.outcome-card h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -.04em; }
.outcome-card p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .site-header { background: var(--white); backdrop-filter: none; }
  body.menu-open .site-header { position: fixed; inset: 0 0 auto; }
  .menu-button { display: block; }
  .navigation {
    position: fixed;
    inset: 94px 0 0;
    z-index: 49;
    padding: 32px max(28px, calc((100vw - 760px) / 2)) 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    box-shadow: inset 0 1px 0 var(--line);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }
  .navigation[data-open="true"] { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .navigation__intro { display: flex; flex-direction: column; margin: 0 0 18px; padding: 0 16px 18px; border-bottom: 1px solid var(--line); }
  .navigation__intro span { color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
  .navigation__intro strong { margin-top: 4px; font-size: 24px; line-height: 1.2; letter-spacing: -.03em; }
  .navigation > a { min-height: 58px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; font-size: 21px; border-bottom: 1px solid var(--line); border-radius: 12px; }
  .navigation > a:not(.nav-cta)::after { content: "→"; position: static; display: block; width: auto; height: auto; margin-left: 20px; color: var(--blue); background: none; font-size: 18px; }
  .navigation > a[aria-current="page"]:not(.nav-cta) { color: var(--blue); background: var(--blue-light); border-bottom-color: transparent; }
  .navigation .nav-cta { min-height: 54px; margin-top: 18px; justify-content: center; text-align: center; border-bottom: 0; box-shadow: 0 14px 32px rgba(40,87,214,.2); }
  .navigation__contact { margin-top: auto; padding: 28px 16px 0; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: var(--muted); }
  .navigation__contact span { font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
  .navigation__contact a { color: var(--navy); font-size: 18px; font-weight: 850; text-decoration: none; }
  .hero { min-height: 660px; }
  .hero__inner { padding: 96px 0 76px; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 460px; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 40% 60%; }
  .service-card__image { height: 100%; aspect-ratio: auto; }
  .feature-band { grid-template-columns: 1fr; }
  .list-panel { grid-template-columns: 1fr; }
  .list-panel__media { min-height: 380px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .cookie-notice__content { grid-template-columns: 1fr; gap: 22px; }
  .cookie-notice__actions { justify-content: space-between; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); --radius: 20px; }
  .topbar__inner { justify-content: center; font-size: 12px; }
  .site-header__inner { min-height: 80px; }
  .brand img { width: 154px; }
  .navigation { inset: 80px 0 0; padding: 26px 14px 22px; }
  .navigation__intro { padding-inline: 14px; }
  .navigation > a { padding-inline: 14px; }
  .navigation__contact { padding-inline: 14px; }
  .hero { min-height: 620px; }
  .hero__inner, .page-hero__inner { padding: 78px 0 64px; }
  .hero h1, .page-hero h1 { font-size: 44px; }
  .hero__lead, .page-hero__lead { font-size: 17px; }
  .hero__brand { margin-bottom: 24px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .split__content h2, .contact-panel h2 { font-size: 36px; }
  .split__media { min-height: 340px; }
  .service-card { display: block; }
  .service-card__image { height: auto; aspect-ratio: 16/10; }
  .feature-card { min-height: 360px; padding: 28px; }
  .list-panel__media { min-height: 300px; }
  .list-panel__content { padding: 30px 24px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { padding: 32px 0 78px; }
  .contact-panel, .contact-form { padding: 36px 24px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__legal { align-items: flex-start; }
  .site-footer__legal > div { justify-content: flex-start; flex-wrap: wrap; }
  .cookie-notice { bottom: 12px; width: calc(100% - 24px); padding: 22px; border-radius: 18px; }
  .cookie-notice__actions { align-items: stretch; flex-direction: column-reverse; gap: 12px; }
  .cookie-notice__actions > a { text-align: center; }
  .outcome-card { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
