:root {
  color-scheme: light;
  --ink: #121312;
  --muted: #62635e;
  --line: #d6d5cc;
  --paper: #f0f0ea;
  --panel: #fbfbf4;
  --smoke: #e4e4dc;
  --graphite: #1f2320;
  --olive: #59624c;
  --signal: #d9ff4a;
  --clay: #a5674e;
  --white: #fffffa;
}

* {
  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(44px, 7vw, 94px) clamp(18px, 5vw, 74px);
}

.hero {
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(18, 19, 18, 0.06), rgba(89, 98, 76, 0.16)),
    radial-gradient(circle at 78% 18%, rgba(217, 255, 74, 0.2), transparent 28%),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

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

nav strong {
  text-transform: uppercase;
  letter-spacing: 0;
}

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

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

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

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

h1 {
  max-width: 860px;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  max-width: 790px;
  font-size: clamp(31px, 4.9vw, 62px);
  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: 680px;
  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: 8px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid var(--graphite);
}

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

.secondary {
  color: var(--graphite);
  background: rgba(255, 255, 250, 0.64);
}

.phone {
  position: relative;
  padding: 18px;
  border: 1px solid var(--graphite);
  border-radius: 30px;
  background:
    linear-gradient(145deg, #151713, #252a20);
  box-shadow: 0 24px 80px rgba(31, 35, 32, 0.24);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(217, 255, 74, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

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

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

.step {
  position: relative;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: var(--white);
  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(--olive);
  font-weight: 850;
  text-transform: uppercase;
}

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

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

.studio-band 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, 255, 250, 0.7);
  font-size: 13px;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: end;
}

.section-head .eyebrow {
  align-self: start;
}

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

article {
  background: var(--panel);
  padding: clamp(22px, 4vw, 38px);
}

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

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  background: var(--graphite);
  color: var(--white);
}

.whatsapp .eyebrow,
.whatsapp h2 {
  color: var(--signal);
}

.panel p {
  max-width: 650px;
  color: #d2d6ca;
  font-size: 18px;
}

.crm-card {
  background: #f8f8f0;
  color: var(--graphite);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.26);
}

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

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

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

.row strong {
  text-align: right;
}

.faq {
  max-width: 1120px;
  margin: 0 auto;
}

.questions {
  display: grid;
  gap: 10px;
}

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

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

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

  .step {
    animation: none;
  }
}

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

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

  nav span {
    text-align: left;
  }

  .hero-grid,
  .whatsapp,
  .section-head {
    grid-template-columns: 1fr;
  }

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

  .phone {
    max-width: 420px;
    width: 100%;
  }

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

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

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

  h1 {
    font-size: 43px;
  }

  .button {
    width: 100%;
  }

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

  .row strong {
    text-align: left;
  }
}
