:root {
  --bg: #f5f7fb;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #0f766e;
  --accent-2: #f59e0b;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 24px 64px rgba(15, 118, 110, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.background-aurora {
  position: absolute;
  inset: -10% 0 auto;
  height: 520px;
  background: radial-gradient(circle at 20% 20%, rgba(15, 118, 110, 0.25), transparent 40%),
              radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.25), transparent 35%),
              radial-gradient(circle at 40% 80%, rgba(14, 116, 144, 0.18), transparent 35%);
  filter: blur(32px);
  z-index: 0;
  opacity: 0.9;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  backdrop-filter: blur(10px);
  background: rgba(245, 247, 251, 0.72);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}

.brand-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-tag {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #fff;
  box-shadow: 0 18px 44px rgba(14, 165, 233, 0.24);
}

.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(14, 165, 233, 0.28);
}

.ghost {
  background: rgba(15, 118, 110, 0.08);
  color: var(--ink);
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.ghost:hover {
  background: rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 32px;
  padding: 48px 6vw 32px;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
  padding: 18px 8px 18px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, 0.2);
  color: #0f766e;
  background: rgba(15, 118, 110, 0.08);
  font-weight: 600;
  font-size: 14px;
}

.tag.soft {
  background: rgba(15, 118, 110, 0.06);
  border-color: rgba(15, 118, 110, 0.12);
  color: var(--ink);
}

.lede {
  font-size: 18px;
  color: var(--muted);
}

.benefits {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), #fb923c);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.benefit-title {
  margin: 0;
  font-weight: 700;
}

.benefit-text {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.assurance {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pill-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.pill-stats > div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.08);
}

.pill-number {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}

.pill-text {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.lead-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.card-head {
  margin-bottom: 12px;
}

.card-sub {
  color: var(--muted);
}

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

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

label {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 15px;
  transition: border 120ms ease, box-shadow 120ms ease, transform 120ms ease;
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

textarea {
  resize: vertical;
  min-height: 96px;
}

.submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px 18px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.privacy {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.form-alert {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  display: none;
}

.form-alert.show {
  display: block;
}

.form-alert.success {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
  color: var(--ink);
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.32);
  color: #b91c1c;
}

.form-alert.warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #92400e;
}

.section {
  padding: 28px 6vw 32px;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.section h3 {
  margin-bottom: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(15, 118, 110, 0.08);
}

.card-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 14px;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #22c55e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}

.step-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.faq-q {
  font-weight: 700;
  margin-bottom: 4px;
}

.faq-a {
  color: var(--muted);
}

.closing {
  padding: 12px 6vw 48px;
}

.closing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0ea5e9, #0f766e);
  color: #fff;
  box-shadow: 0 18px 48px rgba(14, 165, 233, 0.26);
}

.closing-card h3 {
  margin: 4px 0;
}

.closing-card p {
  margin-bottom: 0;
}

.closing-card .primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.footer {
  padding: 18px 6vw 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.footer-note {
  margin: 0;
}

code {
  background: rgba(15, 118, 110, 0.08);
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 13px;
}

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

  .lead-card {
    position: relative;
    top: 0;
  }

  .nav {
    position: sticky;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 12px 5vw;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .section,
  .closing,
  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .field.two {
    grid-template-columns: 1fr;
  }

  .closing-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
