:root {
  color-scheme: light;
  --ink: #171412;
  --muted: #645c55;
  --soft: #f5f1ec;
  --paper: #fffaf4;
  --line: #ded4ca;
  --rose: #ba1558;
  --wine: #5f1737;
  --sage: #6e806a;
  --shadow: 0 24px 70px rgba(40, 22, 14, 0.14);
}

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

a {
  color: inherit;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  padding: 22px clamp(18px, 4vw, 56px) 56px;
  background:
    linear-gradient(120deg, rgba(186, 21, 88, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #efe8df 100%);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 20, 18, 0.12);
}

nav strong {
  font-size: 0.98rem;
}

nav span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-grid {
  max-width: 1180px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.64fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  line-height: 0.95;
  font-weight: 500;
}

.intro {
  max-width: 680px;
  color: #443d37;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 760;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #fffaf4;
}

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

.button.secondary {
  border: 1px solid rgba(23, 20, 18, 0.22);
  color: var(--ink);
}

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

.phone {
  border: 1px solid rgba(23, 20, 18, 0.18);
  border-radius: 28px;
  padding: 16px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  gap: 7px;
  padding: 6px 4px 14px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.24);
}

.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  margin-top: 10px;
  background: #fffdf9;
}

.step.active {
  border-color: rgba(186, 21, 88, 0.42);
  background: #fff6f9;
}

.step small,
.row span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 760;
}

.step strong {
  display: block;
  margin: 8px 0;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.brand-band {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #fffaf4;
}

.brand-band p,
.brand-band .chips {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.brand-band p {
  margin-bottom: 16px;
  color: rgba(255, 250, 244, 0.7);
}

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

.chips span {
  border: 1px solid rgba(255, 250, 244, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.fit,
.whatsapp,
.faq {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 56px);
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  font-weight: 500;
}

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

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

article span {
  color: var(--rose);
  font-weight: 800;
}

h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

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

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

.panel,
.crm-card {
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.panel {
  background: #ece4da;
  border: 1px solid var(--line);
}

.crm-card {
  background: var(--wine);
  color: #fffaf4;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.row {
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  padding-bottom: 14px;
}

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

.row strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.faq {
  padding-top: 42px;
}

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

button {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 760;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

button:hover,
button:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
  outline: none;
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

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

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

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

  .hero-grid {
    margin-top: 38px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .fit,
  .whatsapp,
  .faq {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-width: 440px) {
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone {
    border-radius: 20px;
  }
}
