:root {
  color-scheme: light;
  --ink: #151514;
  --muted: #5e5f58;
  --line: #dad2c1;
  --paper: #f3efe6;
  --panel: #fffaf0;
  --oak: #8b6846;
  --deep: #24251f;
  --olive: #68715d;
  --steel: #dce4e2;
  --chalk: #fffdf7;
}

* {
  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(46px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(220, 228, 226, 0.82) 52%, rgba(139, 104, 70, 0.2)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--deep);
  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, 410px);
  align-items: center;
  gap: clamp(32px, 7vw, 84px);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

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

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

h1 {
  max-width: 870px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.99;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  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: 710px;
  font-size: 20px;
}

.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: 850;
  border: 1px solid var(--deep);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--oak);
}

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

.secondary {
  color: var(--deep);
  background: rgba(255, 253, 247, 0.78);
}

.phone {
  position: relative;
  padding: 18px;
  border: 1px solid var(--deep);
  border-radius: 30px;
  background: #24251f;
  box-shadow: 0 24px 80px rgba(36, 37, 31, 0.24);
}

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

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel);
  opacity: 0.9;
}

.step {
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: var(--chalk);
  animation: rise 700ms ease both;
}

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

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

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

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

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

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

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

.chips span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
}

.fit {
  background: var(--chalk);
}

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

article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf7ec;
}

article span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 28px;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
}

.panel {
  max-width: 760px;
}

.crm-card {
  border: 1px solid var(--deep);
  border-radius: 8px;
  background: var(--chalk);
  padding: 8px;
  box-shadow: 0 18px 54px rgba(36, 37, 31, 0.12);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  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(--deep);
}

.faq {
  background:
    linear-gradient(135deg, rgba(36, 37, 31, 0.96), rgba(104, 113, 93, 0.94)),
    var(--deep);
  color: white;
}

.faq .eyebrow {
  color: #d8c5aa;
}

.faq h2 {
  max-width: 900px;
}

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

button {
  min-height: 96px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

button:hover,
button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

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

  nav,
  .proof-band,
  .row {
    align-items: flex-start;
  }

  nav,
  .proof-band {
    flex-direction: column;
  }

  nav span {
    text-align: left;
  }

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

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .phone {
    border-radius: 24px;
  }

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

@media (max-width: 460px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .intro {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  article {
    min-height: auto;
  }
}
