/* ============================================================
   CUSTOM STYLE 39 — автомастерская, Калининград
   ============================================================ */

:root {
  --bg: #0a0b0f;
  --bg-2: #101218;
  --panel: #14161e;
  --panel-2: #191c26;
  --line: rgba(255, 255, 255, .08);
  --text: #eef0f6;
  --muted: #9aa1b5;
  --accent: #ff3d24;
  --accent-2: #ff8a00;
  --grad: linear-gradient(100deg, #ff3d24 0%, #ff8a00 100%);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --font-head: 'Unbounded', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

::selection { background: var(--accent); color: #fff; }

/* ---------- утилиты ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .35);
}

.section { padding: clamp(70px, 9vw, 120px) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
}
.section-head__desc { color: var(--muted); margin-top: 16px; font-size: 17px; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--accent {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 61, 36, .35);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 61, 36, .45); }

.btn--ghost {
  border-color: rgba(255, 255, 255, .22);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, .5); transform: translateY(-2px); }

.btn--light { background: #fff; color: #0a0b0f; }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,255,255,.18); }

.btn--lg { padding: 17px 32px; font-size: 16px; }

/* ---------- прогресс и хедер ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad);
  z-index: 200;
  transition: width .1s linear;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.header.is-scrolled {
  padding: 10px 0;
  background: rgba(10, 11, 15, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  border-bottom: 1px solid var(--line);
}

.header__inner { display: flex; align-items: center; gap: 28px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
  flex: none;
}
.logo__img img { width: 100%; height: 100%; object-fit: cover; }
.logo__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .04em;
  line-height: 1.05;
  display: grid;
}
.logo__text b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo__text i { font-style: normal; color: var(--muted); font-size: 12px; letter-spacing: .3em; }

.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__link {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  transition: color .25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0%;
  background: var(--grad);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__phone { padding: 11px 20px; font-size: 14px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  width: 26px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(255, 138, 0, .14), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(255, 61, 36, .12), transparent 50%),
    url('../img/cover.jpg') center / cover no-repeat;
  filter: saturate(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, .78) 0%, rgba(10, 11, 15, .62) 40%, var(--bg) 100%),
    linear-gradient(100deg, rgba(10, 11, 15, .92) 0%, rgba(10, 11, 15, .35) 60%, rgba(10, 11, 15, .75) 100%);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #38d16a;
  box-shadow: 0 0 0 0 rgba(56, 209, 106, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 209, 106, .6); }
  70% { box-shadow: 0 0 0 12px rgba(56, 209, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 209, 106, 0); }
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(44px, 9vw, 110px);
  line-height: .98;
  letter-spacing: .01em;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  color: #cdd3e1;
  max-width: 560px;
  margin-bottom: 26px;
}
.hero__subtitle b { color: #fff; }

.hero__chips { display: flex; flex-direction: column; gap: 10px; margin-bottom: 38px; }
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #dfe3ec;
  width: fit-content;
}
.hero__chips svg {
  width: 20px; height: 20px;
  color: var(--accent-2);
  flex: none;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 14px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 9px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent-2);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #b9c0d2;
}
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- карточки (почему мы) ---------- */
.cards--4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 0, .35);
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: 15px; }

.card__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 27px; height: 27px; }
.card__icon--accent {
  background: linear-gradient(150deg, rgba(255, 61, 36, .18), rgba(255, 138, 0, .1));
  color: var(--accent-2);
  border: 1px solid rgba(255, 138, 0, .25);
}

/* ---------- услуги ---------- */
.services { background: var(--bg-2); border-block: 1px solid var(--line); position: relative; }

.cards--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.scard {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.scard::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s ease;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255, 138, 0, .3); }
.scard:hover::before { opacity: 1; }

.scard h3 {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 10px;
}
.scard p { color: var(--muted); font-size: 14.5px; }

.scard__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  color: #dfe4f0;
  margin-bottom: 18px;
  transition: background .3s ease, color .3s ease;
}
.scard:hover .scard__icon {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
.scard__icon svg { width: 26px; height: 26px; }

.scard__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  animation: badgeGlow 2.4s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, .45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 138, 0, 0); }
}

.scard--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  background:
    radial-gradient(circle at 90% -10%, rgba(255, 138, 0, .2), transparent 55%),
    linear-gradient(160deg, rgba(255, 61, 36, .12), rgba(255, 61, 36, .03)), var(--panel);
  border-color: rgba(255, 138, 0, .3);
}
.scard--cta h3 { font-size: 19px; }
.scard--cta .btn { margin-top: auto; }

/* ---------- баннер / мастерская ---------- */
.works { padding: clamp(70px, 9vw, 120px) 0; }

.banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.banner__bg {
  position: absolute;
  inset: 0;
  background: url('../img/cover.jpg') center / cover no-repeat fixed;
}
@media (max-width: 900px) { .banner__bg { background-attachment: scroll; } }
.banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(10, 11, 15, 0) 0%, rgba(10, 11, 15, .88) 45%, rgba(10, 11, 15, .97) 100%);
}
.banner h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.4vw, 38px);
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 700px;
}
.banner p { color: #c3cad9; max-width: 560px; margin-bottom: 26px; }

.banner__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: 30px;
}
.banner__stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 40px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.banner__stat span { color: var(--muted); font-size: 14px; }

/* ---------- отзывы ---------- */
.reviews { background: var(--bg-2); border-block: 1px solid var(--line); }

.reviews__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.rcard {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.rcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255, 255, 255, .25); }
.rcard__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rcard__head b { font-size: 17px; }
.rcard p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

.rcard__ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: none;
}
.rcard__ico svg { width: 26px; height: 26px; }
.rcard__ico--vk { background: #0077ff; color: #fff; }
.rcard__ico--ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

.rcard__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-2);
}
.rcard__go svg { width: 17px; height: 17px; transition: transform .3s ease; }
.rcard:hover .rcard__go svg { transform: translateX(5px); }

/* ---------- контакты ---------- */
.contacts__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
@media (max-width: 900px) { .contacts__grid { grid-template-columns: 1fr; } }

.contact-main {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.contact-main__label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-main__phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
  margin-bottom: 18px;
}
.contact-main__phone:hover { filter: brightness(1.15); }
.contact-main__hint { color: var(--muted); margin-bottom: 26px; max-width: 480px; }

.contacts__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.contact-main__place {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}
.contact-main__place svg { width: 18px; height: 18px; flex: none; align-self: center; color: var(--accent-2); }
.contact-main__place a { color: var(--text); font-weight: 600; border-bottom: 1px dashed rgba(255,255,255,.35); }

.socials {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.socials__label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 4px;
}

.soc {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.soc:hover { transform: translateX(6px); border-color: rgba(255, 138, 0, .4); background: rgba(255, 255, 255, .05); }
.soc__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.soc__ico svg { width: 23px; height: 23px; }
.soc--vk .soc__ico { background: #0077ff; color: #fff; }
.soc--ig .soc__ico { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); color: #fff; }
.soc--tt .soc__ico { background: #16181f; color: #fff; border: 1px solid var(--line); }
.soc--tl .soc__ico { background: #1339b2; color: #fff; }
.soc__txt { display: grid; line-height: 1.35; }
.soc__txt b { font-size: 15.5px; }
.soc__txt i { font-style: normal; color: var(--muted); font-size: 13px; }

/* ---------- футер ---------- */
.footer { border-top: 1px solid var(--line); padding: 44px 0 28px; background: var(--bg-2); }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer__logo { font-family: var(--font-head); font-weight: 800; font-size: 19px; display: inline-grid; line-height: 1.1; }
.footer__logo b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__logo i { font-style: normal; color: var(--muted); font-size: 12px; letter-spacing: .3em; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 6px; }

.footer__nav { display: flex; flex-wrap: wrap; gap: 20px; align-self: center; }
.footer__nav a { color: var(--muted); font-size: 14.5px; font-weight: 600; }
.footer__nav a:hover { color: var(--text); }

.footer__contacts { display: grid; gap: 6px; align-content: start; }
.footer__contacts a { color: var(--muted); font-size: 14.5px; }
.footer__contacts a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  color: #6b7288;
  font-size: 13px;
}

/* ---------- наверх ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 22, 30, .85);
  backdrop-filter: blur(10px);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s ease;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad); border-color: transparent; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- reveal анимации ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1), transform .7s cubic-bezier(.2, .65, .3, 1);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
.reveal[data-delay="8"] { transition-delay: .64s; }
.reveal.is-shown { opacity: 1; transform: none; }

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

/* ---------- адаптив ---------- */
@media (max-width: 960px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 34px;
    gap: 26px;
    background: rgba(12, 13, 18, .97);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.2, .65, .3, 1);
    z-index: 120;
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 20px; }
  .nav__phone { margin-top: 8px; }
}

@media (max-width: 560px) {
  .hero { padding-top: 120px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contacts__actions .btn { width: 100%; justify-content: center; }
  .banner__stats { gap: 22px; }
  .footer__inner { flex-direction: column; }
}
