:root {
  --ink: #1f2426;
  --muted: #5c666b;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #d8ddd6;
  --green: #0f766e;
  --red: #b23b3b;
  --yellow: #d6a419;
  --shadow: 0 18px 50px rgba(31, 36, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(247, 248, 244, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  padding: 116px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
  background: #23292a;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 20, 20, 0.84), rgba(15, 20, 20, 0.34) 58%, rgba(15, 20, 20, 0.18)),
    linear-gradient(0deg, rgba(15, 20, 20, 0.74), rgba(15, 20, 20, 0.06) 46%);
}

.hero-content {
  position: relative;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.result-band .eyebrow {
  color: #8ce0d4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 58px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover {
  background: #0b5f58;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 46px);
  background: var(--white);
}

.proof-strip strong {
  font-size: 34px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-copy {
  max-width: 680px;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card,
.timeline article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card span,
.timeline span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 850;
}

.feature-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 54px;
  align-items: center;
  background: var(--white);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: min(58vw, 560px);
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--yellow);
}

.process {
  background: #e9efea;
}

.packages {
  background: #eef3f2;
}

.segments {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

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

.package-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.package-card.featured {
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: var(--shadow);
}

.package-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #e2ebe8;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.package-card p {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 650;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 4px;
  background: var(--yellow);
}

.package-price {
  margin-top: auto;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-weight: 850;
}

.text-link:hover {
  color: #0b5f58;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.segment-grid article {
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.segment-grid p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.result-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--ink);
  color: var(--white);
}

.result-band .section-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.2);
}

.deliverables div {
  display: grid;
  gap: 8px;
  min-height: 136px;
  align-content: center;
  padding: 22px;
  background: #2e3536;
}

.deliverables strong {
  font-size: 42px;
  line-height: 1;
}

.deliverables span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 620px);
  gap: 54px;
  align-items: start;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid #cbd1ca;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfcf8;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--green);
}

.privacy {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 550;
}

.privacy input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.legal-page {
  background: var(--white);
}

.legal-content {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 80px;
}

.legal-content h1 {
  color: var(--ink);
}

.legal-content dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  margin-top: 34px;
}

.legal-content dt {
  font-weight: 850;
}

.legal-content dd {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .intro,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .timeline,
  .package-grid,
  .segment-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-band {
    align-items: stretch;
    flex-direction: column;
  }

  .deliverables {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding: 104px 18px 40px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding: 64px 18px;
  }

  .feature-grid,
  .timeline,
  .package-grid,
  .segment-grid,
  .proof-strip,
  .deliverables,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .feature-card,
  .timeline article {
    min-height: auto;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }

  .legal-content dl {
    grid-template-columns: 1fr;
  }
}
