:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #6e6a61;
  --line: #d8d0c2;
  --paper: #f7f3eb;
  --panel: #fffaf1;
  --deep: #25231f;
  --gold: #a17b42;
  --sage: #7a846f;
  --terracotta: #9a5e45;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(122, 132, 111, 0.12), transparent 38%),
    var(--paper);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  padding: 28px clamp(18px, 4vw, 58px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

nav strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.62fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  padding-top: 88px;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 26px;
  max-width: 920px;
  font-size: clamp(52px, 8vw, 118px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.4vw, 76px);
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.intro {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep);
  border-radius: 4px;
  color: var(--deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

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

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.78);
}

.phone {
  width: min(100%, 380px);
  margin-left: auto;
  padding: 18px;
  border: 1px solid #cbbfaba6;
  border-radius: 28px;
  background: #fbf7ef;
  box-shadow: 0 28px 70px rgba(48, 38, 24, 0.16);
}

.phone-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

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

.step {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

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

.step.active {
  border-color: rgba(161, 123, 66, 0.6);
  background: #f2eadb;
}

.step small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.step p,
.fit-grid p,
.panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-band {
  padding: 22px clamp(18px, 4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  color: var(--panel);
}

.proof-band p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

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

.chips span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  color: #efe6d5;
  font-size: 12px;
}

.fit,
.whatsapp,
.faq {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 4vw, 58px);
}

.fit {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 6vw, 88px);
}

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

article {
  min-height: 315px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.68);
}

article span {
  display: block;
  margin-bottom: 60px;
  color: var(--terracotta);
  font-weight: 800;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  background: #eee5d7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.panel {
  max-width: 790px;
}

.panel p {
  margin-top: 24px;
  max-width: 620px;
  font-size: 18px;
}

.crm-card {
  padding: 18px;
  border-radius: 10px;
  background: var(--deep);
  color: var(--panel);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
}

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

.row span {
  color: #c5bba9;
}

.row strong {
  max-width: 58%;
  text-align: right;
}

.faq {
  min-height: 58vh;
}

.faq h2 {
  max-width: 980px;
  margin-bottom: 34px;
}

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

button {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
}

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

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

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

  .hero-grid {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .phone {
    margin-left: 0;
  }

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

  article {
    min-height: 0;
  }

  article span {
    margin-bottom: 26px;
  }

  .row {
    display: block;
  }

  .row strong {
    display: block;
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }
}
