/* ===== Ленвендо · Техподдержка *nix-инфраструктуры — лендинг под DM =====
   Стиль и токены — с support.lenvendo.ru (шрифт Raleway, красный #D72229,
   пилюльные кнопки, карточки с тенью на светлом фоне). */

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/Raleway-Medium.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/Raleway-SemiBold.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/Raleway-Bold.woff') format('woff');
  font-display: swap;
}

:root {
  --red: #d72229;
  --red-dark: #bc262c;
  --ink: #0e0f11;
  --ink-soft: #4a4d54;
  --grey-100: #ecedf2;
  --grey-050: #f8f9fb;
  --white: #ffffff;
  --orange: #fc8d3d;
  --radius-lg: 20px;
  --radius-md: 15px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 40px -18px rgba(0, 0, 0, .12);
  --container: 1120px;
  --font: 'Raleway', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--grey-050);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1199px) { .container { max-width: 968px; } }
@media (max-width: 1023px) { .container { max-width: 728px; } }
@media (max-width: 767px)  { .container { max-width: 450px; } }
@media (max-width: 479px)  { .container { max-width: 100%; padding: 0 16px; } }

.section { padding: 100px 0; }
.section--alt { background: var(--grey-100); }
.section--white { background: var(--white); }
@media (max-width: 767px) { .section { padding: 56px 0; } }

.eyebrow {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
h2.h-section {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 780px;
}
@media (max-width: 767px) { h2.h-section { font-size: 26px; line-height: 1.25; } }

.sub-title {
  display: block;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}
@media (max-width: 767px) { .sub-title { font-size: 14px; margin-bottom: 32px; } }

/* red-dot bullet lists (matches original site) */
ul.dot-list li {
  font-size: 17px;
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
  margin-bottom: 14px;
}
ul.dot-list li:before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- Liquid-glass helpers ---------- */
/* Reusable frosted-glass surface: translucent, blurred, with a soft
   diagonal sheen and a layered (ambient + contact) shadow — the Apple
   "liquid glass" look, tuned to the red/white brand palette. */
.glass {
  position: relative;
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    0 1px 1px rgba(255, 255, 255, .4),
    0 24px 48px -24px rgba(15, 15, 17, .28),
    0 10px 24px -12px rgba(215, 34, 41, .16);
  isolation: isolate;
}
.glass:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 45%);
  pointer-events: none;
  z-index: -1;
}
.glass--dark {
  background: rgba(20, 21, 24, .5);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 24px 48px -20px rgba(0, 0, 0, .55),
    0 10px 30px -10px rgba(215, 34, 41, .25);
  color: #fff;
}
.glass--dark:before {
  background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 50%);
}

/* Ambient blurred color blobs sitting behind glass panels */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 767px) { .blob { filter: blur(60px); } }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  background: linear-gradient(180deg, #e7383e 0%, var(--red) 55%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 34px;
  white-space: nowrap;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 14px 28px -12px rgba(215, 34, 41, .55);
  transition: background .3s, color .3s, transform .15s, box-shadow .3s;
}
.button:hover {
  background: linear-gradient(180deg, #2a2b2f 0%, var(--ink) 60%, #000 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 18px 32px -12px rgba(0, 0, 0, .4);
}
.button--sm { font-size: 14px; padding: 16px 26px; }
.button--outline {
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: var(--ink);
  border: 1.5px solid rgba(14, 15, 17, .5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.button--outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.button--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.btn-row--single { display: flex; }

.banner-caption.banner-caption--between {
  display: block;
  margin: 26px 0 22px;
  color: #9a9da5;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 100px;
  display: flex;
  align-items: center;
  background: rgba(248, 249, 251, .5);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 12px 30px -20px rgba(15,15,17,.25);
}
@media (max-width: 767px) { .header { height: 70px; } }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo { width: 130px; flex-shrink: 0; }
.header__logo img { width: 100%; height: auto; }
.header-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}
.header-contacts__phone { display: flex; align-items: center; gap: 10px; }
.header-contacts__phone img { width: 28px; height: 28px; }
.header-contacts__phone span { font-size: 16px; }
@media (max-width: 767px) { .header-contacts__phone { display: none; } }

/* ---------- Hero / banner ---------- */
.banner { padding: 56px 0 0; position: relative; overflow: hidden; z-index: 0; }
@media (max-width: 767px) { .banner { padding: 32px 0 0; } }
.banner .blob--1 { width: 620px; height: 620px; top: -220px; right: -160px; background: radial-gradient(circle, rgba(215,34,41,.30), rgba(215,34,41,0) 70%); }
.banner .blob--2 { width: 460px; height: 460px; bottom: -180px; left: -140px; background: radial-gradient(circle, rgba(252,141,61,.24), rgba(252,141,61,0) 70%); }
.banner .blob--3 { width: 360px; height: 360px; top: 120px; left: 34%; background: radial-gradient(circle, rgba(215,34,41,.14), rgba(215,34,41,0) 70%); }
.banner__grid {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .banner__grid { flex-direction: column; text-align: center; padding-bottom: 40px; }
}
.banner-content { flex: 1.1; }
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdeceb;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.banner-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
}
.banner-content__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 20px;
}
@media (max-width: 1023px) { .banner-content__title { font-size: 36px; } }
@media (max-width: 479px)  { .banner-content__title { font-size: 26px; line-height: 1.25; } }
.banner-content__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
@media (max-width: 767px) { .banner-content__text { margin: 0 auto 28px; } }
.banner-caption {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 4px;
  width: 100%;
}
@media (max-width: 767px) { .banner-caption { margin-top: 16px; text-align: center; } }

.banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid #e3e5eb;
  padding-top: 28px;
  margin-top: 40px;
}
@media (max-width: 767px) { .banner-stats { grid-template-columns: 1fr; text-align: center; gap: 20px; } }
.stat__num { font-size: 30px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.stat__num em { color: var(--red); font-style: normal; }
.stat__label { font-size: 14px; color: var(--ink-soft); line-height: 1.4; font-weight: 500; }

/* Hero panel card — frosted glass */
.banner-panel {
  flex: 0.95;
  border-radius: 28px;
  padding: 28px;
}
@media (max-width: 767px) { .banner-panel { width: 100%; } }
.banner-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.banner-panel__title { font-weight: 700; font-size: 15px; }
.live-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--red);
}
.live-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--grey-100);
  font-size: 14.5px;
}
.panel-row:last-child { border-bottom: none; }
.panel-row__label { color: var(--ink-soft); }
.panel-row__value { font-weight: 700; text-align: right; }
.panel-row__value.accent { color: var(--red); }

/* ---------- Partners / client logos ---------- */
.partners { padding: 48px 0 90px; }
@media (max-width: 767px) { .partners { padding: 28px 0 56px; } }
.partners-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  width: 100%;
}
@media (max-width: 1023px) { .partners-row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .partners-row { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
.partners-row__item {
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 18px 14px;
}
@media (max-width: 767px) { .partners-row__item { height: 60px; padding: 10px; } }
.partners-row__item img { max-height: 40px; max-width: 100%; }
@media (max-width: 767px) { .partners-row__item img { max-height: 26px; } }

/* ---------- Pain / recognize grid ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: 20px;
  padding: 22px 24px;
}
.pain-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fdeceb;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.pain-item__text { font-size: 15.5px; color: var(--ink); line-height: 1.55; font-weight: 500; }

.pain-closer {
  padding: 8px 16px 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--ink);
}
.pain-closer em { color: var(--red); font-style: normal; }

/* ---------- SLA table ---------- */
.sla-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: .5px solid var(--grey-100);
}
.sla-table th, .sla-table td {
  text-align: left;
  padding: 18px 26px;
  font-size: 16px;
}
.sla-table thead th {
  background: #dfe1e7;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
}
.sla-table tbody tr:nth-child(odd) { background: var(--grey-050); }
.sla-table td:first-child { color: var(--ink-soft); font-weight: 600; width: 38%; }
.sla-table td:last-child { color: var(--ink); font-weight: 700; }
.sla-note { margin-top: 16px; font-size: 14px; color: var(--ink-soft); text-align: center; }
@media (max-width: 767px) {
  .sla-table th, .sla-table td { padding: 12px 14px; font-size: 13.5px; }
}

/* ---------- Why 5 min ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  border-radius: 22px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-card__num {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: #fdeceb;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.why-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; font-weight: 500; }

/* ---------- Offers / cards-3 (what we do) ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .cards-3 { grid-template-columns: 1fr; } }
.cards-3 .svc-card:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 40px) / 3);
  margin: 0 auto;
}
@media (max-width: 1023px) { .cards-3 .svc-card:last-child { width: calc((100% - 20px) / 2); } }
@media (max-width: 767px) { .cards-3 .svc-card:last-child { width: 100%; } }
.svc-card {
  border-radius: 24px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.svc-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #fdeceb;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 0;
}
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.svc-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; font-weight: 500; }

/* ---------- Platforms ---------- */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) { .plat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .plat-grid { grid-template-columns: 1fr; } }
.plat-card {
  border-radius: 20px;
  padding: 22px;
}
.plat-card__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--red); margin-bottom: 10px;
}
.plat-card__value { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; font-weight: 600; }
.honest-line {
  display: flex; gap: 10px; align-items: flex-start; justify-content: center;
  text-align: center;
  padding: 8px 16px 0;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; font-weight: 500;
}
.honest-line .flag { color: var(--orange); flex-shrink: 0; }

/* ---------- Formats ---------- */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 767px) { .formats-grid { grid-template-columns: 1fr; } }
.format-card {
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.format-card--accent { border: 1.5px solid var(--red); }
.format-card__tag {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  color: var(--red); background: #fdeceb; padding: 5px 12px; border-radius: 50px;
}
.format-card h3 { font-size: 19px; font-weight: 700; }
.format-card__for { font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.format-card__get { font-size: 15px; color: var(--ink); line-height: 1.55; font-weight: 500; }
.formats-note {
  border-radius: 24px;
  padding: 22px 28px; font-size: 16px; font-weight: 600; line-height: 1.5; text-align: center;
}
.formats-note em { color: #ff8a8f; font-style: normal; }

/* ---------- Audit steps ---------- */
.audit-wrap {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 32px;
  padding: 60px 56px;
}
.audit-wrap .blob--1 { width: 420px; height: 420px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(215,34,41,.18), rgba(215,34,41,0) 70%); }
@media (max-width: 767px) { .audit-wrap { padding: 36px 22px; border-radius: 24px; } }
.audit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 36px 0 40px;
}
@media (max-width: 1023px) { .audit-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .audit-steps { grid-template-columns: 1fr; } }
.audit-step__num { font-size: 15px; font-weight: 700; color: var(--red); margin-bottom: 10px; }
.audit-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.audit-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; font-weight: 500; }
.audit-cta-row { display: flex; justify-content: center; }

/* ---------- FAQ / accordion ---------- */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-item {
  border-radius: 22px;
}
.accordion-item__trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 32px;
  cursor: pointer;
}
@media (max-width: 767px) { .accordion-item__trigger { padding: 16px 20px; } }
.accordion-item__title { font-size: 17px; font-weight: 600; margin: 0; flex: 1; }
.accordion-item__icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  position: relative;
}
.accordion-item__icon:before, .accordion-item__icon:after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}
.accordion-item__icon:before { width: 2px; height: 100%; }
.accordion-item__icon:after { width: 100%; height: 2px; }
.accordion-item__text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 500;
  padding: 0 32px 24px;
}
@media (max-width: 767px) { .accordion-item__text { padding: 0 20px 18px; } }

/* ---------- Final CTA + form ---------- */
.final { background: var(--ink); color: #fff; position: relative; overflow: hidden; z-index: 0; }
.final .blob--1 { width: 560px; height: 560px; top: -220px; left: -120px; background: radial-gradient(circle, rgba(215,34,41,.45), rgba(215,34,41,0) 70%); }
.final .blob--2 { width: 460px; height: 460px; bottom: -200px; right: -120px; background: radial-gradient(circle, rgba(252,141,61,.28), rgba(252,141,61,0) 70%); }
.final__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 1023px) { .final__grid { flex-direction: column; } }
.final__col { flex: 1; }
.final h2 { font-size: 38px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
@media (max-width: 767px) { .final h2 { font-size: 26px; } }
.final__sub { font-size: 16px; color: #b7bac0; max-width: 480px; margin-bottom: 32px; line-height: 1.55; }
.final__contacts { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 700; }
.contact-row .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .cap { display: block; font-size: 12px; font-weight: 500; color: #9a9da3; }

.form-card {
  flex: 0.95;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  padding: 34px;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 30px 60px -20px rgba(0,0,0,.55),
    0 12px 32px -14px rgba(215, 34, 41, .3);
}
.form-card__title { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.form-card__sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; font-weight: 500; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-soft);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: .02em;
}
.field input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--grey-100);
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink);
  background: var(--grey-050);
}
.field input:focus { outline: none; border-color: var(--red); background: #fff; }
.check-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 20px;
}
.check-row input { width: 18px; height: 18px; accent-color: var(--red); }
/* Honeypot-поле для антиспама: скрыто визуально, но доступно ботам, которые заполняют все поля подряд */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form-error {
  background: #fdeceb;
  color: var(--red-dark);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.button:disabled { opacity: .7; cursor: default; }
.form-legal { font-size: 11.5px; color: #9aa0ab; margin-top: 14px; line-height: 1.5; text-align: center; }
.legal-link {
  display: inline;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--red);
  text-decoration: underline;
  cursor: pointer;
}
.legal-link:hover { color: var(--ink); }

/* ---------- Modal: согласие на обработку ПДн ---------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 17, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px 16px;
  border-bottom: 1px solid var(--grey-100);
}
.modal__head h3 { font-size: 19px; font-weight: 700; }
.modal__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.modal__close:hover { background: var(--ink); color: #fff; }
.modal__body {
  padding: 20px 30px 30px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.modal__body p { margin: 0 0 14px; }
.modal__body b { color: var(--ink); }
.modal__body a { color: var(--red); text-decoration: underline; }
.modal__draft-flag {
  background: #fff7ec;
  border: 1px solid #ffdfae;
  color: #7a5a12;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .modal__head, .modal__body { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--grey-100); padding: 64px 0; }
@media (max-width: 767px) { .footer { padding: 36px 0; } }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) { .footer-row { flex-direction: column; align-items: flex-start; } }
.footer__logo { width: 150px; }
.footer__logo img { width: 100%; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link { font-size: 15px; font-weight: 600; color: var(--ink); }
.footer-link:hover { color: var(--red); }
.footer__copy { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--grey-100);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.sticky-cta__row { display: flex; gap: 10px; }
.sticky-cta .button { flex: 1; }
.sticky-cta__call {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sticky-cta__call img { width: 24px; height: 24px; }

@media (max-width: 767px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 82px; }
}
