:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #18212b;
  --muted: #667281;
  --line: #dbe3ef;
  --primary: #2f6bff;
  --primary-dark: #1e45a8;
  --primary-soft: #eef4ff;
  --dark: #0f1724;
  --dark-soft: #1f2a3a;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --shadow-lg: 0 24px 56px rgba(15, 23, 36, 0.08);
  --shadow-md: 0 14px 28px rgba(15, 23, 36, 0.06);
  --shadow-sm: 0 6px 18px rgba(15, 23, 36, 0.05);
  --container: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Manrope",
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 107, 255, 0.08), transparent 28%),
    radial-gradient(circle at 100% 6%, rgba(15, 23, 36, 0.07), transparent 26%), var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.page {
  padding: 18px 0 56px;
  overflow: clip;
}

.section {
  margin-top: 22px;
  padding: 44px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow-md);
}

.section--dark {
  background: linear-gradient(150deg, rgba(17, 27, 42, 0.98), rgba(15, 23, 36, 0.98));
  color: #f3f7ff;
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .eyebrow,
.section--dark p,
.section--dark .section-sub,
.section--dark .meta,
.section--dark .faq-answer,
.section--dark .trust-card p {
  color: rgba(233, 240, 255, 0.8);
}

.section--dark .eyebrow {
  color: #d7e6ff;
  background: rgba(238, 244, 255, 0.12);
  border: 1px solid rgba(166, 190, 232, 0.4);
}

.section-head {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-weight: 600;
}

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

h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 780;
  overflow-wrap: anywhere;
}

h3 {
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 760;
  overflow-wrap: anywhere;
}

p,
li,
button,
input,
select,
textarea {
  font-size: 15px;
  line-height: 1.6;
}

.section-sub,
.meta {
  color: var(--muted);
}

.section-sub {
  max-width: 740px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  min-height: 45px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease);
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), #4b82ff);
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.33);
}

.btn--primary:hover {
  background: linear-gradient(140deg, #2a5fec, #4075f5);
}

.btn--secondary {
  color: var(--text);
  border-color: #b9c9e4;
  background: #fff;
}

.btn--secondary:hover {
  border-color: #8ca4d0;
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  color: #f3f7ff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(24, 33, 43, 0.1);
  box-shadow: var(--shadow-sm);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(24, 33, 43, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.header {
  position: sticky;
  top: 12px;
  z-index: 60;
  margin-bottom: 22px;
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(240px, 330px) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(219, 227, 239, 0.95);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 12px 30px rgba(15, 23, 36, 0.08);
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.brand__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex: 0 0 auto;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  font-size: 15px;
  font-weight: 760;
}

.brand__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.nav a {
  font-size: 14px;
  color: #49566a;
  transition: color 0.2s var(--ease);
}

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

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
  padding-left: 0;
  border-left: 0;
}

.btn--consult {
  color: #18325d;
  border-color: #b8cdef;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  box-shadow: 0 10px 20px rgba(30, 69, 168, 0.1);
}

.btn--consult:hover {
  border-color: #9bb4e4;
  background: linear-gradient(180deg, #ffffff 0%, #e8f1ff 100%);
  box-shadow: 0 14px 24px rgba(30, 69, 168, 0.14);
}

.header-contact {
  display: grid;
  justify-items: end;
  text-align: right;
  gap: 1px;
  min-width: 210px;
  padding: 2px 0;
  border: 0;
  background: transparent;
}

.header-contact__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #71839d;
  font-weight: 700;
}

.header-contact a {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
  color: #1d345d;
  white-space: nowrap;
}

.header-contact a:hover {
  color: var(--primary-dark);
}

.hero {
  margin-top: 0;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
  align-items: start;
}

.hero h1 {
  font-size: clamp(30px, 2.85vw, 45px);
  line-height: 1.06;
}

.hero h1 .hero-title-break {
  display: none;
}

.hero h1 .accent {
  color: var(--primary);
}

.production__content h2 .accent {
  color: var(--primary);
}

.hero__photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 4.3;
  min-height: clamp(190px, 20vw, 300px);
  background: #d9e2f7;
}

.hero__photo picture {
  position: absolute;
  inset: 0;
}

.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.hero__content {
  padding: 4px 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero__lead {
  margin-top: 10px;
  max-width: 640px;
  font-size: 15px;
  color: #506073;
  line-height: 1.45;
}

.hero__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__chips .pill {
  font-size: 11px;
  border-color: #d9e4fa;
  color: #37507a;
  background: #f7faff;
  padding: 6px 10px;
}

.hero__quick {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(210px, 1fr);
  gap: 10px;
}

.hero-quick-card {
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.hero-quick-card h3 {
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-quick-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.38;
}

.hero-quick-card--cta {
  min-height: 343px;
  color: #f2f7ff;
  background: linear-gradient(145deg, #1a64ef 0%, #2f80ff 100%);
}

.hero-quick-card--cta p {
  color: rgba(236, 244, 255, 0.94);
}

.hero-quick-card--cta .btn {
  align-self: flex-start;
  margin-top: 14px;
}

.hero-quick-card--stat {
  min-height: 84px;
  padding: 10px 18px;
  color: #f3f8ff;
  background: linear-gradient(145deg, #4a9aff 0%, #62a8ff 100%);
}

.hero-quick-card--stat h3 {
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 0.95;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.hero-quick-card--stat p {
  margin-top: 6px;
  color: rgba(235, 244, 255, 0.93);
}

.hero-stack {
  display: grid;
  gap: 12px;
}

.hero-mini-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #d9e5fb;
  background: #f8fbff;
}

.hero-mini-card strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-mini-card p {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.35;
  color: #f0f6ff;
}

.hero-mini-card--quality strong,
.hero-mini-card--years strong {
  font-size: 26px;
  color: #1a273a;
  letter-spacing: -0.02em;
}

.hero-mini-card--quality p,
.hero-mini-card--years p {
  display: block;
  margin-top: 4px;
  color: #5d6f88;
  font-size: 14px;
  line-height: 1.35;
}

.hero-mini-card--quality {
  min-height: 68px;
  background: #f8fbff;
}

.hero-mini-card--years {
  min-height: 64px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.hero-link-btn .btn {
  width: 100%;
  min-height: 45px;
}

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

.scenario-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.scenario-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.26 / 1;
}

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

.scenario-card__body {
  display: grid;
  gap: 10px;
  flex: 1;
}

.scenario-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.scenario-card p {
  color: var(--muted);
  line-height: 1.45;
  min-height: 4.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.scenario-card .btn {
  width: 100%;
  margin-top: auto;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
}

.production {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.production-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.production__content {
  display: flex;
  flex-direction: column;
}

.production__lead {
  margin-top: 14px;
  max-width: 560px;
}

.production-list {
  padding: 0;
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.production-list li {
  list-style: none;
  margin: 0;
  padding: 13px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
  border: 1px solid #d6e3fd;
  color: #2e4a76;
  font-weight: 650;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 10px;
}

.production-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 8px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.14);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(4, 190px);
  gap: 12px;
}

.production-grid figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow-sm);
}

.production-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.production-grid figure:hover img {
  transform: scale(1.03);
}

.production-grid .p1 {
  grid-column: 1;
  grid-row: 1 / 3;
}
.production-grid .p2 {
  grid-column: 2;
  grid-row: 1 / 2;
}
.production-grid .p3 {
  grid-column: 3;
  grid-row: 1 / 3;
}
.production-grid .p4 {
  grid-column: 1;
  grid-row: 3 / 5;
}
.production-grid .p5 {
  grid-column: 2;
  grid-row: 2 / 5;
}
.production-grid .p6 {
  grid-column: 3;
  grid-row: 3 / 5;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.choice-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.24s var(--ease),
    box-shadow 0.24s var(--ease),
    border-color 0.24s var(--ease);
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.choice-card--pvc {
  border-color: #cedeff;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.choice-card--alu {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.choice-card--balcony {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.choice-card img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.choice-card__body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.choice-card__tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #2d4f8f;
  background: #edf4ff;
}

.choice-card h3 {
  font-size: clamp(20px, 1.9vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.choice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: #204da8;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 760;
}

.choice-card__more::after {
  content: "→";
  font-size: 15px;
  transform: translateX(0);
  transition: transform 0.2s var(--ease);
}

.choice-card:hover .choice-card__more::after {
  transform: translateX(3px);
}

.compare {
  position: relative;
  overflow: hidden;
}

.compare-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  align-items: stretch;
}

.compare-type {
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.17);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.compare-type img {
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.compare-type__body {
  display: grid;
  gap: 8px;
  padding: 0 4px 2px;
}

.compare-type__body h3 {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.compare-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 2px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #d7e6ff;
  background: rgba(47, 107, 255, 0.24);
  border: 1px solid rgba(123, 160, 238, 0.45);
  font-weight: 700;
}

.compare-table {
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.compare-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
}

.compare-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.022);
}

.compare-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

.compare-row > div {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.45;
}

.compare-row > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-row > div:first-child {
  color: #edf3ff;
  font-weight: 650;
}

.compare-row--head {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.compare-row--head > div:nth-child(2),
.compare-row--head > div:nth-child(3) {
  color: #d7e7ff;
}

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

.trust-wrap {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.trust-photo {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(24, 33, 43, 0.1);
  box-shadow: var(--shadow-sm);
}

.trust-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.trust-photo:hover img {
  transform: scale(1.02);
}

.trust-photo__meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 36, 0.68);
  backdrop-filter: blur(6px);
  color: #e7f0ff;
}

.trust-photo__meta strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.trust-photo__meta span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(226, 236, 255, 0.86);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.trust-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #d9e5f4;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.trust-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf4ff;
  color: #2f4f89;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 760;
}

.trust-card h3 {
  font-size: clamp(23px, 1.55vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-card--lg {
  grid-column: span 1;
}

.trust-card--sm {
  grid-column: span 1;
}

.trust-card--md {
  grid-column: span 1;
}

.cases-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 640px);
  gap: 18px 20px;
  align-items: end;
}

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

.filters {
  display: flex;
  width: 100%;
  gap: 7px;
  padding: 8px;
  border-radius: 20px;
  background: #edf2fb;
  border: 1px solid #d6e0f2;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: #495a74;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.filter-btn:hover {
  background: #f7faff;
  color: #24354e;
}

.filter-btn.is-active {
  background: #fff;
  color: var(--text);
  border-color: #d2deef;
  box-shadow: 0 6px 14px rgba(15, 23, 36, 0.08);
}

.cases-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.case-card {
  grid-column: span 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.24s var(--ease),
    box-shadow 0.24s var(--ease),
    border-color 0.24s var(--ease);
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.case-card--wide {
  grid-column: span 1;
  border-color: #cfe0ff;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.case-card--medium {
  grid-column: span 1;
}

.case-media {
  height: clamp(220px, 22vw, 320px);
  overflow: hidden;
  background: #e9f0fb;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.case-card:hover .case-media img {
  transform: scale(1.03);
}

.case-body {
  padding: 17px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf4ff;
  color: #2f4f8a;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 760;
}

.case-body h3 {
  font-size: clamp(21px, 1.45vw, 24px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.case-card--wide .case-body h3 {
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.08;
}

.case-meta {
  margin-top: 0;
  display: grid;
  gap: 7px;
  color: #5c6d82;
  font-size: 14px;
  line-height: 1.46;
}

.case-meta strong {
  color: #30435f;
  font-weight: 760;
}

.cases-more {
  margin-top: 20px;
}

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

.process-live figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}

.process-live img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scope-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.scope-main {
  padding: 34px 32px 30px;
  border-radius: 30px;
  border: 1px solid #d3e2fa;
  background: #f7fbff;
  display: flex;
  flex-direction: column;
}

.scope-main h3 {
  font-size: clamp(30px, 2.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.scope-main p {
  margin-top: 18px;
  color: #627793;
  font-size: 17px;
  line-height: 1.42;
}

.scope-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.scope-points li {
  list-style: none;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #d0dff8;
  color: #3f5878;
  font-size: 18px;
  line-height: 1.26;
  letter-spacing: -0.01em;
}

.scope-points li::before {
  content: none;
}

.scope-main .btn {
  margin-top: 24px;
  align-self: flex-start;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(47, 107, 255, 0.3);
}

.scope-photo {
  margin: 0;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 100%;
  border: 1px solid rgba(24, 33, 43, 0.1);
}

.scope-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-photo-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20, 32, 50, 0.67);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f2f7ff;
  font-size: 16px;
  line-height: 1.3;
}

.scope-badges {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.scope-badge {
  padding: 20px 20px 18px;
  border-radius: 20px;
  border: 1px solid #d0e0fa;
  background: #f7fbff;
}

.scope-badge strong {
  display: block;
  font-size: clamp(20px, 1.52vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.scope-badge span {
  display: block;
  margin-top: 10px;
  color: #5d748f;
  font-size: 15px;
  line-height: 1.4;
}

.anti {
  position: relative;
  overflow: hidden;
}

.anti:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 23, 36, 0.86), rgba(15, 23, 36, 0.7)),
    url("../production/DSC09923_resized.jpg") center/cover no-repeat;
  z-index: 0;
}

.anti__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 20px;
}

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

.anti-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7ff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.anti-copy h2 {
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.anti-copy .section-sub {
  max-width: 640px;
}

.anti-copy h2,
.anti-copy p {
  color: #f3f8ff;
}

.anti-copy p {
  margin-top: 14px;
  color: rgba(234, 241, 255, 0.85);
}

.anti-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.anti-risks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.anti-risk {
  padding: 19px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 24px rgba(15, 23, 36, 0.14);
}

.anti-risk h3 {
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #1b2a3e;
}

.anti-risk p {
  margin-top: 9px;
  color: #4e6079;
  line-height: 1.45;
}

.steps-wrap {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.step-photos {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.step-photos figure {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.1);
  box-shadow: var(--shadow-sm);
}

.step-photos figure:first-child {
  grid-column: span 2;
}

.step-photos img {
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.step-photo-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 36, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #e7f0ff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.steps {
  display: grid;
  gap: 10px;
  position: relative;
}

.steps:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: #d5e2f9;
}

.step-item {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  padding: 14px 16px 14px 11px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d6e4fb;
  box-shadow: 0 8px 18px rgba(15, 23, 36, 0.05);
}

.step-num {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #2f6bff, #3d79ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(47, 107, 255, 0.32);
}

.step-item h3 {
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.step-item p {
  margin-top: 5px;
  color: #4f6077;
  line-height: 1.45;
}

#process .section-head {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

#solutions {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#selection {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#trust {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#included {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#included .section-head {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px 22px;
  align-items: end;
}

#included h2 {
  font-size: clamp(40px, 3vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

#included .section-sub {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.46;
}

#process {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#faq {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.cta-wrap {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
}

#cta .section-head {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.form-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid #d4e3fd;
  box-shadow: 0 16px 30px rgba(15, 23, 36, 0.06);
}

.form-card h3 {
  font-size: clamp(44px, 3vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

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

.form-stack {
  margin-top: 18px;
  display: grid;
  gap: 11px;
}

.field {
  width: 100%;
  min-height: 59px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #c8d8f2;
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 17px;
}

select.field {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6a7f9d 50%),
    linear-gradient(135deg, #6a7f9d 50%, transparent 50%);
  background-position:
    calc(100% - 21px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field:focus {
  border-color: #94b2f1;
  box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.12);
}

.field.is-invalid {
  border-color: #d64354;
  box-shadow: 0 0 0 3px rgba(214, 67, 84, 0.14);
}

.form-error {
  display: none;
  margin-top: -2px;
  color: #be3041;
  font-size: 13px;
  line-height: 1.35;
}

.form-error.is-visible {
  display: block;
}

.form-submit {
  width: 100%;
}

.form-disclaimer {
  margin-top: 8px;
  color: #708198;
  font-size: 12px;
  line-height: 1.35;
}

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

.form-proof {
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid #d9e6fb;
  background: #fff;
  color: #415876;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.value-card,
.b2b-card {
  padding: 24px;
}

.value-card {
  border-color: #d8e5f8;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.value-card h3 {
  font-size: clamp(32px, 2.3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.value-list {
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.value-list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: #4f6078;
  font-size: 16px;
  line-height: 1.42;
}

.value-list li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.13);
}

.b2b-card {
  background: linear-gradient(155deg, #0f1724, #111f34);
  border-color: rgba(255, 255, 255, 0.14);
}

.b2b-card h3,
.b2b-card p {
  color: #edf4ff;
}

.b2b-card h3 {
  font-size: clamp(34px, 2.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.b2b-card p {
  color: rgba(237, 244, 255, 0.8);
  margin-top: 10px;
}

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

.b2b-actions .btn {
  min-width: 168px;
}

.b2b-actions .btn--secondary {
  background: #fff;
}

.manager {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.manager img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cta-b2b {
  grid-column: 1;
}

.cta-form {
  grid-column: 2;
}

.cta-benefits {
  grid-column: 1 / -1;
}

.faq-wrap {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid #d4e1f5;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: hidden;
  transition:
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease);
}

.faq-item:hover {
  border-color: #c7d8f3;
  box-shadow: 0 8px 18px rgba(15, 23, 36, 0.05);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 19px 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.faq-question span:first-child {
  font-size: clamp(19px, 1.2vw, 22px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #edf3ff;
  color: #2d58b2;
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 auto;
  border: 1px solid #d8e4f8;
  transition:
    transform 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #5a6c83;
  font-size: 17px;
  line-height: 1.45;
  transition:
    max-height 0.28s var(--ease),
    opacity 0.2s var(--ease),
    padding 0.2s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 520px;
  opacity: 1;
  padding: 0 22px 20px;
}

.faq-item.is-open {
  border-color: #bfd3f7;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 36, 0.06);
}

.faq-item.is-open .faq-question {
  padding-bottom: 12px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.faq-cta {
  margin-top: 16px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid #d7e4f8;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq-cta p {
  color: #51647d;
}

.faq-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  margin-top: 22px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: #0f1724;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer h2,
.footer h3,
.footer p,
.footer a {
  color: #edf4ff;
}

.footer h2 {
  font-size: clamp(38px, 3vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.footer p,
.footer a {
  color: rgba(237, 244, 255, 0.78);
}

.footer h3 {
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.footer-links {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(237, 244, 255, 0.6);
  font-size: 13px;
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(219, 227, 239, 0.95);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(15, 23, 36, 0.16);
}

.mobile-bar .btn {
  flex: 1;
  min-height: 44px;
  padding: 12px;
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(7, 13, 24, 0.62);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__dialog {
  width: min(980px, calc(100% - 12px));
  max-height: calc(100vh - 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 33, 43, 0.1);
  box-shadow: 0 26px 52px rgba(4, 10, 22, 0.25);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.26s var(--ease);
  position: relative;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #d4e0f5;
  border-radius: 50%;
  background: #fff;
  color: #2d456d;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.lead-modal__close:hover {
  background: #f2f6ff;
  border-color: #c1d4f5;
  color: #173d8f;
}

.lead-modal__form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.lead-modal__title {
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead-modal__text {
  margin-top: 8px;
  color: #5b6e86;
  max-width: 92%;
}

.lead-modal__stack {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.lead-modal__stack .field {
  min-height: 52px;
  padding: 13px 16px;
  font-size: 16px;
}

.lead-modal__stack textarea.field {
  min-height: 92px;
  resize: vertical;
}

.lead-modal__stack .field.is-invalid {
  border-color: #e16363;
  box-shadow: 0 0 0 3px rgba(225, 99, 99, 0.16);
}

.lead-modal__error {
  display: none;
  color: #c33d3d;
  font-size: 12px;
  line-height: 1.35;
}

.lead-modal__error.is-visible {
  display: block;
}

.lead-modal__submit {
  width: 100%;
}

.lead-modal__note {
  margin-top: 6px;
  color: #74859d;
  font-size: 12px;
  line-height: 1.35;
}

.lead-modal__visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
}

.lead-modal__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.lead-modal__caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 36, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #eaf2ff;
}

.lead-modal__caption strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.lead-modal__caption span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(230, 239, 255, 0.9);
}

.hide {
  display: none !important;
}

@media (min-width: 1261px) {
  .hero h1 .hero-title-break {
    display: block;
  }
}

@media (max-width: 1440px) {
  .header__inner {
    grid-template-columns: minmax(220px, 290px) 1fr auto;
    gap: 10px;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 13px;
  }

  .header-contact {
    min-width: 190px;
  }

  .header-contact__label {
    display: none;
  }

  .header-contact a {
    font-size: 12px;
  }
}

@media (max-height: 900px) and (min-width: 1000px) {
  .header {
    margin-bottom: 14px;
  }

  .header__inner {
    padding: 10px 14px;
  }

  .hero h1 {
    font-size: clamp(30px, 3vw, 44px);
  }

  .hero__lead {
    margin-top: 8px;
    font-size: 14px;
  }

  .hero__photo {
    min-height: clamp(165px, 18vw, 240px);
  }

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

  .hero-quick-card {
    min-height: 154px;
  }
}

@media (max-width: 1260px) {
  .hero,
  .section-head,
  .production,
  .trust-wrap,
  .steps-wrap,
  .cta-wrap,
  .anti__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .scenario-card {
    min-height: 100%;
  }

  .production {
    gap: 22px;
  }

  .production-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .production-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 220px 220px 220px;
  }

  .production-grid .p1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .production-grid .p2 {
    grid-column: 2;
    grid-row: 1 / 2;
  }
  .production-grid .p3 {
    grid-column: 2;
    grid-row: 2 / 3;
  }
  .production-grid .p4 {
    grid-column: 1;
    grid-row: 3 / 4;
  }
  .production-grid .p5 {
    grid-column: 2;
    grid-row: 3 / 4;
  }
  .production-grid .p6 {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }

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

  .trust-card--lg,
  .trust-card--sm,
  .trust-card--md {
    grid-column: span 1;
  }

  .choice-grid,
  .process-live,
  .anti-risks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scope-wrap {
    grid-template-columns: 1fr;
  }

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

  .cases-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #included .section-head {
    grid-template-columns: 1fr;
  }

  .filters {
    width: 100%;
  }

  .case-card,
  .case-card--wide,
  .case-card--medium {
    grid-column: span 1;
  }

  .case-media {
    height: clamp(220px, 28vw, 300px);
  }

  .lead-modal__dialog {
    grid-template-columns: 1fr;
    max-width: 640px;
    max-height: min(92vh, 760px);
  }

  .lead-modal__visual {
    min-height: 240px;
    order: -1;
  }

  .lead-modal__form {
    padding: 24px;
    justify-content: flex-start;
  }

  .cta-b2b,
  .cta-form,
  .cta-benefits {
    grid-column: 1;
  }

  .anti-copy h2 {
    font-size: clamp(34px, 5.2vw, 48px);
  }

  #cta .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #process .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .header__inner {
    grid-template-columns: minmax(230px, 1fr) auto;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 860px) {
  .header {
    position: static !important;
    top: auto;
    margin-bottom: 16px;
  }

  .header__inner {
    position: static;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .section,
  .form-card,
  .value-card,
  .b2b-card,
  .footer {
    padding: 24px;
  }

  .hero {
    padding: 12px;
    gap: 12px;
  }

  .hero__photo {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 22px;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__content {
    padding: 0;
  }

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

  .hero-quick-card {
    min-height: auto;
  }

  .hero-quick-card h3 {
    font-size: clamp(24px, 6.4vw, 32px);
  }

  .hero-quick-card--stat h3 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .brand {
    align-items: center;
    gap: 10px;
  }

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

  .header__actions {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    border-left: 0;
    padding-left: 0;
  }

  .header__actions .btn--consult {
    display: none;
  }

  .header-contact {
    min-width: 0;
    width: auto;
    justify-items: end;
    text-align: right;
  }

  .header-contact a {
    font-size: clamp(11px, 3.6vw, 13px);
    line-height: 1.15;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero h1 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(24px, 6.4vw, 32px);
  }

  #included h2 {
    font-size: clamp(32px, 7vw, 44px);
    line-height: 1.1;
  }

  #included .section-sub {
    font-size: 15px;
  }

  h3 {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .form-card h3 {
    font-size: clamp(34px, 8vw, 42px);
    line-height: 1.04;
  }

  .b2b-card h3,
  .value-card h3 {
    font-size: clamp(30px, 7vw, 38px);
    line-height: 1.06;
  }

  .value-list {
    display: grid;
    gap: 10px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .scenarios,
  .choice-grid,
  .cases-grid,
  .process-live,
  .scope-badges,
  .anti-risks,
  .step-photos,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .production-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .production-grid .p1,
  .production-grid .p2,
  .production-grid .p3,
  .production-grid .p4,
  .production-grid .p5,
  .production-grid .p6 {
    grid-column: 1;
    grid-row: auto;
    min-height: 190px;
  }

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

  .footer h3 {
    font-size: clamp(21px, 5.4vw, 26px);
  }

  .footer-links a {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.2;
  }

  .case-media {
    height: clamp(200px, 52vw, 280px);
  }

  .hero__chips {
    gap: 8px;
  }

  .hero__chips .pill {
    width: 100%;
    justify-content: center;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal__dialog {
    width: min(100%, calc(100% - 4px));
    border-radius: 22px;
    max-height: min(94vh, 760px);
  }

  .lead-modal__visual {
    min-height: 200px;
  }

  .lead-modal__form {
    padding: 18px;
  }

  .lead-modal__title {
    font-size: clamp(27px, 7.4vw, 36px);
  }

  .lead-modal__text {
    max-width: 100%;
  }

  .lead-modal__close {
    top: 8px;
    right: 8px;
  }

  .form-proofs {
    grid-template-columns: 1fr;
  }

  .b2b-actions .btn {
    width: 100%;
  }

  .steps:before {
    display: none;
  }

  .anti-copy h2 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.06;
  }

  .anti-risk h3 {
    font-size: clamp(21px, 6.4vw, 27px);
  }

  .filter-btn {
    text-align: center;
  }

  .faq-question {
    padding: 16px 16px;
  }

  .faq-question span:first-child {
    font-size: clamp(17px, 5.2vw, 20px);
    line-height: 1.2;
  }

  .faq-answer {
    font-size: 15px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .faq-item.is-open .faq-icon {
    transform: rotate(45deg);
  }

  .faq-cta {
    align-items: start;
    flex-direction: column;
    padding: 16px;
  }

  .faq-cta-actions {
    width: 100%;
  }

  .faq-cta-actions .btn {
    width: 100%;
  }

  .compare-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .compare-type__body h3 {
    font-size: 34px;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row--head {
    display: none;
  }

  .compare-row > div {
    border-right: 0 !important;
  }

  .compare-row > div:first-child {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.07);
    border-bottom: 0;
    font-size: 15px;
  }

  .compare-row > div[data-col] {
    display: grid;
    gap: 4px;
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  .compare-row > div[data-col]::before {
    content: attr(data-col);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #bcd4ff;
    font-weight: 700;
  }

  .compare-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .trust-photo__meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 10px;
  }

  .trust-card h3 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.14;
  }

  .brand__desc {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

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

  .hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .production-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "top"
      "mid"
      "left"
      "right";
  }

  .production-grid .main {
    min-height: 220px;
  }

  .production-grid .small {
    min-height: 170px;
  }
}
