@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter+Tight:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #edf0f2;
  --black: #090d13;
  --text: #131820;
  --muted: rgba(19, 24, 32, 0.68);
  --red: #ef2f20;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.46);
  --stroke: rgba(255, 255, 255, 0.62);
  --shadow: 0 24px 80px rgba(10, 18, 28, 0.12);
  --header-h: 80px;
  --font-display: 'Bebas Neue', 'Inter Tight', Arial, sans-serif;
  --font-body: 'Inter Tight', Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  overflow: hidden;
}

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

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: #eef1f3;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.08em;
}

.loader__logo span {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-left: 6px;
  background: var(--red);
  transform: rotate(-62deg) translateY(-5px);
}

.loader__text {
  color: var(--muted);
  font-size: 14px;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  pointer-events: none;
}

.header > * { pointer-events: auto; }

.logo {
  display: grid;
  grid-template-columns: auto 18px;
  grid-template-areas: "main slash" "sub slash";
  align-items: start;
  width: max-content;
  line-height: 1;
}

.logo__main {
  grid-area: main;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
}

.logo__sub {
  grid-area: sub;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(9, 13, 19, 0.55);
}

.logo__slash {
  grid-area: slash;
  width: 3px;
  height: 38px;
  margin-left: 4px;
  background: var(--red);
  transform: rotate(28deg);
  border-radius: 10px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 50px;
  padding: 5px 8px;
  border-radius: 999px;
}

.nav__link {
  padding: 10px 20px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav__link.is-active,
.nav__link:hover { background: rgba(255, 255, 255, 0.72); }

.header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.phone::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 17px;
}

/* ─── BURGER ─── */
.burger {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  position: relative;
  z-index: 200;
  transition: background 0.3s ease;
}

.burger:hover { background: #1a2030; }

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding: 100px 60px 60px;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  transition: color 0.2s ease;
  display: block;
}

.mobile-menu__link:hover { color: var(--white); }

.mobile-menu__bottom {
  padding: 40px 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu__deco {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}

/* ─── MAIN ─── */
.experience {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(12, 18, 28, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 18, 28, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 65% 0%, rgba(255,255,255,0.86), transparent 38%),
    #e9edf0;
  background-size: 240px 240px, 240px 240px, auto, auto;
}

.experience::before {
  content: "";
  position: fixed;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(255,255,255,0.78) 39%, rgba(255,255,255,0.92) 44%, transparent 48%),
    linear-gradient(112deg, transparent 0 70%, rgba(255,255,255,0.42) 73%, transparent 78%);
  opacity: 0.9;
}

.video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.video.is-active { opacity: 1; }
.video--bg { z-index: 1; }
.video--alpha { z-index: 3; }

/* ─── BIG COPY ─── */
.big-copy {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.big-copy__item {
  position: absolute;
  left: clamp(22px, 3.2vw, 58px);
  top: clamp(60px, 6vw, 100px);
  display: grid;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.big-copy__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.big-copy__item span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 11.5vw, 210px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(8, 10, 14, 0.93);
  white-space: nowrap;
}

/* ─── SCENES ─── */
.scene {
  position: fixed;
  inset: 0;
  z-index: 4;
  min-height: 100vh;
  padding: calc(var(--header-h) + 24px) 56px 40px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.scene.is-active {
  opacity: 1;
  pointer-events: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(12, 18, 28, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 210px;
  height: 54px;
  padding: 0 16px 0 22px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 50px rgba(239, 47, 32, 0.22);
  transition: transform 0.25s ease;
}

.button:hover { transform: translateY(-2px); }
.button b { font-size: 22px; font-weight: 400; line-height: 1; }
.button--light { background: rgba(255,255,255,0.72); color: var(--text); box-shadow: var(--shadow); }

/* ─── SCENE 1: HERO ─── */
.scene--hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
}

.features-mini {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.feature-mini {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 14px;
}

.feature-mini p {
  margin: 0;
  color: rgba(12, 18, 28, 0.68);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--red);
}

.icon::before { font-size: 26px; line-height: 1; }
.icon--equipment::before { content: "▣"; }
.icon--master::before { content: "♙"; }
.icon--shield::before { content: "♢"; }
.icon--calendar::before { content: "▦"; }
.icon--garage::before { content: "⌂"; }
.icon--people::before { content: "♙"; }
.icon--check::before { content: "✓"; }
.icon--diagnostic::before { content: "⌁"; }
.icon--sound::before { content: "▥"; }
.icon--spark::before { content: "✧"; }
.icon--bolt::before { content: "ϟ"; }
.icon--target::before { content: "◎"; }
.icon--wrench::before { content: "♢"; }

.scene__right--hero {
  align-self: center;
  padding-top: 100px;
  max-width: 340px;
  justify-self: end;
}

.scene__right--hero p {
  margin: 0 0 24px;
  color: rgba(12, 18, 28, 0.74);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* ─── SCENE 2: TRUST ─── */
.scene--trust {
  display: grid;
  place-items: center end;
  padding-right: 40px;
}

.trust-panel {
  width: min(820px, 50vw);
  padding: 32px;
  border-radius: 24px;
}

.trust-panel__top {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 28px;
  align-items: start;
  margin-bottom: 20px;
}

/* Заголовок h1 скрыт, используем eyebrow + lead */
.trust-panel h1 {
  display: none;
}

.trust-panel .lead-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.lead {
  max-width: 360px;
  margin: 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.chart-card {
  height: 120px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.32);
  box-shadow: none;
}

.chart-card svg { width: 100%; height: 100%; overflow: visible; }
.chart-card path { stroke: var(--red); stroke-width: 2.5; }
.chart-card circle { fill: var(--red); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.stat-card {
  position: relative;
  padding: 16px 18px 14px;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
}

.stat-card h3 {
  margin: 6px 0 6px;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.stat-card h3 b { font-size: 24px; font-family: var(--font-display); letter-spacing: 0.02em; }

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.stat-card em,
.service-card::after {
  position: absolute;
  left: 18px;
  bottom: 12px;
  width: 28px;
  height: 2px;
  background: var(--red);
  content: "";
}

.trust-panel__bottom {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: none;
}

.trust-panel__bottom p {
  margin: 0;
  color: rgba(12, 18, 28, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.trust-panel__bottom .button {
  min-width: 180px;
  height: 46px;
  font-size: 13px;
}

/* ─── SCENE 3: SERVICES ─── */
.scene--services {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding-bottom: 32px;
}

/* Заголовок секции услуг скрыт */
.services-heading {
  display: none;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-self: end;
   max-height: 35vh;
  height: 100%;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 24px;
  border-radius: 18px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.56));
  pointer-events: none;
}

.service-card > * { position: relative; z-index: 1; }

.service-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.72);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0.01em;
  flex: 1;
}

.service-card p {
  margin: 0;
  color: rgba(12, 18, 28, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.service-card a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

/* ─── SERVICES INTRO (заменяет services-heading) ─── */
.services-intro {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  padding-top: 12px;
}

.services-intro__text .eyebrow { margin-bottom: 10px; }

.services-intro__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 1.0;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
}

.services-intro__sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}

/* ─── SCROLL DOTS ─── */
.scroll-progress {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.scroll-progress span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.2);
  transition: width 0.28s ease, background 0.28s ease;
}

.scroll-progress span.is-active {
  width: 26px;
  background: var(--red);
}

.scroll-hint {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 40;
  transform: translateX(-50%);
  color: rgba(12, 18, 28, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ─── FILE HINT ─── */
.file-hint {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: 420px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(10, 14, 20, 0.88);
  color: #fff;
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.file-hint b { display: block; margin-bottom: 8px; font-size: 17px; }
.file-hint p { margin: 0 0 10px; color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.4; }
.file-hint code {
  display: block; padding: 10px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  font-family: Consolas, monospace; font-size: 13px; line-height: 1.45;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1400px) {
  .trust-panel { width: min(780px, 56vw); }
  .service-cards { gap: 10px; }
  .service-card h3 { font-size: 16px; }
}

@media (max-width: 1280px) {
  .header {
    grid-template-columns: 180px 1fr 220px;
    padding-inline: 24px;
  }

  .nav { gap: 2px; }
  .nav__link { padding: 10px 14px; font-size: 13px; }

  .trust-panel { width: min(760px, 62vw); }
  .trust-panel__top { grid-template-columns: 1fr; }
  .chart-card { display: none; }

  .service-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .nav, .phone { display: none; }

  .logo__main { font-size: 18px; }
  .logo__sub { font-size: 9px; }

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

  .scene {
    padding: calc(var(--header-h) + 20px) 18px 20px;
  }

  .big-copy__item {
    left: 18px;
    top: 80px;
  }

  .big-copy__item span {
    font-size: clamp(56px, 16vw, 90px);
  }

  .scene--hero {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .features-mini { margin-top: 24px; gap: 12px; }
  .scene__right--hero { padding-top: 16px; max-width: 100%; justify-self: start; }

  .scene--trust { place-items: end center; padding-right: 18px; }

  .trust-panel {
    width: 100%;
    padding: 20px;
    max-height: calc(100vh - 90px);
    overflow: auto;
  }

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

  .trust-panel__bottom { grid-template-columns: 38px 1fr; }
  .trust-panel__bottom .button { grid-column: 1 / -1; width: 100%; }

  .services-intro { grid-template-columns: 1fr; }
  .services-intro__title { font-size: 38px; }

  .service-cards {
    grid-template-columns: 1fr;
    max-height: 44vh;
    overflow: auto;
  }

  .scroll-progress { right: 14px; bottom: 14px; }
  .scroll-hint { display: none; }

  .mobile-menu__inner { padding: 80px 32px 40px; }
  .mobile-menu__bottom { padding: 28px 32px; flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ═══════════════════════════════════════════
   SCROLL CONTENT (works / cta / footer)
   ═══════════════════════════════════════════ */

#scrollContent {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);
  /* Начинает снизу экрана, скользит вверх */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.38s ease;
  padding-top: var(--header-h);
  /* Скрываем нативный скроллбар */
  scrollbar-width: none;
}
#scrollContent::-webkit-scrollbar { display: none; }

/* ─── WORKS ─── */
.works-section {
  padding: 56px 56px 48px;
}

.works-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.works-header .eyebrow { margin-bottom: 0; }

.works-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.works-all b { font-weight: 400; font-size: 18px; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.work-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  background: #222;
}

.work-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 22px 22px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
}

.work-card__body p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.work-card__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  transition: background 0.2s;
}

.work-card__arrow:hover { background: var(--red); border-color: var(--red); }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  overflow: hidden;
  margin: 0 56px 56px;
  padding: 44px 52px;
  border-radius: 24px;
  background: #f5f6f8;
  border: 1px solid rgba(12,18,28,0.07);
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.cta-banner__deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 240px;
  background: url('./assets/deco/pipes.png') center/contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.cta-banner__deco--left { left: -48px; }
.cta-banner__deco--right { right: -48px; transform: translateY(-50%) scaleX(-1); }

.cta-banner__title { position: relative; z-index: 1; }

.cta-banner__title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.cta-banner__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.cta-feat__dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}

.cta-feat__dot::after {
  content: "✓";
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.cta-banner__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.cta-contact__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(12,18,28,0.07);
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
}

.cta-banner__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner__btn {
  min-width: 190px;
  justify-content: space-between;
}

.cta-banner__action p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ─── FOOTER ─── */
.footer {
  margin: 0 56px 40px;
  padding: 44px 48px;
  border-radius: 24px;
  background: var(--black);
  color: rgba(255,255,255,0.88);
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.footer__logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer__logo-slash {
  width: 3px;
  height: 28px;
  background: var(--red);
  transform: rotate(28deg);
  border-radius: 4px;
  margin-left: 2px;
}

.footer__tagline {
  margin: 0 0 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.35);
}

.footer__col h4 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer__col nav a:hover { color: #fff; }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}

.footer__soc-btn:hover { background: var(--red); color: #fff; }

/* ─── RESPONSIVE SCROLL CONTENT ─── */
@media (max-width: 1100px) {
  .cta-banner {
    grid-template-columns: 1fr 1fr;
    margin: 0 24px 40px;
  }
  .cta-banner__action { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .footer { grid-template-columns: 1fr 1fr; margin: 0 24px 32px; }
}

@media (max-width: 900px) {
  .works-section { padding: 32px 18px 28px; }
  .works-grid { grid-template-columns: 1fr; gap: 12px; }
  .cta-banner {
    grid-template-columns: 1fr;
    margin: 0 18px 28px;
    padding: 28px 24px;
  }
  .footer {
    grid-template-columns: 1fr;
    margin: 0 18px 24px;
    padding: 28px 24px;
    gap: 24px;
  }
}
