:root {
  color-scheme: light;
  --canvas: #f4f8fc;
  --ink: #071b31;
  --navy: #123b67;
  --blue: #2493e8;
  --cyan: #7dd3fc;
  --muted: #587187;
  --line: #dce9f3;
  --tint: #e8f6ff;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; }

#seo-shell {
  min-height: 100vh;
  padding: clamp(12px, 3vw, 34px);
}

.page {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.site-nav,
.footer-nav,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-nav a,
.footer-nav a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  padding: 10px 8px;
}

.site-nav a[aria-current="page"] { color: var(--blue); }

.site-nav .nav-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: 550px;
  margin-top: 24px;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cce3f2;
  border-radius: 34px;
  box-shadow: 0 20px 54px rgba(36, 147, 232, .10);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
}

.eyebrow {
  align-self: flex-start;
  margin: 0;
  padding: 7px 12px;
  color: #176da8;
  background: var(--tint);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin: 16px 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.01;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.lead { max-width: 650px; font-size: clamp(17px, 2vw, 19px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid #bdd5e6;
  border-radius: 13px;
  color: var(--navy);
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .75);
}

.proof-grid,
.card-grid {
  display: grid;
  gap: 14px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.proof,
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.proof {
  padding: 18px;
  color: var(--navy);
  font-weight: 850;
}

.section { padding-top: clamp(58px, 8vw, 94px); }

.section-head { max-width: 780px; margin-bottom: 26px; }

.section-head .eyebrow { margin-bottom: 15px; }

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { min-height: 220px; padding: 26px; }

.card-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #176da8;
  background: var(--tint);
  border-radius: 13px;
  font-weight: 900;
}

.detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #071b31, #123b67);
  border-radius: 34px;
}

.detail-copy { padding: clamp(28px, 5vw, 52px); }

.detail-copy .eyebrow { color: var(--cyan); background: transparent; padding-left: 0; }

.detail-copy p { color: #c9d8e6; }

.detail-copy ul { margin: 24px 0; padding-left: 22px; }

.detail-copy li { margin: 13px 0; line-height: 1.5; font-weight: 750; }

.detail-media { min-height: 500px; padding: 18px; }

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.contact-methods { display: grid; align-content: center; gap: 12px; padding: 42px; }

.contact-method {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.contact-method small { display: block; margin-bottom: 4px; color: #afc5d8; }

.contact-method a,
.contact-method strong { color: #fff; font-size: 18px; text-decoration: none; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; }

.faq-list { display: grid; gap: 10px; }

.faq {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq p { margin-bottom: 0; font-size: 15px; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--tint);
  border: 1px solid #bde3f8;
  border-radius: 28px;
}

.final-cta div { max-width: 760px; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px 4px;
}

.footer p { margin: 0; font-size: 13px; }

@media (max-width: 980px) {
  .topbar { align-items: flex-start; }
  .site-nav { justify-content: flex-end; }
  .hero,
  .detail { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; }
  .proof-grid,
  .card-grid { grid-template-columns: 1fr; }
  .detail-media { min-height: 360px; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .final-cta,
  .footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  #seo-shell { padding: 10px; }
  .topbar { min-height: auto; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { border-radius: 26px; }
  .hero-copy { padding: 26px 20px; }
  .hero-visual { min-height: 310px; border-radius: 22px; }
  .detail { border-radius: 26px; }
  .contact-methods { padding: 20px; }
}
