/* =========================================================
   ВАРИАНТ 2 — светлый доверительный корпоративный премиум
   Фон белый / очень светло-серый. Акцент красный #e2231a + графит.
   Весь CSS/JS инлайн. Анимация только opacity/transform.
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #ffffff;
  --bg2: #f5f6f8;
  --bg3: #eef0f4;
  --card: #ffffff;
  --ink: #14181f;
  --ink2: #1c222c;
  --graphite: #2b323d;
  --muted: #5a6472;
  --muted2: #828d9c;
  --line: #e4e7ec;
  --line2: #d8dde4;
  --red: #e2231a;
  --red-d: #c11a12;
  --red-soft: #fdeceb;
  --green: #1f9d55;
  --shadow-s:
    0 1px 2px rgba(20, 24, 31, 0.05), 0 2px 8px rgba(20, 24, 31, 0.04);
  --shadow-m:
    0 8px 24px rgba(20, 24, 31, 0.07), 0 2px 6px rgba(20, 24, 31, 0.05);
  --shadow-l:
    0 24px 60px rgba(20, 24, 31, 0.1), 0 8px 20px rgba(20, 24, 31, 0.06);
  --shadow-red: 0 12px 30px rgba(226, 35, 26, 0.28);
  --disp: "Manrope", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1240px;
  --pad: clamp(18px, 4vw, 48px);
  --r: 16px;
  --r-l: 24px;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--disp);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
}
:focus-visible {
  outline: 3px solid rgba(226, 35, 26, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection {
  background: #ffd9d6;
  color: var(--ink);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.eyebrow.center::before {
  display: none;
}

.sec {
  padding: clamp(56px, 8vw, 110px) 0;
}
.sec-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.sec-head.center {
  margin-inline: auto;
  text-align: center;
}
.sec-title {
  font-size: clamp(28px, 4.4vw, 46px);
  margin: 16px 0 14px;
}
.sec-sub {
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 620px;
}
.sec-head.center .sec-sub {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 12px;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.25s,
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(226, 35, 26, 0.36);
}
.btn-dark {
  background: var(--graphite);
  color: #fff;
}
.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-l);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line2);
  box-shadow: var(--shadow-s);
}
.btn-ghost:hover {
  border-color: var(--graphite);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
.btn-wide {
  width: 100%;
}

/* ---------- header ---------- */
.topbar {
  background: var(--graphite);
  color: #c9d0da;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c9d0da;
}
.topbar-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
  flex: none;
}
.topbar-item b {
  color: #fff;
  font-weight: 600;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bfe6cf;
  font-weight: 600;
}
.status-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39d178;
  box-shadow: 0 0 0 0 rgba(57, 209, 120, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 209, 120, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(57, 209, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 209, 120, 0);
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 20px rgba(20, 24, 31, 0.07);
  border-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 11px;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-red);
}
.logo-mark svg {
  width: 26px;
  height: 26px;
}
.brand-txt {
  line-height: 1.05;
}
.brand-txt .n {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-txt .n b {
  color: var(--red);
}
.brand-txt .t {
  font-size: 11.5px;
  color: var(--muted2);
  letter-spacing: 0.04em;
}
.menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu a {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--graphite);
  padding: 9px 13px;
  border-radius: 9px;
  transition:
    background 0.2s,
    color 0.2s;
}
.menu a:hover {
  background: var(--bg2);
  color: var(--red);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.nav-phone {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone span {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.02em;
}
.mini-msg {
  display: flex;
  gap: 7px;
}
.mini-msg a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg2);
  border: 1px solid var(--line);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.mini-msg a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
.mini-msg a.wa:hover {
  background: #e9f8ef;
}
.mini-msg a.tg:hover {
  background: #e8f3fc;
}
.mini-msg a.vk:hover {
  background: #e9f0fb;
}
.mini-msg svg {
  width: 19px;
  height: 19px;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line2);
  background: #fff;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.burger i {
  width: 20px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: 0.3s;
}
.burger.on i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.on i:nth-child(2) {
  opacity: 0;
}
.burger.on i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 80;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-l);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mm-close {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bg2);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--graphite);
}
.mobile-menu a.mm-link {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mm-foot {
  margin-top: auto;
  padding-top: 20px;
}
.mm-foot .p {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 31, 0.42);
  z-index: 75;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(2px);
}
.overlay.on {
  opacity: 1;
  visibility: visible;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% 0%, #fef1f0 0%, rgba(254, 241, 240, 0) 46%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(
    80% 60% at 70% 30%,
    #000 0%,
    transparent 75%
  );
  mask-image: radial-gradient(80% 60% at 70% 30%, #000 0%, transparent 75%);
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--graphite);
  box-shadow: var(--shadow-s);
  margin-bottom: 22px;
}
.hero-badge b {
  background: var(--red);
  color: #fff;
  font-family: var(--disp);
  font-weight: 800;
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 12.5px;
}
.hero h1 {
  font-size: clamp(33px, 5.1vw, 60px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .u {
  color: var(--red);
}
.hero-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 26px;
}
.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-bottom: 30px;
  max-width: 560px;
}
.hcheck {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink2);
}
.hcheck .ic {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 7px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.hcheck .ic svg {
  width: 14px;
  height: 14px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
}
.hero-trust .stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 16px;
}
.hero-trust b {
  color: var(--ink);
  font-family: var(--disp);
  font-weight: 800;
}

/* hero visual (CSS/SVG, без фото) */
.hero-visual {
  position: relative;
}
.car-card {
  position: relative;
  background: linear-gradient(160deg, #20262f 0%, #12161c 100%);
  border-radius: 26px;
  padding: 30px 28px 26px;
  color: #fff;
  box-shadow: var(--shadow-l);
  overflow: hidden;
}
.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 50% at 80% 0%,
    rgba(226, 35, 26, 0.35),
    transparent 60%
  );
  opacity: 0.9;
}
.car-card .cc-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cc-tag {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8a82;
}
.cc-vin {
  font-family: var(--body);
  font-size: 12px;
  color: #93a0b1;
  letter-spacing: 0.06em;
}
.car-stage {
  position: relative;
  height: 160px;
  margin: 6px 0 14px;
  display: grid;
  place-items: center;
}
.scan-line {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b60, transparent);
  border-radius: 2px;
  box-shadow: 0 0 14px 2px rgba(255, 90, 80, 0.6);
  animation: scan 3.4s ease-in-out infinite;
}
@keyframes scan {
  0%,
  100% {
    top: 14%;
  }
  50% {
    top: 80%;
  }
}
.car-svg {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.4));
}
.cc-checks {
  position: relative;
  display: grid;
  gap: 10px;
}
.cc-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 13.5px;
}
.cc-row .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f9d55;
  display: grid;
  place-items: center;
  flex: none;
}
.cc-row .dot svg {
  width: 12px;
  height: 12px;
}
.cc-row span {
  flex: 1;
  color: #dfe5ec;
}
.cc-row b {
  font-family: var(--disp);
  font-weight: 700;
  color: #fff;
  font-size: 12.5px;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-l);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card .fc-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
}
.float-card .fc-ic.red {
  background: var(--red-soft);
}
.float-card .fc-ic.grn {
  background: #e7f6ee;
}
.float-card .fc-ic svg {
  width: 22px;
  height: 22px;
}
.float-card .num {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
}
.float-card .lbl {
  font-size: 11.5px;
  color: var(--muted2);
}
.fc-1 {
  top: -18px;
  left: -22px;
  animation: floaty 5s ease-in-out infinite;
}
.fc-2 {
  bottom: -20px;
  right: -18px;
  animation: floaty 5.6s ease-in-out infinite 0.6s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  background: #fff;
}
.trust-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
}
.trust-strip .ts-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--graphite);
  font-weight: 600;
  font-size: 14px;
}
.trust-strip .ts-item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: none;
}

/* stats */
.stats {
  background: var(--graphite);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 120% at 15% 0%,
    rgba(226, 35, 26, 0.22),
    transparent 55%
  );
}
.stats .wrap {
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.stat {
  position: relative;
  padding-left: 22px;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--red);
  border-radius: 3px;
}
.stat .num {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .num .suf {
  color: var(--red);
}
.stat .cap {
  color: #aeb8c6;
  font-size: 14.5px;
  margin-top: 10px;
  max-width: 210px;
}

/* services */
.services {
  background: linear-gradient(180deg, #fff 0%, var(--bg2) 100%);
}
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.serv-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 30px 28px;
  box-shadow: var(--shadow-s);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.3s,
    border-color 0.3s;
  overflow: hidden;
}
.serv-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 5;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
  border-color: var(--line2);
}
.serv-card:hover::after {
  transform: scaleX(1);
}
.serv-ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.serv-ic svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}
.serv-card:hover .serv-ic {
  background: var(--red);
}
.serv-card:hover .serv-ic svg {
  color: #fff;
}
.serv-card h3 {
  font-size: 20px;
  margin-bottom: 11px;
}
.serv-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.serv-num {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 4;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 15px;
  color: var(--line2);
}
.serv-card:has(.serv-photo) .serv-num {
  top: 16px;
  right: 18px;
  color: #fff;
  background: rgba(20, 24, 31, 0.55);
  border-radius: 8px;
  padding: 3px 9px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}
.serv-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--red);
}
.serv-more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}
.serv-card:hover .serv-more svg {
  transform: translateX(4px);
}

/* check list (что проверяем) */
.checkwrap {
  background: #fff;
}
.check-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.check-aside {
  position: sticky;
  top: 100px;
}
.check-aside .panel {
  background: var(--graphite);
  color: #fff;
  border-radius: var(--r-l);
  padding: 34px 30px;
  box-shadow: var(--shadow-l);
  position: relative;
  overflow: hidden;
}
.check-aside .panel::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 35, 26, 0.4), transparent 70%);
}
.check-aside .eyebrow {
  color: #ff8a82;
}
.check-aside .eyebrow::before {
  background: #ff8a82;
}
.check-aside h3 {
  color: #fff;
  font-size: 26px;
  margin: 14px 0 12px;
  position: relative;
}
.check-aside p {
  color: #aeb8c6;
  font-size: 14.5px;
  position: relative;
  margin-bottom: 22px;
}
.check-aside .btn {
  position: relative;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.check-item {
  display: flex;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 18px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.check-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
  background: #fff;
}
.check-item .ci-ic {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.check-item .ci-ic svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}
.check-item h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
}
.check-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* how we work — steps */
.how {
  background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 30px 26px;
  box-shadow: var(--shadow-s);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}
.step-n {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--graphite);
  color: #fff;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-m);
}
.step:nth-child(1) .step-n {
  background: var(--red);
}
.step h3 {
  font-size: 18px;
  margin-bottom: 9px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
}
.step-line {
  position: absolute;
  top: 56px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line2) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}

/* equipment (Регула) */
.equip {
  background: var(--graphite);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.equip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 90% at 90% 20%,
    rgba(226, 35, 26, 0.2),
    transparent 55%
  );
}
.equip .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.equip .eyebrow {
  color: #ff8a82;
}
.equip .eyebrow::before {
  background: #ff8a82;
}
.equip h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  margin: 16px 0 18px;
}
.equip p.lead {
  color: #c3cbd6;
  font-size: 16.5px;
  margin-bottom: 24px;
  max-width: 520px;
}
.equip-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.equip-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #dbe1e9;
  font-size: 15px;
}
.equip-list .ic {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: rgba(226, 35, 26, 0.2);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.equip-list .ic svg {
  width: 15px;
  height: 15px;
  color: #ff8a82;
}
.equip-visual {
  position: relative;
}
.device {
  background: linear-gradient(155deg, #2f3742 0%, #1a1f27 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-l);
  position: relative;
  overflow: hidden;
}
.device .scr {
  background: #0c0f14;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
}
.device .scr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.device .scr-head .t {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c8798;
}
.device .scr-head .pill {
  font-size: 11px;
  color: #39d178;
  background: rgba(57, 209, 120, 0.12);
  border: 1px solid rgba(57, 209, 120, 0.3);
  border-radius: 100px;
  padding: 3px 9px;
  font-weight: 600;
}
.vin-read {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 6px;
}
.vin-read .hl {
  color: #ff6b60;
}
.vin-sub {
  font-size: 12px;
  color: #7c8798;
  margin-bottom: 18px;
}
.wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
}
.wave i {
  flex: 1;
  background: linear-gradient(180deg, #ff6b60, #c11a12);
  border-radius: 3px;
  opacity: 0.85;
  animation: wv 1.6s ease-in-out infinite;
}
@keyframes wv {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}
.device-cap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #aeb8c6;
  font-size: 13px;
}
.device-cap b {
  font-family: var(--disp);
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}
.equip-photo-note {
  margin-top: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: #93a0b1;
  text-align: center;
}

/* pricing */
.pricing {
  background: #fff;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 32px 30px;
  box-shadow: var(--shadow-s);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}
.price-card.feat {
  background: var(--graphite);
  color: #fff;
  border-color: var(--graphite);
  position: relative;
}
.price-card.feat .p-name,
.price-card.feat .p-amount,
.price-card.feat li {
  color: #fff;
}
.price-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--red);
  color: #fff;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
}
.p-name {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.p-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 40px;
}
.price-card.feat .p-desc {
  color: #aeb8c6;
}
.p-amount {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.p-amount .from {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted2);
  display: block;
  margin-bottom: 2px;
}
.p-amount .cur {
  font-size: 24px;
}
.p-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 24px;
}
.p-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink2);
}
.p-list .ic {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 6px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.price-card.feat .p-list .ic {
  background: rgba(255, 255, 255, 0.12);
}
.p-list .ic svg {
  width: 12px;
  height: 12px;
  color: var(--red);
}
.price-card.feat .p-list .ic svg {
  color: #ff8a82;
}
.price-card .btn {
  margin-top: auto;
}
.price-note {
  margin-top: 26px;
  text-align: center;
  color: #5f6773;
  font-size: 13px;
}
.price-card.feat .p-req {
  color: #fff;
}

/* why us / risks */
.why {
  background: linear-gradient(180deg, #fff 0%, var(--bg2) 100%);
}
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 34px 32px;
  box-shadow: var(--shadow-s);
}
.why-col.risk {
  background: #fff8f7;
  border-color: #f6d4d1;
}
.why-col h3 {
  font-size: 22px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-col h3 .tag {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
}
.why-col.good h3 .tag {
  background: #e7f6ee;
}
.why-col.good h3 .tag svg {
  color: var(--green);
  width: 20px;
  height: 20px;
}
.why-col.risk h3 .tag {
  background: var(--red-soft);
}
.why-col.risk h3 .tag svg {
  color: var(--red);
  width: 20px;
  height: 20px;
}
.why-col > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.why-list {
  display: grid;
  gap: 14px;
}
.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink2);
}
.why-list .mk {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 6px;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.why-col.good .mk {
  background: #e7f6ee;
}
.why-col.good .mk svg {
  color: var(--green);
  width: 13px;
  height: 13px;
}
.why-col.risk .mk {
  background: var(--red-soft);
}
.why-col.risk .mk svg {
  color: var(--red);
  width: 13px;
  height: 13px;
}

/* reviews */
.reviews {
  background: #fff;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.rev-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 30px 28px;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.rev-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
  background: #fff;
}
.rev-quote {
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 60px;
  color: var(--line2);
  line-height: 1;
}
.rev-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 14px;
}
.rev-card p {
  color: var(--ink2);
  font-size: 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.rev-meta {
  font-size: 13px;
  color: #5f6773;
}
.rev-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.rev-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line2);
  border-radius: 12px;
  padding: 12px 20px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  color: var(--graphite);
  box-shadow: var(--shadow-s);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.rev-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
  border-color: var(--red);
}
.rev-link .badge {
  background: var(--red-soft);
  color: #a5140c;
  border-radius: 7px;
  padding: 3px 8px;
  font-size: 12px;
}

/* faq */
.faq {
  background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.faq-aside h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 14px 0 14px;
}
.faq-aside p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.faq-item[open] {
  box-shadow: var(--shadow-m);
  border-color: var(--line2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q-ic {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 9px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-q-ic svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  transition: transform 0.3s;
}
.faq-item[open] .faq-q-ic {
  background: var(--red);
}
.faq-item[open] .faq-q-ic svg {
  color: #fff;
  transform: rotate(45deg);
}
.faq-item summary span {
  flex: 1;
}
.faq-a {
  padding: 0 22px 22px 68px;
  color: var(--muted);
  font-size: 14.5px;
}

/* payment */
.pay {
  background: var(--graphite);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 100% at 85% 50%,
    rgba(226, 35, 26, 0.2),
    transparent 55%
  );
}
.pay .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
.pay .eyebrow {
  color: #ff8a82;
}
.pay .eyebrow::before {
  background: #ff8a82;
}
.pay h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 40px);
  margin: 16px 0 16px;
}
.pay p {
  color: #c3cbd6;
  font-size: 15.5px;
  margin-bottom: 22px;
  max-width: 520px;
}
.pay-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.pay-methods .pm {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #dbe1e9;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}
.pay-methods .pm svg {
  width: 18px;
  height: 18px;
  color: #ff8a82;
}
.pay-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-l);
  color: var(--ink);
}
.pay-card .pc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.pay-card .pc-top .lbl {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pay-card .pc-chip {
  width: 40px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f5c451, #d69b2b);
}
.pay-card .pc-amount {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pay-card .pc-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.pay-card .btn {
  width: 100%;
}
.pay-card .pc-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--muted2);
  text-align: center;
  line-height: 1.5;
}

/* contacts */
.contacts {
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.contact-info {
  display: grid;
  gap: 16px;
  align-content: start;
}
.ci-card {
  display: flex;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.ci-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
  background: #fff;
}
.ci-card .ic {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 13px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
}
.ci-card .ic svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}
.ci-card .lbl {
  font-size: 12.5px;
  color: #5f6773;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.ci-card .val {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
}
.ci-card .val a {
  transition: color 0.2s;
}
.ci-card .val a:hover {
  color: var(--red);
}
.ci-card .sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.contact-msg {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.contact-msg a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  padding: 14px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition:
    transform 0.25s,
    filter 0.25s;
}
.contact-msg a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.contact-msg .wa {
  background: #25d366;
}
.contact-msg .tg {
  background: #0f6f99;
}
.contact-msg .vk {
  background: #0060cf;
}
.contact-msg svg {
  width: 19px;
  height: 19px;
}
.map-panel {
  border-radius: var(--r-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  min-height: 420px;
  position: relative;
  background: linear-gradient(135deg, #eef0f4, #e4e7ec);
}
.map-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 20px -8px rgba(20, 24, 31, 0.35);
  max-width: 72%;
  pointer-events: none;
}
.map-label b {
  display: block;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.map-label span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 30px;
}
.map-placeholder .pin {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-red);
  animation: floaty 4s ease-in-out infinite;
}
.map-placeholder .pin svg {
  width: 34px;
  height: 34px;
  color: #fff;
}
.map-placeholder .a {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}
.map-placeholder .n {
  font-size: 13px;
  color: var(--muted2);
  max-width: 280px;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line2) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* form */
.leadform {
  background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%);
}
.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-l);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.form-side {
  background: var(--graphite);
  color: #fff;
  padding: clamp(30px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.form-side::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 35, 26, 0.4), transparent 70%);
}
.form-side .eyebrow {
  color: #ff8a82;
  position: relative;
}
.form-side .eyebrow::before {
  background: #ff8a82;
}
.form-side h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin: 14px 0 16px;
  position: relative;
}
.form-side p {
  color: #c3cbd6;
  font-size: 14.5px;
  position: relative;
  margin-bottom: 26px;
}
.form-side .fs-list {
  display: grid;
  gap: 14px;
  position: relative;
}
.form-side .fs-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #dbe1e9;
}
.form-side .fs-list .ic {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.form-side .fs-list .ic svg {
  width: 14px;
  height: 14px;
  color: #ff8a82;
}
.form-side .fs-phone {
  margin-top: 30px;
  position: relative;
}
.form-side .fs-phone .lbl {
  font-size: 12px;
  color: #93a0b1;
  margin-bottom: 4px;
}
.form-side .fs-phone .p {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.form-body {
  padding: clamp(28px, 4vw, 44px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--graphite);
  margin-bottom: 8px;
}
.field label .req {
  color: var(--red);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(226, 35, 26, 0.1);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0 20px;
  font-size: 13px;
  color: var(--muted);
}
.consent input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
  accent-color: var(--red);
  cursor: pointer;
}
.consent a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-ok {
  display: none;
  text-align: center;
  padding: 34px 24px;
}
.form-ok.show {
  display: block;
  animation: fadein 0.5s ease both;
}
.form-ok .ok-ic {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #e7f6ee;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.form-ok .ok-ic svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}
.form-ok h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.form-ok p {
  color: var(--muted);
  font-size: 15px;
  max-width: 360px;
  margin: 0 auto;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.err-msg {
  display: none;
  color: var(--red);
  font-size: 12.5px;
  margin-top: 6px;
  font-weight: 500;
}
.field.invalid input,
.field.invalid select {
  border-color: var(--red);
  background: #fff;
}
.field.invalid .err-msg {
  display: block;
}

/* footer */
footer {
  background: var(--ink);
  color: #aeb8c6;
  padding-top: clamp(50px, 6vw, 72px);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 3vw, 44px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-brand .brand-txt .n {
  color: #fff;
}
.foot-brand p {
  font-size: 13.5px;
  margin: 18px 0;
  max-width: 300px;
  color: #8b95a3;
}
.foot-msg {
  display: flex;
  gap: 9px;
}
.foot-msg a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.foot-msg a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.foot-msg svg {
  width: 19px;
  height: 19px;
  color: #c9d0da;
}
.foot-col h4,
.foot-col h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.foot-col ul {
  display: grid;
  gap: 11px;
}
.foot-col a,
.foot-col li {
  font-size: 13.5px;
  color: #aeb8c6;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: #fff;
}
.foot-req {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #8b95a3;
}
.foot-req b {
  color: #c9d0da;
}
.foot-req .ph {
  color: #c9d0da;
  font-weight: 600;
}
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12.5px;
  color: #7c8798;
}
.foot-bottom a {
  color: #9aa4b2;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.foot-bottom a:hover {
  color: #fff;
}

/* cookie */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 16px;
  box-shadow: var(--shadow-l);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie.show {
  transform: none;
}
.cookie p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}
.cookie p a {
  color: var(--red);
  text-decoration: underline;
}
.cookie .btn {
  padding: 11px 22px;
  font-size: 14px;
}

/* reveal animation */
[data-rev] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-rev].in {
  opacity: 1;
  transform: none;
}
[data-rev-d="1"] {
  transition-delay: 0.08s;
}
[data-rev-d="2"] {
  transition-delay: 0.16s;
}
[data-rev-d="3"] {
  transition-delay: 0.24s;
}
[data-rev-d="4"] {
  transition-delay: 0.32s;
}
[data-rev-d="5"] {
  transition-delay: 0.4s;
}

/* to-top */
.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--red);
  box-shadow: var(--shadow-red);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s;
}
.totop.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.totop svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.totop:hover {
  background: var(--red-d);
}

/* ---------- photos (реальные фото поверх дизайна) ---------- */
/* hero: фигура эксперта как фото-визуал за диагностической картой */
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: linear-gradient(160deg, #e9ecf1 0%, #d7dbe2 100%);
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 24, 31, 0) 34%,
    rgba(20, 24, 31, 0.16) 62%,
    rgba(20, 24, 31, 0.52) 100%
  );
}
.hero-visual {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.hero-visual .car-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 14px 14px;
  background: linear-gradient(
    160deg,
    rgba(24, 29, 37, 0.94) 0%,
    rgba(12, 16, 22, 0.96) 100%
  );
  backdrop-filter: blur(6px);
}
.hero-visual .float-card {
  z-index: 3;
}

/* photo-frame — общий фрейм для акцентных фото */
.photo-frame {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: var(--bg3);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* check-aside: акцентное фото в тёмной панели */
.check-aside .panel-photo {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.check-aside .panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.check-aside .panel-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    200deg,
    rgba(226, 35, 26, 0.12),
    rgba(12, 16, 22, 0.42)
  );
}

/* equip: фото VIN-проверки под устройством */
.equip-photo {
  position: relative;
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.equip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equip-photo .cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.equip-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 22, 0) 40%,
    rgba(12, 16, 22, 0.62) 100%
  );
}

/* services: тонкий акцентный визуал в карточке */
.serv-photo {
  position: relative;
  margin: -30px -28px 20px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.serv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.serv-card:hover .serv-photo img {
  transform: scale(1.05);
}
.serv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0.9) 100%
  );
}
.serv-card:has(.serv-photo) .serv-ic {
  margin-top: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    max-width: 500px;
    margin-inline: auto;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 30px;
  }
  .serv-grid,
  .price-grid,
  .rev-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .step-line {
    display: none;
  }
  .check-layout,
  .equip .wrap,
  .pay .wrap,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .check-aside {
    position: static;
  }
  .why-split,
  .form-wrap {
    grid-template-columns: 1fr;
  }
  .form-side {
    padding: 32px;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 760px) {
  .menu,
  .nav-phone span,
  .topbar-left .hide-sm {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-right .mini-msg {
    display: none;
  }
  /* на мобиле шапка = логотип + бургер: прячем подзаголовок бренда и
           текст телефона, чтобы контент не выходил за экран и бургер был доступен */
  .brand-txt .t {
    display: none;
  }
  .nav-phone {
    display: none;
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .serv-grid,
  .price-grid,
  .rev-grid,
  .check-grid,
  .why-list,
  .steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr;
  }
  .topbar {
    font-size: 12.5px;
  }
  .topbar .wrap {
    justify-content: center;
  }
  .float-card {
    position: static;
    margin-top: 14px;
    display: inline-flex;
  }
  .fc-1,
  .fc-2 {
    animation: none;
  }
  .hero-visual {
    margin: 0 auto;
    min-height: 400px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }
  .hero-visual .car-card {
    margin: 0 10px 10px;
  }
  .hero-visual .float-card {
    align-self: center;
  }
}
@media (max-width: 420px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .nav-phone {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
  [data-rev] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scan-line,
  .wave i,
  .status-dot i,
  .float-card,
  .map-placeholder .pin {
    animation: none !important;
  }
}

html,
body {
  overflow-x: clip;
}

/* =========================================================
   SERVICE PAGES / INNER PAGES  (added for multipage build)
   ========================================================= */
.breadcrumb {
  padding: 18px 0 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted2);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line2);
}
.breadcrumb [aria-current] {
  color: var(--ink2);
}

.svc-hero {
  padding: 34px 0 12px;
}
.svc-hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.svc-hero .eyebrow {
  margin-bottom: 14px;
}
.svc-hero h1 {
  font: 800 clamp(28px, 4vw, 46px)/1.08 var(--disp);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.svc-hero .lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 22px;
}
.svc-hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.svc-hero-media {
  position: relative;
  border-radius: var(--r-lg, 20px);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
  box-shadow: 0 30px 60px -30px rgba(20, 24, 31, 0.35);
}
.svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-hero-media .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(20, 24, 31, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--ink2);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
}
.chip svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex: none;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin-top: 8px;
}
.spec-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink2);
}
.spec-item .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.spec-item .tick svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.prose {
  max-width: 72ch;
}
.prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}
.prose strong {
  color: var(--ink2);
}

/* VIN cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -30px rgba(20, 24, 31, 0.3);
}
.case-card .ph {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
}
.case-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.case-card:hover .ph img {
  transform: scale(1.04);
}
.case-card .cc-body {
  padding: 18px 18px 20px;
}
.case-card h4 {
  font: 700 17px/1.25 var(--disp);
  color: var(--ink);
  margin: 0 0 6px;
}
.case-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.case-card .verdict {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  padding: 5px 10px;
  border-radius: 999px;
}
.scan-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}
.scan-strip {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0f1217;
}
.scan-strip img {
  width: 100%;
  display: block;
}
.scan-strip .cap {
  padding: 10px 14px;
  font-size: 13px;
  color: #c9d0da;
  background: #141821;
}

/* myths / warnings list */
.myth-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.myth {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  padding: 16px 18px;
}
.myth b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 5px;
}
.myth span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* legal note block */
.legal-note {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 26px;
}
.legal-note b {
  color: var(--ink2);
}

/* CTA band */
.cta-band {
  background: var(--graphite);
  border-radius: var(--r-lg, 22px);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  color: #fff;
}
.cta-band h3 {
  font: 800 clamp(21px, 2.4vw, 30px)/1.15 var(--disp);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.cta-band p {
  color: #b9c2ce;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.cta-band .cb-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* related services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.rel-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  transition: 0.2s;
}
.rel-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -22px rgba(226, 35, 26, 0.5);
}
.rel-card b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 5px;
}
.rel-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* services index / catalog on home */
.cat-group {
  margin-top: 40px;
}
.cat-group:first-of-type {
  margin-top: 0;
}
.cat-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.cat-head h3 {
  font: 800 20px/1.2 var(--disp);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cat-head .cnt {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 600;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  text-decoration: none;
  transition: 0.22s;
  overflow: hidden;
}
.cat-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -30px rgba(20, 24, 31, 0.4);
}
.cat-card .cc-ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.cat-card .cc-ic svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}
.cat-card h4 {
  font: 700 16.5px/1.25 var(--disp);
  color: var(--ink);
  margin: 0 0 8px;
}
.cat-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1;
}
.cat-card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
}
.cat-card .go svg {
  width: 16px;
  height: 16px;
}
.cat-card .flag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a5140c;
  background: var(--red-soft);
  padding: 4px 8px;
  border-radius: 6px;
}

@media (max-width: 960px) {
  .svc-hero .wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .svc-hero-media {
    order: -1;
    aspect-ratio: 16/10;
  }
  .case-grid,
  .related-grid,
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .case-grid,
  .related-grid,
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LEAD FORM (inner pages partial: .lead-card / .lc-item / .lf-*)
   ========================================================= */
.leadform .lead-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(26px, 3vw, 44px);
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 34px 74px -44px rgba(20, 24, 31, 0.4);
}
.lead-copy .eyebrow {
  margin-bottom: 12px;
}
.lead-copy .sec-title {
  text-align: left;
  margin: 0 0 12px;
}
.lead-copy .sec-sub {
  text-align: left;
  margin: 0 0 22px;
  max-width: 46ch;
}
.lead-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lc-item {
  display: block;
  text-decoration: none;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px 12px 52px;
  position: relative;
  transition: 0.2s;
}
.lc-item:hover {
  border-color: var(--red);
}
.lc-item svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: var(--red);
}
.lc-item b {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-family: var(--disp);
}
.lc-item span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lf-row {
  margin: 0;
}
.lf-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
}
.lf-row input,
.lf-row select,
.lf-row textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 15px;
  border: 1px solid var(--line2);
  border-radius: 11px;
  font: 500 15px var(--body);
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
.lf-row input::placeholder,
.lf-row textarea::placeholder {
  color: var(--muted2);
}
.lf-row input:focus,
.lf-row select:focus,
.lf-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.lf-row textarea {
  resize: vertical;
  min-height: 82px;
}
.lf-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.lf-consent input {
  margin-top: 3px;
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}
.lf-consent a {
  color: var(--red);
}
.lf-note {
  font-size: 12px;
  color: var(--muted2);
  margin: 2px 0 0;
}
@media (max-width: 860px) {
  .leadform .lead-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* brand logo (растровый/векторный лого вместо инлайн-щита) */
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 760px) {
  .brand-logo {
    height: 46px;
  }
}
.foot-brand .brand-logo {
  height: 52px;
}

/* --- премиум-меню (без переноса, чёткий ховер) --- */
header .menu {
  gap: 30px;
}
header .menu a {
  white-space: nowrap;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink2);
  letter-spacing: -0.01em;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
header .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: right 0.28s ease;
}
header .menu a:hover {
  color: var(--red);
}
header .menu a:hover::after {
  right: 0;
}

/* --- галерея реальных работ --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.work-fig {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
}
.work-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.work-fig:hover img {
  transform: scale(1.06);
}
.work-fig figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 13px 11px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 17, 22, 0.82));
}
@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- блок ОСА (членство) --- */
.osa-band {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 30px 34px;
}
.osa-mark {
  flex: none;
  width: 78px;
  height: 78px;
  color: var(--graphite);
}
.osa-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.osa-body {
  flex: 1;
  min-width: 0;
}
.osa-body .osa-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6773;
  margin-bottom: 5px;
}
.osa-body h3 {
  font: 800 22px/1.15 var(--disp);
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.osa-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}
.osa-link {
  white-space: nowrap;
  flex: none;
}
@media (max-width: 720px) {
  .osa-band {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }
  .osa-body p {
    margin: 0 auto;
  }
}

/* --- аккуратная галерея с лайтбоксом --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gal-thumb {
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg3);
}
.gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.gal-thumb:hover img {
  transform: scale(1.07);
}
.gal-thumb figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 11px 9px;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 17, 22, 0.8));
  opacity: 0;
  transition: opacity 0.2s;
}
.gal-thumb:hover figcaption {
  opacity: 1;
}
.gal-thumb .zoom {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(20, 24, 31, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.gal-thumb:hover .zoom {
  opacity: 1;
}
.gal-thumb .zoom svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
}
@media (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lb {
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.lb.open {
  display: flex;
}
.lb img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  border: none;
  cursor: pointer;
}
.lb-cap {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #e6e9ee;
  font-size: 14px;
  padding: 0 20px;
}

/* --- hero: реальное фото в рамке (без мок-отчёта) --- */
.hero-visual {
  min-height: 0;
  position: relative;
}
.hero-frame {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -42px rgba(20, 24, 31, 0.45);
}
.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hero-frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(20, 24, 31, 0.74);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-badge-float {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 172px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(20, 24, 31, 0.55);
  backdrop-filter: blur(6px);
}
.hero-badge-float b {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 27px;
  line-height: 1;
  color: var(--red);
}
.hero-badge-float span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.32;
}
/* hero note: политика выезда/приезда */
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 540px;
  margin: -6px 0 24px;
  padding: 12px 15px;
  background: var(--red-soft);
  border: 1px solid rgba(226, 35, 26, 0.16);
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.45;
}
.hero-note svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--red);
  margin-top: 1px;
}
@media (max-width: 760px) {
  .hero-badge-float {
    max-width: 150px;
    padding: 10px 12px;
  }
  .hero-badge-float b {
    font-size: 22px;
  }
  .hero-badge-float span {
    font-size: 11px;
  }
}
/* --- карусель работ --- */
.carousel-wrap {
  position: relative;
}
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 16px;
}
.carousel::-webkit-scrollbar {
  height: 6px;
}
.carousel::-webkit-scrollbar-thumb {
  background: var(--line2);
  border-radius: 3px;
}
.carousel .gal-thumb {
  flex: 0 0 clamp(240px, 30%, 320px);
  scroll-snap-align: start;
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg3);
}
.carousel .gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.carousel .gal-thumb:hover img {
  transform: scale(1.06);
}
.carousel .gal-thumb figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 12px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 17, 22, 0.82));
  opacity: 1;
}
.car-nav {
  position: absolute;
  top: calc(50% - 8px);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px -10px rgba(20, 24, 31, 0.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: 0.2s;
}
.car-nav:hover {
  border-color: var(--red);
}
.car-nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.car-nav.prev {
  left: -12px;
}
.car-nav.next {
  right: -12px;
}
@media (max-width: 640px) {
  .car-nav {
    display: none;
  }
  .carousel .gal-thumb {
    flex-basis: 78%;
  }
}

.p-req {
  font: 800 27px/1 var(--disp);
  color: var(--ink);
  letter-spacing: -0.01em;
}
