:root {
  --navy: #071d55;
  --ink: #10203c;
  --muted: #56647a;
  --paper: #fbfaf7;
  --line: #dce4e6;
  --teal: #087f7d;
  --purple: #5b38d1;
  --soft: #eaf8f7;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.7 Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--teal);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal);
  border-radius: 7px;
  padding: 12px 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}
.btn.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.market-switch {
  font-size: 13px;
  color: var(--muted);
}
.crumb {
  padding-top: 26px;
  color: var(--muted);
  font-size: 14px;
}
.crumb a {
  color: var(--teal);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
  gap: 58px;
  align-items: center;
  padding: 64px 0 72px;
}
.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  margin: 15px 0 22px;
}
.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.workflow-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(7, 29, 85, 0.1);
}
.workflow-panel h2 {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--navy);
}
.workflow-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.workflow-step:first-of-type {
  border-top: 0;
}
.workflow-step b {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf2ff;
  color: var(--purple);
}
.workflow-step span {
  color: var(--muted);
  font-size: 14px;
}
.proof-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid div {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.proof-grid div:last-child {
  border-right: 0;
}
.proof-grid strong,
.proof-grid span {
  display: block;
}
.proof-grid strong {
  color: var(--navy);
}
.proof-grid span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}
.section.alt {
  background: #f2f5f3;
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  margin: 10px 0 20px;
  max-width: 850px;
}
.section.dark h2,
.section.dark h3,
.section.dark p,
.section.dark li {
  color: #fff;
}
.section-intro {
  max-width: 850px;
}
.section-intro p {
  font-size: 18px;
  color: var(--muted);
}
.section.dark .section-intro p {
  color: #dbe5f1;
}
.grid2,
.grid3,
.grid4 {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}
.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 25px;
}
.card h3 {
  color: var(--navy);
  font-size: 21px;
  margin: 0 0 9px;
}
.card p,
.card li {
  color: var(--muted);
}
.card ul {
  padding-left: 20px;
}
.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.dark .card p,
.dark .card li {
  color: #dbe5f1;
}
.human-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.human-story img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(7, 29, 85, 0.15);
}
.human-story figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.operator-quote {
  border-left: 4px solid var(--teal);
  padding: 18px 22px;
  background: #fff;
  color: var(--navy);
  font-size: 20px;
  margin: 24px 0;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: #fff;
}
.comparison-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.comparison th,
.comparison td {
  text-align: left;
  vertical-align: top;
  padding: 16px;
  border: 1px solid var(--line);
}
.comparison th {
  background: #edf3f3;
  color: var(--navy);
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
}
.faq p {
  color: var(--muted);
}
.lead-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #cbd5df;
  border-radius: 7px;
  padding: 11px;
  background: #fff;
  font: inherit;
}
.lead-form textarea {
  min-height: 105px;
}
.lead-form .wide {
  grid-column: 1/-1;
}
.form-status {
  grid-column: 1/-1;
  font-size: 14px;
}
.related a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-weight: 750;
}
footer {
  background: var(--navy);
  color: #dbe5f1;
  padding: 42px 0;
  font-size: 13px;
}
footer a {
  color: #fff;
}
@media (max-width: 1180px) {
  .nav {
    height: 76px;
  }
  .brand img {
    width: 62px;
    height: 62px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .nav {
    height: 68px;
  }
  .brand img {
    width: 54px;
    height: 54px;
  }
  .nav-actions .secondary,
  .market-switch {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn {
    padding: 9px 12px;
    font-size: 12px;
  }
  .hero {
    padding: 42px 0 52px;
    gap: 30px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 18px;
  }
  .section {
    padding: 58px 0;
  }
  .section h2 {
    font-size: 38px;
  }
  .grid2,
  .grid3,
  .grid4,
  .human-story,
  .lead-box,
  .lead-form {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-grid div:last-child {
    border-bottom: 0;
  }
  .lead-form .wide {
    grid-column: auto;
  }
  .comparison-wrap {
    overflow-x: auto;
    contain: inline-size;
  }
  .comparison {
    min-width: 720px;
  }
}
