:root {
  --ink: #151515;
  --ink-soft: #232323;
  --paper: #f5f2ea;
  --white: #ffffff;
  --orange: #ff5a00;
  --orange-dark: #df4e00;
  --muted: #6d6a63;
  --line: rgba(21, 21, 21, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.1);
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 234, 0.93);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: grid;
  justify-items: end;
  gap: 2px;
  line-height: 1.15;
  white-space: nowrap;
}

.header-phone__label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.header-phone:hover strong {
  color: var(--orange);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 10px;
  background: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.brand__accent {
  color: var(--orange);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav a {
  position: relative;
  color: #4f4c47;
  font-size: 14px;
  font-weight: 650;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 10px;
  font-size: 13px;
}

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

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

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

.button--dark:hover {
  background: #303030;
}

.button--outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #57534d;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 720;
}

.text-link:hover {
  color: var(--orange);
}

.text-link--dark {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 32px) 0 56px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -280px;
  right: -180px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.09);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(420px, 5fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
}

.tag,
.kicker {
  margin: 0;
  color: #5f5b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 0, 0.12);
}

.hero h1 {
  max-width: 820px;
  margin: 14px 0 22px;
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 840;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 700px;
  margin: 0;
  color: #55514b;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__facts {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__facts li {
  padding: 24px 22px 0 0;
  display: grid;
  gap: 4px;
}

.hero__facts strong {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.hero__facts span {
  max-width: 160px;
  color: var(--muted);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero__image {
  position: absolute;
  inset: 0 0 54px 52px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(17, 17, 17, 0.42));
}

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

.price-card {
  position: absolute;
  left: 0;
  top: 58px;
  width: min(292px, 70%);
  padding: 26px;
  display: grid;
  gap: 8px;
  color: var(--white);
  border-radius: 18px;
  background: var(--orange);
  box-shadow: 0 20px 46px rgba(255, 90, 0, 0.28);
}

.price-card__label {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card strong {
  font-size: 72px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price-card strong small {
  font-size: 34px;
}

.price-card > span:last-child {
  opacity: 0.84;
  font-size: 12px;
  line-height: 1.45;
}

.visual-note {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: min(310px, 76%);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.visual-note b {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-note span {
  color: #d1cec7;
  font-size: 12px;
}

.trust-line {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.trust-line__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-line span {
  position: relative;
  padding: 0 22px 0 24px;
  font-size: 13px;
  font-weight: 700;
}

.trust-line span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.scene-strip {
  padding: 28px 0 8px;
}

.scene-strip__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
  gap: 14px;
}

.scene-strip figure {
  position: relative;
  margin: 0;
  min-height: 270px;
  overflow: hidden;
  border-radius: 16px;
  background: #ddd;
}

.scene-strip img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.scene-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: var(--white);
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.86);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.section {
  padding: clamp(96px, 11vw, 158px) 0;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.section-head h2,
.audience-layout h2,
.product-layout h2,
.honesty h2,
.faq h2,
.lead h2,
.content-preview h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 810;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-head__text {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
}

.steps-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(255px, auto);
  gap: 16px;
}

.step {
  grid-column: span 4;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
}

.step--large {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  grid-template-rows: auto 1fr;
  gap: 28px 40px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.step--large .step__number {
  grid-column: 1 / -1;
}

.step--large img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 13px;
  object-fit: cover;
}

.step--accent {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.step__number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.step--accent .step__number {
  color: var(--white);
}

.step h3 {
  margin: auto 0 14px;
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.step--large h3 {
  margin-top: 16px;
  font-size: 36px;
}

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

.step--large p {
  color: #b7b4ad;
}

.step--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.price-week {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 22px;
  align-items: stretch;
}

.price-week__intro {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  background: #e7e2d7;
}

.price-week__intro span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-week__intro strong {
  font-size: 20px;
  line-height: 1.15;
}

.price-week__days {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  list-style: none;
}

.price-week__days li {
  min-height: 118px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
}

.price-week__days li:first-child {
  border-left: 0;
}

.price-week__days li.is-current {
  color: var(--white);
  background: var(--orange);
}

.price-week__days span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.price-week__days .is-current span {
  color: rgba(255, 255, 255, 0.72);
}

.price-week__days strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.kicker--orange {
  color: var(--orange);
}

.section-head--dark {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: end;
}

.section-head--dark .kicker {
  grid-column: 1 / 4;
  grid-row: 1;
  align-self: start;
}

.section-head--dark h2 {
  grid-column: 3 / 10;
  grid-row: 1 / 3;
}

.section-head--dark h2 span {
  color: var(--orange);
}

.section-head--dark .section-head__text {
  grid-column: 10 / 13;
  grid-row: 2;
  color: #a9a69f;
}

.benefit-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.benefit-grid article {
  min-height: 265px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.benefit-grid article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.benefit-grid h3 {
  margin: 78px 0 10px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.benefit-grid p {
  margin: 0;
  color: #aaa79f;
}

.comparison {
  margin-top: 84px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  overflow: hidden;
  color: var(--ink);
  border-radius: 20px;
  background: var(--paper);
}

.comparison__title,
.comparison__column {
  padding: clamp(28px, 4vw, 46px);
}

.comparison__title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comparison__title span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison__title h3 {
  margin: 80px 0 0;
  font-size: 38px;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.comparison__column {
  border-left: 1px solid var(--line);
}

.comparison__column--muted {
  color: #716d66;
  background: #ebe7de;
}

.comparison__column--accent {
  background: var(--orange);
}

.comparison__column > strong {
  font-size: 18px;
}

.comparison__column ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.comparison__column li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid rgba(21, 21, 21, 0.13);
  font-size: 14px;
}

.comparison__column li::before {
  position: absolute;
  left: 0;
  font-weight: 850;
}

.comparison__column--muted li::before {
  content: "–";
}

.comparison__column--accent li::before {
  content: "✓";
}

.section--audience {
  background: #ebe7de;
}

.audience-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.audience-layout__head {
  grid-column: 1 / 6;
  position: sticky;
  top: 118px;
  padding-right: 40px;
}

.audience-layout__head h2 {
  font-size: clamp(42px, 4.4vw, 64px);
}

.audience-list {
  grid-column: 6 / 13;
}

.audience-list article {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.audience-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.audience-list b {
  color: var(--orange);
  font-size: 12px;
}

.audience-list h3 {
  margin: 0 0 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.audience-list p {
  margin: 0;
  color: var(--muted);
}

.audience-warning {
  grid-column: 8 / 13;
  margin-top: 26px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.48);
}

.audience-warning strong {
  font-size: 13px;
  text-transform: uppercase;
}

.audience-warning p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section--tariffs {
  background: var(--white);
}

.section-head--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head--center > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.tariff-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

.tariff {
  position: relative;
  grid-column: span 3;
  min-height: 670px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.tariff--entry {
  background: #f0ede5;
}

.tariff--featured {
  border: 2px solid var(--orange);
  box-shadow: 0 22px 70px rgba(255, 90, 0, 0.14);
}

.tariff__badge {
  position: absolute;
  left: 22px;
  top: -16px;
  padding: 7px 12px;
  color: var(--white);
  border-radius: 999px;
  background: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tariff__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.tariff h3 {
  margin: 32px 0 2px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.tariff__price {
  margin: 10px 0 24px;
  font-size: clamp(40px, 3.4vw, 55px);
  font-weight: 840;
  letter-spacing: -0.06em;
  line-height: 1;
}

.tariff--entry .tariff__price {
  color: var(--orange);
}

.tariff > p {
  min-height: 100px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tariff ul {
  margin: 18px 0 30px;
  padding: 0;
  list-style: none;
}

.tariff li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.tariff li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.tariff li.is-not {
  color: #918e87;
}

.tariff li.is-not::before {
  content: "–";
  color: #918e87;
}

.tariff .button {
  width: 100%;
  margin-top: auto;
}

.tariff-note {
  max-width: 800px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.product-section {
  overflow: hidden;
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: center;
}

.product-layout__copy {
  grid-column: 1 / 6;
  padding-right: 50px;
}

.product-layout__copy > p:not(.kicker) {
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.product-gallery {
  grid-column: 6 / 13;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.product-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #ddd;
}

.product-gallery__main {
  grid-row: 1 / 3;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-gallery figure:hover img {
  transform: scale(1.04);
}

.product-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  color: var(--white);
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.86);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.honesty {
  padding: clamp(76px, 9vw, 124px) 0;
  background: var(--orange);
}

.honesty__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: 90px;
  align-items: end;
}

.kicker--dark {
  color: rgba(21, 21, 21, 0.62);
}

.honesty h2 {
  font-size: clamp(48px, 6vw, 84px);
}

.honesty__copy {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  font-size: 18px;
}

.honesty__copy p {
  margin: 0 0 18px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.faq__head {
  grid-column: 1 / 5;
  position: sticky;
  top: 118px;
  padding-right: 42px;
}

.faq__head h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.faq__list {
  grid-column: 5 / 13;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: 21px;
  font-weight: 730;
  letter-spacing: -0.025em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: absolute;
  right: 8px;
  top: 50%;
  color: var(--orange);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  max-width: 760px;
  margin: -4px 60px 30px 0;
  color: var(--muted);
}

.lead {
  padding: clamp(96px, 10vw, 150px) 0;
  color: var(--white);
  background: var(--ink);
}

.lead__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.lead__copy {
  grid-column: 1 / 6;
  padding: 34px 42px 0 0;
}

.lead__copy h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.lead__copy > p:not(.kicker) {
  margin-top: 28px;
  color: #afaca5;
  font-size: 18px;
}

.lead__phone {
  color: var(--white);
  border-bottom: 1px solid var(--orange);
  font-weight: 760;
}

.lead__phone:hover {
  color: var(--orange);
}

.lead__copy ul {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.lead__copy li {
  position: relative;
  padding: 11px 0 11px 26px;
  color: #c7c4bd;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.lead__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.lead-form {
  grid-column: 6 / 13;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  border-radius: 20px;
  background: var(--white);
}

.lead-form__head {
  margin-bottom: 30px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.lead-form__head span {
  font-size: 27px;
  font-weight: 790;
  letter-spacing: -0.04em;
}

.lead-form__head small {
  max-width: 190px;
  color: var(--muted);
  text-align: right;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label:not(.consent):not(.honeypot) {
  margin-bottom: 18px;
  display: block;
}

.lead-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #5f5b55;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input:not([type="checkbox"]),
.lead-form select {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid #d8d3c8;
  border-radius: 10px;
  background: #faf9f6;
  outline: none;
}

.lead-form input:not([type="checkbox"]):focus,
.lead-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.12);
}

.lead-form input::placeholder {
  color: #9a968e;
}

.consent {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.consent input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--orange);
}

.consent span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.consent a {
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.lead-form__submit {
  width: 100%;
}

.lead-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.is-success {
  color: #167345;
}

.form-status.is-error {
  color: #b42f20;
}

.content-preview {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: #ebe7de;
}

.content-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 80px;
  align-items: end;
}

.content-preview h2 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 56px);
}

.content-preview ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-preview li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.footer {
  padding: 54px 0 30px;
  color: var(--white);
  background: #0d0d0d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.brand--footer {
  color: var(--white);
}

.footer p {
  max-width: 350px;
  margin: 4px 0 0;
  color: #8f8c86;
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cbc8c2;
  font-size: 13px;
}

.footer nav a:hover {
  color: var(--orange);
}

.footer__contacts {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer__phone {
  color: var(--white);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.footer__phone:hover {
  color: var(--orange);
}

.footer small {
  margin-top: 0;
  color: #716e69;
}

.mobile-cta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .header__inner {
    gap: 18px;
  }

  .nav {
    gap: 18px;
  }

  .header-phone strong {
    font-size: 15px;
  }

  .scene-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.85fr);
    gap: 42px;
  }

  .tariff {
    grid-column: span 6;
    min-height: 600px;
  }

  .tariff > p {
    min-height: auto;
  }

  .section-head--dark h2 {
    grid-column: 3 / 9;
  }

  .section-head--dark .section-head__text {
    grid-column: 9 / 13;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(720px, calc(100% - 32px));
  }

  .header__inner {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .header__actions {
    justify-self: end;
    gap: 0;
  }

  .header__cta {
    display: none;
  }

  .header-phone strong {
    font-size: 14px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 11px;
    display: grid;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
  }

  .menu-button > span:not(.visually-hidden) {
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 20px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    background: var(--paper);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    font-size: 22px;
    font-weight: 740;
  }

  .hero {
    padding-top: 20px;
  }

  .scene-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .scene-strip figure,
  .scene-strip img {
    min-height: 210px;
  }

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

  .hero__content {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(54px, 11vw, 82px);
  }

  .hero__visual {
    min-height: 600px;
  }

  .trust-line__inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 12px;
  }

  .trust-line span {
    padding-block: 10px;
  }

  .section-head--split,
  .honesty__grid,
  .content-preview__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .step,
  .step--large {
    grid-column: auto;
    grid-row: auto;
  }

  .step--large {
    grid-column: 1 / 3;
  }

  .price-week {
    grid-template-columns: 1fr;
  }

  .price-week__intro {
    min-height: 100px;
  }

  .section-head--dark {
    display: block;
  }

  .section-head--dark h2 {
    margin-top: 20px;
  }

  .section-head--dark .section-head__text {
    max-width: 620px;
    margin-top: 24px;
  }

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

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

  .comparison__title {
    grid-column: 1 / 3;
  }

  .comparison__title h3 {
    margin-top: 30px;
  }

  .audience-layout,
  .product-layout,
  .faq__grid,
  .lead__grid {
    display: block;
  }

  .audience-layout__head,
  .faq__head {
    position: static;
    padding: 0;
  }

  .audience-list,
  .faq__list {
    margin-top: 46px;
  }

  .audience-warning {
    margin: 24px 0 0 auto;
    max-width: 520px;
  }

  .product-layout__copy {
    padding: 0;
  }

  .product-gallery {
    margin-top: 50px;
  }

  .honesty__grid {
    gap: 42px;
  }

  .lead__copy {
    padding: 0;
  }

  .lead-form {
    margin-top: 52px;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 12px;
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    font-size: 14px;
    font-weight: 780;
  }

  .footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 22px, 520px);
  }

  .brand {
    font-size: 18px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 14px 0 44px;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(46px, 14.5vw, 68px);
  }

  .header-phone__label {
    display: none;
  }

  .header-phone strong {
    font-size: 12px;
  }

  .footer__contacts {
    justify-items: start;
  }

  .scene-strip {
    padding-top: 18px;
  }

  .scene-strip__grid {
    grid-template-columns: 1fr;
  }

  .scene-strip figure,
  .scene-strip img {
    min-height: 220px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-self: center;
  }

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

  .hero__facts li {
    padding: 16px 0;
    grid-template-columns: 100px 1fr;
    align-items: end;
    border-bottom: 1px solid var(--line);
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__image {
    inset: 20px 0 42px 24px;
  }

  .price-card {
    top: 0;
    width: 230px;
    padding: 20px;
  }

  .price-card strong {
    font-size: 58px;
  }

  .visual-note {
    right: 8px;
    width: 270px;
  }

  .trust-line__inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 82px;
  }

  .section-head h2,
  .audience-layout h2,
  .product-layout h2,
  .honesty h2,
  .faq h2,
  .lead h2,
  .content-preview h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .steps-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .step,
  .step--large {
    grid-column: auto;
    min-height: 270px;
  }

  .step--large {
    display: flex;
  }

  .step--large img {
    height: 270px;
    min-height: 0;
    order: -1;
  }

  .step h3 {
    margin-top: 44px;
  }

  .step--large h3 {
    font-size: 30px;
  }

  .price-week__days {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-week__days li {
    border-top: 1px solid var(--line);
  }

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

  .benefit-grid article {
    min-height: 230px;
  }

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

  .comparison__title {
    grid-column: auto;
  }

  .comparison__column {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .audience-list article {
    grid-template-columns: 36px 1fr;
  }

  .tariff-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .tariff {
    grid-column: auto;
    min-height: 0;
  }

  .tariff > p {
    min-height: 0;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 180px;
  }

  .product-gallery__main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .honesty {
    padding-block: 70px;
  }

  .faq summary {
    font-size: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    padding: 25px 18px;
  }

  .lead-form__head {
    display: block;
  }

  .lead-form__head small {
    display: block;
    margin-top: 7px;
    text-align: left;
  }

  .content-preview__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
