    :root {
      --bg: #080604;
      --bg-elevated: #0f0c0a;
      --text: #f5f0e8;
      --muted: rgba(245, 240, 232, 0.72);
      --line: rgba(255, 200, 140, 0.16);
      --card: rgba(255, 255, 255, 0.04);
      --accent-1: #ff6b4a;
      --accent-2: #f4a261;
      --accent-3: #e9c46a;
      --font-display: "Russo One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --radius: 6px;
      --content-width: 1200px;
      --ai-video-pattern:
        radial-gradient(circle at 16% 20%, rgba(255, 107, 74, 0.16), transparent 28%),
        radial-gradient(circle at 78% 14%, rgba(233, 196, 106, 0.13), transparent 24%),
        radial-gradient(circle at 52% 76%, rgba(244, 162, 97, 0.1), transparent 34%),
        repeating-linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.025) 0,
          rgba(255, 255, 255, 0.025) 1px,
          transparent 1px,
          transparent 18px
        ),
        linear-gradient(180deg, #100c09 0%, #080604 100%);
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      scroll-behavior: auto;
    }

    body {
      overflow-x: hidden;
    }

    body.is-loading {
      overflow: hidden;
      height: 100vh;
      height: 100dvh;
    }

    .site-preloader {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 74, 0.12), transparent 32%),
        radial-gradient(circle at 80% 15%, rgba(244, 162, 97, 0.08), transparent 28%),
        var(--bg);
      transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .site-preloader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-inner {
      width: min(88vw, 420px);
      text-align: center;
      padding: 0 24px;
    }

    .preloader-brand {
      font-family: var(--font-display);
      font-size: clamp(28px, 6vw, 42px);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .preloader-bar {
      height: 2px;
      background: rgba(255, 255, 255, 0.14);
      overflow: hidden;
      border-radius: 2px;
    }

    .preloader-fill {
      height: 100%;
      width: 100%;
      transform-origin: left center;
      transform: scaleX(0);
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      transition: transform 0.35s ease;
    }

    .preloader-text {
      margin: 16px 0 0;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scrub-sequence.is-buffering .scrub-canvas {
      opacity: 0.92;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* -------------------------------------------
       НАВИГАЦИЯ И БУРГЕР МЕНЮ
    ------------------------------------------- */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px;
      background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,0));
      pointer-events: none;
    }

    .topbar > * {
      pointer-events: auto;
    }

    .brand {
      font-family: var(--font-display);
      font-weight: 400;
      letter-spacing: 0.18em;
      font-size: 18px;
      text-transform: uppercase;
      position: relative;
      z-index: 101;
    }

    .menu {
      display: flex;
      gap: 18px;
      font-size: 13px;
      color: var(--muted);
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      z-index: 101;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .burger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(5, 7, 11, 0.95);
      backdrop-filter: blur(15px);
      z-index: 90;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .mobile-menu.active {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 30px;
      text-align: center;
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .mobile-nav a {
      transition: color 0.2s;
    }
    
    .menu a:hover,
    .mobile-nav a:hover {
      color: var(--accent-2);
    }

    .breadcrumbs {
      position: fixed;
      top: 58px;
      left: 28px;
      z-index: 99;
      font-size: 11px;
      letter-spacing: 0.06em;
      color: rgba(245, 240, 232, 0.45);
      pointer-events: auto;
    }

    .breadcrumbs ol {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 8px;
    }

    .breadcrumbs li:not(:last-child)::after {
      content: "›";
      margin-left: 8px;
      opacity: 0.5;
    }

    .breadcrumbs a:hover {
      color: var(--accent-2);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* -------------------------------------------
       ОСНОВНЫЕ БЛОКИ И НАХЛЕСТ (CROSSFADE)
    ------------------------------------------- */
    .scroll-section, .sticky-text-section {
      position: relative;
      margin-top: -90vh; 
      z-index: 5;
    }

    .fade-out-only {
      margin-top: 0 !important;
      height: 150vh; 
    }

    /* -------------------------------------------
       БЛОКИ С ВИДЕО
    ------------------------------------------- */
    .scroll-section {
      height: 300vh;
      --progress: 0; 
      z-index: 10;
    }

    .sticky-wrap {
      position: sticky;
      top: 0;
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
      background: #000;
      opacity: 0;
      will-change: opacity;
    }

    .scrub-sequence {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #000;
    }

    .scrub-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      filter: saturate(1.04) contrast(1.03);
      background: #000;
      pointer-events: none;
      user-select: none;
    }

    .video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.04) contrast(1.03);
      transform: scale(1.01);
      background: #000;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(8,6,4,.72), rgba(8,6,4,.06) 32%, rgba(8,6,4,.38)),
        linear-gradient(to right, rgba(8,6,4,.4), transparent 38%, transparent 62%, rgba(8,6,4,.4));
      pointer-events: none;
    }

    .scrub-copy {
      position: absolute;
      left: 6vw;
      right: 6vw;
      bottom: 9vh;
      z-index: 3;
      display: grid;
      gap: 12px;
      max-width: 860px;
      opacity: calc(1 - (var(--progress) * 1.15));
      transform: translateY(calc(var(--progress) * -40px));
      transition: opacity .1s linear, transform .1s linear;
    }

    .scrub-copy .kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .25em;
      color: rgba(255,255,255,.82);
    }

    .scrub-copy h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(48px, 9vw, 132px);
      font-weight: 400;
      line-height: 0.88;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .scrub-copy p {
      margin: 0;
      max-width: 760px;
      font-size: clamp(15px, 1.8vw, 20px);
      line-height: 1.6;
      color: rgba(255,255,255,.82);
    }

    .hud {
      position: absolute;
      left: 6vw;
      right: 6vw;
      bottom: 28px;
      z-index: 4;
	  display: none;
	  align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .progress {
      flex: 1;
      height: 2px;
      background: rgba(255,255,255,.18);
      overflow: hidden;
      transform: translateZ(0);
    }

    .progress-fill {
      height: 100%;
      width: 100%;
      transform-origin: left center;
      transform: scaleX(0);
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      box-shadow: 0 0 18px rgba(255, 107, 74, .35);
    }

    .time-label {
      min-width: 110px;
      text-align: right;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.82);
      white-space: nowrap;
    }

    /* -------------------------------------------
       ТЕКСТОВЫЕ БЛОКИ И ГОРИЗОНТАЛЬНЫЙ СКРОЛЛ
    ------------------------------------------- */
    .sticky-text-section {
      /* Увеличили высоту, чтобы дать место для длинного горизонтального скролла */
      height: 350vh; 
      background: var(--bg);
    }

    .footer-section {
      position: relative;
      margin-top: 0;
      min-height: 100vh;
      background: var(--bg);
      z-index: 20;
    }

    .footer-section .sticky-text-inner {
      position: relative;
      top: auto;
      height: auto;
      min-height: 100vh;
      opacity: 1;
      transform: none;
      overflow: visible;
      padding: 64px 0 48px;
    }

    .sticky-text-inner {
      position: sticky;
      top: 0;
      height: 100vh;
      height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      overflow: hidden;
      opacity: 0; 
      transform: translateY(50px);
      will-change: opacity, transform;
    }

    .hero-start {
      background:
        radial-gradient(circle at 15% 15%, rgba(255, 107, 74, .14), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(244, 162, 97, .10), transparent 28%),
        linear-gradient(180deg, #100c09 0%, var(--bg) 100%);
      cursor: default;
    }

    .content-bg {
      background:
        radial-gradient(circle at 80% 0%, rgba(244, 162, 97, .08), transparent 22%),
        linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
    }

    .ai-video-pattern,
    .sticky-text-section:has(.cards-wrapper) .sticky-text-inner.content-bg {
      background: var(--ai-video-pattern);
    }

    .footer-bg {
      background: var(--bg);
    }

    .hero-start-inner {
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 24px;
    }

    .hero-title {
      position: relative;
      z-index: 2;
      pointer-events: none;
      cursor: default;
      user-select: none;
    }

    .hero-char {
      display: inline-block;
      transition: opacity 0.18s linear;
      will-change: opacity;
      pointer-events: none;
      cursor: default;
      user-select: none;
    }

    .hero-char.is-space {
      width: 0.32em;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      cursor: default;
      z-index: 4;
      overflow: hidden;
    }

    .hero-particle {
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 220, 170, 0.98), rgba(255, 107, 74, 0.72));
      box-shadow: 0 0 12px rgba(255, 107, 74, 0.42);
      opacity: 0;
      visibility: hidden;
      will-change: transform, opacity;
      transform: translate3d(-9999px, -9999px, 0) scale(0);
      pointer-events: none;
      cursor: default;
    }

    .hero-particle.is-active {
      visibility: visible;
    }

    .hero-dissolve-text {
      transition: opacity 0.12s linear;
      will-change: opacity;
      pointer-events: none;
      cursor: default;
      user-select: none;
    }
    .hero-start .scroll-note {
      pointer-events: none;
      cursor: default;
      user-select: none;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: .24em;
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(56px, 12vw, 156px);
      font-weight: 400;
      line-height: 0.9;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      text-shadow: 0 0 40px rgba(255, 107, 74, .15);
    }

    .subtitle {
      max-width: 820px;
      margin: 22px auto 0;
      font-size: clamp(16px, 2vw, 21px);
      line-height: 1.6;
      color: var(--muted);
    }

    .scroll-note {
      margin-top: 34px;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(245, 240, 232, .7);
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .scroll-note::after {
      content: "";
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, var(--accent-2), transparent);
      animation: scroll-pulse 1.8s ease-in-out infinite;
    }

    @keyframes scroll-pulse {
      0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 22px;
      padding: 14px 28px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.08);
      color: var(--text);
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      cursor: pointer;
    }

    .cta-btn:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.6);
      transform: translateY(-1px);
    }

    .cta-btn.primary {
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      border-color: transparent;
      box-shadow: 0 8px 32px rgba(255, 107, 74, .28);
    }

    .cta-btn.primary:hover {
      background: linear-gradient(135deg, #ff7f63, #f7b07a);
      border-color: transparent;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-top: 28px;
    }

    .topbar-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.06);
      transition: background 0.2s, border-color 0.2s;
      color: var(--text);
      text-decoration: none;
      cursor: pointer;
      font-family: inherit;
    }

    button.topbar-cta {
      appearance: none;
    }

    .topbar-cta:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.5);
    }

    .contact-cta-block {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .container {
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    .section-head {
      margin-bottom: 26px;
    }

    .section-head h3 {
      margin: 0 0 12px;
      font-family: var(--font-display);
      font-size: clamp(34px, 4.5vw, 64px);
      font-weight: 400;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .section-head p {
      margin: 0;
      max-width: 760px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 16px;
    }

    .section-head a {
      color: var(--accent-2);
      border-bottom: 1px solid rgba(244, 162, 97, .3);
      transition: color 0.2s, border-color 0.2s;
    }

    .section-head a:hover {
      color: var(--accent-1);
      border-color: var(--accent-1);
    }

    .scrub-copy a {
      pointer-events: auto;
    }

    .cards-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.28;
      filter: saturate(1.2) contrast(1.06);
      z-index: 0;
      pointer-events: none;
    }

    .sticky-text-inner > .container {
      position: relative;
      z-index: 1;
    }

    /* Настройки для горизонтального скролла */
    .cards-wrapper {
      width: 100%;
      overflow: visible; /* Разрешаем выход за пределы контейнера */
    }

    .cards {
      display: flex;
      gap: 24px;
      margin-top: 40px;
      width: max-content;
      will-change: transform;
      /* Добавим отступ справа, чтобы последняя карточка не прилипала к краю экрана */
      padding-right: 24px; 
    }

    .card {
      --card-hover-shift: 0px;
      --card-hover-scale: 1;
      width: 340px;
      flex-shrink: 0;
      padding: 24px;
      min-height: 240px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      box-shadow: 0 16px 48px rgba(0,0,0,.35);
      display: flex;
      flex-direction: column;

      /* Анимация появления */
      opacity: 0;
      transform: translateY(calc(40px + var(--card-hover-shift))) scale(calc(0.95 * var(--card-hover-scale)));
      transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    }

    .card.visible {
      opacity: 1;
      transform: translateY(var(--card-hover-shift)) scale(var(--card-hover-scale));
    }

    .card:hover {
      --card-hover-shift: -12px;
      --card-hover-scale: 1.035;
      border-color: rgba(255, 177, 115, 0.45);
      background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
      box-shadow: 0 24px 58px rgba(0,0,0,.5), 0 0 0 1px rgba(255, 140, 80, 0.2);
    }

    .card-icon {
      width: 64px;
      height: 64px;
      border-radius: var(--radius);
      object-fit: cover;
      margin-bottom: 20px;
      border: 1px solid rgba(255, 200, 140, 0.12);
      box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    }

    .card h4 {
      margin: 0 0 10px;
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .card .num {
      font-size: 11px;
      color: rgba(245, 240, 232, .45);
      letter-spacing: .2em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }

    /* Flip-карточки (блок AI-видео) */
    .card-flip {
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      perspective: 1400px;
      min-height: 300px;
      cursor: pointer;
      touch-action: manipulation;
    }

    .card-flip:hover,
    .card-flip.is-flipped,
    .card-flip.is-zoomed {
      border-color: transparent;
      background: transparent;
    }

    .card-flip__inner {
      position: relative;
      width: 100%;
      min-height: 300px;
      height: 100%;
      transform-style: preserve-3d;
      transition:
        transform 0.72s cubic-bezier(0.4, 0.2, 0.2, 1),
        box-shadow 0.35s ease;
      border-radius: var(--radius);
      will-change: transform;
    }

    .card-flip.is-flipped .card-flip__inner {
      transform: rotateY(180deg);
    }

    .card-flip.is-zoomed .card-flip__inner {
      transform: rotateY(180deg) scale(1.045);
      box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
    }

    .card-flip.is-static .card-flip__inner {
      transform: none !important;
    }

    .card-flip__face {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
      backdrop-filter: blur(10px);
      box-shadow: 0 16px 48px rgba(0,0,0,.35);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .card-flip__face::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 10%, rgba(255, 107, 74, 0.14), transparent 42%);
      opacity: 0.65;
      pointer-events: none;
      animation: card-glow-pulse 3.2s ease-in-out infinite;
    }

    .card-flip.is-flipped .card-flip__face::before,
    .card-flip.is-static .card-flip__face::before {
      animation: none;
    }

    @keyframes card-glow-pulse {
      0%, 100% { opacity: 0.45; transform: scale(1); }
      50% { opacity: 0.9; transform: scale(1.04); }
    }

    .card-flip__back {
      transform: rotateY(180deg);
      justify-content: flex-start;
      gap: 8px;
      padding: 20px;
    }

    .card-flip__face > * {
      position: relative;
      z-index: 1;
    }

    .card-flip .card-icon {
      animation: card-icon-float 4s ease-in-out infinite;
    }

    .card-flip.is-flipped .card-icon,
    .card-flip.is-static .card-icon {
      animation: none;
    }

    @keyframes card-icon-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    .card-flip__back-kicker {
      margin: 0;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245, 240, 232, 0.5);
    }

    .card-flip__back-title {
      margin: 0 0 2px;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      line-height: 1.15;
    }

    .card-flip__links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
      flex: 1;
    }

    .card-flip__links a {
      display: block;
      padding: 6px 10px;
      border: 1px solid rgba(255, 190, 120, 0.18);
      border-radius: calc(var(--radius) - 2px);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      font-size: 12px;
      line-height: 1.25;
      transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .card-flip__links a:hover {
      border-color: rgba(255, 177, 115, 0.55);
      background: rgba(255, 255, 255, 0.07);
      transform: translateX(4px);
    }

    .card-flip__cta {
      margin-top: auto;
      width: 100%;
      border: none;
      cursor: pointer;
      font: inherit;
      text-align: center;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 20px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      color: #1a0f08;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 13px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .card-flip__cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(255, 107, 74, 0.35);
    }

    .card-flip__hint {
      margin: 12px 0 0;
      font-size: 12px;
      color: rgba(245, 240, 232, 0.45);
      letter-spacing: 0.06em;
    }

    @media (hover: hover) and (pointer: fine) {
      .card-flip__hint--touch {
        display: none;
      }
    }

    @media (hover: none), (pointer: coarse) {
      .card-flip__hint--desktop {
        display: none;
      }
    }

    /* Внутренние SEO-страницы */
    body.inner-page {
      min-height: 100vh;
      background: var(--ai-video-pattern);
      background-attachment: fixed;
    }

    .inner-hero {
      padding: 120px 24px 48px;
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .inner-hero--portfolio {
      padding-bottom: 25px;
    }

    .inner-hero .eyebrow {
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-2);
      margin-bottom: 16px;
    }

    .inner-hero h1 {
      margin: 0 0 20px;
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 400;
      line-height: 1.08;
      text-wrap: balance;
    }

    .inner-hero .lead {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
    }

    .inner-body {
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    .inner-body--after-portfolio {
      margin-top: calc(-1 * var(--portfolio-scroll-distance, 0px));
      padding-top: calc(25px + var(--portfolio-scroll-distance, 0px));
    }

    .inner-body__scroll-content {
      position: relative;
      z-index: 1;
    }

    .inner-body--after-portfolio > h2:first-child {
      margin-top: 0;
    }

    .inner-body h2 {
      margin: 48px 0 16px;
      font-family: var(--font-display);
      font-size: clamp(24px, 3.2vw, 34px);
      font-weight: 400;
      line-height: 1.15;
    }

    .inner-body h3 {
      margin: 28px 0 10px;
      font-size: 20px;
      font-weight: 600;
    }

    .inner-body p,
    .inner-body li {
      color: var(--muted);
      line-height: 1.75;
      font-size: 16px;
    }

    .inner-body ul,
    .inner-body ol {
      padding-left: 1.2em;
      margin: 12px 0;
    }

    .inner-body a {
      color: var(--accent-2);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .inner-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .inner-related {
      margin-top: 56px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.03);
    }

    .inner-related h2 {
      margin-top: 0;
      font-size: 22px;
    }

    .inner-related-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .inner-related-links a {
      display: inline-block;
      padding: 10px 14px;
      border: 1px solid rgba(255, 190, 120, 0.22);
      border-radius: var(--radius);
      text-decoration: none;
      color: var(--text);
      font-size: 14px;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .inner-related-links a:hover {
      border-color: rgba(255, 177, 115, 0.55);
      background: rgba(255, 255, 255, 0.06);
    }

    /* Горизонтальное портфолио видео */
    .video-portfolio {
      margin: 0;
      padding: 0;
    }

    .video-portfolio__head {
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 0 24px 20px;
    }

    .video-portfolio__head h2 {
      margin: 0 0 10px;
      font-family: var(--font-display);
      font-size: clamp(24px, 3.2vw, 34px);
      font-weight: 400;
      line-height: 1.15;
    }

    .video-portfolio__head p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
      max-width: 60ch;
    }

    .video-portfolio__scroll {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 8px 24px 24px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 177, 115, 0.45) transparent;
    }

    .video-portfolio__scroll::-webkit-scrollbar {
      height: 6px;
    }

    .video-portfolio__scroll::-webkit-scrollbar-thumb {
      background: rgba(255, 177, 115, 0.45);
      border-radius: 999px;
    }

    .video-portfolio__item {
      flex: 0 0 auto;
      width: min(210px, 44vw);
      scroll-snap-align: start;
    }

    .video-portfolio__item video {
      display: block;
      width: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #000;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    }

    .video-portfolio__item video::-webkit-media-controls-fullscreen-button {
      display: none !important;
    }

    .video-portfolio__caption {
      margin: 6px 0 0;
      font-size: 12px;
      line-height: 1.3;
      color: rgba(245, 240, 232, 0.72);
    }

    .video-portfolio__hint {
      margin: 8px 0 0;
      font-size: 12px;
      letter-spacing: 0.06em;
      color: rgba(245, 240, 232, 0.4);
    }

    /* Портфолио Instagram: прокрутка от скролла страницы */
    .video-portfolio--scroll {
      position: relative;
      margin: 0;
      padding: 25px 0 0;
    }

    .video-portfolio--scroll .video-portfolio__pin {
      position: relative;
    }

    .video-portfolio--scroll .video-portfolio__head {
      max-width: none;
      margin: 0;
      padding: 0;
    }

    .video-portfolio--scroll .video-portfolio__head h2 {
      margin: 0 0 6px;
    }

    .video-portfolio--scroll .video-portfolio__sticky {
      position: sticky;
      top: 72px;
      z-index: 3;
      display: block;
      padding: 0 0 8px;
      overflow: hidden;
    }

    .video-portfolio--scroll .video-portfolio__layout {
      display: grid;
      grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
      gap: 20px;
      align-items: start;
      width: 100%;
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .video-portfolio--scroll .video-portfolio__viewport {
      overflow: hidden;
      min-width: 0;
    }

    .video-portfolio--scroll .video-portfolio__track {
      display: flex;
      gap: 10px;
      width: max-content;
      will-change: transform;
    }

    .video-portfolio--scroll .video-portfolio__item {
      width: min(190px, 62vw);
      scroll-snap-align: start;
      transition: opacity 0.25s ease;
    }

    .video-portfolio__item--landscape {
      width: min(320px, 82vw);
    }

    .video-portfolio__item--landscape video {
      aspect-ratio: 16 / 9;
    }

    .video-portfolio--scroll .video-portfolio__item--landscape {
      width: min(300px, 78vw);
    }

    .video-portfolio--scroll .video-portfolio__item:not(.is-active) {
      opacity: 0.72;
    }

    .video-portfolio--scroll .video-portfolio__item.is-active video {
      border-color: rgba(255, 177, 115, 0.55);
      box-shadow: 0 10px 28px rgba(255, 107, 74, 0.22);
    }

    .video-portfolio--scroll.is-static {
      height: auto !important;
    }

    .video-portfolio--scroll.is-static .video-portfolio__sticky {
      position: relative;
      top: auto;
      min-height: 0;
      padding: 0 0 32px;
    }

    .video-portfolio--scroll.is-static .video-portfolio__viewport {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      padding-bottom: 8px;
    }

    .video-portfolio--scroll.is-static .video-portfolio__track {
      transform: none !important;
    }

    @media (max-width: 760px) {
      .video-portfolio--scroll .video-portfolio__layout {
        grid-template-columns: 1fr;
        gap: 14px;
      }
    }

    .inner-hub-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .inner-hub-card {
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.03);
    }

    .inner-hub-card h3 {
      margin: 0 0 8px;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      text-transform: uppercase;
    }

    .inner-hub-card p {
      margin: 0 0 12px;
      font-size: 14px;
    }

    .inner-hub-card a {
      font-size: 14px;
      font-weight: 600;
    }

    body.inner-page article {
      --inner-article-hover-shift: 0px;
      --inner-article-hover-scale: 1;
      transform: translateY(var(--inner-article-hover-shift)) scale(var(--inner-article-hover-scale));
      transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        opacity 0.25s ease;
    }

    body.inner-page article:hover {
      --inner-article-hover-shift: -12px;
      --inner-article-hover-scale: 1.035;
    }

    body.inner-page .inner-hub-card:hover {
      border-color: rgba(255, 177, 115, 0.45);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 140, 80, 0.2);
    }

    body.inner-page .video-portfolio__item video {
      transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }

    body.inner-page .video-portfolio__item:hover video {
      border-color: rgba(255, 177, 115, 0.55);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 140, 80, 0.2);
    }

    .inner-price-box {
      margin: 24px 0;
      padding: 24px;
      border: 1px solid rgba(255, 177, 115, 0.35);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(255, 107, 74, 0.12), rgba(244, 162, 97, 0.06));
    }

    .inner-price-box strong {
      font-family: var(--font-display);
      font-size: 28px;
      color: var(--text);
    }

    .inner-page .footer-section {
      min-height: auto;
      margin-top: 40px;
    }

    .inner-page .footer-section .sticky-text-inner {
      min-height: auto;
      padding: 64px 0 48px;
    }

    .footer-inner {
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      width: 100%;
    }

    .footer-brand {
      max-width: 300px;
    }
    
    .footer-brand h2 {
      margin: 0 0 16px;
      font-family: var(--font-display);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 36px;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    .footer-contacts {
      display: flex;
      gap: 60px;
    }

    .footer-col h3 {
      margin: 0 0 16px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(245, 240, 232, .5);
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      color: var(--text);
      font-size: 15px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--accent-2);
    }

    .related-services {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }

    .related-services h4 {
      margin: 0 0 14px;
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(245, 240, 232, .55);
    }

    .related-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
    }

    .related-links a {
      font-size: 14px;
      color: var(--accent-2);
      border-bottom: 1px solid rgba(244, 162, 97, .35);
      transition: color 0.2s, border-color 0.2s;
    }

    .related-links a:hover {
      color: var(--accent-1);
      border-color: var(--accent-1);
    }

    .footer-bottom {
      max-width: var(--content-width);
      margin: 60px auto 0;
      padding-top: 30px;
      border-top: 1px solid var(--line);
      text-align: center;
      color: rgba(255,255,255,.4);
      font-size: 13px;
      width: 100%;
    }

    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      place-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .lead-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .lead-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 6, 4, 0.76);
      backdrop-filter: blur(6px);
    }

    .lead-modal__dialog {
      position: relative;
      width: min(92vw, 560px);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(19, 14, 11, 0.96), rgba(9, 7, 6, 0.98));
      border-radius: var(--radius);
      padding: 28px 24px 24px;
      z-index: 1;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    }

    .lead-modal__dialog h2 {
      margin: 0 0 8px;
      font-family: var(--font-display);
      font-size: clamp(28px, 5vw, 44px);
      font-weight: 400;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .lead-modal__dialog p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .lead-modal__close {
      position: absolute;
      right: 10px;
      top: 8px;
      border: 0;
      background: transparent;
      color: var(--text);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
    }

    .lead-form {
      display: grid;
      gap: 14px;
    }

    .lead-form label {
      display: grid;
      gap: 6px;
      font-size: 13px;
      color: rgba(245, 240, 232, 0.86);
    }

    .lead-form input,
    .lead-form textarea {
      border: 1px solid rgba(255, 190, 120, 0.25);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      padding: 12px 10px;
      border-radius: var(--radius);
      font: inherit;
    }

    .lead-form input:focus,
    .lead-form textarea:focus {
      outline: none;
      border-color: var(--accent-2);
      box-shadow: 0 0 0 2px rgba(244, 162, 97, 0.18);
    }

    @media (prefers-reduced-motion: reduce) {
      .scroll-note::after {
        animation: none;
      }

      .card {
        opacity: 1;
        transform: none;
        transition: none;
      }

      body.inner-page article {
        transform: none;
        transition: none;
      }

      body.inner-page article:hover {
        --inner-article-hover-shift: 0px;
        --inner-article-hover-scale: 1;
      }

      .card-flip__inner {
        transform: none !important;
      }

      .card-flip__back {
        position: relative;
        transform: none;
        margin-top: 12px;
      }

      .card-flip__front {
        position: relative;
      }

      .card-flip__face {
        position: relative;
        backface-visibility: visible;
      }

      .hero-particles {
        display: none;
      }

      .scroll-section {
        height: auto;
        min-height: 100vh;
        margin-top: 0 !important;
      }

      .scroll-section .sticky-wrap {
        position: relative;
        opacity: 1 !important;
        height: 100vh;
      }

      .sticky-text-section {
        height: auto;
        min-height: 100vh;
        margin-top: 0 !important;
      }

      .sticky-text-inner {
        opacity: 1 !important;
        transform: none !important;
        position: relative;
      }

      .fade-out-only {
        height: auto;
        min-height: 100vh;
      }

      .site-preloader {
        display: none;
      }

      body.is-loading {
        overflow-x: hidden;
        height: auto;
      }
    }

    @media (max-width: 900px) {
      .menu { display: none; }
      .topbar-cta { display: none; }
      .breadcrumbs { display: none; }
      .burger { display: flex; }
      .scrub-copy { left: 24px; right: 24px; bottom: 90px; }
      .hud { left: 24px; right: 24px; }
      .scroll-section { height: 340vh; }
      .scroll-section .sticky-wrap {
        height: 100vh;
        height: 100dvh;
      }
      .scrub-sequence,
      .scrub-canvas {
        width: 100%;
        height: 100%;
      }
      .footer-contacts { flex-direction: column; gap: 30px; }
      .card { width: 280px; padding: 20px; }
    }
