:root {
  --navy: #0c2340;
  --navy-2: #07172a;
  --blue: #9fcbed;
  --red: #b72025;
  --ink: #081a2f;
  --muted: #526173;
  --soft: #f4f8fb;
  --line: #d8e3ee;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(12, 35, 64, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

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

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

.brand img {
  width: 300px;
  height: auto;
}

.brand-stacked img {
  width: 104px;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 30px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  place-items: center;
  cursor: pointer;
}

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

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 2px solid transparent;
  background: transparent;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(183, 32, 37, 0.22);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  border-color: currentColor;
  color: var(--white);
}

.btn-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.95) 0%, rgba(12, 35, 64, 0.72) 42%, rgba(12, 35, 64, 0.18) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 88px 0;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  color: var(--white);
}

.hero h1 span,
.hero h2 span {
  color: var(--blue);
}

.hero p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.95) 0%, rgba(12, 35, 64, 0.58) 48%, rgba(12, 35, 64, 0.1) 100%) center / 100% 100% no-repeat,
    var(--hero-image) var(--hero-position, center) / var(--hero-size, cover) no-repeat;
  background-color: var(--navy);
}

.page-hero h1 {
  max-width: 620px;
  color: var(--white);
}

.page-hero p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
}

section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head .lead {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.image-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 35, 64, 0) 55%, rgba(12, 35, 64, 0.62));
}

.image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.formation-card {
  padding: 30px;
  border: 1px solid rgba(159, 203, 237, 0.35);
  background: rgba(7, 23, 42, 0.9);
  box-shadow: var(--shadow);
}

.formation-card h3 {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.formation-card ul,
.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.formation-card li,
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mark {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.question-grid,
.feature-grid,
.card-grid,
.icon-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.question-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.question,
.feature,
.icon-item {
  min-height: 150px;
  padding: 26px;
  background: var(--white);
  text-align: center;
}

.question-showcase {
  margin-top: 28px;
  gap: 0;
  background: transparent;
}

.question-showcase .question {
  min-height: 0;
  padding: 0 14px 2px;
  border-right: 1px solid var(--blue);
  background: transparent;
}

.question-showcase .question:last-child {
  border-right: 0;
}

.question-visual {
  width: min(100%, 118px);
  aspect-ratio: 1;
  position: relative;
  margin: 0 auto 24px;
  border: 4px solid var(--navy);
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px var(--white), 0 10px 22px rgba(12, 35, 64, 0.11);
}

.question-visual.blue {
  border-color: var(--blue);
}

.question-visual.red {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 3px var(--white), inset -5px 0 0 var(--red), 0 10px 22px rgba(12, 35, 64, 0.11);
}

.question-visual img {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 999px;
  object-fit: cover;
}

.question-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.question-visual.blue .question-number {
  background: var(--blue);
}

.question-visual.red .question-number {
  background: var(--red);
}

.question-rule {
  width: 74px;
  height: 1px;
  position: relative;
  margin: 0 auto 12px;
  background: var(--blue);
}

.question-rule::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
}

.question-rule.red,
.question-rule.red::after {
  background: var(--red);
}

.question-showcase strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.15vw, 1.28rem);
  font-weight: 700;
  line-height: 1.1;
}

.question-invitation {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: left;
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.icon-circle svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle-large svg {
  width: 54px;
  height: 54px;
}

.icon-circle-3x {
  width: 104px;
  height: 104px;
}

.icon-circle-3x svg {
  width: 81px;
  height: 81px;
}

.problem-panel {
  padding: 40px;
  border-left: 5px solid var(--red);
  background: var(--soft);
}

.problem-panel .check-list {
  margin-top: 24px;
}

.dark-band {
  background: var(--navy);
  color: var(--white);
}

.dark-band h2,
.dark-band h3,
.dark-band .eyebrow {
  color: var(--white);
}

.dark-band .eyebrow {
  color: var(--blue);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
}

.mini {
  padding: 26px;
  background: var(--navy);
  text-align: center;
}

.closing-line {
  margin-top: 24px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  text-align: center;
}

.soft {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  background: transparent;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card.center .card-body {
  text-align: center;
}

.badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: -52px auto 18px;
  position: relative;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.badge.blue {
  background: var(--blue);
  color: var(--navy);
}

.badge.red {
  background: var(--red);
}

.badge svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.2);
}

.outcome {
  min-height: 180px;
  padding: 24px 18px;
  background: var(--navy);
  text-align: center;
}

.outcome .icon-circle {
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.95), rgba(12, 35, 64, 0.52)),
    var(--cta-image) center / cover no-repeat;
}

.cta-band h2 {
  max-width: 640px;
  color: var(--white);
}

.cta-band p {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band .btn {
  margin-top: 28px;
}

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

.feature h3,
.icon-item h3 {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 900;
}

.feature p,
.icon-item p,
.card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-box {
  margin-top: 32px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
}

.quote-box small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.timeline-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 28px;
  background: var(--white);
}

.step-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.form-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  padding: 42px 0;
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-grid img {
  width: 180px;
}

.footer-grid p {
  max-width: 620px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .brand {
    justify-self: start;
  }

  .nav > .btn {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    bottom: 9px;
    right: auto;
    width: 38px;
  }

  .hero-inner,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .formation-card {
    max-width: 460px;
  }

  .question-grid,
  .mini-grid,
  .card-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .question-showcase .question {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--blue);
  }

  .question-showcase .question + .question {
    padding-top: 28px;
  }

  .question-showcase .question:last-child {
    border-bottom: 0;
    padding-bottom: 8px;
  }

  .question-visual {
    width: min(100%, 180px);
  }

  .question-showcase strong,
  .question-invitation {
    text-align: center;
  }

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

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 220px;
  }

  .brand-stacked img {
    width: 94px;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-inner,
  .page-hero .container {
    padding: 58px 0;
  }

  section {
    padding: 58px 0;
  }

  .hero-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .form-grid {
    display: grid;
  }
}
