:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --ink: #1e211d;
  --muted: #62675d;
  --line: #d8d1c3;
  --panel: #ffffff;
  --accent: #0b6b57;
  --accent-dark: #06483a;
  --warm: #d66b3d;
  --soft: #ede5d8;
  --shadow: 0 24px 70px rgba(31, 34, 28, 0.14);
  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;
}

a:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(11, 107, 87, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid rgba(216, 209, 195, 0.72);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.96rem;
}

nav a:hover,
nav a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
}

.button {
  padding: 0 22px;
  font-size: 0.98rem;
}

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

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-1px);
}

.primary:hover,
.primary:focus-visible {
  background: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 72px) clamp(30px, 4vw, 54px);
}

.hero-copy {
  max-width: 780px;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

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

.price-line,
.pricing-note {
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.price-line strong,
.pricing-note strong {
  color: var(--accent);
}

.pricing-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.lead-board {
  position: relative;
  padding: 26px;
  background: var(--panel);
  border: 1px solid rgba(216, 209, 195, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-board::before {
  position: absolute;
  inset: -18px 18px auto auto;
  width: 138px;
  height: 138px;
  content: "";
  background:
    linear-gradient(135deg, rgba(214, 107, 61, 0.18), rgba(11, 107, 87, 0.1)),
    var(--soft);
  border-radius: 8px;
  z-index: -1;
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.board-top strong {
  color: var(--accent);
}

.flow-step {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(216, 209, 195, 0.7);
}

.flow-step:last-child {
  border-bottom: 0;
}

.flow-step p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border: 2px solid var(--accent);
  border-radius: 999px;
}

.flow-step.active .dot {
  background: var(--warm);
  border-color: var(--warm);
}

.problem-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.problem-band div {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 32px);
  background: #fffaf1;
}

.problem-band strong {
  color: var(--accent);
}

.problem-band span {
  color: var(--muted);
  line-height: 1.45;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

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

.deliverables div,
.fit-grid article,
.plan {
  min-height: 74px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.section-heading p {
  max-width: 420px;
}

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

.pricing {
  background: #fffaf1;
}

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

.plan {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 310px;
  background: #fff;
}

.plan.featured {
  border-color: rgba(11, 107, 87, 0.5);
  box-shadow: var(--shadow);
}

.plan strong {
  color: var(--accent);
  font-size: 1.9rem;
}

.trust-strip,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip span,
.trust-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.trust-strip a,
.trust-list a,
.legal-page a {
  color: var(--accent);
  font-weight: 750;
}

.fit-grid article {
  display: grid;
  align-content: start;
  min-height: 210px;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.process {
  background: #20251f;
  color: #fbf8ef;
}

.process .section-heading p,
.process li span {
  color: rgba(251, 248, 239, 0.72);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process li {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(251, 248, 239, 0.18);
  border-radius: 8px;
  counter-increment: process;
}

.process li::before {
  display: block;
  margin-bottom: 44px;
  color: var(--warm);
  font-size: 0.88rem;
  font-weight: 800;
  content: "0" counter(process);
}

.process li strong,
.process li span {
  display: block;
}

.process li span {
  margin-top: 10px;
  line-height: 1.55;
}

.audit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.fine-print {
  margin-top: 24px;
  font-size: 0.95rem;
}

.audit-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

textarea {
  min-height: 160px;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

#copy-status {
  min-height: 20px;
  color: var(--accent);
  font-size: 0.92rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-page {
  max-width: 860px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .audit {
    grid-template-columns: 1fr;
  }

  .problem-band,
  .pricing-grid,
  .fit-grid,
  .process ol {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .lead-board {
    display: none;
  }
}

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

  .brand {
    font-size: 0.96rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  nav {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.9rem;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .problem-band {
    margin-right: 16px;
    margin-left: 16px;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 1;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .hero p {
    font-size: 1rem;
  }

}
