:root {
  --turquoise: #08a9bd;
  --turquoise-dark: #047f91;
  --turquoise-soft: #e8f9fb;
  --lime: #b9e600;
  --lime-dark: #7da900;
  --ink: #17232a;
  --muted: #617078;
  --line: #dce8eb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 89, 103, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8feff 0%, #ffffff 46%, #f7fcfd 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
[hidden] { display: none !important; }

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px clamp(22px, 5vw, 72px) 54px;
  margin-top: 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(8, 169, 189, .16);
  border-radius: 36px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--turquoise), var(--lime));
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-glow-one { width: 360px; height: 360px; top: -210px; left: -140px; background: rgba(8,169,189,.13); }
.hero-glow-two { width: 300px; height: 300px; bottom: -205px; right: -95px; background: rgba(185,230,0,.15); }

.brand-logo { width: 150px; height: auto; display: block; margin: 0 auto 20px; }
.eyebrow, .section-kicker {
  display: inline-block;
  color: var(--turquoise-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2 { margin: 0; line-height: 1.09; letter-spacing: -.035em; }
h1 { max-width: 780px; margin: 12px auto 16px; font-size: clamp(2.35rem, 7vw, 5.15rem); font-weight: 800; }
h1::after { content: ""; display: inline-block; width: .22em; height: .22em; margin-left: .1em; border-radius: 50%; background: var(--lime); }
.hero-copy { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem); }

.hero-actions { display: flex; justify-content: center; gap: 12px; margin: 30px auto 26px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--turquoise); box-shadow: 0 12px 28px rgba(8,169,189,.26); }
.button-primary:hover { background: var(--turquoise-dark); }
.button-secondary { color: var(--ink); background: var(--turquoise-soft); }
.button-secondary:hover { background: #d7f4f7; }
.button-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--turquoise-dark); background: var(--lime); }

.trust-row { display: flex; justify-content: center; gap: 14px 26px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; font-weight: 700; }
.trust-row span::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%; color: #385400; background: rgba(185,230,0,.35); }

.form-card {
  margin: 28px 0;
  padding: clamp(24px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(23,35,42,.08);
  scroll-margin-top: 20px;
}
.form-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.form-heading h2, .services h2 { margin-top: 8px; font-size: clamp(1.8rem, 4vw, 3rem); }
.form-heading p { max-width: 650px; margin: 13px 0 0; color: var(--muted); }
.step-badge { flex: 0 0 auto; padding: 8px 13px; border-radius: 999px; color: #4b6700; background: rgba(185,230,0,.22); font-size: .8rem; font-weight: 800; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; color: #2f4048; font-size: .9rem; font-weight: 750; }
.field-wide { grid-column: 1 / -1; }
.field small { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfefe;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(8,169,189,.12); }
.field input::placeholder, .field textarea::placeholder { color: #93a0a6; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; color: var(--muted); font-size: .88rem; }
.consent input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--turquoise); }
.button-submit { width: 100%; color: #263900; background: var(--lime); box-shadow: 0 14px 30px rgba(125,169,0,.18); }
.button-submit:hover { background: #c8ef27; }
.privacy-note { margin: 13px 0 0; text-align: center; color: var(--muted); font-size: .78rem; }

.services { padding: clamp(30px, 6vw, 62px); margin: 28px 0 46px; text-align: center; color: var(--white); background: linear-gradient(135deg, #058da0, #06aabf); border-radius: 32px; }
.services .section-kicker { color: var(--lime); }
.services h2 { max-width: 780px; margin-left: auto; margin-right: auto; }
.service-list { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 26px auto; }
.service-list span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.1); font-size: .88rem; font-weight: 700; }
.site-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; color: var(--lime); font-weight: 800; text-underline-offset: 4px; }

footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px 28px; width: min(1056px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0 34px; color: var(--muted); font-size: .85rem; }
footer img { width: 66px; height: auto; }
footer p { margin: 0; }
.footer-links { display: grid; gap: 5px; text-align: right; }
.footer-links a { color: var(--turquoise-dark); text-decoration: none; font-weight: 700; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 20; padding: 13px 18px; transform: translate(-50%, 140%); opacity: 0; color: var(--white); background: var(--ink); border-radius: 14px; box-shadow: var(--shadow); transition: .3s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 700px) {
  .page-shell { width: min(100% - 20px, 1120px); }
  .hero { margin-top: 10px; padding: 28px 18px 38px; border-radius: 26px; }
  .brand-logo { width: 126px; margin-bottom: 14px; }
  .hero-actions, .button { width: 100%; }
  .form-card, .services { border-radius: 24px; }
  .form-heading { display: block; }
  .step-badge { display: inline-block; margin-top: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { text-align: center; }
}

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