:root {
  --navy: #0b2f5b;
  --navy-deep: #072340;
  --blue: #0a67ad;
  --cyan: #08a4e5;
  --orange: #f7941d;
  --text: #18314b;
  --muted: #5d7186;
  --line: #dce8f1;
  --soft: #f5f9fc;
  --light-blue: #eef8fd;
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(18, 65, 108, .08);
  --shadow-md: 0 24px 60px rgba(18, 65, 108, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(8, 164, 229, .5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 232, 241, .9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 172px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 650;
}

.main-nav a:not(.nav-cta) { color: #3e566d; }
.main-nav a:not(.nav-cta):hover { color: var(--blue); }

.nav-cta {
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(10, 103, 173, .18);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero {
  padding: 76px 0 70px;
  background: #f7fbfe;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr);
  align-items: start;
  gap: 70px;
}

.hero-copy { max-width: 620px; padding-top: 18px; }

.eyebrow,
.section-kicker,
.form-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid #cfe3f1;
  border-radius: 999px;
  background: var(--white);
  font-size: .7rem;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 3.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 570px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .65; cursor: wait; transform: none; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 26px rgba(10, 103, 173, .2); }
.button-primary:hover { background: #085a98; box-shadow: 0 16px 30px rgba(10, 103, 173, .24); }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.button-secondary:hover { border-color: #b9d2e3; box-shadow: var(--shadow-sm); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.hero-proof li:first-child { padding-left: 0; }
.hero-proof li:last-child { padding-right: 0; border-right: 0; }
.hero-proof strong { color: var(--navy); font-size: .98rem; line-height: 1.35; }
.hero-proof span { color: var(--muted); font-size: .76rem; line-height: 1.45; }
.hero-art {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section { padding: 96px 0; }

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p,
.outcomes-copy > p,
.diff-copy > p,
.faq-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.narrow { max-width: 720px; }

.outcomes { background: var(--white); }
.outcomes-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 86px; align-items: start; }
.outcomes-copy h2 { margin-bottom: 20px; }
.outcome-list { border-top: 1px solid var(--line); }

.outcome-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list > article > span { color: var(--orange); font-size: .78rem; font-weight: 800; }
.outcome-list h3 { margin: 0 0 5px; color: var(--navy); font-size: 1.08rem; }
.outcome-list p { margin: 0; color: var(--muted); font-size: .92rem; }

.solutions { background: var(--soft); }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.card:hover { transform: translateY(-3px); border-color: #bad6e8; box-shadow: var(--shadow-sm); }
.card.featured { border-top: 3px solid var(--cyan); padding-top: 26px; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }

.card-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue);
  background: var(--light-blue);
  font-size: .74rem;
  font-weight: 800;
}

.card-tag { color: #b65f00; font-size: .72rem; font-weight: 800; text-align: right; text-transform: uppercase; }
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.35rem; line-height: 1.25; }
.card > p,
.card-wide-content p { margin: 0 0 18px; color: var(--muted); }

.card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.card li {
  padding: 6px 9px;
  border-radius: 999px;
  color: #36536e;
  background: #f0f6fa;
  font-size: .76rem;
  font-weight: 700;
}

.card-audience { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); color: #607589; font-size: .8rem; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--blue); font-size: .88rem; font-weight: 800; }
.card-link:hover { color: var(--navy); }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(3px); }
.card-wide { grid-column: 1 / -1; }
.card-wide-content { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.card-wide-content ul { align-content: start; }

.conversion-strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.conversion-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.conversion-strip-inner > div { display: flex; flex-direction: column; }
.conversion-strip strong { color: var(--navy); font-size: 1.05rem; }
.conversion-strip span { color: var(--muted); font-size: .9rem; }
.conversion-strip .button { flex: 0 0 auto; }

.process { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 46px 0 0; padding: 0; list-style: none; }

.step {
  position: relative;
  padding: 26px 8px 0 0;
  border-top: 2px solid var(--line);
}

.step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.step-number { color: var(--blue); font-size: .76rem; font-weight: 800; }
.step h3 { margin: 12px 0 8px; color: var(--navy); font-size: 1.2rem; }
.step p { margin: 0 0 16px; color: var(--muted); font-size: .9rem; }
.step small { display: block; color: #38536b; font-size: .76rem; font-weight: 700; }

.differentiators { background: var(--soft); }
.diff-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: start; }
.diff-copy { position: sticky; top: 118px; }
.diff-copy h2 { margin-bottom: 20px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--blue); font-weight: 800; }
.benefits { border-top: 1px solid var(--line); }

.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.benefit > span { color: var(--orange); font-size: .76rem; font-weight: 800; }
.benefit h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.06rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .9rem; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-copy { position: sticky; top: 118px; }
.faq-copy h2 { margin-bottom: 18px; }
.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 23px 46px 23px 0;
  color: var(--navy);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 4px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -4px 46px 22px 0; color: var(--muted); font-size: .93rem; }

.cta { color: var(--white); background: var(--navy-deep); }
.cta-box { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; align-items: center; }
.cta h2 { margin-bottom: 18px; color: var(--white); }
.cta-copy > p { margin: 0; color: #c9d8e6; font-size: 1.04rem; }
.light { color: #72d6ff; }

.contact-assurances { display: grid; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-assurances li { position: relative; padding-left: 23px; color: #e3eef6; font-size: .9rem; }
.contact-assurances li::before { content: ""; position: absolute; top: 9px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

.direct-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 32px; }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .4); background: transparent; }
.button-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }
.direct-contact > span { color: #aebfd0; font-size: .82rem; }
.direct-contact > span a { color: var(--white); }

.form-panel { padding: 32px; border-radius: var(--radius); color: var(--text); background: var(--white); box-shadow: var(--shadow-md); }
.form-kicker { margin-bottom: 9px; }
.form-panel h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.45rem; line-height: 1.3; }
.form-intro { margin: 0 0 24px; color: var(--muted); font-size: .88rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { color: #334e68; font-size: .79rem; font-weight: 750; }
.contact-form label > span { color: #c45d00; }
.contact-form label small { float: right; color: #7a8da0; font-size: .7rem; font-weight: 500; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid #cfdde8;
  border-radius: var(--radius);
  outline: none;
  color: var(--text);
  background: #fbfdff;
}

.contact-form input { min-height: 46px; }
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8a9bad; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10, 103, 173, .11); background: var(--white); }
.full { grid-column: 1 / -1; }
.form-status { min-height: 20px; margin: -2px 0 0; color: var(--blue); font-size: .78rem; text-align: center; }
.privacy-note { margin: -9px 0 0; color: #718397; font-size: .72rem; text-align: center; }

footer { padding: 52px 0 24px; border-top: 1px solid var(--line); background: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.5fr .65fr .9fr; gap: 70px; padding-bottom: 38px; }
.footer-brand img { width: 178px; height: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 370px; margin: 0; color: var(--muted); font-size: .86rem; }
.footer-nav,
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: .83rem; }
.footer-nav strong,
.footer-contact strong { margin-bottom: 4px; color: var(--navy); font-size: .86rem; }
.footer-nav a,
.footer-contact a { color: var(--muted); }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid var(--line); color: #738599; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--blue); font-weight: 700; }

@media (max-width: 960px) {
  .menu-button { display: flex; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; }
  .nav-cta { margin-top: 4px; text-align: center; }
  .hero { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 720px; padding-top: 0; }
  .hero h1 { max-width: 700px; font-size: 3.1rem; }
  .hero-art { width: 100%; max-width: 680px; justify-self: start; margin: 0 auto; }
  .outcomes-grid,
  .diff-grid,
  .faq-grid,
  .cta-box { grid-template-columns: 1fr; gap: 52px; }
  .outcomes-copy { max-width: 700px; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 38px; }
  .diff-copy,
  .faq-copy { position: static; max-width: 700px; }
  .form-panel { max-width: 700px; }
  .footer-main { grid-template-columns: 1.25fr .75fr .9fr; gap: 36px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 150px; }
  .main-nav { top: 72px; left: 14px; right: 14px; }
  .hero { padding: 44px 0 48px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: 2.35rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 30px; padding-top: 8px; }
  .hero-proof li,
  .hero-proof li:first-child,
  .hero-proof li:last-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof li:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section h2 { font-size: 2.1rem; }
  .section-heading { margin-bottom: 32px; }
  .outcomes-grid,
  .diff-grid,
  .faq-grid,
  .cta-box { gap: 40px; }
  .cards,
  .steps,
  .contact-form { grid-template-columns: 1fr; }
  .card { padding: 23px; }
  .card.featured { padding-top: 21px; }
  .card-wide { grid-column: auto; }
  .card-wide-content { grid-template-columns: 1fr; gap: 0; }
  .conversion-strip-inner { align-items: stretch; flex-direction: column; }
  .conversion-strip .button { width: 100%; }
  .steps { gap: 34px; }
  .faq-list summary { padding-right: 40px; }
  .cta { padding-top: 72px; padding-bottom: 72px; }
  .form-panel { padding: 23px; }
  .full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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