:root {
  --bg: #07090b;
  --bg-2: #0d1014;
  --panel: rgba(24, 27, 32, 0.78);
  --panel-solid: #15181d;
  --panel-soft: #1c2026;
  --text: #f8f8f6;
  --muted: #a7adb7;
  --muted-2: #7c828c;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --gold: #edc27d;
  --gold-2: #d5a159;
  --black: #07090b;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 22px 72px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #050607; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(237, 194, 125, 0.1), transparent 28%),
    linear-gradient(180deg, #0b0d10 0%, #050607 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
body.modal-open { overflow: hidden; }
main { background: #050607; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.container { width: min(1320px, calc(100% - 128px)); margin: 0 auto; }
.section { padding: 116px 0; background: linear-gradient(180deg, #080a0d, #050607); }
.eyebrow, .form-kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, p, a, button { overflow-wrap: break-word; }
h1 {
  margin-bottom: 26px;
  max-width: 860px;
  font-size: clamp(42px, 5.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h1 span { display: block; color: var(--gold); }
h2 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h3 { margin-bottom: 16px; font-size: 24px; line-height: 1.16; letter-spacing: -0.01em; }
p { color: var(--muted); font-size: 18px; }
.section-head { max-width: 880px; margin-bottom: 58px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid rgba(237, 194, 125, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, #f4ce8b, #d8a556);
  color: #0d0f12;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 18px 42px rgba(213, 161, 89, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.5); }
.btn:disabled,
.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn-light {
  background: linear-gradient(180deg, #ffffff, #dfe3ea);
  color: #11151a;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-full { width: 100%; }

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 50;
  width: min(1320px, calc(100% - 128px));
  min-height: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 12px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 11, 14, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}
.logo { display: inline-flex; align-items: center; gap: 11px; min-width: 184px; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f0c681, #a77b3f);
  color: #101216;
  font-weight: 900;
}
.logo strong, .logo small { display: block; }
.logo small { color: var(--muted); font-size: 12px; }
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; color: #dfe2e7; font-size: 14px; }
.nav a:hover, .phone:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone { white-space: nowrap; font-weight: 900; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); }

.hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  padding-bottom: 110px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.9), rgba(7, 9, 11, 0.78) 44%, rgba(7, 9, 11, 0.26)),
    linear-gradient(0deg, rgba(7, 9, 11, 0.95), transparent 40%);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) brightness(0.78); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 72px 0 0;
}
.location-pill,
.trust-row span,
.location-row span,
.project-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8dce4;
  backdrop-filter: blur(12px);
}
.location-pill { margin-bottom: 42px; font-size: 16px; }
.hero-copy {
  min-height: auto;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 146px 0 118px;
}
.hero-subtitle { max-width: 600px; margin-bottom: 28px; color: #b7bdc7; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-metrics { display: flex; gap: 40px; }
.hero-metrics strong { display: block; color: var(--gold); font-size: 32px; line-height: 1; }
.hero-metrics span { color: var(--muted); font-size: 15px; }

.hero-form {
  width: min(760px, 100%);
  margin-top: 24px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 35px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(28, 32, 38, 0.9), rgba(11, 13, 16, 0.88));
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.form-head strong { display: block; margin-bottom: 11px; font-size: 30px; line-height: 1.08; letter-spacing: -0.02em; }
.form-head span, .form-note { color: var(--muted); font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 8px; color: #c4c9d2; font-size: 15px; font-weight: 800; }
.lead-form input, .lead-form select, .inline-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}
.lead-form select option { color: #111; }
.lead-form input:focus, .lead-form select:focus, .inline-form input:focus { border-color: rgba(237, 194, 125, 0.72); }
.form-note { margin: -4px 0 0; }
.form-success { display: none; margin: 0; color: var(--gold); font-weight: 900; }
.form-success.active { display: block; }

.trust-strip { padding: 56px 0 24px; background: linear-gradient(180deg, #060708, #0a0c0f); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid article {
  min-height: 176px;
  padding: 34px;
  border-right: 1px solid var(--line);
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid span { display: block; width: 34px; height: 1px; margin-bottom: 18px; background: var(--line-strong); }
.trust-grid p { margin-bottom: 14px; color: var(--muted); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }
.trust-grid strong { display: block; max-width: 344px; font-size: 20px; line-height: 1.28; }
.location-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
}
.location-row strong { margin-right: 22px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card,
.review,
.guarantee-grid article,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(29, 33, 39, 0.9), rgba(15, 18, 22, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.benefit-card {
  min-height: 240px;
  padding: 30px;
}
.benefit-card span { display: block; margin-bottom: 34px; color: rgba(237, 194, 125, 0.22); font-size: 58px; font-weight: 900; line-height: 1; }
.benefit-card p { margin-bottom: 0; }

.process-section { padding-bottom: 0; }
.process-grid { display: grid; grid-template-columns: 1fr; }
.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 576px;
  border-top: 1px solid var(--line);
}
.process-item img { width: 100%; height: 100%; min-height: 576px; object-fit: cover; filter: brightness(0.88) saturate(0.92); }
.process-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px min(8vw, 136px);
  background: radial-gradient(circle at 30% 20%, rgba(237, 194, 125, 0.07), transparent 28%), #080a0d;
}
.process-reverse img { order: 2; }
.process-item span { color: rgba(237, 194, 125, 0.18); font-size: 90px; font-weight: 900; line-height: 1; }
.process-item h3 { margin-top: 18px; font-size: clamp(29px, 3.2vw, 46px); }
.process-item p { max-width: 528px; }

.technology { padding-top: 110px; }
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.9fr); gap: 78px; align-items: center; }
.split-content { min-width: 0; max-width: 680px; }
.split-content > p:not(.eyebrow) { max-width: 620px; }
.split-media {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}
.split-media img { width: 100%; aspect-ratio: 1.45; max-height: 420px; object-fit: cover; border-radius: 20px; filter: brightness(0.78); }
.factor-list { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid var(--line); }
.factor-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.factor-list strong { grid-column: 2; color: var(--text); font-size: 20px; }
.factor-list div::before {
  content: "0" counter(factor);
  counter-increment: factor;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(237, 194, 125, 0.12);
  color: var(--gold);
  font-size: 19px;
  font-weight: 900;
}
.factor-list { counter-reset: factor; }
.factor-list span {
  grid-column: 2;
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
.project-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}
.project-large { grid-column: span 2; }
.project-card img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.72) saturate(0.92); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.86)); }
.project-card:hover img { transform: scale(1.04); }
.project-card div { position: absolute; z-index: 1; left: 27px; right: 27px; bottom: 27px; }
.project-card span { margin-bottom: 14px; font-size: 13px; }
.project-card p { max-width: 416px; }
.project-card button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 10px 14px;
  font-weight: 900;
}

.calculator-section { background: linear-gradient(90deg, #050607, #111418); }
.calc-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 64px; align-items: center; }
.big-phone { display: inline-block; margin: 16px 0 22px; color: var(--text); font-size: 32px; font-weight: 900; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: var(--muted); font-size: 16px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.calc-result {
  padding: 18px;
  border: 1px solid rgba(237, 194, 125, 0.28);
  border-radius: 13px;
  background: rgba(237, 194, 125, 0.1);
  color: var(--gold);
  font-size: 19px;
  font-weight: 900;
}

.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 21px; }
.review { min-height: 336px; padding: 30px; }
.review > span { display: block; color: rgba(237, 194, 125, 0.55); font-size: 61px; line-height: 0.7; }
.review p { min-height: 152px; color: #d3d7de; }
.review strong, .review em { display: block; }
.review strong { font-size: 18px; }
.review em { margin-top: 4px; color: var(--muted-2); font-style: normal; }

.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.guarantee-grid article { min-height: 288px; border: 0; border-right: 1px solid var(--line); border-radius: 0; padding: 34px; background: rgba(255, 255, 255, 0.025); }
.guarantee-grid article:last-child { border-right: 0; }
.guarantee-grid span { color: var(--gold); font-weight: 900; }

.faq-wrap { max-width: 960px; }
.faq-list { display: grid; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
details { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
details:last-child { border-bottom: 0; }
summary {
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 32px;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}
summary::after { content: "⌄"; color: var(--gold); font-size: 21px; }
details[open] summary::after { content: "⌃"; }
details p { margin: 0; padding: 0 32px 30px; }

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 576px;
  display: flex;
  align-items: center;
  background: #050607;
}
.final-bg { position: absolute; inset: 0; }
.final-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.74)); }
.final-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.52) saturate(0.9); }
.final-content { position: relative; z-index: 1; max-width: 800px; margin-left: max(64px, calc((100vw - 1320px) / 2)); }
.inline-form { display: grid; grid-template-columns: minmax(220px, 368px) auto; gap: 13px; margin-top: 30px; }
.inline-form .form-success { grid-column: 1 / -1; }

.footer { padding: 62px 0 120px; background: linear-gradient(180deg, #080a0d, #050607); border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 45px; }
.footer strong, .footer a { color: var(--text); font-weight: 900; }
.footer span { display: block; color: var(--muted); margin-bottom: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; }
.footer a { display: block; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 13px; margin-top: 62px; padding-top: 27px; border-top: 1px solid var(--line); }
.footer-logo { margin-bottom: 19px; }

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: none;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(237, 194, 125, 0.52);
  border-radius: 999px;
  background: linear-gradient(180deg, #f4ce8b, #d8a556);
  color: #11151a;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.sticky-cta.visible { display: inline-flex; align-items: center; }
.messengers { position: fixed; left: 22px; bottom: 22px; z-index: 40; display: grid; gap: 10px; }
.messengers a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 21, 26, 0.8);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(10px); }
.modal-dialog { position: relative; width: min(448px, 100%); }
.modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #171b20;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.reveal { opacity: 1; transform: none; }
.reveal.reveal-ready { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.reveal-ready.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .site-header { top: 14px; width: calc(100% - 64px); }
  .nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(12, 14, 18, 0.96);
  }
  .site-header.menu-open .nav a { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .site-header.menu-open .nav a:last-child { border-bottom: 0; }
  .hero-grid, .calc-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { align-items: start; }
  .split-content { max-width: 760px; }
  .split-media { max-width: 760px; }
  .benefits-grid, .portfolio-grid, .reviews-grid, .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .project-large { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    margin-left: 16px;
    margin-right: 16px;
  }
  .section { padding: 68px 0; }
  h1,
  h2,
  h3,
  .hero-subtitle,
  .location-pill,
  .hero-metrics span {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  h1 { font-size: clamp(29px, 7.6vw, 33px); line-height: 1.06; letter-spacing: 0; }
  h2 { font-size: 32px; line-height: 1.08; letter-spacing: 0; }
  h3 { font-size: 21px; }
  p { font-size: 16px; }
  .site-header {
    left: 16px;
    right: 16px;
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    min-height: 58px;
    padding: 8px 9px;
    transform: none;
  }
  .logo { min-width: 0; max-width: calc(100% - 62px); }
  .logo strong { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .logo small { display: none; }
  .hero { width: 100%; max-width: 100vw; min-height: auto; padding-bottom: 68px; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(7,9,11,.88), rgba(7,9,11,.78)); }
  .hero-grid {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    gap: 27px;
    padding: 88px 0 0;
  }
  .hero-copy {
    min-height: auto;
    padding: 24px 0 54px;
  }
  .hero-form { width: 100%; }
  .hero-copy,
  .hero-form,
  .hero-grid,
  .lead-form,
  .form-row,
  .lead-form label,
  .hero-actions,
  .hero-actions .btn,
  .hero-subtitle,
  .hero-metrics,
  .hero-metrics div,
  .hero h1 {
    min-width: 0;
    max-width: 100%;
  }
  .hero h1 { width: 100%; }
  .location-pill {
    width: 100%;
    margin-bottom: 26px;
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }
  .hero-subtitle { font-size: 16px; }
  .hero-actions, .inline-form { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; min-height: 50px; padding: 0 16px; font-size: 15px; text-align: center; }
  .hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: 100%; }
  .hero-metrics div { min-width: 0; }
  .hero-metrics strong { font-size: 22px; overflow-wrap: anywhere; }
  .hero-metrics span { font-size: 11px; line-height: 1.2; }
  .lead-form { padding: 20px; border-radius: 18px; }
  .form-head strong { font-size: 24px; letter-spacing: 0; }
  .form-head span,
  .form-note { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form input,
  .lead-form select,
  .inline-form input {
    min-width: 0;
    padding: 0 18px;
  }
  .trust-strip { padding: 34px 0 16px; }
  .trust-grid article { min-height: auto; padding: 22px 0; }
  .location-row span { font-size: 14px; }
  .benefits-grid, .portfolio-grid, .reviews-grid, .guarantee-grid { grid-template-columns: 1fr; }
  .benefit-card, .review, .guarantee-grid article { min-height: auto; padding: 22px; }
  .benefit-card span { margin-bottom: 20px; font-size: 42px; }
  .process-item, .process-item.process-reverse { grid-template-columns: 1fr; min-height: auto; }
  .process-reverse img { order: 0; }
  .process-item img { min-height: 260px; }
  .process-item div { padding: 36px 22px; }
  .process-item span { font-size: 58px; }
  .technology { padding-top: 68px; }
  .split-content { max-width: 100%; }
  .split-media { max-width: 100%; padding: 16px; border-radius: 20px; }
  .split-media img { border-radius: 14px; }
  .factor-list div { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; }
  .factor-list strong { font-size: 18px; }
  .factor-list span { font-size: 15px; }
  .project-card, .project-card img { min-height: 416px; }
  .project-card div { left: 22px; right: 22px; bottom: 22px; }
  .big-phone { font-size: 25px; }
  .review p { min-height: auto; }
  .guarantee-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .guarantee-grid article:last-child { border-bottom: 0; }
  summary { min-height: 66px; padding: 0 20px; font-size: 17px; }
  details p { padding: 0 20px 22px; }
  .final-cta { min-height: 448px; }
  .final-content {
    margin: 0 16px;
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: stretch; }
  .sticky-cta { left: 86px; right: 12px; justify-content: center; }
  .messengers { left: auto; right: 12px; bottom: 16px; }
  .modal-close { right: 4px; top: 4px; }
}
