:root {
  --ink: #0a1f44;
  --muted: #5f6f7f;
  --blue: #0070bb;
  --green: #00bb29;
  --gold: #f3b33d;
  --line: #dce7ee;
  --soft: #f6fafc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6fafc;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 88px;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: white;
  border-radius: 8px;
  font-size: 13px;
}

.topbar-cta,
.primary-cta,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: 34px 18px 22px;
  background:
    linear-gradient(135deg, rgba(0, 112, 187, 0.10), rgba(0, 187, 41, 0.10)),
    var(--white);
}

.hero-copy,
.steps,
.cta-band,
.faq,
.footer {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: 39px;
  line-height: 44px;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 25px;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.primary-cta {
  min-height: 54px;
  font-size: 17px;
}

.microcopy {
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.hero-visual {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.hero-visual img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(19, 35, 64, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 18px;
  gap: 10px;
}

.trust-strip div {
  min-height: 72px;
  padding: 12px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 16px;
  line-height: 22px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.steps,
.faq {
  padding: 24px 18px;
}

.steps h2,
.cta-band h2,
.faq h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 32px;
}

.steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.steps article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #e8f2fb;
  color: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 23px;
}

.steps p,
.cta-band p,
.faq p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}

.cta-band {
  padding: 24px 18px;
  background: var(--ink);
  color: white;
}

.cta-band .eyebrow,
.cta-band p {
  color: #d5e9f7;
}

.cta-band .primary-cta {
  margin-top: 18px;
  width: 100%;
}

.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  line-height: 22px;
}

.faq details p {
  margin-top: 10px;
}

.footer {
  padding: 26px 18px 8px;
}

.footer p + p {
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
}

.sticky-cta a {
  width: 100%;
  min-height: 52px;
}

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    align-items: center;
    padding: 44px 32px;
  }

  h1 {
    font-size: 50px;
    line-height: 56px;
  }

  .hero-actions {
    max-width: 360px;
  }

  .sticky-cta {
    display: none;
  }
}
