/* Контрград Scroll — full-screen кадры, кастомный скролл, точки */

.cg-body--scene {
  --scene-rail-w: 3px;
  --scene-dots-offset: clamp(2.75rem, 5.5vw, 4.25rem);
  --scene-rail-offset: clamp(0.65rem, 1.5vw, 1.1rem);
  --scene-content-inset: clamp(1rem, 3vw, 2rem);
  color-scheme: dark;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

html:has(.cg-body--scene) {
  overflow: hidden;
  height: 100%;
}

/* ——— Scroll-контейнер: нативный скролл скрыт, рисуем свой rail ——— */
.cg-body--scene .cg-scene-scroll {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cg-body--scene .cg-scene-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cg-body--scene .cg-scene-scroll {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
}

/* Тонкий скролл для длинных кадров (новости, политика) */
.cg-body--scene .cg-scene-panel--flow {
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 184, 255, 0.55) rgba(255, 255, 255, 0.04);
}

.cg-body--scene .cg-scene-panel--flow::-webkit-scrollbar {
  width: 5px;
}

.cg-body--scene .cg-scene-panel--flow::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  margin-block: 12vh;
}

.cg-body--scene .cg-scene-panel--flow::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(126, 184, 255, 0.35), rgba(126, 184, 255, 0.75));
  border-radius: 999px;
  border: 1px solid rgba(126, 184, 255, 0.15);
}

.cg-body--scene .cg-scene-panel--flow::-webkit-scrollbar-thumb:hover {
  background: rgba(126, 184, 255, 0.85);
}

/* Кастомный rail справа */
.cg-scene-rail {
  position: fixed;
  top: calc(var(--header-h) + 1.25rem);
  bottom: 1.25rem;
  right: var(--scene-rail-offset);
  width: var(--scene-rail-w);
  z-index: 185;
  pointer-events: none;
}

.cg-scene-rail[hidden] {
  display: none !important;
}

.cg-scene-rail__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(126, 184, 255, 0.08);
}

.cg-scene-rail__thumb {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(126, 184, 255, 0.95), rgba(90, 150, 230, 0.75));
  box-shadow:
    0 0 12px rgba(126, 184, 255, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.12s linear;
  will-change: transform, height;
}

@media (max-width: 768px) {
  .cg-scene-rail {
    display: none;
  }
}

/* ——— Кадры ——— */
.cg-body--scene .cg-scene-scroll > section,
.cg-body--scene .cg-scene-scroll > .cg-hero-slider,
.cg-body--scene .cg-scene-scroll > .cg-kpis,
.cg-body--scene .cg-scene-scroll > .cg-scene-panel,
.cg-body--scene .cg-scene-scroll > .cg-page > section {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-block: clamp(4.75rem, 9vh, 6.5rem) clamp(2.5rem, 5vh, 4rem);
  padding-inline: var(--scene-content-inset);
}

@media (min-width: 769px) {
  .cg-body--scene .cg-scene-scroll > section,
  .cg-body--scene .cg-scene-scroll > .cg-hero-slider,
  .cg-body--scene .cg-scene-scroll > .cg-kpis,
  .cg-body--scene .cg-scene-scroll > .cg-scene-panel,
  .cg-body--scene .cg-scene-scroll > .cg-page > section {
    padding-right: calc(var(--scene-dots-offset) + 1.5rem);
  }
}

.cg-body--scene .cg-scene-panel__body {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.cg-body--scene .cg-scene-scroll > .cg-hero-slider {
  padding-block: 0;
  padding-inline: 0;
  justify-content: stretch;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

/* ——— Scene Hero: слайдер фоном, форма поверх ——— */
.cg-body--scene .cg-scene-hero {
  --hero-pad-top: calc(var(--header-h) + 0.75rem);
  --hero-slide-h: 100svh;
  --hero-form-w: min(420px, 36vw);
  position: relative;
  min-height: 100svh !important;
  max-height: 100svh;
  height: 100svh;
  overflow: hidden;
  padding: 0 !important;
}

.cg-body--scene .cg-scene-hero[data-scene-index]::before {
  display: none;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__track {
  height: 100%;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__slide {
  min-height: 100svh;
  height: 100svh;
  padding: var(--hero-pad-top) 0 clamp(5rem, 10vh, 6.5rem);
  align-items: center;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__slide-inner {
  padding-right: calc(var(--hero-form-w) + 2.5rem);
  align-self: center;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h) - 5rem);
}

.cg-scene-hero__progress {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: 3px;
  z-index: 8;
  background: rgba(255, 255, 255, 0.06);
}

.cg-scene-hero__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(126, 184, 255, 0.45), var(--accent));
  transition: width 0.35s ease;
}

.cg-scene-hero__glass {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(52%, calc(var(--hero-form-w) + 8rem));
  z-index: 3;
  pointer-events: none;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  background: linear-gradient(
    115deg,
    rgba(8, 11, 18, 0.05) 0%,
    rgba(12, 16, 28, 0.42) 35%,
    rgba(8, 11, 20, 0.62) 100%
  );
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
}

.cg-scene-hero__form-shell {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding:
    var(--hero-pad-top)
    calc(var(--scene-dots-offset) + 0.75rem)
    clamp(4.5rem, 9vh, 5.5rem)
    var(--scene-content-inset);
  box-sizing: border-box;
}

.cg-scene-hero__form-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  pointer-events: none;
}

.cg-body--scene .cg-scene-hero .cg-hero-form {
  pointer-events: auto;
  width: var(--hero-form-w);
  max-width: 100%;
  max-height: calc(100svh - var(--header-h) - 5rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 184, 255, 0.45) transparent;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(126, 184, 255, 0.2);
  background: rgba(8, 11, 18, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cg-body--scene .cg-scene-hero .cg-hero-form::-webkit-scrollbar {
  width: 4px;
}

.cg-body--scene .cg-scene-hero .cg-hero-form::-webkit-scrollbar-thumb {
  background: rgba(126, 184, 255, 0.45);
  border-radius: 999px;
}

.cg-scene-hero__form-badge {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.9);
}

.cg-scene-hero__copy-shell {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: min(54%, calc(var(--hero-form-w) + 10rem));
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    var(--hero-pad-top)
    clamp(1rem, 2.5vw, 2rem)
    clamp(4.5rem, 9vh, 5.5rem)
    clamp(1rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

.cg-scene-hero__copy-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(36rem, 100%);
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.cg-scene-hero__copy-wrap .cg-hero-slider__text--home {
  pointer-events: auto;
  width: 100%;
  max-width: 36rem;
  text-align: center;
}

.cg-scene-hero__copy-wrap .cg-scene-hero__brand {
  display: flex;
  justify-content: center;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__slide--home {
  padding: 0;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__text--home {
  max-width: 36rem;
  text-align: center;
}

.cg-scene-hero__brand {
  margin: 0.5rem 0 0.75rem;
  line-height: 0;
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__logo-mark {
  width: clamp(120px, 16vw, 200px);
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__lead {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--muted);
}

.cg-scene-hero__slide-copy {
  max-width: 32rem;
}

.cg-scene-hero__slide-copy .cg-hero-slider__title {
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
}

.cg-scene-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.15rem;
}

.cg-scene-hero__slide-copy .cg-crim-hero__phone {
  flex-shrink: 0;
}

.cg-scene-hero__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-bright);
  text-decoration: none;
  border: 1px solid rgba(126, 184, 255, 0.28);
  background: rgba(126, 184, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cg-scene-hero__cta:hover {
  background: rgba(126, 184, 255, 0.18);
  border-color: rgba(126, 184, 255, 0.45);
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__controls {
  position: absolute;
  left: var(--scene-content-inset);
  bottom: clamp(1.25rem, 3vh, 2rem);
  transform: none;
  z-index: 6;
  margin: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cg-scene-hero__counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(126, 184, 255, 0.85);
  padding-right: 0.35rem;
  margin-right: 0.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cg-body--scene .cg-scene-hero .cg-hero-slider__dot[aria-current="true"] {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(126, 184, 255, 0.45);
}

.cg-body--scene .cg-scene-hero .cg-hero-form__textarea {
  min-height: 52px;
}

@media (max-width: 960px) {
  .cg-body--scene .cg-scene-scroll > .cg-hero-slider.cg-scene-hero {
    max-height: none;
    height: auto;
  }

  .cg-body--scene .cg-scene-hero {
    --hero-form-w: 100%;
    height: auto;
    min-height: 100svh !important;
    max-height: none;
  }

  .cg-scene-hero__glass {
    display: none;
  }

  .cg-body--scene .cg-scene-hero .cg-hero-slider__viewport {
    position: relative;
    min-height: clamp(340px, 52svh, 480px);
    height: auto;
  }

  .cg-body--scene .cg-scene-hero .cg-hero-slider__slide {
    min-height: clamp(340px, 52svh, 480px);
    height: auto;
    padding-bottom: 1rem;
  }

  .cg-body--scene .cg-scene-hero .cg-hero-slider__slide-inner {
    padding-right: 0;
    min-height: auto;
    text-align: center;
    justify-content: center;
  }

  .cg-scene-hero__copy-shell {
    position: relative;
    inset: auto;
    padding: 0 var(--scene-content-inset) 1rem;
    justify-content: center;
  }

  .cg-scene-hero__copy-wrap {
    justify-content: center;
  }

  .cg-scene-hero__copy-wrap .cg-hero-slider__text--home {
    text-align: center;
  }

  .cg-body--scene .cg-scene-hero .cg-hero-slider__text--home,
  .cg-scene-hero__slide-copy {
    margin-inline: auto;
  }

  .cg-scene-hero__actions {
    justify-content: center;
  }

  .cg-scene-hero__form-shell {
    position: relative;
    inset: auto;
    padding: 0 var(--scene-content-inset) clamp(5rem, 10vh, 6rem);
  }

  .cg-body--scene .cg-scene-hero .cg-hero-slider__controls {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0.75rem auto 0;
    width: fit-content;
  }
}

@media (max-width: 520px) {
  .cg-scene-hero__form-shell {
    padding-inline: 1rem;
  }
}

.cg-body--scene .cg-scene-scroll > .cg-kpis {
  padding-block: clamp(3rem, 6vh, 5rem);
}

.cg-body--scene .cg-scene-scroll > .cg-crim-hero {
  padding-block: 0;
  min-height: 100svh;
  justify-content: stretch;
}

.cg-body--scene .cg-scene-scroll > .cg-crim-sos {
  min-height: 100svh;
  padding-block: clamp(3rem, 8vh, 5rem);
}

.cg-body--scene .cg-scene-scroll > .cg-crim-hero.cg-scene-panel {
  height: 100svh;
  max-height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  overscroll-behavior: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.cg-body--scene .cg-scene-scroll > .cg-crim-hero.cg-scene-panel .cg-crim-hero__inner {
  min-height: min(100%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cg-body--scene .cg-scene-panel--flow,
.cg-body--scene .cg-scene-scroll > .cg-scene-panel--flow {
  min-height: 100svh;
  max-height: 100svh;
  height: 100svh;
  justify-content: flex-start;
  overflow-y: auto;
  overscroll-behavior: auto;
}

.cg-body--scene .cg-scene-panel--page {
  justify-content: center;
}

.cg-body--scene .cg-scene-panel--footer {
  min-height: min(100svh, 620px);
  justify-content: center;
  background:
    radial-gradient(720px 380px at 88% 15%, rgba(255, 0, 0, 0.06), transparent 55%),
    radial-gradient(640px 320px at 8% 85%, rgba(126, 184, 255, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.35) 0%, rgba(8, 11, 18, 0.97) 40%, #05070d 100%);
}

.cg-body--scene .cg-scene-panel--footer .cg-footer {
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 4vh, 2.5rem) 0;
  background: transparent;
  border: none;
}

/* Номер кадра */
.cg-body--scene .cg-scene-panel[data-scene-index]::before {
  content: attr(data-scene-index);
  position: absolute;
  top: calc(var(--header-h) + 0.75rem);
  left: var(--scene-content-inset);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(126, 184, 255, 0.12);
  pointer-events: none;
  user-select: none;
}

/* ——— Тоны кадров (разнообразие фона) ——— */
.cg-scene-tone--hero {
  background: #070a12;
}

.cg-scene-tone--stats {
  background:
    radial-gradient(900px 420px at 15% 50%, rgba(126, 184, 255, 0.1), transparent 58%),
    linear-gradient(165deg, #0a101c 0%, #080b12 100%);
}

.cg-scene-tone--glass {
  background:
    radial-gradient(700px 380px at 85% 20%, rgba(100, 160, 255, 0.08), transparent 55%),
    #0c101a;
}

.cg-scene-tone--cards {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(60, 100, 180, 0.12), transparent),
    #080b12;
}

.cg-scene-tone--media {
  background:
    linear-gradient(135deg, rgba(126, 184, 255, 0.04) 0%, transparent 40%),
    #0a0e18;
}

.cg-scene-tone--cinema {
  background:
    radial-gradient(600px 400px at 20% 80%, rgba(126, 184, 255, 0.07), transparent),
    #070a12;
}

.cg-scene-tone--team {
  background:
    radial-gradient(800px 500px at 70% 30%, rgba(126, 184, 255, 0.09), transparent 60%),
    linear-gradient(180deg, #0c101a, #080b12);
}

.cg-scene-tone--contact {
  background:
    radial-gradient(900px 450px at 50% 0%, rgba(126, 184, 255, 0.11), transparent 55%),
    #081018;
}

.cg-scene-tone--accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.65;
}

.cg-scene-tone--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.5;
}

/* ——— Шапка ——— */
.cg-body--scene .cg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(8, 11, 18, 0.5);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cg-body--scene .cg-header.is-scrolled {
  background: rgba(8, 11, 18, 0.9);
  border-bottom-color: rgba(126, 184, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cg-body--scene .cg-back-top {
  display: none !important;
}

/* ——— Точки навигации (дальше от края) ——— */
.cg-scene-dots {
  position: fixed;
  top: 50%;
  right: var(--scene-dots-offset);
  z-index: 190;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.55);
  border: 1px solid rgba(126, 184, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.cg-scene-dots[hidden] {
  display: none !important;
}

.cg-scene-dots__btn {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    box-shadow 0.25s ease,
    width 0.28s ease,
    height 0.28s ease;
}

.cg-scene-dots__btn::after {
  content: attr(data-scene-tip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--silver-bright);
  background: rgba(10, 14, 24, 0.94);
  border: 1px solid rgba(126, 184, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.cg-scene-dots__btn:hover::after,
.cg-scene-dots__btn:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.cg-scene-dots__btn:hover,
.cg-scene-dots__btn:focus-visible {
  background: rgba(126, 184, 255, 0.5);
  outline: none;
}

.cg-scene-dots__btn.is-active {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(126, 184, 255, 0.18),
    0 0 16px rgba(126, 184, 255, 0.35);
}

@media (max-width: 768px) {
  .cg-scene-dots {
    top: auto;
    bottom: max(1.15rem, env(safe-area-inset-bottom));
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    flex-wrap: wrap;
    max-width: calc(100vw - 2rem);
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
  }

  .cg-scene-dots__btn::after {
    display: none;
  }
}

/* ——— Адаптация блоков внутри кадров ——— */
.cg-body--scene .cg-section__title,
.cg-body--scene .cg-hero-slider__title {
  letter-spacing: -0.03em;
}

.cg-body--scene .cg-scene-layout--compact .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--header-h) - 5rem);
}

.cg-body--scene .cg-scene-layout--compact .cg-section__head {
  margin-bottom: clamp(1rem, 3vh, 1.75rem);
}

/* KPI — убеждающий блок с анимацией */
.cg-scene-stats {
  position: relative;
  overflow: hidden;
}

.cg-scene-stats__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 320px at 20% 30%, rgba(126, 184, 255, 0.12), transparent 60%),
    radial-gradient(500px 280px at 85% 70%, rgba(90, 140, 220, 0.08), transparent 55%);
  animation: cg-stats-glow 8s ease-in-out infinite alternate;
}

@keyframes cg-stats-glow {
  from { opacity: 0.65; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}

.cg-scene-stats__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 3.5vh, 2.5rem);
  min-height: calc(100svh - var(--header-h) - 4rem);
}

.cg-scene-stats__head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-stats.is-stats-active .cg-scene-stats__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-stats__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-stats.is-stats-active .cg-scene-stats__title {
  animation: none;
}

@keyframes cg-stats-title-in {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.cg-scene-stats__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.6;
  color: var(--silver-dim);
}

.cg-scene-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.cg-scene-stats__card {
  position: relative;
  padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1rem, 2vw, 1.35rem);
  border-radius: calc(var(--radius-sm) + 2px);
  border: 1px solid rgba(126, 184, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cg-scene-stats.is-stats-active .cg-scene-stats__card {
  animation: cg-stats-card-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--cg-stat-i, 0) * 0.1s);
}

@keyframes cg-stats-card-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cg-scene-stats__card:hover {
  border-color: rgba(126, 184, 255, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.cg-scene-stats__ring {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent) 0deg,
    var(--accent) calc(var(--cg-ring-fill, 0) * 3.6deg),
    rgba(255, 255, 255, 0.08) calc(var(--cg-ring-fill, 0) * 3.6deg),
    rgba(255, 255, 255, 0.08) 360deg
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  opacity: 0.85;
}

.cg-scene-stats.is-stats-active .cg-scene-stats__ring {
  animation: cg-stats-ring-spin 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.2s + var(--cg-stat-i, 0) * 0.12s);
}

@keyframes cg-stats-ring-spin {
  from { transform: rotate(-90deg) scale(0.6); opacity: 0; }
  to { transform: rotate(0deg) scale(1); opacity: 0.85; }
}

.cg-scene-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  border-radius: 10px;
  color: rgba(126, 184, 255, 0.95);
  background: rgba(126, 184, 255, 0.1);
  border: 1px solid rgba(126, 184, 255, 0.18);
}

.cg-scene-stats__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.cg-scene-stats__value {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--silver-bright);
}

.cg-scene-stats__benefit {
  margin: 0 0 0.4rem;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(180, 210, 255, 0.95);
}

.cg-scene-stats__label {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--silver-dim);
}

.cg-scene-stats__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

.cg-scene-stats.is-stats-active .cg-scene-stats__foot {
  animation: cg-stats-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

.cg-scene-stats__closing {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  max-width: 520px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  color: var(--muted);
}

.cg-scene-stats__pulse {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(126, 184, 255, 0.5);
  animation: cg-stats-pulse 2s ease-out infinite;
}

@keyframes cg-stats-pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 184, 255, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(126, 184, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 184, 255, 0); }
}

@media (min-width: 900px) {
  .cg-scene-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-scene-stats__glow,
  .cg-scene-stats__pulse {
    animation: none;
  }

  .cg-scene-stats__card {
    opacity: 1;
    transform: none;
  }

  .cg-scene-stats__head,
  .cg-scene-stats__foot {
    opacity: 1;
    transform: none;
  }

  .cg-scene-stats.is-stats-active .cg-scene-stats__card,
  .cg-scene-stats.is-stats-active .cg-scene-stats__head,
  .cg-scene-stats.is-stats-active .cg-scene-stats__foot,
  .cg-scene-stats.is-stats-active .cg-scene-stats__title,
  .cg-scene-stats.is-stats-active .cg-scene-stats__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Направления — убеждающий блок с анимацией */
.cg-scene-directions {
  position: relative;
  overflow: hidden;
}

.cg-scene-directions__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 300px at 12% 55%, rgba(126, 184, 255, 0.1), transparent 58%),
    radial-gradient(480px 260px at 92% 35%, rgba(90, 140, 220, 0.07), transparent 55%);
  animation: cg-stats-glow 9s ease-in-out infinite alternate-reverse;
}

.cg-scene-directions__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.25rem, 3vh, 2rem);
  min-height: calc(100svh - var(--header-h) - 4rem);
}

.cg-scene-directions__head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-directions.is-directions-active .cg-scene-directions__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-directions__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-directions__lead {
  margin: 0;
  font-size: clamp(0.92rem, 1.45vw, 1.06rem);
  line-height: 1.6;
  color: var(--silver-dim);
}

.cg-scene-directions__track {
  display: none;
}

@media (min-width: 901px) {
  .cg-scene-directions__track {
    display: block;
    position: relative;
    height: 2px;
    margin: 0 clamp(1rem, 4vw, 3rem);
    background: rgba(126, 184, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
  }

  .cg-scene-directions.is-directions-active .cg-scene-directions__track {
    animation: cg-stats-title-in 0.5s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .cg-scene-directions__track-line {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(126, 184, 255, 0.35), var(--accent), rgba(126, 184, 255, 0.35));
    box-shadow: 0 0 12px rgba(126, 184, 255, 0.45);
  }

  .cg-scene-directions.is-directions-active .cg-scene-directions__track-line {
    animation: cg-dir-line-grow 1.1s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

@keyframes cg-dir-line-grow {
  to { width: 100%; }
}

.cg-scene-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  align-items: stretch;
}

.cg-scene-directions__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  border-radius: calc(var(--radius-sm) + 4px);
  border: 1px solid rgba(126, 184, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cg-scene-directions__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(126, 184, 255, 0.45) 50%, transparent 70%);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
}

.cg-scene-directions.is-directions-active .cg-scene-directions__card {
  animation: cg-stats-card-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.18s + var(--cg-dir-i, 0) * 0.12s);
}

.cg-scene-directions.is-directions-active .cg-scene-directions__card::before {
  animation: cg-dir-shimmer 2.4s calc(0.5s + var(--cg-dir-i, 0) * 0.15s) ease forwards;
}

@keyframes cg-dir-shimmer {
  0% { opacity: 0; background-position: 120% 50%; }
  35% { opacity: 1; }
  100% { opacity: 0.35; background-position: -20% 50%; }
}

.cg-scene-directions__card:hover {
  border-color: rgba(126, 184, 255, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.cg-scene-directions__title-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}

.cg-scene-directions__num {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(126, 184, 255, 0.35);
}

.cg-scene-directions__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.95);
  background: rgb(255 0 0 / 19%);
  border: 1px solid rgb(255 0 0 / 28%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.cg-scene-directions.is-directions-active .cg-scene-directions__icon {
  animation: cg-dir-icon-pop 0.65s calc(0.35s + var(--cg-dir-i, 0) * 0.12s) cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cg-dir-icon-pop {
  0% { transform: scale(0.7); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.cg-scene-directions__card:hover .cg-scene-directions__icon {
  transform: translateY(-1px);
  background: rgb(255 0 0 / 28%);
  border-color: rgb(255 0 0 / 38%);
  box-shadow: 0 6px 18px rgb(255 0 0 / 15%);
}

.cg-scene-directions__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cg-scene-directions__benefit {
  margin: 0;
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(180, 210, 255, 0.88);
}

.cg-scene-directions__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
}

.cg-scene-directions__text {
  margin: 0;
  flex: 1;
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  line-height: 1.55;
  color: var(--silver-dim);
}

.cg-scene-directions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0.65rem;
  padding: 0;
  list-style: none;
}

.cg-scene-directions__tags li {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1.3;
  color: rgba(180, 210, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 184, 255, 0.12);
  opacity: 0;
  transform: translateY(8px);
}

.cg-scene-directions.is-directions-active .cg-scene-directions__tags li {
  animation: cg-stats-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(1) .cg-scene-directions__tags li:nth-child(1) { animation-delay: 0.55s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(1) .cg-scene-directions__tags li:nth-child(2) { animation-delay: 0.62s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(1) .cg-scene-directions__tags li:nth-child(3) { animation-delay: 0.69s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(2) .cg-scene-directions__tags li:nth-child(1) { animation-delay: 0.62s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(2) .cg-scene-directions__tags li:nth-child(2) { animation-delay: 0.69s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(2) .cg-scene-directions__tags li:nth-child(3) { animation-delay: 0.76s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(3) .cg-scene-directions__tags li:nth-child(1) { animation-delay: 0.69s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(3) .cg-scene-directions__tags li:nth-child(2) { animation-delay: 0.76s; }
.cg-scene-directions.is-directions-active .cg-scene-directions__card:nth-child(3) .cg-scene-directions__tags li:nth-child(3) { animation-delay: 0.83s; }

.cg-scene-directions__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.cg-scene-directions__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}

.cg-scene-directions__link:hover {
  color: var(--silver-bright);
  gap: 0.65rem;
}

.cg-scene-directions__link:hover svg {
  transform: translateX(3px);
}

.cg-scene-directions__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

.cg-scene-directions.is-directions-active .cg-scene-directions__foot {
  animation: cg-stats-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.cg-scene-directions__closing {
  margin: 0;
  max-width: 520px;
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 900px) {
  .cg-scene-directions__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-scene-directions__glow {
    animation: none;
  }

  .cg-scene-directions__head,
  .cg-scene-directions__foot,
  .cg-scene-directions__card,
  .cg-scene-directions__tags li,
  .cg-scene-directions__track {
    opacity: 1;
    transform: none;
  }

  .cg-scene-directions.is-directions-active .cg-scene-directions__head,
  .cg-scene-directions.is-directions-active .cg-scene-directions__foot,
  .cg-scene-directions.is-directions-active .cg-scene-directions__card,
  .cg-scene-directions.is-directions-active .cg-scene-directions__tags li,
  .cg-scene-directions.is-directions-active .cg-scene-directions__icon,
  .cg-scene-directions.is-directions-active .cg-scene-directions__track-line {
    animation: none;
  }

  .cg-scene-directions__track-line {
    width: 100%;
  }
}

/* Новости — убеждающий блок с анимацией */
.cg-scene-news {
  position: relative;
  overflow: hidden;
}

.cg-scene-news__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 320px at 78% 22%, rgba(126, 184, 255, 0.11), transparent 58%),
    radial-gradient(440px 260px at 15% 78%, rgba(90, 140, 220, 0.07), transparent 55%);
  animation: cg-stats-glow 10s ease-in-out infinite alternate;
}

.cg-scene-news__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.1rem, 2.8vh, 1.75rem);
  min-height: calc(100svh - var(--header-h) - 4rem);
}

.cg-scene-news__head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-news.is-news-active .cg-scene-news__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-news__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-news__lead {
  margin: 0 0 0.85rem;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: var(--silver-dim);
}

.cg-scene-news__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cg-scene-news__highlights li {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(180, 210, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 184, 255, 0.16);
  opacity: 0;
  transform: translateY(8px);
}

.cg-scene-news.is-news-active .cg-scene-news__highlights li {
  animation: cg-stats-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-news.is-news-active .cg-scene-news__highlights li:nth-child(1) { animation-delay: 0.28s; }
.cg-scene-news.is-news-active .cg-scene-news__highlights li:nth-child(2) { animation-delay: 0.36s; }
.cg-scene-news.is-news-active .cg-scene-news__highlights li:nth-child(3) { animation-delay: 0.44s; }

.cg-scene-news__feed {
  width: 100%;
  opacity: 0;
  transform: translateY(22px);
}

.cg-scene-news.is-news-active .cg-scene-news__feed {
  animation: cg-stats-card-in 0.75s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-news .cg-news-slider__top {
  margin-bottom: clamp(0.65rem, 1.5vh, 0.85rem);
  opacity: 0;
  transform: translateY(8px);
}

.cg-scene-news.is-news-active .cg-news-slider__top {
  animation: cg-stats-card-in 0.55s 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-news .cg-news-slider__btn {
  border-color: rgba(126, 184, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.cg-scene-news .cg-news-slider__btn:hover {
  border-color: rgba(126, 184, 255, 0.38);
  background: rgba(126, 184, 255, 0.08);
  transform: translateY(-1px);
}

.cg-scene-news .cg-news__item {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.cg-scene-news.is-news-active .cg-news__item {
  animation: cg-stats-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.32s + var(--cg-news-i, 0) * 0.1s);
}

.cg-scene-news .cg-news__item--cover .cg-news__thumb {
  border: 1px solid rgba(126, 184, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cg-scene-news .cg-news__item--cover:hover .cg-news__thumb,
.cg-scene-news .cg-news__item--cover:focus-within .cg-news__thumb {
  border-color: rgba(126, 184, 255, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.cg-scene-news__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

.cg-scene-news.is-news-active .cg-scene-news__foot {
  animation: cg-stats-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.cg-scene-news__closing {
  margin: 0;
  max-width: 520px;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 768px) {
  .cg-scene-news__layout {
    min-height: calc(100svh - var(--header-h) - 2rem);
  }

  .cg-scene-news .cg-news__item--cover .cg-news__thumb {
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-scene-news__glow {
    animation: none;
  }

  .cg-scene-news__head,
  .cg-scene-news__foot,
  .cg-scene-news__feed,
  .cg-scene-news__highlights li,
  .cg-scene-news .cg-news-slider__top,
  .cg-scene-news .cg-news__item {
    opacity: 1;
    transform: none;
  }

  .cg-scene-news.is-news-active .cg-scene-news__head,
  .cg-scene-news.is-news-active .cg-scene-news__foot,
  .cg-scene-news.is-news-active .cg-scene-news__feed,
  .cg-scene-news.is-news-active .cg-scene-news__highlights li,
  .cg-scene-news.is-news-active .cg-news-slider__top,
  .cg-scene-news.is-news-active .cg-news__item {
    animation: none;
  }
}

/* Медиа-блоки — компактнее по высоте (страница роликов) */
.cg-body--scene .cg-scene-tone--cinema .cg-news-section__head {
  align-items: flex-end;
  gap: 1rem;
}

/* Ролики — убеждающий блок, размер по высоте экрана */
.cg-body--scene .cg-scene-scroll > .cg-scene-reels {
  padding-block: clamp(4.25rem, 7vh, 5.25rem) clamp(1.25rem, 2.5vh, 2rem);
}

.cg-scene-reels {
  --cg-scene-reels-visible: 3;
  --cg-scene-reels-gap: 16px;
  position: relative;
  overflow: hidden;
}

.cg-scene-reels__feed {
  container-type: inline-size;
  width: 100%;
}

.cg-scene-reels .cg-reels-slider__viewport {
  overflow: hidden;
}

.cg-scene-reels .cg-reels__card {
  --reel-slot-w: calc(
    (100cqi - (var(--cg-scene-reels-visible) - 1) * var(--cg-scene-reels-gap)) / var(--cg-scene-reels-visible)
  );
  --reel-max-h: clamp(260px, 38svh, 420px);
  --reel-h: min(calc(var(--reel-slot-w) * 16 / 9), var(--reel-max-h));
  --reel-w: calc(var(--reel-h) * 9 / 16);
  width: var(--reel-w);
  flex: 0 0 var(--reel-w);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  border-color: rgba(126, 184, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.cg-scene-reels .cg-reels__frame {
  aspect-ratio: unset;
  width: 100%;
  height: var(--reel-h);
  max-height: var(--reel-max-h);
}

.cg-scene-reels__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 340px at 18% 35%, rgba(126, 184, 255, 0.09), transparent 58%),
    radial-gradient(480px 300px at 88% 65%, rgba(255, 0, 0, 0.05), transparent 55%);
  animation: cg-stats-glow 11s ease-in-out infinite alternate-reverse;
}

.cg-scene-reels__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.55rem, 1.4vh, 1rem);
  min-height: 0;
  max-height: calc(100svh - var(--header-h) - clamp(0.75rem, 2vh, 1.5rem));
}

.cg-scene-reels__head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-reels.is-reels-active .cg-scene-reels__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-reels__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-reels__lead {
  margin: 0 0 0.55rem;
  font-size: clamp(0.85rem, 1.25vw, 0.98rem);
  line-height: 1.5;
  color: var(--silver-dim);
}

.cg-scene-reels__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cg-scene-reels__highlights li {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(180, 210, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 184, 255, 0.16);
  opacity: 0;
  transform: translateY(8px);
}

.cg-scene-reels.is-reels-active .cg-scene-reels__highlights li {
  animation: cg-stats-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-reels.is-reels-active .cg-scene-reels__highlights li:nth-child(1) { animation-delay: 0.28s; }
.cg-scene-reels.is-reels-active .cg-scene-reels__highlights li:nth-child(2) { animation-delay: 0.36s; }
.cg-scene-reels.is-reels-active .cg-scene-reels__highlights li:nth-child(3) { animation-delay: 0.44s; }

.cg-scene-reels__feed {
  width: 100%;
  opacity: 0;
  transform: translateY(22px);
}

.cg-scene-reels.is-reels-active .cg-scene-reels__feed {
  animation: cg-stats-card-in 0.75s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-reels .cg-reels-slider__top {
  margin-bottom: 0.35rem;
  min-height: 0;
  opacity: 0;
  transform: translateY(8px);
}

.cg-scene-reels.is-reels-active .cg-reels-slider__top {
  animation: cg-stats-card-in 0.55s 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-reels .cg-reels-slider__btn {
  border-color: rgba(126, 184, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.cg-scene-reels .cg-reels-slider__btn:hover,
.cg-scene-reels .cg-reels-slider__btn:focus-visible {
  border-color: rgba(126, 184, 255, 0.38);
  background: rgba(126, 184, 255, 0.08);
  transform: translateY(-1px);
}

.cg-scene-reels .cg-reels--slider {
  gap: var(--cg-scene-reels-gap);
  padding-bottom: 0.25rem;
  scroll-padding-inline: 2px;
}

.cg-scene-reels .cg-reels__iframe {
  width: 100%;
  height: 100%;
}

.cg-scene-reels .cg-reels__title {
  display: none;
}

.cg-scene-reels.is-reels-active .cg-reels__card {
  animation: cg-stats-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.34s + var(--cg-reel-i, 0) * 0.08s);
}

.cg-scene-reels .cg-reels__card:hover,
.cg-scene-reels .cg-reels__card:focus-within {
  border-color: rgba(126, 184, 255, 0.32);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.cg-scene-reels__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

.cg-scene-reels.is-reels-active .cg-scene-reels__foot {
  animation: cg-stats-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.cg-scene-reels__closing {
  margin: 0;
  max-width: 520px;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .cg-scene-reels {
    --cg-scene-reels-visible: 2;
  }
}

@media (max-width: 768px) {
  .cg-scene-reels {
    --cg-scene-reels-visible: 1;
  }

  .cg-scene-reels .cg-reels__card {
    --reel-max-h: clamp(240px, 44svh, 360px);
  }

  .cg-scene-reels__layout {
    max-height: none;
  }
}

@media (max-height: 860px) {
  .cg-scene-reels {
    --cg-scene-reels-visible: 2;
  }

  .cg-scene-reels .cg-reels__card {
    --reel-max-h: clamp(210px, 32svh, 340px);
  }
}

@media (max-height: 720px) {
  .cg-scene-reels .cg-reels__card {
    --reel-max-h: clamp(190px, 28svh, 280px);
  }

  .cg-scene-reels__lead {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-scene-reels__glow {
    animation: none;
  }

  .cg-scene-reels__head,
  .cg-scene-reels__foot,
  .cg-scene-reels__feed,
  .cg-scene-reels__highlights li,
  .cg-scene-reels .cg-reels-slider__top,
  .cg-scene-reels .cg-reels__card {
    opacity: 1;
    transform: none;
  }

  .cg-scene-reels.is-reels-active .cg-scene-reels__head,
  .cg-scene-reels.is-reels-active .cg-scene-reels__foot,
  .cg-scene-reels.is-reels-active .cg-scene-reels__feed,
  .cg-scene-reels.is-reels-active .cg-scene-reels__highlights li,
  .cg-scene-reels.is-reels-active .cg-reels-slider__top,
  .cg-scene-reels.is-reels-active .cg-reels__card {
    animation: none;
  }
}

.cg-body--scene .cg-scene-tone--team .cg-team-slider {
  max-width: 920px;
  margin-inline: auto;
}

.cg-body--scene .cg-scene-tone--team .cg-team-slider__card {
  border: 1px solid rgba(126, 184, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

/* ——— Команда (слайд) ——— */
.cg-scene-team {
  position: relative;
  overflow: hidden;
}

.cg-scene-team__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 360px at 82% 28%, rgba(126, 184, 255, 0.1), transparent 58%),
    radial-gradient(420px 280px at 10% 72%, rgba(255, 0, 0, 0.05), transparent 55%);
  animation: cg-stats-glow 12s ease-in-out infinite alternate;
}

.cg-scene-team__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.65rem, 1.8vh, 1.15rem);
  min-height: 0;
  max-height: calc(100svh - var(--header-h) - clamp(0.75rem, 2vh, 1.5rem));
}

.cg-scene-team__head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-team.is-team-active .cg-scene-team__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-team__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-team__lead {
  margin: 0;
  font-size: clamp(0.85rem, 1.25vw, 0.98rem);
  line-height: 1.5;
  color: var(--silver-dim);
}

.cg-scene-team__slider-wrap {
  opacity: 0;
  transform: translateY(22px);
}

.cg-scene-team.is-team-active .cg-scene-team__slider-wrap {
  animation: cg-stats-card-in 0.85s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-team .cg-team-slider__toolbar {
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.cg-scene-team .cg-team-slider__btn {
  border-color: rgba(126, 184, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.cg-scene-team .cg-team-slider__btn:hover,
.cg-scene-team .cg-team-slider__btn:focus-visible {
  border-color: rgba(126, 184, 255, 0.45);
  background: rgba(126, 184, 255, 0.1);
}

.cg-scene-team__foot {
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

.cg-scene-team.is-team-active .cg-scene-team__foot {
  animation: cg-stats-title-in 0.75s 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-team__closing {
  margin: 0;
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  color: rgba(180, 210, 255, 0.78);
}

@media (max-height: 760px) {
  .cg-scene-team__lead {
    display: none;
  }

  .cg-scene-team__foot {
    display: none;
  }
}

/* ——— Контакты (слайд) ——— */
.cg-scene-reach {
  position: relative;
  overflow: hidden;
}

.cg-scene-reach__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 300px at 15% 40%, rgba(126, 184, 255, 0.09), transparent 58%),
    radial-gradient(480px 280px at 90% 60%, rgba(255, 0, 0, 0.04), transparent 55%);
  animation: cg-stats-glow 10s ease-in-out infinite alternate-reverse;
}

.cg-scene-reach__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.55rem, 1.5vh, 1rem);
  min-height: 0;
  max-height: calc(100svh - var(--header-h) - clamp(0.5rem, 1.5vh, 1rem));
}

.cg-scene-reach__head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-reach.is-reach-active .cg-scene-reach__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-reach__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-reach__lead {
  margin: 0;
  font-size: clamp(0.84rem, 1.2vw, 0.96rem);
  line-height: 1.45;
  color: var(--silver-dim);
}

.cg-scene-reach__grid {
  opacity: 0;
  transform: translateY(20px);
}

.cg-scene-reach.is-reach-active .cg-scene-reach__grid {
  animation: cg-stats-card-in 0.85s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-body--scene .cg-scene-tone--contact .cg-reach__grid {
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: stretch;
}

.cg-body--scene .cg-scene-tone--contact .cg-reach-form,
.cg-body--scene .cg-scene-tone--contact .cg-reach__col--channels {
  border-radius: var(--radius);
  border: 1px solid rgba(126, 184, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
}

.cg-scene-reach .cg-reach__map-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(126, 184, 255, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.cg-scene-reach .cg-reach__map {
  min-height: clamp(140px, 22svh, 220px);
}

@media (max-height: 820px) {
  .cg-scene-reach__lead {
    display: none;
  }

  .cg-scene-reach .cg-reach__map-caption {
    display: none;
  }
}

@media (max-width: 900px) {
  .cg-scene-reach__layout {
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* ——— Подвал (слайд 8) ——— */
.cg-scene-footer {
  position: relative;
  overflow: hidden;
}

.cg-scene-footer__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 280px at 50% 0%, rgba(126, 184, 255, 0.14), transparent 62%),
    radial-gradient(360px 220px at 92% 88%, rgba(255, 0, 0, 0.07), transparent 58%);
  opacity: 0;
}

.cg-scene-footer__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(126, 184, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 184, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
}

.cg-scene-footer__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vh, 1.35rem);
}

.cg-scene-footer__head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cg-scene-footer-panel .cg-scene-footer__head {
  opacity: 0;
  transform: translateY(16px);
}

.cg-scene-footer-panel.is-footer-active .cg-scene-footer__head {
  animation: cg-stats-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-footer__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--silver-bright) 0%, rgba(180, 210, 255, 0.95) 55%, rgba(126, 184, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cg-scene-footer__lead {
  margin: 0;
  font-size: clamp(0.82rem, 1.15vw, 0.94rem);
  line-height: 1.45;
  color: var(--silver-dim);
}

.cg-scene-footer__bento {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
}

.cg-scene-footer-panel .cg-scene-footer__bento {
  opacity: 0;
  transform: translateY(18px);
}

.cg-scene-footer-panel.is-footer-active .cg-scene-footer__bento {
  animation: cg-stats-card-in 0.85s 0.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-footer__card {
  position: relative;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(126, 184, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cg-scene-footer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(126, 184, 255, 0.08), transparent 42%, rgba(255, 0, 0, 0.04));
  opacity: 0.7;
}

.cg-scene-footer__card > * {
  position: relative;
  z-index: 1;
}

.cg-scene-footer__card--brand {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cg-scene-footer__card--contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cg-scene-footer__card--nav {
  grid-column: 2;
}

.cg-scene-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.cg-scene-footer__logo img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cg-scene-footer__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
}

.cg-scene-footer__tagline {
  margin: 0;
  font-size: clamp(0.84rem, 1.1vw, 0.92rem);
  line-height: 1.5;
  color: var(--silver-dim);
  max-width: 36ch;
}

.cg-scene-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cg-scene-footer__badge {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(180, 210, 255, 0.82);
  background: rgba(126, 184, 255, 0.08);
  border: 1px solid rgba(126, 184, 255, 0.16);
}

.cg-scene-footer__copy {
  margin: auto 0 0;
  font-size: 0.78rem;
  color: rgba(180, 210, 255, 0.5);
}

.cg-scene-footer__card-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.75);
}

.cg-scene-footer__phone {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.cg-scene-footer__phone:hover {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(255, 0, 0, 0.25);
}

.cg-scene-footer__phone-hint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(180, 210, 255, 0.55);
}

.cg-scene-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cg-scene-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: rgba(220, 235, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 184, 255, 0.18);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cg-scene-footer__social-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.cg-scene-footer__social-btn:hover,
.cg-scene-footer__social-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(126, 184, 255, 0.45);
  background: rgba(126, 184, 255, 0.12);
  box-shadow: 0 8px 20px rgba(126, 184, 255, 0.12);
}

.cg-scene-footer__social-btn--vk:hover {
  color: #fff;
  border-color: rgba(76, 117, 163, 0.6);
  background: rgba(76, 117, 163, 0.35);
}

.cg-scene-footer__social-btn--tg:hover {
  color: #fff;
  border-color: rgba(42, 171, 238, 0.55);
  background: rgba(42, 171, 238, 0.28);
}

.cg-scene-footer__cta {
  align-self: flex-start;
  margin-top: 0.15rem;
  padding-inline: 1.15rem;
  font-size: 0.88rem;
}

.cg-scene-footer__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.cg-scene-footer__tile {
  opacity: 0;
  transform: translateY(10px);
}

.cg-scene-footer-panel.is-footer-active .cg-scene-footer__tile {
  animation: cg-stats-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-footer-panel.is-footer-active .cg-scene-footer__tile:nth-child(1) { animation-delay: 0.28s; }
.cg-scene-footer-panel.is-footer-active .cg-scene-footer__tile:nth-child(2) { animation-delay: 0.36s; }
.cg-scene-footer-panel.is-footer-active .cg-scene-footer__tile:nth-child(3) { animation-delay: 0.44s; }
.cg-scene-footer-panel.is-footer-active .cg-scene-footer__tile:nth-child(4) { animation-delay: 0.52s; }

.cg-scene-footer__tile a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: calc(var(--radius) - 2px);
  text-decoration: none;
  color: rgba(225, 235, 250, 0.88);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 184, 255, 0.1);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.cg-scene-footer__tile a:hover {
  border-color: rgba(126, 184, 255, 0.32);
  background: rgba(126, 184, 255, 0.08);
  transform: translateY(-1px);
}

.cg-scene-footer__tile-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  color: rgb(255 0 0 / 90%);
  background: rgb(255 0 0 / 12%);
  border: 1px solid rgb(255 0 0 / 22%);
}

.cg-scene-footer__tile-icon svg {
  width: 1rem;
  height: 1rem;
}

.cg-scene-footer__tile-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.cg-scene-footer-panel .cg-scene-footer__legal {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid rgba(126, 184, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
}

.cg-scene-footer-panel.is-footer-active .cg-scene-footer__glow {
  animation: cg-stats-glow 9s ease-in-out infinite alternate;
  opacity: 1;
}

.cg-scene-footer-panel.is-footer-active .cg-scene-footer__legal {
  animation: cg-stats-title-in 0.75s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-scene-footer__legal-icon {
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 0.1rem;
  color: rgba(126, 184, 255, 0.55);
}

.cg-scene-footer__legal-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.cg-scene-footer__legal .cg-footer__disclaimer {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(180, 200, 230, 0.42);
}

@media (max-width: 900px) {
  .cg-scene-footer__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cg-scene-footer__card--brand {
    grid-row: auto;
  }

  .cg-scene-footer__card--nav {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .cg-scene-footer__tiles {
    grid-template-columns: 1fr;
  }

  .cg-scene-footer-panel .cg-scene-footer__head .cg-scene-footer__lead {
    display: none;
  }
}

@media (max-height: 760px) {
  .cg-scene-footer__lead {
    display: none;
  }

  .cg-scene-footer__phone-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-scene-team__glow,
  .cg-scene-reach__glow,
  .cg-scene-footer-panel.is-footer-active .cg-scene-footer__glow {
    animation: none;
  }

  .cg-scene-team__head,
  .cg-scene-team__slider-wrap,
  .cg-scene-team__foot,
  .cg-scene-reach__head,
  .cg-scene-reach__grid,
  .cg-scene-footer-panel .cg-scene-footer__head,
  .cg-scene-footer-panel .cg-scene-footer__bento,
  .cg-scene-footer-panel .cg-scene-footer__legal,
  .cg-scene-footer-panel .cg-scene-footer__tile {
    opacity: 1;
    transform: none;
  }

  .cg-scene-team.is-team-active .cg-scene-team__head,
  .cg-scene-team.is-team-active .cg-scene-team__slider-wrap,
  .cg-scene-team.is-team-active .cg-scene-team__foot,
  .cg-scene-reach.is-reach-active .cg-scene-reach__head,
  .cg-scene-reach.is-reach-active .cg-scene-reach__grid,
  .cg-scene-footer-panel.is-footer-active .cg-scene-footer__head,
  .cg-scene-footer-panel.is-footer-active .cg-scene-footer__bento,
  .cg-scene-footer-panel.is-footer-active .cg-scene-footer__legal,
  .cg-scene-footer-panel.is-footer-active .cg-scene-footer__tile {
    animation: none;
  }
}

.cg-body--scene .cg-card,
.cg-body--scene .cg-hero-form,
.cg-body--scene .cg-reach-form {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cg-body--scene .cg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(126, 184, 255, 0.05), transparent 55%),
    radial-gradient(600px 350px at 5% 90%, rgba(80, 120, 200, 0.04), transparent 50%);
  opacity: 0.85;
  z-index: -1;
}

/* Внутренние страницы — центрирование */
.cg-body--scene .cg-scene-panel--page.container {
  max-width: min(var(--container), calc(100vw - 2 * var(--scene-content-inset)));
}

.cg-body--scene .cg-scene-panel--page .cg-page__hero {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.cg-body--scene .cg-scene-panel--page .cg-cards {
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
}

/* Появление кадра */
.cg-body--scene .cg-scene-panel.is-scene-active .cg-scene-panel__body,
.cg-body--scene .cg-scene-panel.is-scene-active > .container {
  animation: cg-scene-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cg-scene-in {
  from {
    opacity: 0.7;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-body--scene .cg-scene-panel.is-scene-active .cg-scene-panel__body,
  .cg-body--scene .cg-scene-panel.is-scene-active > .container {
    animation: none;
  }

  .cg-scene-rail__thumb {
    transition: none;
  }
}
