:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --panel: #ffffff;
  --ink: #17201b;
  --muted: #66736b;
  --line: #dce4dd;
  --green: #1b7f58;
  --green-strong: #0f5f42;
  --blue: #226b8c;
  --shadow: 0 24px 80px rgba(35, 49, 41, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  align-items: center;
  background: rgba(247, 248, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 7px;
  color: white;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  min-height: calc(100vh - 65px);
  padding: clamp(48px, 8vw, 108px) clamp(20px, 5vw, 72px) 48px;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.section-label {
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 42px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

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

.button.primary:hover {
  background: var(--green-strong);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.trust-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 640px;
}

.trust-row div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.trust-row dt {
  font-size: 24px;
  font-weight: 850;
}

.trust-row dd {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 0;
}

.ops-visual {
  align-self: center;
  background: #fcfdfb;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-topbar,
.visual-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.visual-topbar {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.live-dot {
  align-items: center;
  color: var(--green-strong);
  display: inline-flex;
  font-size: 12px;
  gap: 7px;
}

.live-dot::before {
  background: #2ec27e;
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.pipeline {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.pipeline article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 5px;
  grid-template-columns: 48px 1fr;
  padding: 18px;
}

.pipeline h2 {
  font-size: 18px;
  margin: 0;
}

.pipeline p {
  color: var(--muted);
  font-size: 14px;
  grid-column: 2;
  line-height: 1.5;
  margin: 0;
}

.step-index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  grid-row: span 2;
}

.status {
  background: #eef3f0;
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-right: 8px;
  padding: 5px 9px;
}

.status.paid {
  background: #dff4e8;
  color: var(--green-strong);
}

.visual-footer {
  background: #eef3f0;
  border-top: 1px solid var(--line);
}

.visual-footer strong,
.visual-footer span {
  display: block;
}

.visual-footer a {
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 850;
}

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

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

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading h2,
.intake-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  margin: 0;
}

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

.package {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 390px;
  padding: 24px;
}

.package.featured {
  border-color: rgba(27, 127, 88, 0.42);
  box-shadow: 0 18px 56px rgba(27, 127, 88, 0.13);
}

.package h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.package p,
.package li,
.process-list p,
.intake-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.package ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
}

.price {
  font-size: 26px;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.process-section {
  background: #edf2ee;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid #cfdbd3;
  display: grid;
  gap: 18px;
  grid-template-columns: 80px 260px 1fr;
  padding: 24px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid #cfdbd3;
}

.process-list span {
  color: var(--blue);
  font-weight: 850;
}

.process-list strong {
  font-size: 20px;
}

.process-list p {
  margin: 0;
}

.intake-section {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: 0.8fr 1fr;
}

.payment-box {
  background: #edf2ee;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 28px;
  padding: 22px;
}

.payment-box h3 {
  margin-bottom: 12px;
}

.payment-box p {
  margin-bottom: 8px;
}

.intake-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(35, 49, 41, 0.08);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
}

label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

input,
textarea,
select {
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(27, 127, 88, 0.14);
}

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

.form-note {
  color: var(--green-strong);
  font-weight: 800;
  margin: 0;
  min-height: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

@media (max-width: 920px) {
  .hero,
  .intake-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .package-list {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: 0;
  }

  .process-list li {
    grid-template-columns: 60px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    position: static;
  }

  .nav {
    gap: 16px;
  }

  .hero-actions,
  .site-footer,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .pipeline article {
    grid-template-columns: 38px 1fr;
    padding: 15px;
  }

  .button {
    width: 100%;
  }
}
