:root {
  color-scheme: light;
  --navy: #0b356c;
  --blue: #14579c;
  --green: #0aaf45;
  --green-dark: #078d38;
  --ink: #17263b;
  --muted: #526176;
  --line: #d5deea;
  --paper: #ffffff;
  --bg: #f4f7fb;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background:
    radial-gradient(circle at 50% -15%, #e4effc 0, transparent 46%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: max(14px, env(safe-area-inset-top)) 12px max(14px, env(safe-area-inset-bottom));
}

.card {
  width: min(100%, 470px);
  overflow: hidden;
  padding: 18px 18px 16px;
  background: var(--paper);
  border: 1px solid rgba(11, 53, 108, .08);
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(23, 48, 83, .12);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ec;
  color: var(--green-dark);
}

h1 {
  margin: 10px 0 7px;
  color: var(--navy);
  font-size: clamp(29px, 8.4vw, 39px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

h1 span { color: var(--blue); }

.intro {
  max-width: 390px;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 -18px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #08366c, #155da3);
  color: #fff;
  line-height: 1.05;
}

.proof-strip strong {
  color: #baffcf;
  font-size: 15px;
  letter-spacing: -.01em;
}

.proof-strip span {
  max-width: 150px;
  font-size: 10px;
  text-align: left;
}

.hero {
  display: block;
  width: calc(100% + 36px);
  height: clamp(130px, 34vw, 174px);
  margin: 0 -18px 14px;
  object-fit: cover;
  object-position: 50% 57%;
}

form { text-align: left; }

label {
  display: block;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.select-wrap { position: relative; }

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  content: "";
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

select {
  width: 100%;
  height: 54px;
  padding: 0 46px 0 15px;
  appearance: none;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
}

select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20, 87, 156, .12); }

.field-error {
  display: none;
  margin: 6px 2px 0;
  color: #b42318;
  font-size: 12px;
}

.field-error.visible { display: block; }

.geo-status {
  margin: 6px 2px 0;
  color: #68778a;
  font-size: 11px;
  line-height: 1.3;
}

.geo-status.detected { color: #18713d; font-weight: 700; }

button.primary-cta {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 11px;
  padding: 13px 17px;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  box-shadow: 0 7px 16px rgba(10, 175, 69, .23);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  transition: background .15s, transform .15s;
}

button.primary-cta:hover { background: var(--green-dark); }
button.primary-cta:active { transform: translateY(1px); }
.arrow { font-size: 25px; line-height: .7; }

.trust-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 13px 0 10px;
  color: #405169;
  font-size: 12px;
  font-weight: 700;
}

.trust-row span::first-letter { color: var(--green-dark); }

.disclosure {
  max-width: 410px;
  margin: 0 auto;
  color: #69768a;
  font-size: 10px;
  line-height: 1.35;
}

@media (max-height: 730px) {
  .page-shell { place-items: start center; }
  .card { padding-top: 14px; }
  .hero { height: 90px; }
  h1 { margin-top: 7px; font-size: 27px; }
  .intro { font-size: 13px; margin-bottom: 8px; }
  .proof-strip { padding-top: 6px; padding-bottom: 6px; }
}

@media (min-width: 640px) {
  .card { padding: 25px 26px 20px; }
  .hero { width: calc(100% + 52px); margin-right: -26px; margin-left: -26px; }
  .proof-strip { margin-right: -26px; margin-left: -26px; }
}

@media (prefers-reduced-motion: reduce) {
  button { transition: none; }
}
