:root {
  --ink: #07162d;
  --ink-2: #0b2347;
  --blue: #2d79d7;
  --blue-2: #68a7f1;
  --ice: #eaf3ff;
  --paper: #071322;
  --white: #ffffff;
  --text: #edf4fc;
  --muted: #97aac0;
  --line: rgba(154, 181, 211, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(104, 167, 241, 0.24), transparent 32rem),
    linear-gradient(135deg, #0c2b58, #08182f 68%);
}
.section-head { display: flex; margin-bottom: 46px; align-items: end; justify-content: space-between; gap: 36px; }
.section-head > div { max-width: 760px; min-width: 0; }
.section-head.center { display: block; max-width: 800px; margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.kicker {
  display: inline-flex;
  margin-bottom: 17px;
  color: var(--blue);
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-dark .kicker, .section-blue .kicker, .hero .kicker { color: #8fc2ff; }
.kicker::before { width: 24px; height: 2px; border-radius: 2px; content: ""; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.035em; }
h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(44px, 6.3vw, 82px); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4.3vw, 58px); }
h3 { margin-bottom: 12px; font-size: 22px; }
.lead { max-width: 780px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.section-dark .lead, .section-blue .lead, .hero .lead { color: #c8d6e8; }
.muted { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}
.btn:hover { border-color: #b7c9dc; box-shadow: 0 12px 30px rgba(15, 35, 65, .11); transform: translateY(-2px); }
.btn-primary { border-color: var(--blue); color: var(--white); background: var(--blue); box-shadow: 0 14px 30px rgba(45, 121, 215, .25); }
.btn-primary:hover { border-color: #3f8be5; background: #3f8be5; }
.btn-ghost { border-color: rgba(255,255,255,.24); color: var(--white); background: rgba(255,255,255,.06); }
.btn-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.1); }
.arrow { font-size: 18px; line-height: 1; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: .3s ease;
}
.site-header.scrolled, .site-header.header-solid {
  border-color: rgba(255,255,255,.1);
  background: rgba(7, 22, 45, .92);
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; min-height: 82px; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 13px; }
.brand-logo {
  width: 72px;
  height: 46px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 5px rgba(87, 158, 241, .62)) drop-shadow(0 0 15px rgba(45, 121, 215, .3));
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 13px; letter-spacing: .075em; }
.brand-copy span { margin-top: 4px; color: #a9bbd0; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; margin-left: auto; align-items: center; gap: 24px; }
.nav a { color: #d9e3ef; font-size: 13px; font-weight: 700; transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--white); }
.header-cta { min-height: 44px; padding-inline: 17px; }
.header-telegram {
  min-height: 44px;
  padding-inline: 15px;
  border-color: rgba(42, 171, 238, .55);
  color: var(--white);
  background: rgba(42, 171, 238, .12);
  box-shadow: 0 10px 28px rgba(42, 171, 238, .12);
}
.header-telegram:hover {
  border-color: #2aabee;
  background: rgba(42, 171, 238, .22);
  box-shadow: 0 12px 32px rgba(42, 171, 238, .2);
}
.nav .nav-telegram { display: none; }
.burger {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
}
.burger span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--white); transition: .25s; }

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  padding: 150px 0 90px;
  color: var(--white);
  align-items: end;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.08); }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5,18,39,.96) 0%, rgba(5,18,39,.8) 48%, rgba(5,18,39,.28) 100%),
    linear-gradient(180deg, rgba(5,18,39,.35), rgba(5,18,39,.83));
}
.hero-content { display: grid; align-items: end; grid-template-columns: 1fr 330px; gap: 60px; }
.hero-content-simple { display: block; }
.hero-content-simple .hero-copy { max-width: 790px; }
.hero-copy, .brand-copy { min-width: 0; }
.hero-copy .lead { max-width: 690px; }
.hero-copy .actions { margin-top: 34px; }
.hero-proof {
  padding: 25px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(9,28,56,.52);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.hero-proof-top { display: flex; margin-bottom: 28px; align-items: center; gap: 14px; }
.hero-proof-mark { display: grid; width: 48px; height: 48px; border-radius: 14px; color: var(--white); background: var(--blue); place-items: center; font-size: 22px; font-weight: 900; }
.hero-proof b { display: block; font-size: 16px; }
.hero-proof small { color: #a8bbd2; }
.proof-row { display: flex; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; }
.proof-row span { color: #a8bbd2; }
.proof-row strong { color: #f6fbff; }

.metrics { position: relative; z-index: 3; margin-top: -48px; }
.metrics-grid {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.metric { padding: 28px 30px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric b { display: block; margin-bottom: 4px; color: var(--ink); font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.metric span { color: var(--muted); font-size: 12px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(15, 35, 65, .07);
  overflow: hidden;
  transition: .28s ease;
}
.card:hover { border-color: #bfd0e2; box-shadow: var(--shadow); transform: translateY(-5px); }
.card p:last-child { margin-bottom: 0; }
.service-card { min-height: 295px; }
.service-num { display: block; margin-bottom: 50px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  content: "";
  background: var(--ice);
}
.service-card p { color: var(--muted); font-size: 14px; }
.service-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(104,167,241,.2), transparent 50%),
    var(--ink-2);
}
.service-card.featured .service-num { color: #8fc2ff; }
.service-card.featured p { color: #c2d0e1; }
.service-card.featured::after { background: rgba(255,255,255,.06); }

.process-layout { display: grid; align-items: start; grid-template-columns: .85fr 1.15fr; gap: 64px; }
.process-copy { position: sticky; top: 118px; }
.process-list { display: grid; gap: 12px; }
.process-step {
  display: grid;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  align-items: start;
  background: rgba(255,255,255,.045);
  grid-template-columns: 60px 1fr;
  gap: 20px;
}
.process-step span { color: #82b9f8; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.process-step h3 { margin-bottom: 7px; font-size: 20px; }
.process-step p { margin: 0; color: #adbed2; font-size: 13px; }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.video-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15,35,65,.1);
  overflow: hidden;
}
.video-card.wide { grid-column: span 2; }
.video-card-clean .video-frame video { aspect-ratio: 16 / 9; }
.video-frame { position: relative; background: #07162d; overflow: hidden; }
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.video-card.vertical .video-frame video { aspect-ratio: 4 / 5; }
.video-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  color: var(--white);
  background: rgba(7,22,45,.72);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.video-info { display: flex; padding: 18px 20px 21px; align-items: center; justify-content: space-between; gap: 20px; }
.video-info h3 { margin-bottom: 5px; font-size: 18px; }
.video-info p { margin: 0; color: var(--muted); font-size: 12px; }
.duration { flex: 0 0 auto; color: var(--blue); font-size: 11px; font-weight: 800; }

.gallery-preview { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 260px 260px; gap: 14px; }
.gallery-item {
  position: relative;
  border-radius: 22px;
  background: #dfe8f2;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 65%, rgba(7,22,45,.35)); pointer-events: none; }
.gallery-caption { position: absolute; right: 16px; bottom: 14px; left: 16px; z-index: 2; color: var(--white); font-size: 12px; font-weight: 800; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .gallery-item { aspect-ratio: 4 / 4.7; }

.reviews-toolbar {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.reviews-search { width: min(100%, 520px); }
.reviews-search input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  color: var(--text);
  background: #0d1d32;
  transition: .2s ease;
}
.reviews-search input:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(45, 121, 215, .1);
}
.reviews-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.text-review-card {
  display: flex;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0, rgba(45, 121, 215, .12), transparent 12rem),
    #0d1d32;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .15);
  content-visibility: auto;
  contain-intrinsic-size: 310px;
}
.text-review-head {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 13px;
}
.text-review-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(104, 167, 241, .25);
  border-radius: 14px;
  color: #a8d0ff;
  background: rgba(45, 121, 215, .12);
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}
.text-review-person { min-width: 0; }
.text-review-person b { display: block; color: var(--white); font-size: 14px; }
.text-review-person span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.text-review-car {
  display: flex;
  margin-bottom: 17px;
  color: #8fc2ff;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}
.text-review-car::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 10px rgba(45, 121, 215, .7);
}
.text-review-text {
  margin: 0;
  color: #c0cedd;
  font-size: 14px;
  line-height: 1.7;
}
.text-review-date {
  margin-top: auto;
  padding-top: 22px;
  color: #6f859e;
  font-size: 11px;
  text-transform: capitalize;
}
.reviews-more-wrap { display: flex; margin-top: 28px; justify-content: center; }
.reviews-empty {
  padding: 40px 20px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.trust-layout { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.document-box {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: rgba(255,255,255,.055);
}
.document-top { display: flex; margin-bottom: 34px; align-items: center; gap: 18px; }
.pdf-icon { display: grid; width: 68px; height: 82px; border-radius: 15px; color: var(--ink); background: var(--white); place-items: center; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.document-box dl { margin: 0 0 28px; }
.document-box dl div { display: grid; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.11); grid-template-columns: 130px 1fr; gap: 16px; }
.document-box dt { color: #9eb2c9; font-size: 11px; text-transform: uppercase; }
.document-box dd { margin: 0; font-size: 13px; font-weight: 700; }
.check-list { display: grid; margin: 28px 0 0; padding: 0; list-style: none; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list li::before { display: grid; width: 24px; height: 24px; flex: 0 0 24px; border-radius: 50%; color: var(--white); content: "✓"; background: var(--blue); place-items: center; font-size: 12px; font-weight: 900; }

.quote-strip {
  display: grid;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}
.quote-mark { color: var(--blue); font-size: 56px; font-weight: 900; line-height: .8; }
.quote-strip h3 { margin: 0 0 7px; font-size: 25px; }
.quote-strip p { margin: 0; color: var(--muted); }

.faq { display: grid; max-width: 900px; margin-inline: auto; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.faq-question { display: flex; width: 100%; padding: 22px 24px; border: 0; align-items: center; justify-content: space-between; gap: 20px; text-align: left; background: transparent; cursor: pointer; font-weight: 800; }
.faq-question span { display: grid; width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; color: var(--blue); background: var(--ice); place-items: center; transition: transform .3s; }
.faq-answer { max-height: 0; padding: 0 24px; color: var(--muted); overflow: hidden; transition: .35s ease; }
.faq-item.open .faq-answer { max-height: 260px; padding-bottom: 22px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 22px; }
.contact-card { padding: 40px; border-radius: 30px; color: var(--white); background: var(--ink); }
.contact-card .lead { font-size: 17px; }
.contact-details { display: grid; margin-top: 34px; gap: 12px; }
.contact-detail { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-detail span { display: block; margin-bottom: 4px; color: #91a8c2; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail b { font-size: 14px; }
.form-card { padding: 36px; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #41546b; font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: #f9fbfd;
  transition: .2s;
}
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 124px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(45,121,215,.09); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; }
.status { min-height: 22px; margin: 10px 0 0; color: #1f7a50; font-size: 12px; font-weight: 700; }

.page-hero {
  position: relative;
  padding: 178px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(72,145,234,.28), transparent 30rem),
    linear-gradient(135deg, #0c2a55, #07162d 66%);
  overflow: hidden;
}
.page-hero::after {
  position: absolute;
  right: -140px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}
.page-hero .lead { max-width: 760px; color: #c8d6e8; }
.page-hero h1 { max-width: 950px; }
.page-hero-actions { margin-top: 30px; }
.page-stats { display: flex; margin-top: 48px; flex-wrap: wrap; gap: 12px; }
.page-stat { min-width: 180px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.05); }
.page-stat b { display: block; font-size: 22px; }
.page-stat span { color: #a9bbd0; font-size: 11px; }

.requisites-wrap { display: grid; align-items: start; grid-template-columns: .75fr 1.25fr; gap: 56px; }
.requisites-card { padding: 10px 32px 32px; }
.req-row { display: grid; padding: 20px 0; border-bottom: 1px solid var(--line); grid-template-columns: 170px 1fr; gap: 20px; }
.req-row:last-child { border-bottom: 0; }
.req-row dt { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.req-row dd { margin: 0; font-size: 14px; font-weight: 700; }

.site-footer { padding: 68px 0 24px; color: #cad6e4; background: #061226; }
.footer-grid { display: grid; padding-bottom: 42px; grid-template-columns: 1.35fr .8fr 1fr; gap: 60px; }
.footer-about { max-width: 390px; margin-top: 20px; color: #879bb3; font-size: 13px; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; margin: 0; padding: 0; color: #879bb3; list-style: none; gap: 10px; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #61758d; justify-content: space-between; gap: 24px; font-size: 11px; }

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  max-width: min(380px, calc(100% - 44px));
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: var(--white);
  background: rgba(7,22,45,.96);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .25s;
}
.toast.show { opacity: 1; transform: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  padding: 24px;
  background: rgba(3,10,22,.94);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity .25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; border-radius: 14px; box-shadow: 0 25px 80px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  place-items: center;
  font-size: 24px;
}
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { top: 50%; left: 22px; }
.lightbox-next { top: 50%; right: 22px; }
.lightbox-count { position: absolute; bottom: 18px; color: #bdcad9; font-size: 12px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Dark interface */
.btn {
  color: var(--white);
  background: rgba(255, 255, 255, .055);
}
.btn:hover {
  border-color: rgba(143, 194, 255, .45);
  background: rgba(104, 167, 241, .1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}
.btn-primary { background: var(--blue); }
.metrics-grid,
.card,
.video-card,
.quote-strip,
.faq-item,
.form-card {
  background: #0d1d32;
}
.metric b { color: var(--white); }
.card,
.video-card {
  box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
}
.card:hover { border-color: rgba(104, 167, 241, .35); }
.service-card::after { background: rgba(104, 167, 241, .06); }
.gallery-item { background: #0d1d32; }
.faq-question span {
  color: #8fc2ff;
  background: rgba(104, 167, 241, .1);
}
.field label { color: #c6d4e4; }
.field input,
.field select,
.field textarea {
  color: var(--text);
  background: #071526;
}
.page-hero .lead { color: #c8d6e8; }

@media (max-width: 1060px) {
  .nav { gap: 14px; }
  .nav a { font-size: 12px; }
  .header-cta { display: none; }
  .hero-content { grid-template-columns: 1fr 290px; gap: 36px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .text-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 84px 0; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 20px; }
  .nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(7,22,45,.98);
    box-shadow: 0 28px 70px rgba(0,0,0,.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .25s;
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav a { padding: 9px 4px; font-size: 15px; }
  .nav .nav-telegram {
    display: block;
    margin-top: 6px;
    padding: 13px 15px;
    border: 1px solid rgba(42, 171, 238, .38);
    border-radius: 13px;
    color: var(--white);
    background: rgba(42, 171, 238, .14);
    text-align: center;
  }
  .header-telegram { display: none; }
  .burger { display: block; }
  .burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 760px; padding-top: 130px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-proof { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-layout, .trust-layout, .contact-layout, .requisites-wrap { grid-template-columns: 1fr; gap: 38px; }
  .process-copy { position: static; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); grid-template-rows: 320px 220px 220px; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 54px 0; }
  .header-inner { min-height: 72px; }
  .brand-logo { width: 55px; height: 37px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy span { display: none; }
  .nav { top: 70px; right: 14px; left: 14px; }
  .hero { min-height: 700px; padding: 118px 0 70px; align-items: center; }
  .hero-media video { object-position: 60% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(5,18,39,.95), rgba(5,18,39,.55)), linear-gradient(180deg, rgba(5,18,39,.4), rgba(5,18,39,.88)); }
  h1 { font-size: 43px; }
  h2 { font-size: 35px; }
  .hero-copy .lead { font-size: 16px; }
  .actions .btn { width: 100%; }
  .metrics { margin-top: -32px; }
  .metric { padding: 21px 18px; }
  .metric b { font-size: 23px; }
  .card-grid, .video-grid { grid-template-columns: 1fr; }
  .video-card.wide { grid-column: auto; }
  .service-card { min-height: 250px; }
  .process-step { padding: 20px; grid-template-columns: 42px 1fr; gap: 10px; }
  .gallery-preview { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 170px 170px; }
  .gallery-grid { gap: 8px; }
  .reviews-toolbar { align-items: stretch; flex-direction: column; }
  .reviews-search { width: 100%; }
  .text-reviews-grid { grid-template-columns: 1fr; }
  .text-review-card { min-height: 0; padding: 23px; }
  .gallery-grid .gallery-item { border-radius: 13px; }
  .quote-strip { padding: 28px; grid-template-columns: 1fr; gap: 16px; }
  .quote-mark { font-size: 40px; }
  .document-box { padding: 25px; }
  .document-box dl div { grid-template-columns: 1fr; gap: 5px; }
  .form-card, .contact-card { padding: 26px; }
  .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form .btn { width: 100%; }
  .page-hero { padding: 142px 0 72px; }
  .page-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .page-stat { min-width: 0; }
  .req-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .lightbox-nav { top: auto; bottom: 18px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
