:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5f6d66;
  --line: #d8ded8;
  --paper: #fbfaf4;
  --sage: #dfe9df;
  --moss: #425f4c;
  --clay: #b77b5e;
  --cream: #f4efe4;
  --white: #ffffff;
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
}

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

main {
  min-height: 100vh;
}

.hero {
  min-height: 88vh;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(223, 233, 223, 0.92), rgba(244, 239, 228, 0.72)),
    radial-gradient(circle at 76% 24%, rgba(183, 123, 94, 0.2), transparent 30%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 72px;
  font-size: 14px;
}

nav strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

nav span {
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 72px;
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro {
  max-width: 680px;
  margin-bottom: 28px;
  color: #314037;
  font-size: 19px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button.secondary {
  background: rgba(255, 255, 255, 0.45);
}

.phone {
  border: 1px solid rgba(66, 95, 76, 0.28);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(45, 61, 51, 0.18);
}

.phone-top {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--clay);
  opacity: 0.75;
}

.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
}

.step + .step {
  margin-top: 12px;
}

.step.active {
  border-color: rgba(66, 95, 76, 0.46);
  background: #f7fbf4;
}

.step small,
.row span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.step strong,
.row strong {
  display: block;
  font-size: 16px;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof-band,
.fit,
.whatsapp,
.faq {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 24px;
}

.proof-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.proof-band p {
  margin: 0;
  font-weight: 800;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fit {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.fit-grid {
  display: grid;
  gap: 12px;
}

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

article span {
  display: block;
  margin-bottom: 24px;
  color: var(--clay);
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

article p,
.panel p {
  color: var(--muted);
  line-height: 1.55;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: stretch;
}

.panel,
.crm-card,
.faq {
  border-top: 1px solid var(--line);
}

.panel {
  padding: 38px 0;
}

.crm-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--moss);
  color: var(--white);
}

.row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0 18px;
}

.row + .row {
  padding-top: 18px;
}

.row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.row span {
  color: rgba(255, 255, 255, 0.72);
}

.questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.questions button {
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 18px;
  }

  nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 44px;
  }

  .hero-grid,
  .fit,
  .whatsapp,
  .questions {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 46px;
  }

  .intro {
    font-size: 17px;
  }

  .phone {
    border-radius: 22px;
  }

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

  .chips {
    justify-content: flex-start;
  }
}
