:root {
  --teal: #1b7a6c;
  --teal-dark: #146257;
  --teal-soft: #e8f4f1;
  --teal-mid: #d8eee9;
  --cream: #f6f3ee;
  --paper: #ffffff;
  --ink: #1c1c1c;
  --muted: #6b7280;
  --line: #e6e1d8;
  --shadow: 0 18px 50px rgba(28, 28, 28, 0.1);
  --radius: 22px;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.45em;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--teal);
  color: #fff;
  padding: 8px 12px;
  z-index: 30;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}

.brand-mark {
  color: var(--teal);
  display: flex;
}

.primary-nav {
  display: flex;
  gap: 22px;
  margin-right: auto;
}

.primary-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.primary-nav a.is-active,
.primary-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.text-btn,
.nav-toggle {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}

.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
}

.hero-photo,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("/images/hero.jpg") center 35% / cover no-repeat;
}

.hero-scrim {
  background: linear-gradient(180deg, rgba(8, 16, 20, 0.15) 0%, rgba(8, 16, 20, 0.28) 40%, rgba(8, 16, 20, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 90px 0 170px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: min(1120px, calc(100% - 32px));
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  max-width: 14ch;
}

.lede {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.wizard-wrap {
  position: relative;
  z-index: 3;
  margin-top: -110px;
  margin-bottom: 28px;
}

.wizard {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px 22px 20px;
}

.wizard-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.wizard-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  border-radius: 16px;
  min-height: 74px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  color: var(--teal);
}

.wizard-tab.is-active {
  background: var(--teal);
  color: #fff;
}

.wizard-tab.is-active .tab-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.wizard-panel {
  text-align: center;
  padding: 8px 8px 18px;
}

.wizard-panel h2 {
  font-size: 1.7rem;
}

.wizard-panel p {
  color: var(--muted);
}

.choice-grid,
.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
  margin-top: 22px;
}

.field-grid {
  grid-template-columns: 1fr 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
}

.choice-card:has(input:checked) {
  border-color: var(--teal);
  background: #f3fbf8;
  box-shadow: 0 0 0 3px rgba(27, 122, 108, 0.12);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-icon {
  color: var(--teal);
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
}

input,
select {
  font: inherit;
  font-weight: 500;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.stats {
  padding: 18px 0 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 42px 0 64px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.05);
}

.package-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.photo-wrap {
  position: relative;
}

.badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-body {
  padding: 16px 16px 18px;
}

.meta {
  color: var(--muted);
  margin: 0 0 16px;
}

.package-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.price {
  margin: 0;
  font-weight: 800;
}

.price span {
  font-weight: 600;
  color: var(--muted);
}

.how h2 {
  margin-bottom: 22px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
}

.steps li {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
}

.steps span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

.sheet {
  border: 0;
  border-radius: 20px;
  padding: 24px;
  width: min(420px, calc(100% - 24px));
  box-shadow: var(--shadow);
}

.sheet::backdrop {
  background: rgba(16, 24, 22, 0.4);
}

.sheet form {
  display: grid;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.open {
    display: flex;
  }

  .wizard-tabs,
  .choice-grid,
  .stats-grid,
  .package-grid,
  .steps,
  .footer-inner,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
  }

  .hero-copy {
    padding: 48px 0 150px;
  }

  .hero h1 {
    max-width: none;
  }

  .package-foot,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
