:root {
  --blue: #1C558A;
  --mint: #94E1D5;
  --lavender: #9EA2F5;
  --bg: #F7FAFC;
  --text: #162033;
  --muted: #667085;
  --border: #DCE6EE;
  --line: #E7EEF4;
  --white: #FFFFFF;
  --shadow: 0 18px 42px rgba(28, 85, 138, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
button, a, input, select { touch-action: manipulation; }
img, svg { max-width: 100%; display: block; }

.container {
  width: min(720px, calc(100% - 24px));
  margin: 0 auto;
}

.wide {
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 82px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
  min-width: 0;
}

.brand-logo {
  height: 54px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.about-logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0;
  margin-top: -3px;
}

.hero {
  padding: 28px 0 40px;
  background:
    radial-gradient(circle at 15% 5%, rgba(148,225,213,.30), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(158,162,245,.16), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
}

.hero-title {
  text-align: center;
  margin-bottom: 22px;
}

.preline {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(29px, 9.2vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-line {
  display: block;
}

.hero-line-blue {
  color: var(--blue);
}

.hero-line-dark {
  color: var(--text);
}

.funnel {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 16px;
}

.funnel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.step-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.time {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  background: rgba(148,225,213,.24);
  border: 1px solid rgba(148,225,213,.65);
  border-radius: 999px;
  padding: 7px 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.progress {
  height: 7px;
  background: #E8F0F5;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress span {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  border-radius: 999px;
  transition: .2s ease;
}

.step { display: none; }
.step.active { display: block; }

.funnel h2,
.content h2,
.final-box h2 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.funnel h2 {
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 7px;
}

.hint {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 17px;
}

.options {
  display: grid;
  gap: 10px;
}

.option-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: .16s ease;
  min-width: 0;
}

.option:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(28,85,138,.08);
}

.option strong {
  color: inherit;
  font-size: 15px;
  font-weight: 850;
}

.option small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.arrow {
  color: var(--blue);
  font-weight: 900;
  font-size: 20px;
  flex: 0 0 auto;
}

.option-visual {
  min-height: 126px;
  padding: 14px 10px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.option-visual .option-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(148,225,213,.28), rgba(158,162,245,.18));
  border: 1px solid rgba(28,85,138,.10);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex: 0 0 auto;
}

.option-visual .option-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-visual .option-title {
  font-size: 14px;
  font-weight: 850;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

input,
select {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  background: white;
  color: var(--text);
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(148,225,213,.24);
}

.phone-split {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
}

.phone-split input[name="phoneCountryCode"] {
  text-align: center;
  font-weight: 850;
}

.field-error {
  min-height: 18px;
  color: #b3465f;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.input-row { margin-top: 10px; }

.job-autocomplete {
  position: relative;
  margin-top: 15px;
}

.job-suggestions {
  display: none;
  max-height: 230px;
  overflow-y: auto;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(28,85,138,.10);
}

.job-suggestions.show {
  display: grid;
}

.job-suggestion {
  width: 100%;
  min-height: 48px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.job-suggestion:last-child {
  border-bottom: none;
}

.job-suggestion:hover,
.job-suggestion:focus {
  outline: none;
  color: var(--blue);
  background: rgba(148,225,213,.14);
}

.job-empty {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.job-next {
  margin-top: 10px;
}

.age-slider {
  margin-top: 18px;
}

.age-value {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.age-value output {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.age-range {
  width: 100%;
  min-height: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  padding: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--blue) var(--age-progress, 24%), #E8F0F5 0);
}

.age-range:focus {
  box-shadow: 0 0 0 4px rgba(148,225,213,.24);
}

.age-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(28,85,138,.22);
}

.age-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(28,85,138,.22);
}

.age-range-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.form-grid { display: grid; gap: 10px; margin-top: 15px; }

.name-grid {
  display: grid;
  gap: 10px;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
  margin-top: 2px;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 1px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--blue);
  cursor: pointer;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.privacy-check a:hover {
  text-decoration: underline;
}

.thanks-step {
  text-align: center;
}

.thanks-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(148,225,213,.24);
  color: #56AFA3;
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  margin: 0 auto 16px;
}

.thanks-step .hint {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.primary-btn {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 16px;
  background: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 14px 28px rgba(28,85,138,.2);
}

.section-cta {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  background: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 22px;
  box-shadow: 0 14px 28px rgba(28,85,138,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.legal {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin-top: 11px;
}

.back {
  border: none;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  margin-top: 13px;
}

.trust {
  margin-top: 18px;
  padding: 2px 0 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.trust-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
}

.trust-check {
  color: #56AFA3;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

.trust-copy {
  color: var(--blue);
  font-size: 12px;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

section.content {
  padding: 46px 0;
  background: white;
}

section.content.alt {
  background: var(--bg);
}

.kicker {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  margin-bottom: 10px;
}

.content h2 {
  font-size: clamp(27px, 7vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 13px;
}

.content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.clean-list {
  list-style: none;
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #56AFA3;
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

.clean-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.clean-list li:last-child {
  border-bottom: none;
}

.cause-block {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.cause-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.cause-item {
  display: grid;
  gap: 7px;
}

.cause-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 850;
  color: #344054;
  flex-wrap: wrap;
  min-width: 0;
}

.cause-top span:last-child {
  color: var(--blue);
  white-space: nowrap;
}

.cause-bar {
  height: 9px;
  background: #E8F0F5;
  border-radius: 999px;
  overflow: hidden;
}

.cause-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  border-radius: 999px;
}

.cause-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.note {
  margin-top: 18px;
  border-left: 4px solid var(--mint);
  background: rgba(148,225,213,.16);
  padding: 14px 15px;
  border-radius: 0 16px 16px 0;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.steps {
  border-top: 1px solid var(--line);
  counter-reset: steps;
}

.simple-step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 18px 0 18px 12px;
  border-bottom: 1px solid var(--line);
}

.simple-step::before {
  content: counter(steps);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.simple-step h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
  margin-bottom: 3px;
}

.simple-step p {
  margin: 0;
  font-size: 14px;
}

.about {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.about-inner {
  display: grid;
  gap: 12px;
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: 18px;
  min-width: 0;
}

.about p {
  color: var(--muted);
  font-size: 14px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 850;
  font-size: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 9px 0 0;
  font-size: 14px;
}

.final {
  padding: 44px 0;
  background: var(--bg);
}

.final-box {
  text-align: center;
  background:
    radial-gradient(circle at 10% 12%, rgba(148,225,213,.35), transparent 30%),
    linear-gradient(135deg, var(--blue), #153F68);
  color: white;
  border-radius: 28px;
  padding: 30px 18px;
}

.final-box h2 {
  color: white;
  font-size: clamp(27px, 7vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin-bottom: 10px;
}

.final-box p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 16px;
}

.final-box .primary-btn {
  background: white;
  color: var(--blue);
  max-width: 360px;
  box-shadow: none;
}

footer {
  padding: 28px 0 34px;
  background: #113C64;
  color: rgba(255,255,255,.8);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 750;
}

@media (min-width: 760px) {
  .container { width: min(720px, calc(100% - 28px)); }
  .wide { width: min(980px, calc(100% - 28px)); }

  .hero { padding: 54px 0 56px; }
  .funnel { padding: 24px; }
  section.content { padding: 58px 0; }
  .about-inner { grid-template-columns: 260px 1fr; align-items: center; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .option-grid-2 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .option-visual { min-height: 138px; }
  .name-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .trust-row {
    gap: 16px;
  }

  .trust-copy {
    font-size: 14px;
  }
}

.brand-logo {
  height: 54px;
  width: auto;
  max-width: min(78vw, 460px);
  object-fit: contain;
  display: block;
}

.about-logo {
  height: auto;
  width: min(100%, 420px);
  object-fit: contain;
  display: block;
}

@media (max-width: 420px) {
  .brand-logo {
    height: 40px;
    max-width: 78vw;
  }
  .header-inner {
    min-height: 70px;
  }
}

.brand-logo {
  height: 62px !important;
  width: auto;
  max-width: min(82vw, 520px) !important;
  object-fit: contain;
  object-position: center;
  clip-path: none;
  margin: 0;
  display: block;
}

@media (max-width: 420px) {
  .brand-logo {
    height: 46px !important;
    max-width: 82vw !important;
    clip-path: none;
    margin: 0;
  }

  .header-inner {
    min-height: 68px !important;
  }
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-contact a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  text-decoration: none;
  transition: 0.15s ease;
}

.header-contact a:hover {
  transform: translateY(-1px);
  background: transparent;
}

.header-contact svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.about-contact {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 0 0 12px;
  border-top: 1px solid var(--line);
}

.about-contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 1px;
}

.about-contact-item a {
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
}

.about-contact-item a:hover {
  color: var(--blue);
}
