:root {
  --ink: #18221f;
  --muted: #5d6965;
  --line: #d8dedb;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --green: #13795b;
  --green-dark: #0d4f3d;
  --gold: #d8a33f;
  --coral: #db6b57;
  --sky: #d5e8f4;
  --shadow: 0 18px 48px rgba(18, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(216, 222, 219, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px) clamp(18px, 6vw, 80px) 30px;
}

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

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

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

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 900;
}

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

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

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--green);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: min(100%, 720px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-band div {
  min-width: 0;
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 80px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.async-section {
  background: #fff;
}

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

.step-card {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-label {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.step-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.card,
.price-card {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card p,
.price-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process {
  background: var(--sky);
}

.timeline {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.timeline span {
  color: var(--green-dark);
  font-weight: 900;
}

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

.price-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.price {
  color: var(--ink) !important;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
}

.first-client {
  padding-top: 0;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 54px);
  align-items: end;
  padding: clamp(26px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-panel p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.offer-actions {
  display: flex;
  min-width: 250px;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.offer-actions span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 74px) clamp(18px, 6vw, 80px);
  color: #fff;
  background: var(--green-dark);
}

.contact h2 {
  max-width: 760px;
}

.contact-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact .eyebrow {
  color: var(--gold);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 80px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.legal {
  max-width: 880px;
  min-height: calc(100vh - 150px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 6vw, 80px);
}

.legal h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
}

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

.legal p,
.legal li {
  color: var(--muted);
  font-size: 18px;
}

.legal a {
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(44px, 12vw, 68px);
  }

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

  .offer-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .proof-band,
  .async-grid,
  .grid,
  .pricing {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
