* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #071426;
  --navy-2: #0b1f36;
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --light-blue: #60a5fa;
  --gold: #c9a84c;
  --white: #ffffff;
  --soft: #f6f8fc;
  --text: #172033;
  --muted: #667085;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.14);
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; }

.hero {
  min-height: 94vh;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.28), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201,168,76,.14), transparent 32%),
    linear-gradient(135deg, #061120 0%, #071426 52%, #0f2d52 100%);
  color: white;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.7), transparent);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-main {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.logo-sub {
  font-size: .78rem;
  color: var(--light-blue);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-btn {
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  backdrop-filter: blur(10px);
}

.hero-content {
  max-width: 960px;
  margin: 120px auto 0;
  text-align: center;
}

.eyebrow {
  color: var(--light-blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .96;
  letter-spacing: -.07em;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: 1.18rem;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: white;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 20px 45px rgba(37,99,235,.34);
}

.time-note {
  color: rgba(255,255,255,.7);
  font-size: .94rem;
}

.section {
  padding: 96px 24px;
}

.section.alt {
  background: linear-gradient(180deg, #f8fbff, #f3f6fb);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--navy);
  margin-bottom: 20px;
}

.section p {
  max-width: 780px;
  font-size: 1.08rem;
  color: var(--muted);
}

.grid { display: grid; gap: 18px; }

.cards {
  margin-top: 38px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  font-weight: 900;
  color: var(--navy);
  backdrop-filter: blur(10px);
}

.timeline {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.timeline div {
  background: white;
  border: 1px solid var(--border);
  padding: 22px 14px;
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.timeline strong {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.timeline span {
  display: block;
  font-weight: 900;
  font-size: .9rem;
  color: var(--navy);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.checklist {
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.18), transparent 30%),
    var(--navy);
  color: white;
  padding: 38px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.checklist p {
  color: white;
  margin-bottom: 14px;
  font-weight: 800;
}

.center { text-align: center; }
.center p { margin: 0 auto; }

.small-note {
  margin-top: 18px !important;
  font-weight: 800;
  color: var(--blue) !important;
}

.cta-section {
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.22), transparent 30%),
    var(--navy);
  color: white;
  text-align: center;
  padding: 96px 24px;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.055em;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.76);
}

.footer {
  padding: 38px 24px;
  text-align: center;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .9rem;
}

.footer strong {
  color: var(--navy);
  font-size: 1rem;
}

/* DISCOVERY */
.discovery-page {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.12), transparent 28%),
    linear-gradient(180deg, #f8fbff, #eef3fa);
  padding: 54px 20px;
}

.form-shell {
  max-width: 1000px;
  margin: 0 auto;
}

.form-card {
  background: white;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(7,20,38,.15);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
}

.form-header {
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.24), transparent 30%),
    linear-gradient(135deg, #071426, #0b1f36);
  color: white;
  padding: 54px;
}

.form-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 12px 0 14px;
}

.form-header p {
  color: rgba(255,255,255,.75);
  max-width: 680px;
}

.back-home {
  color: var(--light-blue);
  font-weight: 800;
  font-size: .9rem;
}

.progress-area {
  padding: 34px 54px 20px;
  background: white;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  font-weight: 900;
  color: var(--navy);
}

.progress-track {
  height: 10px;
  background: #e8eef8;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--light-blue));
  transition: .35s;
}

form {
  padding: 42px 54px 54px;
}

.form-step { display: none; }

.form-step.active {
  display: block;
  animation: fadeIn .35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.form-step h2 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -.04em;
}

.step-note {
  margin-bottom: 20px;
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d7deea;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  transition: .25s;
  background: #fbfdff;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(37,99,235,.1);
  background: white;
}

.error {
  border-color: #dc2626 !important;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-top: 16px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f7f9fd;
  padding: 15px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(15,23,42,.07);
}

.checkbox-grid input,
.agreement input {
  width: auto;
}

.agreement {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  align-items: flex-start;
  font-size: .95rem;
}

.form-actions {
  margin-top: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.secondary-btn {
  background: white;
  border: 1px solid #d7dce7;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.primary-form-btn {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: white;
  border: none;
  padding: 14px 34px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(37,99,235,.22);
}

.primary-form-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  transition: .25s;
}

/* THANK YOU */
.thank-you-page {
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.22), transparent 30%),
    linear-gradient(135deg, #071426, #0b1f36);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 42px;
}

.thank-you-card {
  background: white;
  max-width: 780px;
  padding: 62px;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  text-align: center;
}

.thank-you-card h1 {
  font-size: 3.3rem;
  color: var(--navy);
  margin: 16px 0 22px;
  letter-spacing: -.05em;
}

.next-steps-box {
  background: #f4f8ff;
  border-left: 5px solid var(--blue);
  padding: 32px;
  margin: 42px 0;
  text-align: left;
  border-radius: 16px;
}

.next-steps-box h2 {
  margin-bottom: 18px;
  color: var(--navy);
}

.next-steps-box p {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero { padding: 22px; }
  .nav { align-items: flex-start; gap: 14px; }
  .nav-btn { font-size: .78rem; padding: 9px 13px; }

  .cards,
  .timeline,
  .field-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 68px 18px; }

  .form-header,
  .progress-area,
  form {
    padding: 28px;
  }

  .progress-meta {
    flex-direction: column;
    gap: 4px;
  }

  .form-actions {
    flex-direction: column;
    gap: 14px;
  }

  .form-actions button {
    width: 100%;
  }

  .thank-you-card {
    padding: 38px 26px;
  }
}