:root {
  --ink: #101820;
  --text: #2b2b2b;
  --muted: #6e6a65;
  --line: rgba(27, 25, 22, 0.13);
  --paper: #f7f3ed;
  --paper-2: #fbfaf7;
  --card: rgba(255, 255, 255, 0.78);
  --gold: #b9874f;
  --brown: #7d5a3b;
  --orange: #f23a17;
  --shadow: 0 22px 60px rgba(63, 48, 33, 0.14);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
}

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

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

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(25, 21, 17, 0.06);
}

.header-top {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(250px, 1fr) auto minmax(190px, 230px) minmax(190px, 230px) auto;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  width: min(100%, 1540px);
  min-height: 84px;
  margin: 0 auto;
  padding: 9px clamp(16px, 2.6vw, 38px);
}

.brand img {
  width: min(100%, 210px);
  height: auto;
}

.header-contacts {
  display: grid;
  gap: 6px;
  color: #171717;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.2;
}

.header-contacts a,
.header-contacts span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  position: relative;
}

.header-contacts svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: none;
  stroke: #111;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.14);
}

.social-links svg,
.social-links img {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.social-links img {
  object-fit: contain;
}

.whatsapp {
  background: #fff;
}

.telegram {
  background: #37a9dc;
}

.max {
  background: #fff;
}

.rating-block {
  display: grid;
  gap: 7px;
}

.rating-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #f0f0ee;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  color: #242424;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
}

.rating-link::after {
  content: "★★★★★";
  color: #f5b421;
  font-size: 13px;
  letter-spacing: 1px;
}

.gis-rating {
  min-height: 32px;
  color: #6b8b4b;
  font-size: 11px;
}

.consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 clamp(16px, 1.4vw, 24px);
  border-radius: 999px;
  background: linear-gradient(180deg, #df3327, #b6110d);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.22), 0 12px 28px rgba(178, 25, 18, 0.22);
  color: #fff;
  font-size: clamp(11px, 0.92vw, 14px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.main-nav {
  position: sticky;
  top: 10px;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: min(calc(100% - 44px), 1180px);
  min-height: 52px;
  margin: 9px auto -45px;
  border: 1px solid var(--nav-border, rgba(255, 255, 255, 0.78));
  border-radius: 999px;
  background: var(--nav-bg, rgba(255, 255, 255, 0.82));
  box-shadow: 0 14px 34px rgba(25, 21, 17, var(--nav-shadow-opacity, 0.12));
  backdrop-filter: blur(18px);
  transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.main-nav a {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(12px, 1.55vw, 26px);
  color: var(--nav-link, #5b554e);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 2px;
  background: var(--nav-divider, rgba(80, 73, 64, 0.38));
}

.main-nav a:hover {
  color: #b13424;
}

body.nav-dark .main-nav a:hover {
  color: #e7b16f;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #1f1f1f;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.screen {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 92px;
  padding: clamp(46px, 3.8vw, 70px) clamp(18px, 4.4vw, 66px) clamp(30px, 4vw, 52px);
  overflow: hidden;
  isolation: isolate;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, #f1e9df 100%);
}

.screen::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  z-index: -1;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(180, 129, 76, 0.35);
  border-radius: 50%;
  opacity: 0.55;
}

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

h1,
h2 {
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 3.75vw, 58px);
  font-weight: 850;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 500;
}

h3 {
  color: #1e1d1b;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.12;
}

p {
  font-size: clamp(14px, 0.98vw, 17px);
  line-height: 1.55;
}

.hero {
  min-height: calc(100svh - 118px);
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(247, 247, 247, 0.98) 0 41%, rgba(247, 247, 247, 0.74) 49%, rgba(242, 238, 232, 0.1) 68%),
    url("assets/optimized/1.webp") center / cover no-repeat;
}

.hero-copy {
  width: min(58vw, 820px);
  max-width: 820px;
}

.eyebrow,
.rule {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 690px;
  margin-top: 18px;
  color: #23282d;
  font-size: clamp(16px, 1.05vw, 19px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.primary {
  background: var(--orange);
  color: #fff;
}

.secondary {
  border-color: rgba(16, 24, 32, 0.28);
  background: rgba(255, 255, 255, 0.62);
}

.dark {
  background: #242424;
  color: #fff;
}

.gold,
.brown {
  background: linear-gradient(135deg, #c8a56f, #7b5536);
  color: #fff;
}

.microcopy {
  margin-top: 14px;
  font-size: 15px;
}

.hero .microcopy {
  display: none;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 16px 28px;
  width: min(100%, 620px);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-features span {
  position: relative;
  padding-left: 24px;
  color: #282725;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
}

.hero-features span:nth-child(even) {
  transform: translateY(22px);
}

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

.hero-media {
  display: none;
}

.hero-mobile-image,
.mobile-action-bar {
  display: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.section-head {
  max-width: 1220px;
  margin: 0 auto clamp(34px, 4vw, 70px);
  text-align: center;
}

.section-head .rule,
.rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 auto 30px;
  background: var(--gold);
}

.section-head p {
  max-width: 1120px;
  margin: 22px auto 0;
  color: #3b3834;
}

.compare-title {
  display: grid;
  justify-items: center;
  gap: clamp(6px, 0.8vw, 10px);
  line-height: 0.95;
}

.compare-title span {
  display: block;
}

.compare-title em {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  min-height: 30px;
  padding: 0 20px;
  border-top: 1px solid rgba(185, 135, 79, 0.38);
  border-bottom: 1px solid rgba(185, 135, 79, 0.38);
  color: var(--gold);
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 18px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.comparison .section-head {
  margin-bottom: clamp(26px, 3vw, 46px);
}

.cards,
.compare-grid,
.split-cards,
.texture-grid,
.format-grid,
.works-grid,
.why-grid,
.steps,
.partner-grid {
  width: min(100%, 1500px);
  margin: 0 auto;
}

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

.image-card,
.texture-grid article,
.work-card,
.compare-card,
.split-card,
.format-card,
.why-grid article,
.steps article,
.partner-grid article,
.lead-form,
.note {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.image-card,
.texture-grid article,
.work-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.image-card h3,
.image-card p,
.texture-grid h3,
.texture-grid p,
.work-card h3,
.work-card p {
  padding-inline: 28px;
}

.image-card h3 {
  position: relative;
  padding-left: 46px;
  font-size: clamp(19px, 1.45vw, 27px);
  line-height: 1.16;
}

.image-card h3::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0.17em;
  width: 4px;
  height: 1.05em;
  border-radius: 999px;
  background: linear-gradient(180deg, #e2a13d 0%, #df9332 62%, #d88425 100%);
}

.image-card h3,
.texture-grid h3,
.work-card h3 {
  margin-top: 28px;
}

.image-card p,
.texture-grid p,
.work-card p {
  margin-top: 14px;
  padding-bottom: 30px;
  color: #4d4a46;
}

.compare-grid,
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.compare-card,
.format-card {
  position: relative;
  padding: clamp(30px, 4vw, 72px);
}

.positive {
  border-color: rgba(185, 135, 79, 0.5);
}

.compare-card.positive::before {
  content: "";
  position: absolute;
  left: 0;
  top: 124px;
  bottom: 10px;
  z-index: 0;
  width: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #e2a13d 0%, #df9332 58%, #d88425 100%);
  box-shadow: 0 10px 28px rgba(223, 147, 50, 0.18);
}

.muted {
  opacity: 0.78;
}

.status-mark {
  position: absolute;
  left: -28px;
  top: 62px;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #df9332;
  color: #fff;
  font-size: 42px;
  font-weight: 300;
}

.muted .status-mark {
  background: #a4a09a;
}

.check-list,
.cross-list,
.compact-list,
.dark-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li,
.compact-list li,
.dark-list li {
  position: relative;
  padding-left: 44px;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.45;
}

.check-list li::before,
.compact-list li::before,
.dark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -3px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 135, 79, 0.12);
  color: #d88b28;
}

.cross-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -3px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.08);
  color: #8d8880;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.finish::before {
  background: #f2ebe3 url("assets/optimized/4.webp") center / 100% 100% no-repeat;
}

.finish::after {
  display: none;
}

.split-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.split-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.84) 50%, transparent 59%),
    radial-gradient(circle at 55% 36%, rgba(215, 226, 203, 0.28), transparent 31%);
  opacity: 0.9;
}

.split-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 180, 139, 0.34);
  box-shadow: 0 26px 70px rgba(63, 48, 33, 0.17);
}

.split-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-card div {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 2.5vw, 48px);
}

.split-card h3 {
  max-width: 420px;
}

.split-card > div > p {
  position: relative;
  margin-top: 8px;
  padding: clamp(16px, 1.7vw, 24px) clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(156, 174, 130, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 253, 246, 0.92), rgba(239, 246, 231, 0.72)),
    rgba(248, 252, 242, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 40px rgba(75, 88, 54, 0.09);
  color: #343b2d;
}

.split-card > div > p::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 135, 79, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.split-card .compact-list {
  gap: 16px;
  margin-top: 24px;
}

.texture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.texture-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.texture-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.texture-grid h3 {
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.14;
}

.texture-grid p {
  flex: 1;
  font-size: clamp(14px, 0.9vw, 16px);
}

.work-format .warranty {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  width: min(100%, 1500px);
  margin: clamp(16px, 1.7vw, 24px) auto 0;
  padding: clamp(18px, 2vw, 28px) clamp(22px, 3.2vw, 48px);
  border: 2px solid rgba(154, 122, 92, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.98), rgba(255, 255, 255, 0.86) 56%, rgba(250, 240, 228, 0.96)),
    rgba(255, 251, 246, 0.96);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.76),
    0 18px 44px rgba(93, 69, 43, 0.18);
}

.work-format .warranty::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(185, 135, 79, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.icon-circle {
  display: grid;
  width: clamp(86px, 7vw, 126px);
  height: clamp(86px, 7vw, 126px);
  margin-bottom: clamp(26px, 3vw, 38px);
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 135, 79, 0.12);
  color: var(--brown);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 16px 34px rgba(70, 52, 35, 0.08);
}

.icon-circle svg,
.warranty-icon svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cool {
  border-color: rgba(104, 137, 163, 0.36);
  background:
    radial-gradient(circle at 15% 17%, rgba(214, 229, 239, 0.72), transparent 22%),
    linear-gradient(135deg, rgba(239, 247, 252, 0.98), rgba(255, 255, 255, 0.82) 68%),
    rgba(245, 250, 255, 0.94);
}

.cool .icon-circle {
  background: linear-gradient(145deg, rgba(225, 237, 246, 0.98), rgba(207, 224, 236, 0.7));
  color: #55738b;
}

.warm {
  border-color: rgba(185, 135, 79, 0.4);
  background:
    radial-gradient(circle at 15% 17%, rgba(236, 219, 198, 0.78), transparent 22%),
    linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.78) 70%),
    rgba(255, 248, 238, 0.94);
}

.warm .icon-circle {
  background: linear-gradient(145deg, rgba(244, 231, 215, 0.98), rgba(231, 207, 180, 0.72));
  color: var(--brown);
}

.work-format::before {
  background:
    linear-gradient(90deg, rgba(222, 236, 247, 0.98) 0 calc(50% - 18px), rgba(255, 255, 255, 0.96) calc(50% - 18px) calc(50% + 18px), rgba(251, 235, 216, 0.98) calc(50% + 18px) 100%),
    linear-gradient(135deg, #fbfaf7 0%, #f1e9df 100%);
}

.work-format::after {
  inset: 12% calc(50% - 1px) 20% auto;
  width: 2px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(158, 132, 101, 0.32), transparent);
  opacity: 1;
}

.format-card {
  min-height: 100%;
  overflow: hidden;
  padding: clamp(34px, 3.2vw, 58px);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.74),
    0 22px 60px rgba(63, 48, 33, 0.14);
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 32%);
}

.format-card > p {
  max-width: 680px;
  margin-top: 16px;
  padding-bottom: clamp(18px, 1.6vw, 24px);
  border-bottom: 1px solid currentColor;
  font-size: clamp(16px, 1.18vw, 22px);
  line-height: 1.38;
}

.work-format .format-card h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.05;
}

.cool > p {
  border-color: rgba(85, 115, 139, 0.36);
}

.warm > p {
  border-color: rgba(185, 135, 79, 0.42);
}

.format-card .compact-list {
  gap: clamp(14px, 1.45vw, 22px);
  margin-top: clamp(18px, 1.7vw, 24px);
}

.format-card .compact-list li {
  min-height: 32px;
  padding-left: 52px;
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.34;
}

.format-card .compact-list li::before {
  width: 34px;
  height: 34px;
  top: -4px;
  font-size: 23px;
  font-family: var(--serif);
}

.cool .compact-list li::before {
  border: 2px solid rgba(85, 115, 139, 0.68);
  background: rgba(255, 255, 255, 0.62);
  color: #55738b;
}

.warm .compact-list li::before {
  border: 2px solid rgba(185, 135, 79, 0.72);
  background: rgba(255, 255, 255, 0.66);
  color: #b9874f;
}

.warranty-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(78px, 7vw, 116px);
  height: clamp(78px, 7vw, 116px);
  place-items: center;
  border: 1px solid rgba(185, 135, 79, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.96), rgba(248, 237, 222, 0.92));
  color: var(--brown);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.55),
    0 13px 30px rgba(93, 69, 43, 0.2);
}

.work-format .warranty p {
  position: relative;
  z-index: 1;
  color: #27231f;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.34;
}

.work-format {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(34px, 3vw, 54px);
  padding-bottom: clamp(22px, 2.8vw, 44px);
}

.work-format .section-head {
  margin-bottom: clamp(24px, 2.8vw, 42px);
}

.work-format .section-head h2 {
  font-size: clamp(40px, 4.45vw, 72px);
}

.about {
  display: grid;
  align-items: center;
  background: #ece7df url("assets/optimized/4.webp") center right / cover no-repeat;
}

.about::before {
  background: linear-gradient(90deg, rgba(247, 247, 247, 0.97) 0%, rgba(247, 247, 247, 0.85) 42%, rgba(247, 247, 247, 0.05) 78%);
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  font-family: var(--sans);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 850;
}

.about-copy p {
  margin-top: 24px;
}

.dark-list {
  margin-top: 26px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.dark-list li::before {
  background: #252525;
  color: #fff;
}

.note {
  margin-top: 18px;
  padding: 24px;
}

.note .button {
  margin-top: 18px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 2.65;
  object-fit: cover;
}

.work-card a {
  display: inline-flex;
  margin: 0 28px 28px;
  min-height: 40px;
  align-items: center;
  padding: 0 28px;
  border: 1px solid #286ee8;
  border-radius: 6px;
  color: #165ed4;
  font-weight: 700;
}

.why {
  display: grid;
  align-items: center;
}

.why::before,
.partner::before,
.request::before,
.catalog-page::before {
  background:
    linear-gradient(135deg, rgba(235, 226, 214, 0.9), rgba(249, 247, 243, 0.96)),
    url("assets/optimized/12.webp") center / cover no-repeat;
}

.why-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.why-inner h2 {
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 48px);
}

.why-grid span,
.partner-grid span,
.steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 40px;
}

.why-grid p,
.partner-grid p,
.steps p {
  margin-top: 22px;
  color: #4f4b46;
}

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

.steps article,
.partner-grid article {
  padding: clamp(24px, 3vw, 42px);
}

.steps h3,
.partner-grid h3 {
  margin-top: 44px;
  font-size: clamp(22px, 1.7vw, 28px);
}

.partner {
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.partner-grid .accent {
  border-color: rgba(185, 135, 79, 0.8);
  background: rgba(248, 238, 222, 0.84);
}

.partner .button {
  margin-top: 34px;
  min-width: min(480px, 100%);
}

.center-copy {
  margin-top: 18px;
  text-align: center;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: clamp(30px, 6vw, 120px);
}

.request-copy {
  max-width: 820px;
}

.request-copy h2 {
  font-size: clamp(44px, 5.2vw, 86px);
}

.request-copy p {
  margin-top: 30px;
}

.request-points {
  display: grid;
  max-width: 620px;
  gap: 18px;
  margin-top: 52px;
}

.request-points span {
  padding: 22px 0 22px 78px;
  border-bottom: 1px solid rgba(57, 46, 36, 0.18);
  font-size: clamp(18px, 1.4vw, 24px);
}

.lead-form {
  padding: clamp(28px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.82);
}

.lead-form h3 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
}

.lead-form p {
  margin-top: 16px;
}

.lead-form label {
  display: block;
  margin-top: 18px;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(65, 50, 37, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1b18;
  font: inherit;
  font-size: 18px;
  padding: 20px 22px;
}

.lead-form textarea {
  min-height: 130px;
  resize: vertical;
}

.lead-form button {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.lead-form small {
  display: block;
  margin-top: 22px;
  color: #837d75;
  font-size: 14px;
  line-height: 1.45;
}

.catalog-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
}

.catalog-copy {
  max-width: 720px;
}

.catalog-copy h1 {
  font-size: clamp(56px, 7vw, 108px);
}

.catalog-copy p {
  margin-top: 28px;
}

.catalog-copy > p + p {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(32, 27, 22, 0.24);
}

.catalog-note {
  display: grid;
  gap: 10px;
  margin: 44px 0 30px;
  padding-left: 82px;
  color: #35312c;
}

.catalog-note strong {
  font-size: clamp(20px, 2vw, 30px);
}

.catalog-note span {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
}

.catalog-cover img {
  width: 100%;
  height: min(76vh, 820px);
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 1800px) {
  .header-top {
    grid-template-columns: 280px minmax(330px, 1fr) auto 180px 250px auto;
  }

  .screen {
    padding-inline: clamp(86px, 7vw, 150px);
  }

  .cards,
  .compare-grid,
  .split-cards,
  .texture-grid,
  .format-grid,
  .works-grid,
  .why-grid,
  .steps,
  .partner-grid,
  .work-format .warranty {
    width: min(100%, 1720px);
  }
}

@media (max-width: 1180px) {
  .header-top {
    grid-template-columns: minmax(170px, 230px) 1fr auto;
    min-height: auto;
  }

  .social-links,
  .rating-block {
    display: none;
  }

  .header-contacts span {
    display: none;
  }

  .consult-button {
    grid-column: 2;
    justify-self: end;
    min-height: 46px;
    max-width: 220px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .menu-open .main-nav {
    display: flex;
  }

  .hero,
  .request,
  .catalog-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-position: center right;
  }

  .hero-media,
  .catalog-cover img {
    height: auto;
    min-height: 0;
  }

  .hero-features,
  .steps,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three,
  .texture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-cards,
  .format-grid,
  .compare-grid {
    gap: 24px;
  }

  .split-cards {
    grid-template-columns: 1fr;
  }

  .split-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split-card div {
    padding: clamp(24px, 2.6vw, 38px);
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .work-format {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .work-format .section-head {
    margin-bottom: 18px;
  }

  .work-format .section-head h2 {
    font-size: clamp(36px, 3.8vw, 50px);
  }

  .work-format .format-card {
    padding: 26px 50px 24px;
  }

  .work-format .icon-circle {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
  }

  .work-format .format-card h3 {
    font-size: 32px;
  }

  .work-format .format-card > p {
    margin-top: 12px;
    padding-bottom: 14px;
    font-size: 15px;
    line-height: 1.34;
  }

  .work-format .format-card .compact-list {
    gap: 10px;
    margin-top: 14px;
  }

  .work-format .format-card .compact-list li {
    min-height: 30px;
    padding-left: 44px;
    font-size: 15px;
    line-height: 1.22;
  }

  .work-format .format-card .compact-list li::before {
    width: 30px;
    height: 30px;
    font-size: 21px;
  }

  .work-format .warranty {
    min-height: 104px;
    margin-top: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .work-format .warranty p {
    font-size: 17px;
    line-height: 1.24;
  }

  .warranty-icon {
    width: 72px;
    height: 72px;
  }

  .work-format .icon-circle svg,
  .work-format .warranty-icon svg {
    width: 66%;
    height: 66%;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 0;
  }

  .header-top {
    grid-template-columns: minmax(112px, 1fr) auto auto;
    gap: 8px;
    padding: 8px 12px;
  }

  .brand img {
    width: min(100%, 154px);
  }

  .header-contacts {
    display: none;
  }

  .consult-button {
    grid-column: auto;
    width: auto;
    min-height: 40px;
    max-width: 154px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .main-nav {
    position: fixed;
    inset: 64px 12px auto;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    min-height: auto;
    margin: 0;
    padding: 8px 14px 16px;
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(250, 247, 242, 0.96);
  }

  .main-nav a {
    justify-content: center;
    min-height: 40px;
    font-size: 13px;
  }

  .main-nav a + a::before {
    display: none;
  }

  .hero,
  .about,
  .request,
  .catalog-page {
    min-height: auto;
  }

  .screen {
    padding-top: 36px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 251, 251, 0.98) 0 56%, rgba(251, 251, 251, 0.72) 78%, rgba(251, 251, 251, 0.42) 100%),
      url("assets/optimized/1.webp") center bottom / cover no-repeat;
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-features,
  .three,
  .compare-grid,
  .split-cards,
  .texture-grid,
  .format-grid,
  .works-grid,
  .why-grid,
  .steps,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .hero-features span:nth-child(even) {
    transform: none;
  }

  .hero-features span {
    min-height: auto;
  }

  .hero-media {
    width: min(100%, 720px);
    justify-self: center;
  }

  .status-mark {
    left: 24px;
    top: -28px;
  }

  .compare-card.positive {
    padding-left: clamp(82px, 15vw, 104px);
  }

  .compare-card.positive::before {
    left: 54px;
    top: 34px;
    bottom: 16px;
    width: 8px;
  }

  .split-card {
    grid-template-columns: 1fr;
  }

  .split-card::before {
    background:
      linear-gradient(180deg, transparent 0 38%, rgba(255, 255, 255, 0.9) 48%, transparent 62%),
      radial-gradient(circle at 50% 52%, rgba(215, 226, 203, 0.22), transparent 34%);
  }

  .split-card img {
    min-height: 0;
    aspect-ratio: 1.52;
  }

  .split-card > div > p {
    margin-top: 12px;
  }

  .work-format::before {
    background:
      linear-gradient(180deg, rgba(231, 241, 248, 0.95) 0 46%, rgba(255, 255, 255, 0.94) 46% 48.5%, rgba(252, 239, 224, 0.96) 48.5% 100%),
      linear-gradient(135deg, #fbfaf7 0%, #f1e9df 100%);
  }

  .work-format::after {
    inset: calc(50% - 1px) 8% auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(158, 132, 101, 0.3), transparent);
  }

  .work-format .warranty {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-top: 28px;
  }

  .about::before {
    background: linear-gradient(180deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0.88));
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 31px;
    line-height: 1.03;
  }

  h2,
  .request-copy h2 {
    font-size: 32px;
  }

  .header-top {
    grid-template-columns: minmax(96px, 1fr) auto auto;
  }

  .brand img {
    width: min(100%, 128px);
  }

  .consult-button {
    max-width: 126px;
    min-height: 36px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .screen {
    padding: 28px 14px 44px;
  }

  .lead {
    margin-top: 14px;
  }

  .actions {
    margin-top: 20px;
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .hero-features {
    margin-top: 22px;
    padding-top: 16px;
  }

  .hero-features span {
    padding-left: 24px;
    font-size: 13px;
  }

  .hero-features span::before {
    left: 0;
    top: 0;
  }

  .hero-media {
    clip-path: none;
    height: auto;
    min-height: 0;
  }

  .image-card h3,
  .image-card p,
  .texture-grid h3,
  .texture-grid p,
  .work-card h3,
  .work-card p {
    padding-inline: 20px;
  }

  .image-card h3 {
    padding-left: 36px;
    font-size: clamp(20px, 6vw, 25px);
  }

  .image-card h3::before {
    left: 20px;
    width: 4px;
  }

  .compare-card,
  .format-card,
  .split-card div,
  .steps article,
  .partner-grid article,
  .why-grid article {
    padding: 28px 22px;
  }

  .compare-card.positive {
    padding-left: 82px;
  }

  .split-card > div > p {
    padding: 16px 18px;
  }

  .split-card .compact-list {
    gap: 14px;
    margin-top: 20px;
  }

  .format-card > p {
    padding-bottom: 20px;
  }

  .icon-circle {
    width: 84px;
    height: 84px;
    margin-bottom: 22px;
  }

  .format-card .compact-list li {
    padding-left: 42px;
  }

  .work-format .warranty {
    padding: 20px 18px 22px;
  }

  .work-format .warranty p {
    font-size: 16px;
    line-height: 1.42;
  }

  .request-points span {
    padding-left: 0;
  }

  .catalog-note {
    padding-left: 0;
  }
}

/* Screens 7-10 refinements */
.about {
  display: flex;
  min-height: 100svh;
  align-items: center;
  background: #f4f2ee;
}

.about::before {
  background:
    linear-gradient(90deg, rgba(247, 247, 247, 0.99) 0 34%, rgba(247, 247, 247, 0.9) 43%, rgba(247, 247, 247, 0.2) 62%, rgba(247, 247, 247, 0) 76%),
    url("assets/optimized/7-1.webp") center / cover no-repeat;
}

.about::after,
.works::after,
.request::after,
.why::after {
  display: none;
}

.about-copy {
  width: min(45vw, 680px);
  max-width: 680px;
}

.about-copy h2 {
  font-family: var(--sans);
  font-size: clamp(60px, 6.2vw, 106px);
  font-weight: 900;
  line-height: 0.96;
}

.about-copy p {
  max-width: 650px;
  margin-top: 24px;
  color: #252525;
  font-size: clamp(17px, 1.18vw, 23px);
  line-height: 1.45;
}

.about-copy p + p {
  margin-top: 0;
}

.about .dark-list {
  max-width: 650px;
  margin-top: 18px;
  padding: clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 14px 34px rgba(30, 24, 20, 0.13);
  backdrop-filter: blur(10px);
}

.about .dark-list li {
  font-size: clamp(16px, 1.14vw, 21px);
  line-height: 1.32;
}

.about .dark-list li::before {
  background: #222;
  color: #fff;
  font-weight: 900;
}

.about .note {
  max-width: 650px;
  position: relative;
  padding: clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(134, 153, 113, 0.62);
  background:
    linear-gradient(135deg, rgba(250, 253, 246, 0.9), rgba(239, 246, 231, 0.76)),
    rgba(248, 252, 242, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 38px rgba(75, 88, 54, 0.13);
  backdrop-filter: blur(8px);
}

.about .note::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 135, 79, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.about .note p {
  position: relative;
  margin-top: 0;
  color: #343b2d;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.35;
}

.about .note .button {
  position: relative;
  width: fit-content;
  min-height: 50px;
  margin-top: 16px;
  border-radius: 6px;
  background: #202020;
}

.works {
  min-height: auto;
  background: #f7f3ed;
}

.works::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 243, 237, 0.96)),
    url("assets/optimized/9.webp") center / cover no-repeat;
}

.works .section-head {
  margin-bottom: clamp(24px, 3vw, 46px);
}

.works .section-head p {
  max-width: 980px;
  font-size: clamp(16px, 1.1vw, 20px);
}

.works-grid {
  width: min(100%, 1500px);
  margin-inline: auto;
  gap: clamp(18px, 1.7vw, 28px);
}

.work-card {
  background: rgba(255, 255, 255, 0.84);
}

.work-card img {
  aspect-ratio: 2.25;
}

.work-card h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 1.85vw, 34px);
}

.work-card p {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
}

.work-card a {
  border-color: rgba(125, 90, 59, 0.42);
  color: #6f4f34;
}

.request {
  min-height: 74svh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  background: #f6f3ee;
}

.request::before {
  background:
    linear-gradient(90deg, rgba(249, 248, 245, 0.98) 0 55%, rgba(246, 243, 238, 0.92) 100%),
    url("assets/optimized/9.webp") center / cover no-repeat;
}

.request-copy {
  max-width: 1060px;
}

.request-copy h2 {
  font-family: var(--sans);
  max-width: 820px;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 900;
  line-height: 1.05;
}

.request-copy p {
  max-width: 960px;
  margin-top: clamp(18px, 2vw, 30px);
  font-size: clamp(19px, 1.55vw, 30px);
  line-height: 1.25;
}

.request-cta {
  width: min(100%, 480px);
  min-height: clamp(58px, 5vw, 86px);
  margin-top: clamp(28px, 4vw, 62px);
  border: 0;
  border-radius: 6px;
  font-size: clamp(20px, 1.5vw, 29px);
  font-weight: 800;
}

.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(59, 45, 32, 0.13);
}

.lead-form input,
.lead-form textarea {
  min-height: 64px;
  border-color: rgba(65, 50, 37, 0.2);
  background: rgba(255, 255, 255, 0.94);
}

.lead-form textarea {
  min-height: 118px;
}

.lead-form .consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 18px;
  color: #615b54;
  font-size: 14px;
  line-height: 1.35;
}

.lead-form .consent input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: #7d5a3b;
}

.lead-form .consent span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}

.lead-form .consent a,
.modal-consent a {
  color: #b71943;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form button {
  min-height: 58px;
  border-radius: 6px;
}

.why {
  min-height: 100svh;
  align-items: center;
}

.why::before {
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.18), rgba(248, 245, 239, 0.04)),
    url("assets/optimized/9-1.webp") center / cover no-repeat;
}

.why-inner {
  width: min(100%, 1500px);
}

.why-inner h2 {
  margin-bottom: clamp(30px, 4vw, 64px);
  text-align: center;
  font-size: clamp(44px, 4.7vw, 76px);
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 28px);
}

.why-grid article {
  position: relative;
  min-height: clamp(170px, 17vw, 260px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 244, 238, 0.72)),
    rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 46px rgba(61, 48, 38, 0.16);
  backdrop-filter: blur(3px);
}

.why-grid span {
  font-size: clamp(38px, 3vw, 58px);
  font-weight: 700;
}

.why-icon {
  position: absolute;
  right: clamp(26px, 3vw, 46px);
  top: clamp(26px, 3vw, 42px);
  width: clamp(54px, 5vw, 84px);
  height: clamp(54px, 5vw, 84px);
  border: 1px solid rgba(185, 135, 79, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.94), rgba(244, 235, 222, 0.72));
  color: #8b6744;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.42),
    0 12px 26px rgba(80, 61, 43, 0.1);
}

.why-icon::before {
  content: "";
  position: absolute;
  inset: 25%;
  background: currentColor;
  mask: var(--why-icon) center / contain no-repeat;
}

.why-icon.contract {
  --why-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M18 7h22l10 10v40H18V7Zm20 4v10h9L38 11ZM24 28h20v4H24v-4Zm0 9h20v4H24v-4Zm0 9h13v4H24v-4Z'/%3E%3C/svg%3E");
}

.why-icon.format {
  --why-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13 15h18v34H13V15Zm6 6v22h6V21h-6Zm16-8h16v38H35v-5h10V18H35v-5Zm-6 7h14v38H29v-5h8V25h-8v-5Z'/%3E%3C/svg%3E");
}

.why-icon.company {
  --why-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10 52h44v5H10v-5Zm4-28 18-13 18 13v28h-8V34H22v18h-8V24Zm14 28h8V40h-8v12Zm-5-25h18l-9-6.5L23 27Z'/%3E%3C/svg%3E");
}

.why-icon.partner-icon {
  --why-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M23 18a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm-9 34c1-10 8-18 18-18s17 8 18 18H14Zm34-20a7 7 0 1 1 7-7 7 7 0 0 1-7 7Zm-4 4c8 1 13 7 14 16h-6c-.6-5.5-3.5-10-8-12v-4Z'/%3E%3C/svg%3E");
}

.why-grid h3 {
  max-width: calc(100% - 92px);
  margin-top: clamp(18px, 2vw, 34px);
  font-size: clamp(22px, 1.8vw, 31px);
}

.why-grid p {
  margin-top: 14px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
}

@media (max-width: 1180px) {
  .about-copy {
    width: min(62vw, 680px);
  }

  .about-copy h2 {
    font-size: clamp(48px, 7vw, 82px);
  }

  .request {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .request-copy {
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .about {
    display: block;
    padding-top: min(72vw, 420px);
  }

  .about::before {
    background:
      linear-gradient(180deg, rgba(247, 247, 247, 0) 0 28%, rgba(247, 247, 247, 0.7) 54%, rgba(247, 247, 247, 0.98) 76%),
      url("assets/optimized/7-2.webp") center top / 100% auto no-repeat,
      #f7f7f7;
  }

  .about-copy {
    width: 100%;
    max-width: none;
  }

  .about-copy h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .about-copy p {
    font-size: 16px;
  }

  .works-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .request-copy h2 {
    font-size: clamp(32px, 8vw, 50px);
  }

  .request-copy p {
    font-size: clamp(17px, 4vw, 23px);
  }

  .lead-form {
    padding: 24px 20px;
  }

  .why {
    min-height: auto;
  }

  .why-icon {
    width: 58px;
    height: 58px;
    right: 22px;
    top: 22px;
  }

  .why-grid h3 {
    max-width: calc(100% - 74px);
  }
}

@media (max-width: 520px) {
  .about {
    padding-top: min(92vw, 390px);
  }

  .about .dark-list,
  .about .note {
    padding: 18px;
  }

  .about .note .button {
    width: 100%;
  }

  .about .dark-list li {
    padding-left: 38px;
    font-size: 15px;
  }

  .request-cta {
    width: 100%;
  }

  .lead-form input,
  .lead-form textarea {
    min-height: 54px;
    padding: 16px 18px;
    font-size: 16px;
  }

  .why-grid article {
    min-height: auto;
  }

  .why-icon {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    width: 54px;
    height: 54px;
    margin-top: 18px;
  }

  .why-grid h3 {
    max-width: none;
    margin-top: 18px;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .about {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .about-copy h2 {
    font-size: clamp(54px, 5.4vw, 76px);
  }

  .about-copy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.34;
  }

  .about .dark-list {
    gap: 10px;
    margin-top: 14px;
    padding: 18px 22px;
  }

  .about .dark-list li {
    padding-left: 42px;
    font-size: 15px;
    line-height: 1.24;
  }

  .about .dark-list li::before {
    width: 28px;
    height: 28px;
    top: -3px;
  }

  .about .note {
    margin-top: 12px;
    padding: 16px 22px;
  }

  .about .note p {
    font-size: 14px;
  }

  .about .note .button {
    min-height: 42px;
    margin-top: 12px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .request {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .request-copy h2 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .request-copy p {
    font-size: 19px;
    line-height: 1.28;
  }

  .request-cta {
    min-height: 58px;
    margin-top: 30px;
    font-size: 20px;
  }

  .lead-form {
    padding: 32px 42px;
  }

  .lead-form h3 {
    font-size: 48px;
  }

  .lead-form p {
    margin-top: 10px;
  }

  .lead-form label {
    margin-top: 12px;
  }

  .lead-form input,
  .lead-form textarea {
    min-height: 54px;
    padding: 15px 20px;
    font-size: 16px;
  }

  .lead-form textarea {
    min-height: 84px;
  }

  .lead-form .consent {
    margin-top: 12px;
    font-size: 13px;
  }

  .lead-form button {
    min-height: 52px;
    margin-top: 14px;
  }

  .why {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .why-inner h2 {
    margin-bottom: 28px;
    font-size: 54px;
  }

  .why-grid article {
    min-height: 190px;
    padding: 30px 38px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .why-grid h3 {
    margin-top: 20px;
    font-size: 24px;
  }

  .why-grid p {
    font-size: 15px;
  }
}

/* Final polish for request, why and process screens */
.request {
  gap: clamp(34px, 5vw, 86px);
}

.request-copy {
  max-width: 760px;
}

.request-copy h2 {
  max-width: 660px;
  font-size: clamp(34px, 3.35vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.request-copy p {
  max-width: 720px;
  font-size: clamp(18px, 1.28vw, 24px);
  line-height: 1.38;
}

.request-cta {
  width: min(100%, 420px);
  min-height: clamp(54px, 4.2vw, 68px);
  margin-top: clamp(24px, 3vw, 42px);
  font-size: clamp(18px, 1.22vw, 22px);
}

.lead-form {
  position: relative;
  overflow: hidden;
  border-color: rgba(205, 187, 160, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 238, 0.86)),
    rgba(255, 255, 255, 0.86);
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #b9874f, #7d5a3b);
}

.lead-form > * {
  position: relative;
}

.why {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: clamp(64px, 7vw, 112px);
  padding-bottom: clamp(64px, 7vw, 112px);
}

.why::before {
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.96) 0 50%, rgba(248, 246, 241, 0.66) 76%, rgba(248, 246, 241, 0.9) 100%),
    url("assets/optimized/9-1.webp") center / cover no-repeat;
}

.why::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 135, 79, 0.12), transparent 28%),
    linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.35) 58% 100%);
}

.why-inner {
  position: relative;
  z-index: 1;
}

.why-inner h2 {
  margin-bottom: clamp(28px, 4.2vw, 58px);
  font-size: clamp(42px, 4.45vw, 72px);
  line-height: 1;
}

.why-grid {
  gap: clamp(18px, 2vw, 34px);
}

.why-grid article {
  display: grid;
  min-height: clamp(190px, 16vw, 250px);
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 237, 0.76)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 42px rgba(52, 42, 32, 0.14);
}

.why-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(185, 135, 79, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.why-grid span {
  color: #a97a46;
  font-size: clamp(34px, 2.8vw, 52px);
  line-height: 0.9;
}

.why-icon {
  right: clamp(24px, 2.8vw, 42px);
  top: clamp(24px, 2.8vw, 40px);
  width: clamp(62px, 5.2vw, 86px);
  height: clamp(62px, 5.2vw, 86px);
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.98), rgba(239, 230, 216, 0.82));
  color: #7d5a3b;
}

.why-grid h3 {
  max-width: calc(100% - 112px);
  margin-top: clamp(20px, 2.2vw, 34px);
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.12;
}

.why-grid p {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(15px, 1vw, 17px);
}

.process {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  align-items: center;
  background: #f5f0e9;
}

.process::before {
  background:
    linear-gradient(90deg, rgba(246, 242, 235, 0.96) 0 58%, rgba(246, 242, 235, 0.74) 100%),
    url("assets/optimized/9-1.webp") right center / cover no-repeat;
}

.process::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(134, 153, 113, 0.16), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(185, 135, 79, 0.13), transparent 25%);
}

.process .section-head,
.process .steps {
  position: relative;
  z-index: 1;
}

.process .section-head {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(28px, 4vw, 58px);
}

.process .section-head h2 {
  font-size: clamp(42px, 4.5vw, 72px);
}

.process .section-head p {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.45;
}

.steps {
  gap: clamp(18px, 1.7vw, 30px);
}

.steps article {
  position: relative;
  min-height: clamp(300px, 24vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(249, 246, 240, 0.74)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 42px rgba(57, 45, 34, 0.13);
}

.steps article::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(185, 135, 79, 0.16);
  background: rgba(255, 255, 255, 0.34);
}

.steps span {
  color: #a97a46;
  font-size: clamp(34px, 2.7vw, 48px);
  line-height: 1;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(58px, 5vw, 78px);
  height: clamp(58px, 5vw, 78px);
  place-items: center;
  margin-top: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(185, 135, 79, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.98), rgba(239, 230, 216, 0.82));
  color: #7d5a3b;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.44),
    0 12px 26px rgba(80, 61, 43, 0.1);
}

.step-icon::before {
  content: "";
  width: 44%;
  height: 44%;
  background: currentColor;
  mask: var(--step-icon) center / contain no-repeat;
}

.step-icon.survey {
  --step-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 10h28l12 12v32H12V10Zm25 4v12h11L37 14ZM19 29h14v4H19v-4Zm0 9h26v4H19v-4Zm0 9h20v4H19v-4Z'/%3E%3C/svg%3E");
}

.step-icon.samples {
  --step-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13 16h16v36H13V16Zm22-6h16v42H35v-5h10V15H35v-5Zm-8 9h16v42H27v-5h10V24H27v-5Z'/%3E%3C/svg%3E");
}

.step-icon.estimate {
  --step-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 8h30v48H17V8Zm6 8v8h18v-8H23Zm0 16h6v6h-6v-6Zm10 0h6v6h-6v-6Zm-10 10h6v6h-6v-6Zm10 0h6v6h-6v-6Z'/%3E%3C/svg%3E");
}

.step-icon.install {
  --step-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M43 8a13 13 0 0 0-13 16L12 42l10 10 18-18A13 13 0 0 0 56 18l-9 9-7-7 9-9a13 13 0 0 0-6-3Z'/%3E%3C/svg%3E");
}

.steps h3 {
  margin-top: clamp(22px, 2.2vw, 34px);
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.15;
}

.steps p {
  margin-top: 14px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .request-copy h2 {
    max-width: 720px;
    font-size: clamp(32px, 5vw, 48px);
  }

  .request-copy p {
    font-size: clamp(17px, 2vw, 22px);
  }

  .process .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps article {
    min-height: 270px;
  }
}

@media (max-width: 860px) {
  .request {
    gap: 26px;
  }

  .request-copy h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .why,
  .process {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .why::before,
  .process::before {
    background:
      linear-gradient(180deg, rgba(248, 246, 241, 0.96), rgba(248, 246, 241, 0.86)),
      url("assets/optimized/9-1.webp") right top / cover no-repeat;
  }

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

  .why-grid article,
  .steps article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .request-copy h2 {
    font-size: 30px;
  }

  .request-copy p {
    font-size: 16px;
  }

  .request-cta {
    min-height: 52px;
    font-size: 17px;
  }

  .why-inner h2,
  .process .section-head h2 {
    font-size: 38px;
  }

  .why-icon,
  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-icon {
    margin-top: 24px;
  }

  .why-grid h3 {
    max-width: none;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .request-copy h2 {
    font-size: clamp(34px, 3.6vw, 48px);
  }

  .why,
  .process {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .why-grid article {
    min-height: 180px;
  }

  .process .section-head {
    margin-bottom: 18px;
  }

  .process .section-head h2,
  .why-inner h2 {
    font-size: 46px;
  }

  .process .section-head p {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.34;
  }

  .steps article {
    min-height: 214px;
    padding: 22px 24px;
  }

  .step-icon {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 50px;
    height: 50px;
    margin-top: 0;
  }

  .steps h3 {
    max-width: calc(100% - 64px);
    margin-top: 28px;
    font-size: 19px;
    line-height: 1.12;
  }

  .steps p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.34;
  }
}

/* Screens 9-10: mockup-style layout */
.request-copy {
  align-self: center;
}

.request-copy h2 {
  max-width: 620px;
  font-size: clamp(32px, 3vw, 48px);
}

.request-copy p {
  margin-top: 22px;
}

.why {
  background: #e8e1d6;
}

.why::before {
  background:
    linear-gradient(90deg, rgba(232, 225, 214, 0.94) 0 70%, rgba(232, 225, 214, 0.74) 100%),
    url("assets/optimized/9-1.webp") right center / cover no-repeat;
}

.why::after {
  background:
    repeating-linear-gradient(90deg, rgba(146, 124, 98, 0.14) 0 1px, transparent 1px 10px) right top / min(15vw, 210px) 100% no-repeat,
    radial-gradient(circle at 43% 58%, transparent 0 16vw, rgba(185, 135, 79, 0.13) calc(16vw + 1px) calc(16vw + 2px), transparent calc(16vw + 3px));
  opacity: 0.72;
}

.why-inner {
  width: min(100%, 1510px);
}

.why-inner h2 {
  position: relative;
  width: fit-content;
  margin: 0 0 clamp(34px, 4vw, 66px);
  padding-left: clamp(28px, 2.6vw, 44px);
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(56px, 6.2vw, 104px);
  font-weight: 500;
}

.why-inner h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.13em;
  bottom: 0.13em;
  width: 6px;
  background: rgba(150, 119, 86, 0.82);
}

.why-grid {
  gap: clamp(18px, 1.6vw, 28px);
}

.why-grid article {
  grid-template-columns: minmax(96px, 150px) 1px minmax(0, 1fr);
  align-items: center;
  min-height: clamp(244px, 17vw, 304px);
  padding: clamp(34px, 3vw, 58px);
  column-gap: clamp(30px, 3vw, 54px);
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(242, 235, 225, 0.62)),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 40px rgba(62, 50, 38, 0.16);
}

.why-grid article::before {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  width: 1px;
  background: rgba(185, 135, 79, 0.34);
}

.why-grid article::after {
  right: -4px;
  bottom: -2px;
  width: min(34%, 190px);
  height: 100%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 48%, transparent 0 78px, rgba(185, 135, 79, 0.14) 79px 80px, transparent 81px),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(146, 124, 98, 0.16) 16px 17px, transparent 17px 24px);
  opacity: 0.42;
}

.why-grid article:nth-child(3)::after {
  background:
    radial-gradient(circle at 100% 42%, transparent 0 96px, rgba(185, 135, 79, 0.14) 97px 98px, transparent 99px),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(146, 124, 98, 0.16) 16px 17px, transparent 17px 24px);
}

.why-grid article:nth-child(4)::after {
  background:
    radial-gradient(circle at 100% 70%, transparent 0 88px, rgba(185, 135, 79, 0.14) 89px 90px, transparent 91px),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(146, 124, 98, 0.16) 16px 17px, transparent 17px 24px);
}

.why-grid span {
  display: none;
}

.why-icon {
  position: relative;
  right: auto;
  top: auto;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / span 4;
  justify-self: center;
  width: clamp(112px, 9vw, 148px);
  height: clamp(112px, 9vw, 148px);
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.92), rgba(219, 207, 190, 0.58));
  color: #5f564b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.why-icon::before {
  inset: 24%;
}

.why-grid h3,
.why-grid p {
  position: relative;
  z-index: 1;
  grid-column: 3;
  max-width: 470px;
}

.why-grid h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 2.4vw, 43px);
  font-weight: 500;
  line-height: 1.08;
}

.why-grid p {
  margin-top: clamp(18px, 1.8vw, 28px);
  color: #3e3933;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
}

.process {
  background: #fbf7ed;
}

.process::before {
  background:
    radial-gradient(circle at 16% -6%, rgba(185, 135, 79, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(250, 244, 234, 0.96));
}

.process::after {
  background:
    url("assets/optimized/finish-pattern-dots.png") right 11% top 10% / min(12vw, 150px) auto repeat,
    radial-gradient(ellipse at 0 0, transparent 0 48%, rgba(185, 135, 79, 0.2) 48.2% 48.7%, transparent 48.9%),
    radial-gradient(ellipse at 0 0, transparent 0 55%, rgba(185, 135, 79, 0.13) 55.2% 55.7%, transparent 55.9%);
  opacity: 0.8;
}

.process .section-head {
  margin-bottom: clamp(42px, 5vw, 82px);
}

.process .section-head h2 {
  font-family: var(--serif);
  font-size: clamp(58px, 6.6vw, 112px);
  font-weight: 500;
  line-height: 0.94;
}

.process .section-head p {
  max-width: 1040px;
  margin-top: clamp(24px, 2.8vw, 36px);
  color: #202020;
  font-size: clamp(20px, 1.45vw, 27px);
}

.process .steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 72px);
}

.steps article {
  min-height: clamp(420px, 33vw, 540px);
  padding: clamp(30px, 3vw, 44px);
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 245, 0.8)),
    rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(73, 54, 35, 0.12);
}

.steps article::before {
  content: "";
  position: absolute;
  z-index: 3;
  right: calc(clamp(36px, 4vw, 72px) * -0.78);
  top: 30%;
  width: clamp(42px, 3.4vw, 62px);
  height: 16px;
  background:
    linear-gradient(#c29661, #c29661) left 50% / calc(100% - 10px) 2px no-repeat,
    linear-gradient(45deg, transparent 50%, #c29661 50%) right 50% / 12px 12px no-repeat;
}

.steps article:last-child::before {
  display: none;
}

.steps article::after {
  display: none;
}

.steps span {
  display: grid;
  width: clamp(76px, 6vw, 94px);
  height: clamp(76px, 6vw, 94px);
  place-items: center;
  border: 1px solid rgba(185, 135, 79, 0.66);
  border-radius: 50%;
  color: #b9874f;
  font-family: var(--sans);
  font-size: clamp(27px, 2vw, 34px);
  font-weight: 800;
}

.step-icon {
  position: absolute;
  right: clamp(30px, 2.8vw, 48px);
  top: clamp(36px, 3vw, 58px);
  width: clamp(78px, 6.2vw, 102px);
  height: clamp(78px, 6.2vw, 102px);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #c29661;
  box-shadow: none;
}

.step-icon::before {
  width: 76%;
  height: 76%;
}

.steps h3 {
  margin-top: clamp(76px, 7vw, 112px);
  padding-top: clamp(26px, 2.2vw, 36px);
  border-top: 2px solid rgba(194, 150, 97, 0.56);
  font-size: clamp(24px, 1.75vw, 31px);
  line-height: 1.16;
}

.steps p {
  margin-top: clamp(22px, 2vw, 30px);
  color: #242424;
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.45;
}

.process::before,
.process::after {
  display: block;
}

@media (max-width: 1180px) {
  .why-grid article {
    grid-template-columns: minmax(86px, 120px) 1px minmax(0, 1fr);
    min-height: 230px;
    padding: 30px;
    column-gap: 26px;
  }

  .why-icon {
    width: 102px;
    height: 102px;
  }

  .why-grid h3 {
    font-size: clamp(28px, 3.1vw, 36px);
  }

  .why-grid p {
    font-size: 17px;
  }

  .process .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .steps article::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .why {
    background: #e8e1d6;
  }

  .why-inner h2 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .why-grid article {
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 20px;
  }

  .why-grid article::before {
    display: none;
  }

  .why-icon {
    grid-column: 1;
    width: 82px;
    height: 82px;
  }

  .why-grid h3,
  .why-grid p {
    grid-column: 2;
  }

  .why-grid h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .process .section-head h2 {
    font-size: clamp(44px, 12vw, 70px);
  }

  .process .section-head p {
    font-size: 17px;
  }

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

  .steps article {
    min-height: auto;
    padding: 28px 24px 32px;
  }

  .steps h3 {
    margin-top: 54px;
  }
}

@media (max-width: 520px) {
  .why-inner h2 {
    padding-left: 22px;
  }

  .why-inner h2::before {
    width: 4px;
  }

  .why-grid article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-icon,
  .why-grid h3,
  .why-grid p {
    grid-column: 1;
  }

  .why-icon {
    justify-self: start;
  }

  .steps span {
    width: 68px;
    height: 68px;
  }

  .step-icon {
    width: 72px;
    height: 72px;
    right: 22px;
    top: 28px;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .why {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .why-inner h2 {
    margin-bottom: 28px;
    font-size: 58px;
  }

  .why-grid article {
    min-height: 190px;
    padding: 24px 30px;
  }

  .why-icon {
    width: 92px;
    height: 92px;
  }

  .why-grid h3 {
    font-size: 27px;
  }

  .why-grid p {
    margin-top: 12px;
    font-size: 15px;
  }

  .process {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .process .section-head {
    margin-bottom: 28px;
  }

  .process .section-head h2 {
    font-size: 60px;
  }

  .process .section-head p {
    margin-top: 16px;
    font-size: 17px;
  }

  .steps article {
    min-height: 300px;
    padding: 24px 26px;
  }

  .steps span {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }

  .step-icon {
    right: 24px;
    top: 30px;
    width: 70px;
    height: 70px;
  }

  .steps h3 {
    max-width: none;
    margin-top: 54px;
    padding-top: 20px;
    font-size: 20px;
  }

  .steps p {
    font-size: 14px;
  }
}

/* FAQ and partner refinements */
.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(34px, 5vw, 92px);
  background: #eee8de;
}

.faq::before {
  background:
    linear-gradient(90deg, rgba(238, 232, 222, 0.96) 0 58%, rgba(238, 232, 222, 0.84) 100%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(146, 124, 98, 0.12) 14px 15px, transparent 15px 24px) right top / min(18vw, 260px) 100% no-repeat;
}

.faq::after {
  background:
    radial-gradient(circle at 8% 18%, transparent 0 19vw, rgba(185, 135, 79, 0.16) calc(19vw + 1px) calc(19vw + 2px), transparent calc(19vw + 3px)),
    radial-gradient(circle at 92% 84%, transparent 0 14vw, rgba(185, 135, 79, 0.12) calc(14vw + 1px) calc(14vw + 2px), transparent calc(14vw + 3px));
  opacity: 0.9;
}

.faq-copy,
.faq-list {
  position: relative;
  z-index: 1;
}

.faq-copy {
  position: sticky;
  top: 110px;
  padding-top: clamp(12px, 2vw, 34px);
}

.faq-copy h2 {
  position: relative;
  padding-left: clamp(24px, 2.4vw, 38px);
  font-family: var(--serif);
  font-size: clamp(50px, 5.5vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  text-align: left;
}

.faq-copy h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 5px;
  background: rgba(150, 119, 86, 0.82);
}

.faq-copy p {
  max-width: 520px;
  margin-top: clamp(22px, 2vw, 34px);
  color: #3e3933;
  font-size: clamp(18px, 1.24vw, 23px);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(249, 245, 238, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 30px rgba(62, 50, 38, 0.1);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  gap: 22px;
  min-height: clamp(70px, 5.2vw, 88px);
  padding: 18px clamp(20px, 2.2vw, 34px);
  cursor: pointer;
  list-style: none;
  color: #171717;
  font-size: clamp(18px, 1.24vw, 23px);
  font-weight: 800;
  line-height: 1.22;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(185, 135, 79, 0.52);
  border-radius: 50%;
  color: #8b6744;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: rgba(185, 135, 79, 0.12);
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 920px;
  margin: 0;
  padding: 0 clamp(20px, 2.2vw, 34px) clamp(22px, 2.2vw, 32px);
  color: #4a443d;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.5;
}

.partner {
  background: #f7f1e8;
}

.partner::before {
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.97), rgba(240, 231, 219, 0.94)),
    radial-gradient(circle at 15% 22%, rgba(185, 135, 79, 0.13), transparent 28%);
}

.partner .section-head h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.3vw, 88px);
  font-weight: 500;
}

.partner-grid {
  gap: clamp(18px, 1.8vw, 30px);
}

.partner-grid article {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 28vw, 450px);
  padding: clamp(30px, 3vw, 46px);
  border-color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 245, 238, 0.76)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 42px rgba(63, 49, 34, 0.12);
}

.partner-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 158px;
  height: 158px;
  border: 1px solid rgba(185, 135, 79, 0.14);
  border-radius: 50%;
}

.partner-grid span {
  display: block;
  color: #b9874f;
  font-family: var(--sans);
  font-size: clamp(32px, 2.6vw, 46px);
  font-weight: 800;
  line-height: 1;
}

.partner-grid span::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: clamp(26px, 2.6vw, 40px);
  background: rgba(185, 135, 79, 0.58);
}

.partner-card-icon {
  position: absolute;
  right: clamp(26px, 2.8vw, 44px);
  top: clamp(34px, 3vw, 56px);
  display: grid;
  width: clamp(70px, 5.7vw, 96px);
  height: clamp(70px, 5.7vw, 96px);
  place-items: center;
  color: #b9874f;
}

.partner-card-icon::before {
  content: "";
  width: 72%;
  height: 72%;
  background: currentColor;
  mask: var(--partner-card-icon) center / contain no-repeat;
}

.partner-card-icon.audience {
  --partner-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22 24a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm-9 28c1-10 8-18 18-18s17 8 18 18H13Zm36-20a7 7 0 1 1 7-7 7 7 0 0 1-7 7Zm-4 5c7 2 12 8 13 15h-6c-.7-5-3-9-7-11v-4Z'/%3E%3C/svg%3E");
}

.partner-card-icon.package {
  --partner-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10 18 32 8l22 10v28L32 56 10 46V18Zm22 10 14-6-14-6-14 6 14 6Zm-16 2v12l13 6V36l-13-6Zm19 18 13-6V30l-13 6v12Z'/%3E%3C/svg%3E");
}

.partner-card-icon.percent {
  --partner-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M15 49 49 15l4 4-34 34-4-4Zm5-31a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm24 12a8 8 0 1 1 0 16 8 8 0 0 1 0-16Z'/%3E%3C/svg%3E");
}

.partner-card-icon.benefit {
  --partner-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 34 9 45l10 10 11-11 4 4c4 4 10 4 14 0l8-8-4-4-8 8c-2 2-5 2-7 0L20 27c-2-2-5-2-7 0l-5 5 4 4 5-5 3 3Zm24-4 11-11L45 9 34 20l-4-4c-4-4-10-4-14 0l-6 6 4 4 6-6c2-2 5-2 7 0l17 17c2 2 5 2 7 0l5-5-4-4-5 5-3-3Z'/%3E%3C/svg%3E");
}

.partner-grid h3 {
  max-width: calc(100% - 84px);
  margin-top: clamp(44px, 4.2vw, 78px);
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.14;
}

.partner-grid p {
  margin-top: clamp(20px, 1.8vw, 30px);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .faq {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    position: relative;
    top: auto;
    text-align: center;
  }

  .faq-copy h2 {
    width: fit-content;
    margin-inline: auto;
  }

  .faq-copy p {
    margin-inline: auto;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .faq {
    padding-top: 46px;
  }

  .faq-copy {
    text-align: left;
  }

  .faq-copy h2 {
    margin-inline: 0;
    font-size: clamp(42px, 12vw, 64px);
  }

  .faq-copy p {
    margin-inline: 0;
    font-size: 17px;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 14px;
  }

  .faq-list summary::after {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

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

  .partner-grid article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .faq-list summary {
    font-size: 16px;
  }

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

  .partner-card-icon {
    width: 66px;
    height: 66px;
  }

  .partner-grid h3 {
    max-width: calc(100% - 72px);
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .faq {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .faq-copy {
    top: 96px;
  }

  .faq-copy h2 {
    font-size: 56px;
  }

  .faq-copy p {
    font-size: 16px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list summary {
    min-height: 58px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .faq-list summary::after {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .faq-list details p {
    padding-bottom: 18px;
    font-size: 14px;
  }

  .partner-grid article {
    min-height: 276px;
    padding: 26px 28px;
  }

  .partner-card-icon {
    width: 64px;
    height: 64px;
    right: 24px;
    top: 28px;
  }

  .partner-grid h3 {
    margin-top: 48px;
    font-size: 21px;
  }

  .partner-grid p {
    font-size: 14px;
  }
}

/* Mobile bug fixes */
@media (max-width: 860px) {
  .mobile-action-bar {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  body.mobile-bar-fixed .mobile-action-bar,
  body.mobile-bar-dark .mobile-action-bar,
  body.menu-open .mobile-action-bar {
    z-index: 120;
  }

  .main-nav {
    z-index: 119;
  }

  .compare-card {
    padding-left: 74px;
  }

  .compare-card.positive {
    padding-left: 74px;
  }

  .compare-card.positive::before {
    left: 22px;
    top: 58px;
    bottom: 22px;
    width: 7px;
  }

  .status-mark {
    left: 10px;
    top: 26px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .split-card {
    display: flex;
    height: auto;
    flex-direction: column;
    overflow: hidden;
  }

  .split-card::before {
    display: none;
  }

  .split-card img {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.35;
    object-fit: cover;
  }

  .split-card div {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 24px 20px 26px;
    background: rgba(255, 255, 255, 0.94);
  }

  .split-card > div > p {
    margin-top: 14px;
    background: rgba(248, 252, 242, 0.96);
  }

  .about {
    padding-top: min(86vw, 460px);
  }

  .about::before {
    background:
      linear-gradient(180deg, rgba(247, 247, 247, 0) 0 34%, rgba(247, 247, 247, 0.62) 58%, rgba(247, 247, 247, 1) 78%),
      url("assets/optimized/7-2.webp") center top / 100% auto no-repeat,
      #f7f7f7;
  }

  .about-copy {
    padding-top: 10px;
  }
}

@media (max-width: 520px) {
  .compare-card,
  .compare-card.positive {
    padding-left: 62px;
  }

  .compare-card.positive::before {
    left: 18px;
    top: 52px;
    bottom: 18px;
    width: 6px;
  }

  .status-mark {
    left: 6px;
    top: 24px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .split-card div {
    padding: 22px 18px 24px;
  }

  .about {
    padding-top: min(104vw, 430px);
  }
}

/* Mobile header and hero */
@media (max-width: 860px) {
  body {
    background: #fff;
  }

  .site-header {
    position: relative;
    z-index: 90;
    background: #fff;
    box-shadow: none;
  }

  .header-top {
    display: grid;
    grid-template-columns: minmax(132px, 0.82fr) 1fr;
    gap: 16px 12px;
    width: 100%;
    min-height: 0;
    padding: 18px 24px 22px;
    border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  }

  .brand {
    align-self: center;
  }

  .brand img {
    width: min(36vw, 190px);
  }

  .header-contacts {
    display: block;
    align-self: center;
    color: #111a25;
    font-size: clamp(13px, 3.5vw, 18px);
    font-weight: 600;
  }

  .header-contacts a {
    display: none;
  }

  .header-contacts span {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    line-height: 1.45;
  }

  .header-contacts svg {
    width: 21px;
    height: 21px;
    margin-top: 3px;
    stroke: #111a25;
  }

  .rating-block {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .rating-link {
    position: relative;
    min-height: 70px;
    justify-content: flex-start;
    padding: 11px 12px 12px 58px;
    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(20, 20, 20, 0.05);
    color: #111a25;
    font-size: 15px;
    line-height: 1.16;
  }

  .rating-link::before {
    position: absolute;
    left: 13px;
    top: 16px;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
  }

  .yandex-rating::before {
    content: "Я";
    color: #e73322;
  }

  .gis-rating::before {
    content: "●";
    color: #2dac43;
    font-size: 34px;
  }

  .rating-link::after {
    position: absolute;
    left: 58px;
    bottom: 11px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .rating-link b {
    display: block;
    margin-top: 2px;
  }

  .consult-button,
  .header-top > .social-links,
  .header-top > .menu-toggle {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
    position: sticky;
    top: 0;
    z-index: 95;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 66px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(16, 24, 32, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(16, 24, 32, 0.05);
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  }

  body.mobile-bar-fixed .mobile-action-bar,
  body.menu-open .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 95;
    background: rgba(28, 26, 24, 0.96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-phone {
    display: inline-grid;
    grid-template-columns: 22px minmax(0, auto);
    align-items: center;
    gap: 8px;
    color: #101820;
    font-size: clamp(15px, 3.2vw, 18px);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-phone svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  body.mobile-bar-fixed .mobile-phone,
  body.mobile-bar-dark .mobile-phone,
  body.menu-open .mobile-phone {
    color: #fff;
  }

  .mobile-social-links {
    display: flex;
    gap: 7px;
    align-items: center;
  }

  .mobile-social-links a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(20, 20, 20, 0.12);
  }

  .mobile-social-links svg,
  .mobile-social-links img {
    width: 24px;
    height: 24px;
  }

  .mobile-social-links .telegram {
    color: #fff;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    background: #101820;
  }

  body.mobile-bar-fixed .mobile-menu-toggle span,
  body.mobile-bar-dark .mobile-menu-toggle span,
  body.menu-open .mobile-menu-toggle span {
    background: #fff;
  }

  .main-nav {
    position: fixed;
    inset: 72px 12px auto;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    min-height: auto;
    margin: 0;
    padding: 10px 14px 16px;
    border-color: rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 18px 36px rgba(16, 24, 32, 0.16);
  }

  .menu-open .main-nav {
    display: flex !important;
  }

  .main-nav a {
    justify-content: center;
    min-height: 42px;
    color: #1f1d1a;
    font-size: 13px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 26px 24px 30px;
    background: #fff;
  }

  .hero::before {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    color: #ad530a;
    font-size: clamp(14px, 3.8vw, 20px);
    font-weight: 900;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(28px, 6.2vw, 38px);
    font-weight: 900;
    line-height: 1.08;
    text-wrap: balance;
  }

  .lead {
    max-width: 100%;
    margin-top: 16px;
    color: #121922;
    font-size: clamp(15px, 3.4vw, 20px);
    line-height: 1.32;
  }

  .actions {
    display: grid;
    gap: 14px;
    margin-top: 20px;
  }

  .button {
    min-height: 54px;
    border-radius: 9px;
    font-size: clamp(15px, 3.4vw, 19px);
    font-weight: 900;
  }

  .primary {
    background: linear-gradient(180deg, #ff2a12, #ef1b08);
  }

  .secondary {
    border-color: rgba(16, 24, 32, 0.32);
    background: #fff;
    color: #101820;
  }

  .secondary::before {
    content: "";
    width: 24px;
    height: 28px;
    margin-right: 14px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10 4h19l9 9v39H10V4Zm17 4v10h9L27 8ZM16 26h16v4H16v-4Zm0 8h16v4H16v-4Zm0 8h12v4H16v-4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .hero-mobile-image {
    display: block;
    margin-top: 20px;
  }

  .hero-mobile-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(23, 18, 14, 0.13);
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding-top: 0;
    border-top: 0;
  }

  .hero-features span {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    min-height: 72px;
    padding: 10px 12px;
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16, 24, 32, 0.05);
    color: #16202a;
    font-size: clamp(13px, 3vw, 17px);
    font-weight: 500;
    line-height: 1.18;
  }

  .hero-features span::before {
    position: static;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ff2a12;
    font-size: 28px;
  }

  .hero-features span:nth-child(1)::before {
    content: "✦";
  }

  .hero-features span:nth-child(2)::before {
    content: "▦";
  }

  .hero-features span:nth-child(3)::before {
    content: "◌";
  }

  .hero-features span:nth-child(4)::before {
    content: "▧";
  }
}

@media (max-width: 520px) {
  .header-top {
    grid-template-columns: minmax(112px, 0.7fr) 1fr;
    padding: 14px 16px 18px;
  }

  .brand img {
    width: min(38vw, 150px);
  }

  .header-contacts {
    font-size: 12px;
  }

  .rating-block {
    gap: 8px;
  }

  .rating-link {
    min-height: 58px;
    padding: 9px 8px 10px 45px;
    font-size: 12px;
  }

  .rating-link::before {
    left: 10px;
    top: 14px;
    font-size: 30px;
  }

  .rating-link::after {
    left: 45px;
    bottom: 8px;
    font-size: 9px;
  }

  .mobile-action-bar {
    min-height: 58px;
    padding: 9px 12px;
    gap: 6px;
  }

  .mobile-phone {
    grid-template-columns: 19px minmax(0, auto);
    gap: 6px;
    font-size: clamp(13px, 3.7vw, 16px);
  }

  .mobile-phone svg {
    width: 19px;
    height: 19px;
  }

  .mobile-social-links {
    gap: 5px;
  }

  .mobile-social-links a {
    width: 30px;
    height: 30px;
  }

  .mobile-social-links svg,
  .mobile-social-links img {
    width: 21px;
    height: 21px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-toggle span {
    width: 27px;
    height: 3px;
  }

  .main-nav {
    inset: 62px 10px auto;
  }

  .hero {
    padding: 22px 16px 24px;
  }

  .hero h1 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .lead {
    font-size: 15px;
  }

  .button {
    min-height: 48px;
    font-size: 15px;
  }

  .hero-mobile-image img {
    border-radius: 14px;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-features span {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 68px;
    padding: 12px 10px;
    font-size: clamp(12px, 3.7vw, 15px);
  }

  .hero-features span::before {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
}

/* Partner, final request, contacts and catalog completion */
.partner::before {
  background:
    linear-gradient(180deg, rgba(245, 239, 231, 0.9), rgba(238, 229, 217, 0.84)),
    url("assets/optimized/12.webp") center / cover no-repeat;
}

.selection-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: clamp(34px, 6vw, 116px);
  color: #2b241d;
}

.selection-request::before {
  background:
    linear-gradient(90deg, rgba(242, 235, 225, 0.18) 0 42%, rgba(242, 235, 225, 0.55) 58%, rgba(242, 235, 225, 0.12) 100%),
    url("assets/optimized/13.webp") center / cover no-repeat;
}

.selection-copy {
  width: min(100%, 800px);
  justify-self: center;
}

.selection-copy h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.6vw, 92px);
  font-weight: 500;
  line-height: 1.02;
}

.selection-copy p {
  width: min(100%, 660px);
  margin-top: clamp(24px, 2.6vw, 42px);
  color: #3b342d;
  font-size: clamp(18px, 1.25vw, 24px);
}

.selection-points {
  display: grid;
  width: min(100%, 640px);
  gap: 0;
  margin-top: clamp(38px, 5vw, 86px);
}

.selection-points span {
  position: relative;
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 22px 0 22px 116px;
  border-bottom: 1px solid rgba(83, 68, 51, 0.22);
  color: #2f2922;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.28;
}

.selection-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 229, 216, 0.82)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(61, 49, 36, 0.12);
  transform: translateY(-50%);
}

.selection-points span::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 36px;
  height: 36px;
  background: #9a6a3d;
  mask: var(--selection-icon) center / contain no-repeat;
  transform: translateY(-50%);
}

.delivery-point {
  --selection-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 16h34v26h-4a8 8 0 0 1-16 0h-2a8 8 0 0 1-16 0H8V16Zm42 12h6l6 9v5h-4a8 8 0 0 1-16 0h-2V28h10ZM16 46a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm34 0a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3C/svg%3E");
}

.install-point {
  --selection-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m42 6 16 16-8 8-4-4-17 17 4 4-9 9-16-16 9-9 4 4 17-17-4-4 8-8ZM9 16l7-7 12 12-7 7L9 16Zm32 20 7 7-16 16-7-7 16-16Z'/%3E%3C/svg%3E");
}

.selection-form {
  justify-self: center;
  border-color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 242, 0.84)),
    rgba(255, 255, 255, 0.8);
}

.final-contacts {
  display: grid;
  align-content: center;
  gap: clamp(28px, 3vw, 52px);
  background: #151412;
  color: #f6efe6;
}

.final-contacts::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(185, 135, 79, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(23, 22, 20, 0.98), rgba(42, 34, 27, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.04) 16px 17px, transparent 17px 34px);
}

.final-contacts::after {
  border-color: rgba(185, 135, 79, 0.24);
}

.contacts-head,
.contacts-layout {
  position: relative;
  z-index: 1;
}

.contacts-head {
  width: min(100%, 1050px);
  margin: 0 auto;
  text-align: center;
}

.contacts-head h2 {
  color: #f6efe6;
}

.contacts-head p {
  margin-top: 18px;
  color: rgba(246, 239, 230, 0.78);
  font-size: clamp(17px, 1.12vw, 21px);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.72fr);
  width: min(100%, 1320px);
  gap: clamp(24px, 3vw, 48px);
  margin: 0 auto;
}

.contacts-list,
.public-links {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.contacts-list {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 42px);
}

.contacts-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contacts-list strong,
.public-links h3 {
  display: block;
  color: #fff;
  font-size: clamp(18px, 1.25vw, 24px);
}

.contacts-list a,
.contacts-list p,
.public-links p {
  color: rgba(246, 239, 230, 0.78);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.45;
}

.contacts-list a {
  text-decoration: none;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 135, 79, 0.16);
}

.contact-icon::before {
  content: "";
  width: 23px;
  height: 23px;
  background: #d9a66f;
  mask: var(--contact-icon) center / contain no-repeat;
}

.phone-icon { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 2h5l2 6-3 2c2 4 4 6 8 8l2-3 6 2v5c0 1-1 2-2 2C11 24 0 13 0 4c0-1 1-2 2-2h4Z'/%3E%3C/svg%3E"); }
.mail-icon { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M2 5h20v14H2V5Zm10 8 8-6H4l8 6Zm-2 2-6-5v7h16v-7l-6 5-2 1-2-1Z'/%3E%3C/svg%3E"); }
.message-icon { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3c6 0 10 4 10 9s-4 9-10 9c-1 0-2 0-3-.3L3 22l1.6-4.8A8.2 8.2 0 0 1 2 12c0-5 4-9 10-9Z'/%3E%3C/svg%3E"); }
.pin-icon { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a8 8 0 0 1 8 8c0 7-8 12-8 12S4 17 4 10a8 8 0 0 1 8-8Zm0 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }
.time-icon { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm1 5h-2v6l5 3 1-2-4-2V7Z'/%3E%3C/svg%3E"); }
.doc-icon { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 2h10l4 4v16H5V2Zm9 2v4h4l-4-4ZM8 11h8v2H8v-2Zm0 4h8v2H8v-2Zm0-8h4v2H8V7Z'/%3E%3C/svg%3E"); }

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-buttons a,
.public-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.telegram-button { background: #2d95da; }
.whatsapp-button { background: #32a85a; }
.max-button { background: #574df4; }

.public-links {
  align-self: stretch;
  padding: clamp(26px, 3vw, 46px);
}

.public-links p {
  margin-top: 14px;
}

.public-social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.public-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.contacts-requisites p {
  max-width: 680px;
}

.contacts-map {
  overflow: hidden;
  min-height: 300px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contacts-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: saturate(0.82) contrast(0.92);
}

.contacts-bottom-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.contacts-bottom-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.catalog-page {
  min-height: calc(100svh - 84px);
}

.catalog-page::before {
  background:
    linear-gradient(90deg, rgba(242, 235, 225, 0.96) 0 42%, rgba(242, 235, 225, 0.56) 55%, rgba(242, 235, 225, 0.1) 76%),
    url("assets/optimized/Каталог.webp") center / cover no-repeat;
}

.catalog-page .catalog-cover:not(.catalog-cover-mobile) {
  display: none;
}

.catalog-cover-mobile {
  display: none;
}

.catalog-copy {
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .selection-request,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .selection-copy,
  .selection-form {
    justify-self: start;
  }

  .public-links {
    align-self: auto;
  }
}

@media (max-width: 860px) {
  .selection-request {
    gap: 28px;
    padding-top: 44px;
  }

  .selection-request::before {
    background:
      linear-gradient(180deg, rgba(246, 241, 234, 0.94), rgba(246, 241, 234, 0.72)),
      url("assets/optimized/13.webp") center / cover no-repeat;
  }

  .selection-copy h2 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .selection-copy p {
    font-size: 17px;
  }

  .selection-points {
    margin-top: 26px;
  }

  .selection-points span {
    min-height: 72px;
    padding: 16px 0 16px 84px;
    font-size: 16px;
  }

  .selection-points span::before {
    width: 58px;
    height: 58px;
  }

  .selection-points span::after {
    left: 16px;
    width: 28px;
    height: 28px;
  }

  .final-contacts {
    padding-top: 48px;
  }

  .contacts-head {
    text-align: left;
  }

  .contacts-layout {
    gap: 18px;
  }

  .contacts-list,
  .public-links {
    border-radius: 8px;
  }

  .contacts-map,
  .contacts-map iframe {
    min-height: 320px;
    height: 320px;
  }

  .contact-buttons,
  .public-social-buttons {
    display: grid;
  }

  .catalog-page {
    display: block;
    min-height: auto;
    padding-top: 42px;
    background: #f2ebe3;
  }

  .catalog-page::before {
    background: linear-gradient(180deg, #f5efe7, #eee4d8);
  }

  .catalog-copy {
    max-width: none;
  }

  .catalog-copy h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .catalog-cover-mobile {
    display: block;
    margin-top: 24px;
  }

  .catalog-cover-mobile img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(48, 37, 27, 0.14);
  }

  .catalog-copy p {
    margin-top: 24px;
    font-size: 16px;
  }

  .catalog-copy > p + p {
    margin-top: 24px;
    padding-top: 22px;
  }

  .catalog-note {
    margin: 28px 0 24px;
    padding: 22px;
    border: 1px solid rgba(185, 135, 79, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.48);
  }
}

@media (max-width: 520px) {
  .selection-form,
  .contacts-list,
  .public-links {
    padding: 24px 18px;
  }

  .contacts-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
  }

  .contact-icon::before {
    width: 19px;
    height: 19px;
  }
}

/* Modal forms, quiz trigger states and policy page */
.site-modal-root {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(8px);
}

.site-modal-root.is-open {
  display: flex;
}

.site-modal {
  position: relative;
  width: min(100%, 560px);
  max-height: min(90svh, 680px);
  overflow: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.site-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 38px;
  line-height: 0.8;
  cursor: pointer;
}

.site-modal-content {
  padding: clamp(28px, 3.4vw, 46px);
}

.site-modal h2 {
  max-width: 420px;
  margin-inline: auto;
  color: #050505;
  font-family: var(--sans);
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.site-modal p {
  margin-top: 12px;
  color: #596070;
  font-size: 16px;
  text-align: center;
}

.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.modal-form label {
  display: grid;
  gap: 8px;
  color: #1b2436;
  font-size: 20px;
  line-height: 1.2;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  min-height: 64px;
  border: 2px solid #dfe3ef;
  border-radius: 14px;
  color: #111827;
  font: inherit;
  font-size: 22px;
  padding: 0 24px;
  outline: 0;
}

.modal-form textarea {
  min-height: 108px;
  padding-top: 18px;
  resize: vertical;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: #a3a3a3;
}

.submit-error {
  margin: 2px 0 0;
  color: #b71943;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.modal-consent {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px !important;
  align-items: start;
  margin-top: 0;
  color: #6c6c73 !important;
  font-size: 16px !important;
  font-style: italic;
  line-height: 1.25 !important;
}

.modal-consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 3px 0 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  accent-color: #b71943;
}

.modal-submit {
  width: 100%;
  min-height: 70px;
  border: 0;
  border-radius: 14px;
  background: #b71943;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
}

.partner-modal {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 229, 0.9)),
    url("assets/optimized/12.webp") center / cover no-repeat;
}

.partner-modal .modal-submit {
  background: linear-gradient(135deg, #18130f, #8f6531);
}

.development-modal {
  width: min(100%, 520px);
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 135, 79, 0.18), transparent 34%),
    #fffaf3;
}

.development-modal .modal-submit {
  min-height: 62px;
  margin-top: 28px;
  background: #1f1d1a;
  font-size: 20px;
}

.modal-success {
  display: grid;
  gap: 10px;
  padding: 34px;
  border-radius: 14px;
  background: #f7f1e8;
  text-align: center;
}

.modal-success strong {
  color: #1d1b18;
  font-size: 28px;
}

.modal-success span {
  color: #6b6258;
  font-size: 18px;
}

.policy-page {
  min-height: 100svh;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 135, 79, 0.16), transparent 28%),
    linear-gradient(135deg, #f7f1e8, #e9ddcf);
}

.policy-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f1d1a;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.policy-card {
  width: min(100%, 980px);
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(63, 49, 34, 0.14);
}

.policy-card h1 {
  font-size: clamp(36px, 6vw, 72px);
}

.policy-card h2 {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
}

.policy-card p {
  margin-top: 14px;
  color: #3d3934;
  font-size: clamp(16px, 1.2vw, 20px);
}

.policy-card a {
  color: #8f6531;
}

.cookie-notice {
  position: fixed;
  left: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 1000002;
  width: min(720px, calc(100vw - 32px));
  padding: 22px 24px;
  border: 2px solid #b5dc8d;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(23, 18, 14, 0.18);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-notice p {
  max-width: 650px;
  margin: 0;
  color: #1f1d1a;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.cookie-notice a {
  color: #85b85f;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-notice button {
  min-width: 110px;
  min-height: 42px;
  margin-top: 16px;
  border: 2px solid #86bf5f;
  border-radius: 6px;
  background: #b8e296;
  color: #1f1d1a;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-notice button:hover {
  background: #a8d985;
}

@media (max-width: 680px) {
  .site-modal-root {
    padding: 10px;
  }

  .site-modal {
    max-height: calc(100svh - 20px);
    border-radius: 12px;
  }

  .site-modal-close {
    right: 10px;
    top: 8px;
    font-size: 42px;
  }

  .site-modal-content {
    padding: 50px 20px 24px;
  }

  .site-modal h2 {
    font-size: 34px;
  }

  .modal-form label {
    font-size: 18px;
  }

  .modal-form {
    gap: 12px;
    margin-top: 18px;
  }

  .modal-form input,
  .modal-form textarea {
    min-height: 58px;
    padding: 0 18px;
    font-size: 20px;
  }

  .modal-form textarea {
    min-height: 92px;
    padding-top: 16px;
  }

  .modal-consent {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .modal-form .modal-consent input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex: 0 0 20px;
    margin-top: 1px;
    padding: 0;
    border: 0;
  }

  .modal-consent span {
    display: block;
    min-width: 0;
  }

  .modal-submit {
    min-height: 62px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
  }

  .cookie-notice p {
    font-size: 13px;
    line-height: 1.42;
  }

  .cookie-notice button {
    width: 100%;
    min-height: 44px;
  }
}
