:root {
  color-scheme: light;
  --ink: #171410;
  --muted: #655f55;
  --line: #ded5c8;
  --paper: #f8f4ed;
  --panel: #fffaf2;
  --green: #214c3b;
  --gold: #b3822d;
  --blue: #233f68;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  overflow: hidden;
}

section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(33, 76, 59, 0.08), rgba(179, 130, 45, 0.08)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--green);
  font-size: 14px;
}

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

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

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

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

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

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

.intro {
  max-width: 610px;
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--green);
}

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

.secondary {
  color: var(--green);
  background: transparent;
}

.phone {
  position: relative;
  padding: 18px;
  border: 1px solid #1b352a;
  border-radius: 30px;
  background: #101915;
  box-shadow: 0 24px 80px rgba(25, 31, 28, 0.22);
}

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

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7c7a9;
  opacity: 0.9;
}

.step {
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #f5efe4;
  transform: translateY(0);
  animation: rise 700ms ease both;
}

.step:nth-child(3) {
  animation-delay: 120ms;
}

.step:nth-child(4) {
  animation-delay: 240ms;
}

.step small {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.step strong {
  display: block;
  margin: 8px 0;
  color: var(--green);
}

.trust {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

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

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

.chips span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  font-size: 13px;
}

.flow {
  max-width: 1220px;
  margin: 0 auto;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

article {
  min-height: 240px;
  padding: 28px;
  background: var(--panel);
}

article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eadcc5;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 42px;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 520px);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  background: #203f34;
  color: white;
}

.whatsapp .eyebrow {
  color: #d8b46c;
}

.whatsapp .panel p {
  max-width: 620px;
  color: #dce8e1;
}

.crm-card {
  background: #f8f4ed;
  color: var(--ink);
  border-radius: 8px;
  padding: 10px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

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

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

.row strong {
  text-align: right;
  color: var(--green);
}

.faq {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.faq h2 {
  margin-left: auto;
  margin-right: auto;
}

.questions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.questions button {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 6px;
  padding: 18px;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  nav,
  .trust {
    align-items: flex-start;
    flex-direction: column;
  }

  nav span,
  .chips {
    text-align: left;
    justify-content: flex-start;
  }

  .hero-grid,
  .whatsapp {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .phone {
    border-radius: 22px;
  }

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

  article {
    min-height: 0;
  }
}
