:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-alt: #eef3f8;
  --text: #18222f;
  --muted: #59697c;
  --border: #d8e0ea;
  --accent: #1f5fa3;
  --accent-soft: #eaf2fb;
  --navy: #12263f;
  --green: #31a46c;
  --green-soft: #e8f3ef;
  --max: 1000px;
  --radius: 18px;
  --shadow: 0 16px 32px rgba(18, 38, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 250, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-row,
.footer-row,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-row,
.footer-row {
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
}

.header-cta {
  color: var(--accent);
  font-weight: 700;
}

.hero,
.section {
  padding: 3.25rem 0;
}

.hero {
  width: min(calc(100% - 2rem), var(--max));
  max-width: 44rem;
  margin: 2rem auto 0;
  padding: 3rem;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(49, 164, 108, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2 {
  font-family: Cambria, Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 7vw, 4.9rem);
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.lede,
.section-heading p:last-child,
.scope-card p {
  color: var(--muted);
}

.lede {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  font-size: 1.12rem;
}

.hero .lede,
.hero .hero-note {
  color: #d8e8e2;
}

.hero .eyebrow {
  color: #9ee0bd;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(49, 164, 108, 0.24);
}

.button-primary:hover,
.button-primary:focus {
  background: #278b5a;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 1rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(158, 224, 189, 0.42);
  border-radius: 999px;
  background: rgba(232, 243, 239, 0.1);
  color: #e8f3ef;
  font-size: 0.86rem;
  font-weight: 700;
}

.pricing-card,
.step-card,
.scope-card,
.final-cta {
  background: var(--surface);
  border: 1px solid #c3cfdb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-card,
.scope-card,
.final-cta {
  padding: 1.5rem;
}

.price-block {
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.price-value {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
}

.pricing-columns,
.steps-grid {
  display: grid;
  gap: 1rem;
}

.pricing-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid #c3cfdb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-card-featured {
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(49, 164, 108, 0.18);
}

.offer-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-price {
  display: block;
  margin: 0.5rem 0;
  color: var(--navy);
  font-size: 2.6rem;
  line-height: 1;
}

.offer-note {
  color: var(--muted);
}

.price-note,
.scope-note {
  font-weight: 700;
  color: var(--accent);
}

.section-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.section-tight {
  padding-top: 0;
}

.intake-form {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-full {
  grid-column: 1 / -1;
}

.intake-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 700;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.intake-form textarea {
  resize: vertical;
}

.check-list,
.list-grid {
  padding-left: 1.2rem;
}

.list-grid {
  display: grid;
  gap: 0.75rem;
}

.steps-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card {
  padding: 1.5rem;
  border-top: 4px solid var(--green);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  min-height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.cta-block,
.final-cta {
  gap: 2rem;
  margin-bottom: 5rem;
}

.final-cta {
  color: #fff;
  background: var(--navy);
  border-color: rgba(49, 164, 108, 0.42);
}

.final-cta p {
  color: #d8e8e2;
}

.final-cta .eyebrow {
  color: #9ee0bd;
}

.final-cta .button {
  flex: 0 0 auto;
  width: auto;
  border-radius: 10px;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero,
  .section {
    padding: 2.5rem 0;
  }

  .hero {
    padding: 2rem;
  }

  .header-row,
  .footer-row,
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-columns,
  .steps-grid,
  .offer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 38px;
  }

  .button {
    width: 100%;
  }

  .final-cta .button {
    width: 100%;
  }
}
