:root {
  --blue: #123cff;
  --blue-deep: #061b78;
  --blue-soft: #6f99ff;
  --ink: #172033;
  --muted: #5d6980;
  --line: #dce3f0;
  --paper: #ffffff;
  --wash: #f5f8ff;
  --mint: #dff8e7;
  --gold: #f1c65a;
  --danger: #bd2531;
  --shadow: 0 24px 70px rgba(8, 28, 94, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--wash);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(18, 60, 255, 0.08), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(241, 198, 90, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 58%, #eef4ff 100%);
  z-index: -2;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 227, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner,
.footer-inner,
.legal-shell,
.thanks-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  width: 188px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 0 18px;
  box-shadow: 0 12px 24px rgba(18, 60, 255, 0.2);
}

.hero {
  padding: 64px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.form-title {
  font-family: Poppins, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.98;
  color: var(--blue-deep);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-list li::before,
.trust-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(18, 60, 255, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 9px 13px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-card {
  overflow: hidden;
  border: 1px solid rgba(18, 60, 255, 0.18);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
}

.form-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.18;
}

.form-subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

form {
  padding: 24px 28px 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.checkbox-label {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--ink);
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd8e8;
  border-radius: 6px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(111, 153, 255, 0.45);
  outline-offset: 2px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 10px;
  margin: 6px 0 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbff;
}

.consent.is-visible {
  display: flex;
}

.consent input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.checkbox-label {
  font-weight: 400;
  line-height: 1.45;
}

.legal-note {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.submit-btn,
.primary-link {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(18, 60, 255, 0.23);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.submit-btn:hover,
.primary-link:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: 0 18px 38px rgba(18, 60, 255, 0.3);
}

.submit-btn[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 56px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.visual-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(160px, 220px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(28px, 7vw, 120px);
}

.section-portrait {
  width: clamp(160px, 16vw, 220px);
  aspect-ratio: 1;
  margin: 0 16px 0 0;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 54px rgba(23, 32, 51, 0.12);
}

.section-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header h2,
.final-cta h2,
.legal-shell h1,
.thanks-shell h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
}

.section-header p,
.final-cta p,
.thanks-shell p {
  color: var(--muted);
  font-size: 1.04rem;
}

.benefit-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card,
.step-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(23, 32, 51, 0.06);
}

.benefit-card {
  padding: 22px;
}

.benefit-icon,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(18, 60, 255, 0.1);
  color: var(--blue);
  font-weight: 1000;
}

.benefit-card h3,
.step-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.benefit-card p,
.step-card p,
.faq-answer,
.footer-disclaimer,
.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

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

.step-card {
  padding: 26px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
  padding: 18px 20px;
  text-align: left;
}

.faq-arrow {
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  margin: 56px 0 0;
  border-radius: 8px;
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.primary-link {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 24px;
  text-decoration: none;
  background: #fff;
  color: var(--blue-deep);
  box-shadow: none;
}

.site-footer {
  background: #071340;
  color: #fff;
  padding: 36px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #fff;
}

.footer-disclaimer {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.legal-shell,
.thanks-shell {
  padding: 58px 0 72px;
}

.legal-card,
.thanks-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 52px);
}

.legal-card h2 {
  margin-top: 34px;
  color: var(--blue-deep);
}

.privacy-request-form {
  margin-top: 26px;
  padding: 0;
}

.choice-group {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.choice-group legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 1000;
}

.choice-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.choice-row input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.certification {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 400;
}

.privacy-submit {
  margin-top: 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 900;
}

.thanks-card {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .visual-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-portrait {
    justify-self: end;
    width: 160px;
    margin-right: 0;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 62px;
  }

  .logo {
    width: 152px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .section-portrait {
    justify-self: start;
    width: 132px;
  }

  .form-grid,
  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-top,
  form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
