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

:root {
  --navy: #0f1f3d;
  --blue: #1a3a6e;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --gold: #f59e0b;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
}

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

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e40af 100%);
  color: white;
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.18);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 40px;
}
.hero-step {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  flex: 1 1 0;
  min-width: 0;
}
.hero-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-step p { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.5; }

/* ── PROBLEM STRIP ── */
.problem {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}
.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem h2 { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.problem p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.problem-pills { display: flex; flex-direction: column; gap: 10px; }
.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #b91c1c;
}
.pill::before { content: '✕'; font-weight: 700; font-size: 12px; }

/* ── HOW IT WORKS ── */
.how {
  padding: 64px 24px;
  background: var(--bg);
}
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 48px;
}
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
}
.step-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.step-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── DELIVERABLES ── */
.deliverables {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  padding: 64px 24px;
}
.del-inner { max-width: 900px; margin: 0 auto; }
.deliverables .section-label { color: var(--gold); }
.deliverables .section-title { color: white; }
.del-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.del-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 18px 16px;
}
.del-check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--navy);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.del-item p { font-size: .9rem; color: rgba(255,255,255,.88); line-height: 1.5; }

/* ── FORM SECTION ── */
.form-section {
  padding: 72px 24px;
  background: white;
}
.form-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.form-intro { text-align: center; margin-bottom: 48px; }
.form-intro p { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 12px auto 0; }

.form-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.form-group-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.form-group-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field-row.single { grid-template-columns: 1fr; }
.field-row.triple { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
label .req { color: var(--accent); margin-left: 2px; }
input[type="text"],
input[type="email"],
select,
textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
textarea { resize: vertical; min-height: 100px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── SUBMIT BUTTON ── */
.submit-area {
  margin-top: 48px;
  text-align: center;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
  letter-spacing: .01em;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.45); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-submit .arrow { font-size: 1.2rem; transition: transform .15s; }
.btn-submit:hover .arrow { transform: translateX(4px); }
.fine-print {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── SUCCESS STATE ── */
.success-box {
  display: none;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid var(--success);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.success-box.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.success-box p { color: var(--muted); font-size: .975rem; line-height: 1.7; }

/* ── WHY MATTERS ── */
.why {
  background: var(--bg);
  padding: 64px 24px;
}
.why-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why h2 { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.why p { color: var(--muted); font-size: .975rem; line-height: 1.75; margin-bottom: 14px; }
.why-bullets { display: flex; flex-direction: column; gap: 10px; }
.why-bullet {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .9rem; color: var(--text);
}
.why-bullet::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}
footer strong { color: rgba(255,255,255,.8); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .problem-inner, .why-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .field-row.triple { grid-template-columns: 1fr; }
  .hero-step { width: 100%; }
  .hero-steps { flex-direction: column; align-items: center; }
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
