:root {
  font-family: "Montserrat", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  --color-brand-red: #f5003f;
  --color-brand-red-light: #ff2d55;
  --color-brand-red-dark: #d90035;
  --color-ink: #050507;
  --color-text: #2c2c2f;
  --color-muted: #6f7075;
  --color-page: #f7f8fa;
  --color-surface: #eef0f2;
  --color-surface-soft: #f4f0f0;
  --color-line: #dadde2;
  --color-white: #ffffff;
  --shadow-soft: 0 16px 40px rgb(5 5 7 / 0.08);
  --shadow-panel: 0 24px 70px rgb(5 5 7 / 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 116px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-text);
  font-family: "Montserrat", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 4px solid var(--color-brand-red);
  outline-offset: 4px;
}

.shell {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 48px;
  background: rgb(247 248 250 / 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  color: var(--color-brand-red);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-word {
  display: block;
}

.brand-descriptor {
  display: grid;
  flex: 0 0 auto;
  gap: 2px;
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.brand-mark {
  display: inline-grid;
  width: 54px;
  height: 42px;
  transform: skewX(-10deg);
  grid-template-columns: repeat(3, 16px);
  gap: 3px;
}

.brand-mark span {
  display: block;
  background: var(--color-brand-red);
}

.brand-mark span:nth-child(2) {
  background: var(--color-brand-red-light);
}

.brand-mark span:nth-child(3) {
  background: var(--color-brand-red-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.main-nav a,
.phone,
.messenger-link,
.header-cta {
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.phone:hover {
  color: var(--color-brand-red);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.phone {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.messenger-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.messenger-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-ink);
}

.messenger-link:hover {
  border-color: currentColor;
  transform: translateY(-1px);
}

.messenger-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.messenger-link-telegram {
  color: #229ed9;
}

.messenger-link-whatsapp {
  color: #25d366;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.header-cta:hover {
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
  color: var(--color-white);
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 34px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: var(--color-brand-red);
}

.button-secondary {
  border: 2px solid var(--color-line);
  background: var(--color-white);
  color: var(--color-ink);
}

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

.button:disabled {
  background: var(--color-line);
  color: var(--color-muted);
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-page);
  isolation: isolate;
}

.hero-layout {
  display: grid;
  min-height: calc(100svh - 92px);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.7fr);
  gap: 36px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--color-brand-red);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(36px, 3.9vw, 60px);
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 840px;
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.34;
}

.hero-bullets {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  min-height: 92px;
  border-top: 4px solid var(--color-brand-red);
  padding-top: 14px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.26;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.hero-actions .button {
  min-width: 350px;
}

.hero-actions p {
  max-width: 390px;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.audit-visual {
  position: relative;
  min-height: 500px;
  border-radius: 8px;
}

.marketplace-logo-stage {
  position: absolute;
  inset: 56px 0 auto auto;
  display: grid;
  width: min(100%, 560px);
  height: 420px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 24px 16px;
  align-items: center;
  border: 2px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  padding: 34px 28px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.96), rgb(238 240 242 / 0.88)),
    repeating-linear-gradient(
      90deg,
      rgb(218 221 226 / 0.34) 0,
      rgb(218 221 226 / 0.34) 1px,
      transparent 1px,
      transparent 42px
    );
  box-shadow: var(--shadow-panel);
}

.marketplace-logo-slot {
  position: relative;
  min-width: 0;
  height: 152px;
}

.marketplace-logo-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--logo-color, var(--color-ink));
  opacity: 0;
  padding: 14px;
  text-align: center;
  box-shadow: 0 16px 32px rgb(5 5 7 / 0.08);
  transform: translateY(16px) scale(0.92);
  animation: marketplace-logo-rotate 15s ease-in-out infinite;
  animation-delay: var(--logo-delay);
}

.marketplace-logo-card img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.marketplace-logo-ozon {
  --logo-color: #005bff;
}

.marketplace-logo-wildberries {
  --logo-color: #b017a8;
}

.marketplace-logo-lamoda {
  --logo-color: var(--color-ink);
}

.marketplace-logo-yandex {
  --logo-color: #f5003f;
}

.marketplace-logo-vseinstrumenty {
  --logo-color: #e00000;
}

.marketplace-logo-vseinstrumenty img {
  border-radius: 4px;
}

@keyframes marketplace-logo-rotate {
  0%,
  16% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  22%,
  94% {
    opacity: 0;
    transform: translateY(-16px) scale(0.92);
  }

  97% {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.marketplace-copy-card {
  grid-column: 1 / -1;
  max-width: 500px;
}

.marketplace-copy-card p {
  max-width: 500px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 900;
  line-height: 1.02;
}

.marketplace-copy-card span {
  display: block;
  max-width: 500px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.24;
}

.dot-field {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  width: 320px;
  height: 320px;
  transform: rotate(-35deg);
  background-image: radial-gradient(circle, var(--color-brand-red) 0 4px, transparent 5px);
  background-position: 0 0;
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 28%, #000 70%, transparent 100%);
  opacity: 0.5;
}

.dot-field-hero {
  right: 18%;
  top: 16%;
}

.soft-polygon {
  position: absolute;
  right: 10%;
  top: 11%;
  z-index: -2;
  width: 360px;
  height: 360px;
  transform: rotate(12deg);
  background: var(--color-surface-soft);
  clip-path: polygon(24% 0, 86% 18%, 100% 76%, 50% 100%, 4% 70%, 0 24%);
  opacity: 0.7;
}

.cube {
  position: absolute;
  pointer-events: none;
  width: 170px;
  height: 170px;
  transform: rotate(-18deg);
}

.cube span {
  position: absolute;
  inset: 0;
  background: var(--color-brand-red);
  clip-path: polygon(18% 12%, 78% 0, 100% 46%, 42% 72%, 0 46%);
}

.cube span:nth-child(2) {
  transform: translate(46px, 45px);
  background: var(--color-brand-red-dark);
  opacity: 0.96;
}

.cube span:nth-child(3) {
  transform: translate(92px, 6px);
  background: var(--color-brand-red-light);
  opacity: 0.96;
}

.cube-hero {
  right: -42px;
  bottom: -18px;
  z-index: -1;
}

.section {
  padding: 104px 0;
}

.section-heading h2,
.quiz-intro h2,
.final-offer h2 {
  max-width: 1120px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.section-heading p,
.quiz-intro p,
.final-offer p,
.result-view > p {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.42;
}

.pain-section {
  background: var(--color-surface);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.pain-grid article,
.audit-map article,
.proof-stats article,
.case-grid article,
.mistake-list article,
.timeline article {
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.pain-grid article {
  min-height: 260px;
  padding: 28px;
}

.pain-grid span,
.timeline span {
  display: block;
  color: var(--color-brand-red);
  font-size: 46px;
  font-weight: 900;
  line-height: 0.95;
}

.pain-grid h3,
.audit-map h3,
.case-grid h3,
.mistake-list h3,
.timeline h3 {
  margin: 24px 0 0;
  color: var(--color-ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.12;
}

.pain-grid p,
.audit-map p,
.case-grid p,
.mistake-list p,
.timeline p {
  margin: 16px 0 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.38;
}

.section-cta {
  margin-top: 42px;
}

.audit-section {
  background: var(--color-page);
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.audit-copy {
  position: sticky;
  top: 132px;
}

.audit-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  align-items: stretch;
}

.audit-map article {
  display: grid;
  grid-template-rows: 168px 1fr;
  gap: 20px;
  height: 100%;
  min-height: 358px;
  overflow: hidden;
  padding: 18px;
}

.audit-card-copy {
  display: grid;
  grid-template-rows: minmax(68px, auto) auto;
  min-width: 0;
  align-self: start;
}

.audit-photo {
  width: 100%;
  min-width: 0;
  height: 168px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(5 5 7 / 0.08);
  border-radius: 6px;
  background: linear-gradient(135deg, #e8edf3 0%, #f7f8fa 100%);
}

.audit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audit-photo-card,
.audit-photo-trust {
  background: linear-gradient(135deg, #f3e8ec 0%, #f7f8fa 100%);
}

.audit-photo-seo {
  background: linear-gradient(135deg, #e7f0ec 0%, #f7f8fa 100%);
}

.audit-photo-ads {
  background: linear-gradient(135deg, #edf0df 0%, #f7f8fa 100%);
}

.audit-photo-logistics {
  background: linear-gradient(135deg, #e8eaf2 0%, #f4f0f0 100%);
}

.audit-map h3 {
  margin-top: 0;
}

.proof-section {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-white);
}

.proof-section .section-kicker {
  color: var(--color-brand-red-light);
}

.proof-section .section-heading h2,
.proof-section .section-heading p {
  color: var(--color-white);
}

.proof-section .section-heading p {
  color: rgb(255 255 255 / 0.78);
}

.cube-proof {
  right: -80px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  opacity: 0.92;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

.proof-stats article {
  min-height: 300px;
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.06);
  padding: 28px;
}

.proof-stats strong {
  display: block;
  color: var(--color-white);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.9;
}

.proof-stats span {
  display: block;
  margin-top: 18px;
  border-top: 4px solid var(--color-brand-red);
  padding-top: 16px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.16;
}

.proof-stats p {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.74);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.38;
}

.cases-section {
  background: var(--color-page);
}

.cases-layout,
.mistakes-layout {
  display: grid;
  gap: 52px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.case-grid article {
  min-height: 330px;
  padding: 28px;
}

.case-meta {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 2px solid var(--color-brand-red);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--color-brand-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.case-grid h3 {
  margin-top: 26px;
  font-size: 23px;
}

.case-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  background: var(--color-ink);
  padding: 34px 36px;
  color: var(--color-white);
}

.case-cta p {
  max-width: 920px;
  margin: 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.38;
}

.case-cta .button {
  flex: 0 0 auto;
  background: var(--color-white);
  color: var(--color-ink);
}

.case-cta .button:hover {
  background: var(--color-brand-red);
  color: var(--color-white);
}

.mistakes-section {
  background: var(--color-surface);
}

.mistake-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mistake-list article {
  min-height: 314px;
  padding: 26px;
}

.mistake-list span {
  display: block;
  width: fit-content;
  border-bottom: 4px solid var(--color-brand-red);
  padding-bottom: 10px;
  color: var(--color-brand-red);
  font-size: 36px;
  font-weight: 900;
  line-height: 0.95;
}

.mistake-list h3 {
  font-size: 21px;
}

.mistake-list p {
  font-size: 15px;
}

.quiz-section {
  background: var(--color-surface);
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.quiz-intro {
  position: sticky;
  top: 132px;
}

.quiz-note {
  display: flex;
  max-width: 540px;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  border-top: 4px solid var(--color-brand-red);
  padding-top: 24px;
}

.quiz-note strong {
  color: var(--color-ink);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.quiz-note span {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.quiz-panel {
  min-height: 700px;
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.quiz-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.progress-track {
  height: 6px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-line);
}

.progress-track span {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-brand-red);
  transition: width 180ms ease;
}

.question-view h3,
.result-view h3 {
  margin: 34px 0 0;
  color: var(--color-ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
}

.question-hint {
  min-height: 28px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.option-button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  padding: 20px 22px;
  color: var(--color-ink);
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.option-button::after {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 999px;
  content: "";
}

.option-button[aria-pressed="true"] {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
}

.option-button[aria-pressed="true"]::after {
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
  box-shadow: inset 0 0 0 4px var(--color-ink);
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.result-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.result-summary div,
.result-summary p {
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-page);
}

.result-summary div {
  min-height: 134px;
  padding: 22px;
}

.result-summary span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-summary strong {
  display: block;
  margin-top: 12px;
  color: var(--color-ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.12;
}

.result-summary p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.lead-form h4,
.contact-method,
.wide-field,
.form-submit,
.agreement {
  grid-column: 1 / -1;
}

.lead-form h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-method legend {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lead-form .contact-method-option {
  position: relative;
  display: block;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: none;
  cursor: pointer;
}

.lead-form .contact-method-option span {
  display: grid;
  min-height: 56px;
  place-items: center;
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  padding: 0 12px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.lead-form .contact-method input[type="radio"] {
  position: absolute;
  width: 1px;
  min-height: auto;
  height: 1px;
  margin: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-form .contact-method input[type="radio"]:focus-visible + span {
  outline: 3px solid rgba(245, 0, 63, 0.24);
  outline-offset: 3px;
}

.lead-form .contact-method input[type="radio"]:checked + span {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 58px;
  border: 2px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  resize: vertical;
  text-transform: none;
}

.lead-form textarea {
  padding-top: 14px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--color-ink);
}

.agreement {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.success-message,
.error-message {
  margin-top: 24px;
  border-left: 5px solid var(--color-brand-red);
  background: var(--color-page);
  padding: 18px 20px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.error-message {
  border-left-color: var(--color-ink);
}

.after-section {
  background: var(--color-page);
}

.after-layout {
  display: grid;
  gap: 58px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 292px;
  padding: 24px;
}

.timeline span {
  font-size: 40px;
}

.timeline h3 {
  font-size: 21px;
}

.timeline p {
  font-size: 15px;
}

.final-offer {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-ink);
  padding: 48px;
  color: var(--color-white);
}

.final-offer::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  transform: rotate(-18deg);
  background: var(--color-brand-red);
  clip-path: polygon(18% 12%, 78% 0, 100% 46%, 42% 72%, 0 46%);
  content: "";
}

.final-offer h2,
.final-offer p,
.final-offer .button {
  position: relative;
  z-index: 1;
}

.final-offer h2 {
  max-width: 1080px;
  color: var(--color-white);
}

.final-offer p {
  max-width: 980px;
  color: rgb(255 255 255 / 0.78);
}

.final-offer .button {
  margin-top: 32px;
  background: var(--color-white);
  color: var(--color-ink);
}

.final-offer .button:hover {
  background: var(--color-brand-red);
  color: var(--color-white);
}

.site-footer {
  background: var(--color-surface);
  color: var(--color-text);
}

.footer-inner {
  display: grid;
  min-height: 124px;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-inner p,
.footer-inner a:not(.brand) {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 84px;
    padding: 18px 28px;
  }

  .brand-descriptor {
    display: none;
  }

  .main-nav {
    gap: 22px;
    font-size: 16px;
  }

  .header-actions {
    gap: 12px;
  }

  .phone {
    display: none;
  }

  .shell {
    padding: 0 32px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
  }

  .audit-visual {
    min-height: 520px;
    max-width: 820px;
  }

  .marketplace-logo-stage {
    left: 0;
    right: auto;
    width: min(100%, 680px);
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    max-width: 780px;
  }

  .hero-bullets li {
    min-height: auto;
  }

  .audit-layout,
  .quiz-layout {
    grid-template-columns: 1fr;
  }

  .audit-copy,
  .quiz-intro {
    position: static;
  }

  .proof-stats,
  .case-grid,
  .mistake-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    min-height: 74px;
    padding: 14px 20px;
  }

  .brand {
    font-size: 26px;
  }

  .brand-mark {
    width: 42px;
    height: 32px;
    grid-template-columns: repeat(3, 12px);
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .messenger-link {
    width: 42px;
    height: 42px;
  }

  .shell {
    padding: 0 20px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-bullets {
    gap: 14px;
    margin-top: 26px;
  }

  .hero-bullets li {
    padding-top: 10px;
    font-size: 15px;
  }

  .hero-actions,
  .quiz-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 28px;
  }

  .hero-actions p {
    font-size: 13px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 20px;
    font-size: 16px;
  }

  .audit-visual {
    min-height: 470px;
  }

  .marketplace-logo-stage {
    top: 56px;
    height: 380px;
    gap: 10px;
    padding: 22px 16px;
  }

  .marketplace-logo-slot {
    height: 108px;
  }

  .marketplace-logo-card {
    padding: 12px;
  }

  .marketplace-logo-card img {
    max-height: 66px;
  }

  .marketplace-copy-card {
    max-width: none;
    padding: 18px;
  }

  .marketplace-copy-card p {
    font-size: 28px;
  }

  .marketplace-copy-card span {
    font-size: 13px;
  }

  .dot-field-hero {
    right: -110px;
    top: 140px;
  }

  .soft-polygon {
    right: -80px;
    top: 80px;
  }

  .cube-hero {
    right: -120px;
    bottom: 50px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .quiz-intro h2,
  .final-offer h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .section-heading p,
  .quiz-intro p,
  .final-offer p,
  .result-view > p {
    font-size: 18px;
  }

  .pain-grid,
  .audit-map,
  .proof-stats,
  .case-grid,
  .mistake-list,
  .timeline,
  .result-summary,
  .lead-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-method-options {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    margin-top: 34px;
  }

  .pain-grid article,
  .audit-map article,
  .proof-stats article,
  .case-grid article,
  .mistake-list article,
  .timeline article {
    min-height: auto;
    padding: 24px;
  }

  .audit-map article {
    grid-template-rows: 170px 1fr;
    min-height: 366px;
  }

  .audit-photo {
    height: 170px;
  }

  .pain-grid h3,
  .audit-map h3,
  .case-grid h3,
  .mistake-list h3,
  .timeline h3 {
    font-size: 23px;
  }

  .case-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 28px 24px;
  }

  .case-cta p {
    font-size: 17px;
  }

  .quiz-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .quiz-note strong {
    font-size: 58px;
  }

  .quiz-panel {
    min-height: auto;
    padding: 24px;
  }

  .quiz-topline {
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }

  .question-view h3,
  .result-view h3 {
    font-size: 28px;
  }

  .option-button {
    min-height: 66px;
    padding: 16px;
    font-size: 16px;
  }

  .result-summary div {
    min-height: auto;
  }

  .final-offer {
    padding: 30px 24px;
  }

  .footer-inner {
    justify-items: start;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 520px) {
  .audit-map article {
    grid-template-columns: 1fr;
    min-height: 366px;
  }

  .audit-photo {
    height: 170px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 32px;
  }

  .brand-word {
    max-width: 92px;
    overflow: hidden;
  }
}
