:root {
  --ink: #0f172a;
  --slate: #334155;
  --sky: #0ea5e9;
  --ocean: #0f4c81;
  --sun: #f97316;
  --mint: #14b8a6;
  --sand: #f8f5f0;
  --cloud: #f1f5f9;
  --stroke: rgba(15, 23, 42, 0.1);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  display: grid;
  place-items: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 500;
  color: var(--slate);
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--sun);
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--sun);
  color: white;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  z-index: -1;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 70%);
  top: -120px;
  right: -120px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 70%);
  bottom: -140px;
  left: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 26px;
}

.hero-card {
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.hero-card h3 {
  margin: 0;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(14, 165, 233, 0.15);
  color: var(--ocean);
}

.section {
  padding: 80px 0;
}

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

.section h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.section p.lead {
  color: var(--slate);
  max-width: 680px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--sun);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list span {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.callout {
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(20, 184, 166, 0.18));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

footer {
  padding: 50px 0;
  background: var(--ink);
  color: white;
}

footer a {
  color: rgba(255, 255, 255, 0.86);
}

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

.footer-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-shell {
  background: white;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--slate);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  font: inherit;
  background: #fbfbfd;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.stepper {
  display: grid;
  gap: 22px;
}

.step {
  display: none;
}

.step[data-active="true"] {
  display: block;
}

.step-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--ocean);
  font-size: 0.85rem;
  font-weight: 600;
}

.summary-box {
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: rgba(20, 184, 166, 0.08);
  color: var(--slate);
}

.mobile-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 70px 20px auto 20px;
    background: white;
    border-radius: 22px;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .nav-links[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}
