

/* Start:/local/templates/7sky/assets/css/style.css?178910856953538*/
:root {
      --font-sans: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
      --bg: #030a12;
      --bg-soft: #07121d;
      --surface: #0a1723;
      --surface-2: #0d1d2a;
      --surface-blue: #0b2032;
      --white: #f7fbff;
      --ink: #dfeaf2;
      --muted: #8298a8;
      --muted-2: #5e7485;
      --line: rgba(157, 202, 230, .14);
      --line-strong: rgba(123, 205, 255, .3);
      --blue: #178de2;
      --blue-light: #64ceff;
      --cyan: #67e8f9;
      --lime: #b8f06a;
      --orange: #ffb45e;
      --purple: #a58aff;
      --shadow: 0 30px 90px rgba(0, 0, 0, .32);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 14px;
      --header-space: calc(79px + 22px);
      --footer-space: calc(256px + 22px * 2);
      --page-height: calc(100vh - var(--header-space) - var(--footer-space));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      margin: 0;
      padding-top: 0.1px; /* хак для предотвращения схлопывания */ 
      min-width: 320px;
      overflow-x: hidden;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 28%, rgba(23, 141, 226, .09), transparent 28%),
        radial-gradient(circle at 86% 62%, rgba(103, 232, 249, .055), transparent 30%),
        var(--bg);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    button, input, select, textarea { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { color: inherit; }
    a { color: inherit; text-decoration: none; }
    img, video, svg { display: block; max-width: 100%; }
    [hidden] { display: none !important; }
    :focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
    ::selection { color: #fff; background: rgba(23, 141, 226, .45); }

    .page-space {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .page-space canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
    body > main { position: relative; z-index: 1; min-height: var(--page-height); }
    .page-space::before,
    .page-space::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(1px);
      opacity: .8;
    }
    .page-space::before {
      width: 520px;
      height: 520px;
      top: 15%;
      left: -300px;
      background: radial-gradient(circle, rgba(23,141,226,.16), transparent 68%);
    }
    .page-space::after {
      width: 650px;
      height: 650px;
      right: -360px;
      top: 52%;
      background: radial-gradient(circle, rgba(103,232,249,.08), transparent 68%);
    }
    .shooting-star {
      position: absolute;
      top: 18%;
      left: -18%;
      width: 210px;
      height: 1px;
      opacity: 0;
      transform: rotate(-18deg);
      background: linear-gradient(90deg, transparent, rgba(151,226,255,.9));
      box-shadow: 50px 0 18px rgba(100,206,255,.25);
      animation: shoot 10s linear infinite;
      animation-delay: 1.5s;
    }
    .shooting-star--two { top: 68%; left: -30%; width: 130px; animation-delay: 6.3s; animation-duration: 14s; transform: rotate(-11deg); }
    .shooting-star--three { top: 39%; left: -24%; width: 170px; animation-delay: 9.2s; animation-duration: 17s; transform: rotate(-15deg); }
    @keyframes shoot { 0%, 64% { opacity: 0; transform: translate(0, 0) rotate(-18deg); } 66% { opacity: 1; } 80%, 100% { opacity: 0; transform: translate(145vw, 34vh) rotate(-18deg); } }
 
    .container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
    .section { position: relative; padding: 104px 0; }
    .section--compact { padding-top: 0; }
    .section--surface {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(7,18,29,.66);
    }
    .section-head {
      margin-bottom: 40px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
      align-items: end;
      gap: 48px;
    }
    .section-head h2,
    .case-copy h2,
    .contact-copy h2 {
      margin: 0;
      color: var(--white);
      font-size: clamp(40px, 4.8vw, 72px);
      font-weight: 450;
      line-height: .98;
      letter-spacing: -.052em;
      text-wrap: balance;
    }
    .section-head > p,
    .body-copy {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }
    .liquid-glass {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(10,23,35,.82);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.18);
    }
    .liquid-glass::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(145deg, rgba(255,255,255,.08), transparent 30%, transparent 72%, rgba(100,206,255,.05));
    }
    .button {
      min-height: 54px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: var(--radius-md);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--blue-light), var(--blue));
      color: #fff;
      font-size: 14px;
      font-weight: 750;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(23,141,226,.24);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 17px 38px rgba(23,141,226,.34); }
    .button--outline { border-color: rgba(255,255,255,.34); background: rgba(3,13,22,.2); box-shadow: none; }
    .button--outline:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.09); box-shadow: none; }
    .button--ghost { border-color: var(--line-strong); background: rgba(9,25,38,.72); color: var(--white); box-shadow: none; }
    .button--ghost:hover { background: rgba(16,44,64,.8); box-shadow: none; }
    .button--small { min-height: 45px; padding-inline: 18px; border-radius: 12px; font-size: 12px; }
    .arrow { font-size: 18px; transition: transform 180ms ease; }
    a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

    /* Первый экран сохранён по структуре и сценарию из исходного файла */
    .hero {
      position: relative;
      top: calc(var(--header-space) * -1);
      min-height: 100svh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      color: #fff;
      background: #071522;
      isolation: isolate;
    }
    .hero-video,
    .hero-shade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-video { z-index: -3; }
    .hero-shade {
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(2,11,19,.78), rgba(2,11,19,.34) 58%, rgba(2,11,19,.46)),
        linear-gradient(180deg, rgba(2,11,19,.18), rgba(2,11,19,.56));
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: 0;
      height: 190px;
      pointer-events: none;
      background: linear-gradient(transparent, var(--bg));
    }
    .site-header {
      left: 50%;
      margin-top: 22px;
      z-index: 20;
      width: min(1240px, calc(100% - 48px));
      height: 79px;
      padding: 10px 12px 10px 20px;
      transform: translateX(-50%);
      border-radius: 22px;
      display: grid;
      grid-template-columns: 150px 1fr auto;
      align-items: center;
      gap: 22px;
      background-color: rgba(3,16,27,.36);
      overflow: visible;
    }
    .brand-logo { display: inline-flex; align-items: center; }
    .brand-logo-image { width: 142px; height: auto; display: block; object-fit: contain; }
    .site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(17px, 2vw, 32px); }
    .site-nav a,
    .site-nav button {
      padding: 0;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,.72);
      font: inherit;
      font-size: 13px;
      cursor: pointer;
      transition: color 180ms ease;
    }
    .site-nav a:hover,
    .site-nav button:hover,
    .site-nav button[aria-expanded="true"] { color: #fff; }
    .header-actions { display: flex; align-items: center; gap: 8px; }
    .media-control,
    .menu-toggle {
      min-width: 45px;
      height: 45px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 999px;
      background: rgba(3,16,27,.34);
      color: #fff;
      font-size: 11px;
      cursor: pointer;
      transition: background 180ms ease, border-color 180ms ease;
    }
    .media-control:hover,
    .menu-toggle:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.1); }
    body:not(:has(.hero-video)) .media-control { display: none; }
    .menu-toggle { display: none; border-radius: 13px; font-size: 12px; }
    .mobile-nav {
      position: fixed;
      inset: 156px 16px auto;
      z-index: 50;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      display: none;
      gap: 19px;
      background: rgba(4,18,29,.97);
      color: #fff;
      box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }
    .mobile-nav.is-open { display: grid; }
    .mobile-nav button {
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }
    
    .services-mega {
      position: absolute;
      top: var(--header-space);
      left: 50%;
      z-index: 19;
      width: min(1240px, calc(100% - 48px));
      max-height: min(610px, calc(100vh - 126px));
      padding: 27px 31px 31px;
      border: 1px solid rgba(163,222,250,.24);
      border-radius: 28px;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 0%, rgba(66,190,255,.13), transparent 36%),
        linear-gradient(135deg, rgba(14,39,55,.96), rgba(3,17,28,.96));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 34px 90px rgba(0,0,0,.5);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate(-50%, -10px) scale(.99);
      transform-origin: 50% 0;
      transition: opacity 220ms ease, visibility 220ms ease, transform 260ms cubic-bezier(.2,.75,.2,1);
    }
    .services-mega::after {
      content: "";
      position: absolute;
      inset: 7px;
      z-index: 0;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 22px;
      pointer-events: none;
    }
    .services-mega.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
    }
    .services-mega-head,
    .services-mega-scroll { position: relative; z-index: 2; }
    .services-mega-head {
      min-height: 46px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .services-mega-head h2 {
      margin: 0;
      color: var(--white);
      font-size: 30px;
      font-weight: 520;
      letter-spacing: -.035em;
    }
    .services-mega-close {
      position: relative;
      width: 46px;
      height: 46px;
      flex: 0 0 46px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 50%;
      background: rgba(255,255,255,.035);
      color: #fff;
      cursor: pointer;
      transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    }
    .services-mega-close::before,
    .services-mega-close::after {
      content: "";
      position: absolute;
      left: 14px;
      top: 22px;
      width: 17px;
      height: 1.5px;
      border-radius: 99px;
      background: currentColor;
    }
    .services-mega-close::before { transform: rotate(45deg); }
    .services-mega-close::after { transform: rotate(-45deg); }
    .services-mega-close:hover { border-color: rgba(100,206,255,.65); background: rgba(100,206,255,.1); transform: rotate(4deg); }
    .services-mega-scroll {
      max-height: min(519px, calc(100vh - 217px));
      padding: 2px 15px 8px 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: rgba(100,206,255,.72) rgba(255,255,255,.06);
    }
    .services-mega-scroll::-webkit-scrollbar { width: 5px; }
    .services-mega-scroll::-webkit-scrollbar-track { border-radius: 99px; background: rgba(255,255,255,.055); }
    .services-mega-scroll::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(100,206,255,.72); }
    .services-mega-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap: clamp(20px,2.6vw,42px);
    }
    .services-group-toggle {
      width: 100%;
      min-height: 52px;
      padding: 0 0 15px;
      border: 0;
      border-bottom: 1px solid rgba(149,214,244,.18);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      background: transparent;
      color: #fff;
      font: inherit;
      font-size: 18px;
      font-weight: 650;
      line-height: 1.24;
      text-align: left;
      cursor: default;
    }
    .services-group-icon { display: none; }
    .services-group-list {
      margin-top: 14px;
      display: grid;
      gap: 2px;
    }
    .services-group-list a {
      min-height: 35px;
      padding: 7px 22px 7px 0;
      display: block;
      position: relative;
      color: #a9bcc8;
      font-size: 14.5px;
      line-height: 1.42;
      transition: color 160ms ease, transform 160ms ease;
    }
    .services-group-list a::after {
      content: "→";
      position: absolute;
      top: 7px;
      right: 2px;
      color: var(--blue-light);
      opacity: 0;
      transform: translateX(-5px);
      transition: opacity 160ms ease, transform 160ms ease;
    }
    .services-group-list a:hover { color: #fff; transform: translateX(3px); }
    .services-group-list a:hover::after { opacity: 1; transform: none; }
    .services-trigger:focus-visible,
    .mobile-services-trigger:focus-visible,
    .services-mega-close:focus-visible,
    .services-group-toggle:focus-visible,
    .services-group-list a:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 4px; }
    .hero-main {
      flex: 1;
      padding-top: 142px;
      padding-bottom: 142px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 170px;
      align-items: center;
      gap: 70px;
    }
    .hero-copy { max-width: 930px; }
    .hero h1 {
      max-width: 920px;
      margin: 0;
      font-size: clamp(58px, 7.1vw, 112px);
      font-weight: 430;
      line-height: .94;
      letter-spacing: -.062em;
      text-wrap: balance;
    }
    .hero-lead { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.6; }
    .hero-buttons { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-note { margin: 18px 0 0; color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
    .hero-stats { display: grid; gap: 28px; align-self: center; }
    .hero-stats div { padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.22); }
    .hero-stats strong { display: block; font-size: 40px; font-weight: 400; line-height: 1; }
    .hero-stats span { display: block; max-width: 145px; margin-top: 8px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.45; }
    .hero-scroll-label {
      position: absolute;
      top: 50%;
      right: 20px;
      z-index: 2;
      color: rgba(255,255,255,.42);
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }
    .hero-chapters {
      position: absolute;
      left: 50%;
      bottom: 30px;
      z-index: 2;
      width: min(1240px, calc(100% - 48px));
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: 76px 1fr;
      align-items: end;
      gap: 28px;
    }
    .chapter-count { padding-bottom: 13px; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .13em; }
    .chapter-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .chapter-tab {
      position: relative;
      min-height: 48px;
      padding: 0 0 14px;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,.25);
      background: transparent;
      color: rgba(255,255,255,.52);
      text-align: left;
      font-size: 13px;
      cursor: pointer;
    }
    .chapter-tab[aria-selected="true"] { color: #fff; }
    .chapter-tab[aria-selected="true"]::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 2px;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(103,232,249,.72);
    }

    .launch-deck { position: relative; z-index: 4; padding: 30px 0 54px; background: linear-gradient(180deg, rgba(2,10,17,.08), transparent); }
    .launch-panel {
      --launch-x: 50%;
      --launch-y: 50%;
      position: relative;
      min-height: 650px;
      padding: clamp(28px,4vw,58px);
      overflow: hidden;
      border: 1px solid rgba(139,216,255,.26);
      border-radius: 38px;
      display: grid;
      grid-template-columns: minmax(0,.94fr) minmax(460px,1.06fr);
      gap: clamp(34px,5vw,74px);
      background: radial-gradient(500px circle at var(--launch-x) var(--launch-y), rgba(79,190,255,.11), transparent 58%), linear-gradient(145deg, rgba(12,34,51,.94), rgba(4,15,25,.96) 58%, rgba(8,26,39,.92));
      box-shadow: inset 0 1px rgba(255,255,255,.08), 0 38px 110px rgba(0,0,0,.32);
      isolation: isolate;
    }
    .launch-panel::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg,#000,transparent 75%); }
    .launch-panel::after { content: ""; position: absolute; inset: 8px; z-index: -1; border: 1px solid rgba(255,255,255,.045); border-radius: 30px; pointer-events: none; }
    .launch-copy { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; }
    .launch-copy h2 { max-width: 650px; margin: 0; color: var(--white); font-size: clamp(45px,4.7vw,68px); font-weight: 450; line-height: .96; letter-spacing: -.052em; }
    .launch-copy > p { max-width: 570px; margin: 24px 0 0; color: #9eb3c2; font-size: 16px; line-height: 1.65; }
    .launch-options { margin-top: 34px; display: grid; gap: 11px; }
    .launch-option {
      position: relative;
      width: 100%;
      min-height: 108px;
      padding: 18px 18px;
      border: 1px solid rgba(139,216,255,.13);
      border-radius: 18px;
      display: grid;
      grid-template-columns: 48px minmax(0,1fr) 78px;
      align-items: center;
      gap: 13px;
      overflow: hidden;
      background: rgba(4,16,26,.52);
      color: var(--white);
      text-align: left;
      cursor: pointer;
      transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
    }
    .launch-option::after { content: "Выбрать"; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-align: right; text-transform: uppercase; transition: color 220ms ease; }
    .launch-option:hover { transform: translateX(7px); border-color: rgba(100,206,255,.38); background: rgba(10,37,55,.78); }
    .launch-option:hover::after { color: var(--blue-light); }
    .launch-option.is-active { border-color: rgba(100,206,255,.55); background: linear-gradient(90deg,rgba(21,103,153,.48),rgba(9,31,46,.7)); box-shadow: 0 14px 34px rgba(0,0,0,.18), inset 3px 0 var(--blue-light); }
    .launch-option.is-active::after { content: "Выбрано ✓"; color: var(--blue-light); }
    .launch-option > span:first-child { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 13px; display: grid; place-items: center; color: var(--blue-light); font-size: 11px; letter-spacing: .1em; }
    .launch-option > span:nth-child(2) { min-width: 0; }
    .launch-option strong { display: block; font-size: 17px; font-weight: 650; }
    .launch-option small { display: block; margin-top: 7px; color: #91a8b7; font-size: 12px; line-height: 1.5; }
    .launch-visual { position: relative; min-height: 590px; overflow: hidden; border: 1px solid rgba(137,211,250,.18); border-radius: 30px; background: radial-gradient(circle at 50% 46%, rgba(29,139,206,.24), rgba(4,15,24,.42) 45%, rgba(2,9,15,.84)); }
    #launch-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
    .launch-status { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 23px 24px; border: 1px solid rgba(181,229,255,.22); border-radius: 20px; background: rgba(3,14,23,.92); box-shadow: inset 0 1px rgba(255,255,255,.08); }
    .launch-status-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .launch-status-label { color: var(--blue-light); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
    .launch-status-code { color: var(--muted); font-size: 11px; letter-spacing: .12em; }
    .launch-status strong { display: block; margin-top: 10px; color: var(--white); font-size: 29px; font-weight: 500; letter-spacing: -.03em; }
    .launch-status p { min-height: 44px; margin: 9px 0 0; color: #a9bdca; font-size: 14px; line-height: 1.6; }
    .launch-meter { height: 3px; margin-top: 15px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
    .launch-meter span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),var(--cyan)); box-shadow: 0 0 15px var(--blue-light); transform: scaleX(.72); transform-origin: left; transition: transform 520ms cubic-bezier(.22,.72,.2,1); }
    .launch-telemetry { position: absolute; z-index: 3; top: 22px; left: 22px; right: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
    .launch-telemetry div { min-height: 128px; padding: 18px 17px; border: 1px solid rgba(139,216,255,.18); border-radius: 17px; background: rgba(4,16,26,.92); }
    .launch-telemetry strong { display: block; color: var(--white); font-size: 16px; font-weight: 650; line-height: 1.25; }
    .launch-telemetry span { display: block; margin-top: 9px; color: #a7bac6; font-size: 11.5px; line-height: 1.5; }

    .service-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
    .service-card {
      scroll-margin-top: 110px;
      --accent: var(--blue-light);
      position: relative;
      min-height: 390px;
      padding: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      background: linear-gradient(145deg, rgba(14,33,48,.96), rgba(7,18,29,.9));
      box-shadow: 0 20px 60px rgba(0,0,0,.18);
      transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
      isolation: isolate;
    }
    .service-card::before {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -150px;
      z-index: -1;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in srgb, var(--accent) 23%, transparent), transparent 68%);
      transition: transform 500ms ease, opacity 260ms ease;
    }
    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0;
      background: radial-gradient(260px circle at var(--card-x,50%) var(--card-y,50%), color-mix(in srgb, var(--accent) 16%, transparent), transparent 72%);
      transition: opacity 220ms ease;
    }
    .service-card:hover::after { opacity: 1; }
    .service-card > * { position: relative; z-index: 1; }
    .service-card > .service-tags { position: absolute; }
    .service-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent) 46%, transparent); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
    .service-card:hover::before { transform: scale(1.2); }
    .service-card--wide { grid-column: span 7; min-height: 440px; }
    .service-card--narrow { grid-column: span 5; min-height: 440px; }
    .service-card--third { grid-column: span 4; }
    .service-card--seo { --accent: var(--lime); }
    .service-card--ads { --accent: var(--orange); }
    .service-card--avito { --accent: var(--cyan); }
    .service-card--social { --accent: var(--purple); }
    .service-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .service-number { color: var(--muted-2); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
    .service-icon {
      width: 48px;
      height: 48px;
      border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: var(--accent);
      background: color-mix(in srgb, var(--accent) 9%, transparent);
    }
    .service-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    .service-card h3 { max-width: 520px; margin: auto 0 14px; color: var(--white); font-size: clamp(29px, 3vw, 48px); font-weight: 480; line-height: 1; letter-spacing: -.045em; }
    .service-card--third h3 { font-size: clamp(28px, 2.4vw, 38px); }
    .service-card > p { max-width: 530px; margin: 0; color: #9cb0be; font-size: 15.5px; line-height: 1.65; }
    .service-meta { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
    .service-price { color: var(--accent); font-size: 15px; font-weight: 750; }
    .service-link { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: 13px; font-weight: 750; }
    .service-tags { position: absolute; right: 28px; top: 105px; width: 210px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
    .service-tags span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(3,10,18,.26); font-size: 11px; }
    .service-card--narrow .service-tags,
    .service-card--third .service-tags { display: none; }

    #cases { padding: 90px 0 96px; }
    .case-head { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
    .case-head h2 { max-width: 760px; margin: 0; color: var(--white); font-size: clamp(42px,4.6vw,68px); font-weight: 450; line-height: .98; letter-spacing: -.052em; }
    .case-head .body-copy { max-width: 590px; margin-top: 17px; font-size: 16px; }
    .case-controls { display: flex; align-items: center; gap: 10px; }
    .case-control { min-width: 122px; min-height: 50px; padding: 0 20px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(7,23,35,.74); color: var(--white); font-size: 12px; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
    .case-control:hover { transform: translateY(-2px); border-color: rgba(100,206,255,.62); background: rgba(12,43,64,.86); }
    .case-carousel { position: relative; overflow: hidden; border-radius: var(--radius-xl); touch-action: pan-y; cursor: grab; opacity: 1 !important; translate: none !important; }
    .case-carousel:active { cursor: grabbing; }
    .case-track { --case-gap: 22px; display: flex; gap: var(--case-gap); padding-inline: 48px; will-change: transform; }
    .case-card {
      --case-accent: var(--blue-light);
      flex: 0 0 calc(100% - 96px);
      min-width: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      background: linear-gradient(145deg, rgba(12,30,44,.95), rgba(6,17,27,.96));
      box-shadow: var(--shadow);
      opacity: .52;
      transform: scale(.965);
      transition: opacity 420ms ease, transform 420ms ease, border-color 420ms ease;
    }
    .case-card.is-current { opacity: 1; transform: scale(1); border-color: rgba(100,206,255,.32); }
    .case-card--clinic { --case-accent: #a58aff; }
    .case-card--construction { --case-accent: #67e8f9; }
    .case-card--services { --case-accent: #b8f06a; }
    .case-card--ecommerce { --case-accent: #ffb86b; }
    .case-card--education { --case-accent: #ff7fbc; }
    .case-visual { position: relative; min-height: 520px; overflow: hidden; padding: clamp(24px, 3vw, 44px); display: grid; align-content: end; background: radial-gradient(circle at 30% 20%, rgba(23,141,226,.23), transparent 38%), linear-gradient(145deg, #07131f, #0c2639); }
    .case-visual::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 44px 44px; }
    .dashboard {
      position: relative;
      z-index: 2;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 22px;
      background: rgba(3,12,20,.72);
      box-shadow: 0 30px 70px rgba(0,0,0,.35);
      transform: perspective(900px) rotateY(7deg) rotateX(3deg);
      background: rgba(3,12,20,.92);
    }
    .dashboard-bar { padding-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .dashboard-dots { display: flex; gap: 6px; }
    .dashboard-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); }
    .dashboard-label { color: var(--muted); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
    .dashboard-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 12px; }
    .dashboard-side,
    .dashboard-main { min-height: 270px; border: 1px solid var(--line); border-radius: 15px; background: rgba(12,31,46,.75); }
    .dashboard-side { padding: 15px; display: grid; align-content: start; gap: 10px; }
    .dashboard-side span { height: 7px; border-radius: 999px; background: rgba(130,152,168,.16); }
    .dashboard-side span:nth-child(2) { width: 70%; }
    .dashboard-side span:nth-child(3) { width: 84%; }
    .dashboard-main { padding: 20px; display: flex; flex-direction: column; }
    .chart-label { color: var(--muted); font-size: 11px; }
    .chart-value { margin-top: 5px; color: var(--white); font-size: 34px; letter-spacing: -.05em; }
    .chart-bars { flex: 1; padding-top: 28px; display: flex; align-items: end; gap: 8px; }
    .chart-bars i { flex: 1; min-height: 10%; border-radius: 5px 5px 2px 2px; background: linear-gradient(color-mix(in srgb, var(--case-accent) 95%, #fff), color-mix(in srgb, var(--case-accent) 74%, #075f9f)); box-shadow: 0 0 18px color-mix(in srgb, var(--case-accent) 18%, transparent); }
    .case-copy { padding: clamp(36px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
    .case-copy h2 { font-size: clamp(34px, 3.5vw, 54px); }
    .case-copy .body-copy { margin-top: 20px; }
    .case-metrics { margin: 30px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .case-metric { padding-top: 18px; border-top: 1px solid var(--line); }
    .case-metric strong { display: block; color: var(--case-accent); font-size: 29px; font-weight: 450; }
    .case-metric span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .case-footer { margin-top: 23px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
    .case-counter { color: var(--muted); font-size: 11px; letter-spacing: .14em; }
    .case-progress { height: 1px; overflow: hidden; background: var(--line); }
    .case-progress span { display: block; width: 100%; height: 100%; background: var(--blue-light); transform: scaleX(.25); transform-origin: left; transition: transform 430ms ease; }
    .case-dots { display: flex; align-items: center; gap: 7px; }
    .case-dot { width: 24px; height: 24px; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center; background: transparent; cursor: pointer; }
    .case-dot::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--muted-2); transition: width 180ms ease, background 180ms ease; }
    .case-dot.is-active::before { width: 18px; border-radius: 999px; background: var(--blue-light); }

    .process-grid { --process-progress: 10%; position: relative; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; list-style: none; }
    .process-grid::before { content: ""; position: absolute; left: 30px; right: 30px; top: 46px; height: 1px; background: linear-gradient(90deg, var(--blue-light) 0 var(--process-progress), var(--line) var(--process-progress) 100%); transition: background 360ms ease; }
    .process-card {
      position: relative;
      min-height: 245px;
      padding: 25px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(9,23,35,.64);
      transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
      cursor: pointer;
    }
    .process-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -80px; top: -80px; border-radius: 50%; background: rgba(23,141,226,.11); transition: transform 260ms ease; }
    .process-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: rgba(12,31,46,.9); }
    .process-card.is-active { transform: translateY(-8px); border-color: rgba(100,206,255,.58); background: linear-gradient(155deg, rgba(15,53,78,.94), rgba(8,25,38,.9)); box-shadow: 0 22px 55px rgba(0,0,0,.25), 0 0 30px rgba(23,141,226,.08); }
    .process-card:hover::after { transform: scale(1.4); }
    .process-step { width: 43px; height: 43px; border: 1px solid rgba(100,206,255,.28); border-radius: 14px; display: grid; place-items: center; color: var(--blue-light); font-size: 12px; background: rgba(23,141,226,.08); }
    .process-card h3 { margin: 44px 0 12px; color: var(--white); font-size: 21px; font-weight: 520; }
    .process-card p { margin: 0; color: #9aafbd; font-size: 14.5px; line-height: 1.62; }

    .faq { margin-top: 60px; }
    .faq-title { margin: 0 0 28px; color: var(--white); font-size: clamp(34px, 4vw, 56px); font-weight: 450; line-height: 1; letter-spacing: -.045em; }
    .faq-item { border-top: 1px solid var(--line); }
    .faq-item:last-child { border-bottom: 1px solid var(--line); }
    .faq-question { width: 100%; min-height: 82px; padding: 0 3px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; color: var(--white); text-align: left; cursor: pointer; }
    .faq-question span:first-child { font-size: 16px; }
    .faq-state { color: var(--blue-light); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
    .faq-answer { max-width: 800px; max-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 15px; line-height: 1.67; transition: max-height 300ms ease, padding 300ms ease; }
    .faq-item.is-open .faq-answer { max-height: 210px; padding-bottom: 26px; }

    .contact-card {
      position: relative;
      padding: clamp(32px, 5vw, 68px);
      overflow: hidden;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-xl);
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: clamp(45px, 7vw, 100px);
      background: radial-gradient(circle at 0 0, rgba(23,141,226,.24), transparent 34%), linear-gradient(145deg, #0b2539, #071722 58%, #06121d);
      box-shadow: var(--shadow);
    }
    .contact-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -210px; bottom: -210px; border: 1px solid rgba(103,232,249,.14); border-radius: 50%; box-shadow: 0 0 0 54px rgba(103,232,249,.025), 0 0 0 108px rgba(103,232,249,.018); pointer-events: none; }
    .contact-copy,
    .contact-form,
    .form-success { position: relative; z-index: 2; }
    .contact-copy .body-copy { margin-top: 24px; }
    .contact-lines { margin-top: 42px; display: grid; gap: 13px; color: #a7bbc8; font-size: 16px; }
    .contact-lines a:hover { color: var(--blue-light); }
    .contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-content: start; }
    .field { display: grid; gap: 8px; }
    .field--wide { grid-column: 1 / -1; }
    .field > span { color: #a5bac8; font-size: 13px; }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 54px;
      padding: 12px 14px;
      border: 1px solid rgba(151,199,226,.2);
      border-radius: 12px;
      outline: 0;
      background: rgba(3,12,20,.58);
      color: var(--white);
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    .field select { color-scheme: dark; }
    .field textarea { min-height: 122px; resize: vertical; }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { border-color: var(--blue-light); background: rgba(3,12,20,.85); box-shadow: 0 0 0 4px rgba(23,141,226,.13); }
    .consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: #91a7b5; font-size: 12px; line-height: 1.5; }
    .consent input { width: 18px; height: 18px; margin: 0; flex: 0 0 auto; accent-color: var(--blue); }
    .form-submit { grid-column: 1 / -1; width: 100%; }
    .form-submit:disabled { cursor: wait; opacity: .66; }
    .feedback-honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
    .form-error { grid-column: 1 / -1; margin: 0; color: #ffb4b4; font-size: 13px; line-height: 1.5; }
    .form-error[hidden] { display: none; }
    .contact-form [aria-invalid="true"] { border-color: #ff8e8e; box-shadow: 0 0 0 4px rgba(255,80,80,.1); }
    .form-success { min-height: 390px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); display: none; place-items: center; align-content: center; gap: 13px; text-align: center; background: rgba(3,12,20,.48); }
    .form-success.is-visible { display: grid; }
    .form-success h3 { margin: 0; color: var(--white); font-size: 31px; font-weight: 450; }
    .form-success p { margin: 0; color: var(--muted); }

    .footer-wrap { padding: 10px 0 30px; }
    .footer {
      --footer-x: 50%;
      --footer-y: 50%;
      position: relative;
      padding: 34px 38px 26px;
      overflow: hidden;
      border: 2px solid rgba(187,231,255,.48);
      border-radius: 38px;
      color: var(--muted);
      background: linear-gradient(110deg, rgba(28,54,69,.92), rgba(7,22,33,.94) 25%, rgba(6,21,33,.94) 76%, rgba(21,50,66,.9));
      box-shadow: inset 0 2px 3px rgba(255,255,255,.34), inset 0 -2px 4px rgba(100,206,255,.23), inset 8px 0 18px rgba(183,231,255,.08), inset -8px 0 18px rgba(183,231,255,.08), 0 20px 55px rgba(0,0,0,.4), 0 0 34px rgba(100,206,255,.11);
    }
    .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: radial-gradient(260px circle at var(--footer-x) var(--footer-y), rgba(204,242,255,.2), transparent 72%), linear-gradient(180deg, rgba(255,255,255,.12), transparent 22%, transparent 78%, rgba(99,199,246,.08));
      opacity: .9;
      height: 256px;
    }
    .footer::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.11); border-radius: 29px; pointer-events: none; }
    .footer-top { position: relative; z-index: 2; margin-bottom: 24px; display: grid; grid-template-columns: 1.35fr repeat(4, minmax(115px,1fr)); align-items: start; gap: clamp(24px,3vw,48px); }
    .footer-brand .brand-logo-image { width: 174px; }
    .footer-brand p { max-width: 260px; margin: 15px 0 0; color: #9db2bf; font-size: 12px; line-height: 1.6; }
    .footer-links { display: contents; }
    .footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer-column h3 { margin: 0 0 5px; color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .footer-column a,
    .footer-column span { font-size: 12px; line-height: 1.45; transition: color 160ms ease, transform 160ms ease; }
    .footer-column a:hover { color: var(--blue-light); transform: translateX(3px); }
    .footer-bottom { position: relative; z-index: 2; padding-top: 18px; border-top: 1px solid rgba(170,219,244,.13); display: flex; justify-content: space-between; gap: 20px; color: #7890a0; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
    .footer-bottom p { margin: 0; }
    .social-links { display: flex; flex-wrap: wrap; gap: 15px; }
    .social-links a:hover { color: var(--white); }

    .reveal { opacity: 0; translate: 0 26px; transition: opacity 720ms ease, translate 720ms cubic-bezier(.2,.7,.2,1); }
    .reveal.is-visible { opacity: 1; translate: none; }

    @media (max-width: 1050px) {
      .site-header { grid-template-columns: 135px 1fr auto; }
      .site-nav { gap: 15px; }
      .site-nav a,
      .site-nav button { font-size: 12px; }
      .system-layout { gap: 55px; }
      .process-grid { grid-template-columns: repeat(3, 1fr); }
      .process-grid::before { display: none; }
      .launch-panel { grid-template-columns: minmax(0,.9fr) minmax(390px,1.1fr); }
      .footer-top { grid-template-columns: 1.35fr repeat(2,minmax(130px,1fr)); }
      .footer-brand { grid-row: span 2; }
      .contact-card { grid-template-columns: 1fr; }
    }

    @media (max-width: 940px) {
      .launch-panel { grid-template-columns: 1fr; }
      .launch-visual { min-height: 600px; }
      .system-layout { grid-template-columns: 1fr; }
      .orbit-system { width: min(100%,680px); margin: 0 auto; }
    }

    @media (max-width: 820px) {
      .container,
      .site-header,
      .hero-chapters { width: min(720px, calc(100% - 32px)); }
      .section { padding: 94px 0; }
      .site-header { min-height: 64px; grid-template-columns: 1fr auto; }
      .site-nav,
      .header-cta { display: none; }
      .menu-toggle { display: block; }
      .services-mega {
        position: fixed;
        inset: 0;
        width: 100%;
        max-height: none;
        height: 100dvh;
        padding: 20px 18px 18px;
        border: 0;
        border-radius: 0;
        transform: translateY(18px);
        background:
          radial-gradient(circle at 10% 0%, rgba(66,190,255,.15), transparent 35%),
          linear-gradient(145deg, rgba(10,35,51,.995), rgba(2,13,23,.995));
        z-index: 80;
      }
      .services-mega.is-open { transform: none; }
      .services-mega::after { inset: 6px; border-radius: 20px; }
      .services-mega-head { margin-bottom: 10px; }
      .services-mega-head h2 { font-size: 30px; }
      .services-mega-scroll {
        max-height: calc(100dvh - 88px);
        padding: 4px 5px 30px 0;
      }
      .services-mega-grid { grid-template-columns: 1fr; gap: 10px; }
      .services-group {
        border: 1px solid rgba(149,214,244,.16);
        border-radius: 18px;
        overflow: hidden;
        background: rgba(2,17,28,.38);
      }
      .services-group-toggle {
        min-height: 62px;
        padding: 16px 17px;
        border: 0;
        align-items: center;
        font-size: 17px;
        cursor: pointer;
      }
      .services-group-icon {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        border: 1px solid rgba(100,206,255,.28);
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--blue-light);
        font-size: 20px;
        font-weight: 400;
        transition: transform 180ms ease, background 180ms ease;
      }
      .services-group.is-open .services-group-icon { transform: rotate(45deg); background: rgba(100,206,255,.1); }
      .services-group-list {
        max-height: 0;
        margin: 0;
        padding: 0 17px;
        gap: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 300ms ease, opacity 200ms ease, padding 300ms ease;
      }
      .services-group.is-open .services-group-list {
        max-height: 560px;
        padding: 0 17px 14px;
        opacity: 1;
      }
      .services-group-list a {
        min-height: 50px;
        padding: 14px 26px 14px 0;
        border-top: 1px solid rgba(149,214,244,.1);
        font-size: 15.5px;
      }
      .services-group-list a::after { top: 14px; opacity: .72; transform: none; }
      body.services-open { overflow: hidden; }
      .hero-main { padding-top: 130px; padding-bottom: 180px; grid-template-columns: 1fr; gap: 35px; }
      .hero h1 { font-size: clamp(50px, 10vw, 78px); }
      .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
      .hero-stats div { padding-bottom: 0; border-bottom: 0; }
      .hero-stats strong { font-size: 29px; }
      .hero-scroll-label { display: none; }
      .section-head { grid-template-columns: 1fr; gap: 18px; }
      .launch-deck { padding-top: 24px; }
      .launch-panel { border-radius: 30px; }
      .system-layout { grid-template-columns: 1fr; }
      .orbit-system { width: min(100%, 680px); min-height: 620px; margin: 0 auto; }
      .service-card--wide,
      .service-card--narrow { grid-column: 1 / -1; }
      .service-card--third { grid-column: span 6; }
      .service-card--third:last-child { grid-column: 1 / -1; }
      .case-head { align-items: flex-start; flex-direction: column; }
      .case-card { grid-template-columns: 1fr; }
      .case-track { --case-gap: 16px; padding-inline: 28px; }
      .case-card { flex-basis: calc(100% - 56px); }
      .case-visual { min-height: 520px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
      .price-selector { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .price-tab { min-height: 105px; }
      .price-stage-inner { grid-template-columns: 1fr; grid-template-areas: "label" "title" "value" "lead" "list" "cta"; }
      .price-list { margin-top: 28px; grid-template-columns: repeat(2,minmax(0,1fr)); }
      .footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 34px; }
      .footer-brand { grid-column: 1 / -1; grid-row: auto; }
    }

    @media (max-width: 560px) {
      .container,
      .site-header,
      .hero-chapters { width: calc(100% - 24px); }
      .section { padding: 78px 0; }
      .site-header { top: 12px; padding-left: 15px; border-radius: 18px; }
      .brand-logo-image { width: 128px; }
      .header-actions .media-control { display: none; }
      .hero { min-height: 850px; }
      .hero-main { padding-top: 112px; padding-bottom: 210px; }
      .hero h1 { font-size: 47px; line-height: .98; }
      .hero-lead { margin-top: 20px; font-size: 17px; }
      .hero-buttons { margin-top: 27px; }
      .hero-buttons .button { flex: 1 1 100%; }
      .hero-stats strong { font-size: 25px; }
      .hero-stats span { font-size: 11px; }
      .hero-chapters { bottom: 24px; grid-template-columns: 1fr; gap: 9px; }
      .chapter-count { display: none; }
      .chapter-tabs { gap: 8px; }
      .chapter-tab { font-size: 11px; }
      .section-head h2,
      .system-copy h2,
      .case-copy h2,
      .contact-copy h2 { font-size: 39px; }
      .launch-deck { padding-bottom: 44px; }
      .launch-panel { min-height: 0; padding: 24px 18px; gap: 28px; }
      .launch-copy h2 { font-size: 42px; }
      .launch-copy > p { font-size: 15px; }
      .launch-option { min-height: 124px; grid-template-columns: 44px minmax(0,1fr); padding: 18px 16px; }
      .launch-option::after { display: none; }
      .launch-option strong { font-size: 16px; }
      .launch-option small { font-size: 12px; }
      .launch-visual { min-height: 700px; border-radius: 24px; }
      .launch-telemetry { top: 14px; left: 14px; right: 14px; grid-template-columns: 1fr; }
      .launch-telemetry div { min-height: 82px; padding: 13px 14px; display: block; }
      .launch-telemetry strong { font-size: 14px; }
      .launch-telemetry span { margin-top: 6px; font-size: 11px; }
      .launch-status { left: 14px; right: 14px; bottom: 14px; padding: 19px 18px; }
      .launch-status strong { font-size: 25px; }
      .launch-status p { font-size: 13px; }
      .orbit-system { max-width: 100%; min-height: 0; padding: 82px 16px 18px; border-radius: 28px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
      .orbit-ring { display: none; }
      .orbit-instruction { left: 16px; right: 16px; top: 17px; max-width: none; min-height: 44px; display: grid; place-items: center; text-align: center; font-size: 11px; }
      .orbit-core { position: relative; left: auto; top: auto; width: 100%; min-height: 300px; padding: 37px 30px; border-radius: 28px; grid-column: 1 / -1; transform: none; }
      .orbit-core strong { font-size: 34px; }
      .orbit-core p { max-width: 260px; min-height: 0; font-size: 13px; }
      .orbit-core span { max-width: 250px; font-size: 11px; }
      .orbit-node { position: relative; inset: auto; width: 100%; min-width: 0; min-height: 60px; padding: 11px 13px; border-radius: 16px; font-size: 13px; transform: none; }
      .orbit-node span { font-size: 9px; }
      .orbit-node--data { grid-column: 1 / -1; }
      .service-card--wide,
      .service-card--narrow,
      .service-card--third { grid-column: 1 / -1; min-height: 360px; padding: 24px; }
      .service-card h3,
      .service-card--third h3 { font-size: 32px; }
      .service-tags { display: none; }
      .case-visual { min-height: 390px; padding: 18px; }
      .case-track { --case-gap: 10px; padding-inline: 0; }
      .case-card { flex-basis: 100%; }
      .dashboard { padding: 12px; transform: none; }
      .dashboard-grid { grid-template-columns: 1fr; }
      .dashboard-side { display: none; }
      .dashboard-main { min-height: 280px; }
      .case-copy { padding: 31px 22px; }
      .case-metrics { grid-template-columns: 1fr; }
      .case-controls { width: 100%; }
      .case-control { flex: 1; min-width: 0; }
      .case-footer { grid-template-columns: auto 1fr; }
      .case-dots { grid-column: 1 / -1; justify-content: center; }
      .process-grid { grid-template-columns: 1fr; }
      .process-card { min-height: 215px; }
      .process-card h3 { margin-top: 32px; }
      .price-selector { grid-template-columns: 1fr 1fr; padding: 10px; }
      .price-tab { min-height: 92px; padding: 15px; border-radius: 15px; }
      .price-tab strong { font-size: 16px; }
      .price-tab span { font-size: 13px; }
      .price-stage { padding: 35px 22px; }
      .price-stage h3 { font-size: 41px; }
      .price-list { grid-template-columns: 1fr; }
      .faq { margin-top: 58px; }
      .contact-card { padding: 31px 20px; border-radius: 23px; }
      .contact-form { grid-template-columns: 1fr; }
      .field,
      .field--wide,
      .consent,
      .form-submit { grid-column: auto; }
      .footer { padding: 30px 24px 24px; border-radius: 28px; }
      .footer-brand .brand-logo-image { width: 164px; }
      .footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 420px) {
      .launch-copy h2 { font-size: 38px; }
      .hero h1 { font-size: 42px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .footer-column a,
      .footer-column span { font-size: 13px; }
      .orbit-system { grid-template-columns: 1fr; }
      .orbit-node,
      .orbit-node--data { grid-column: 1; }
    }

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

    @media (pointer: fine) {
      html,
      body,
      body *,
      body *::before,
      body *::after {
        cursor: none !important;
      }
    }

    .page-plasma {
      z-index: 999998!important;
    }

    .plasma-pointer-dot {
      position: fixed;
      width: 10px;
      height: 10px;
      left: 0;
      top: 0;
      border-radius: 50%;
      background: #fff;
      pointer-events: none;
      z-index: 999999;
      transform: translate3d(-100px, -100px, 0);
      will-change: transform;
      box-shadow:
        0 0 18px rgba(255,255,255,.95),
        0 0 28px rgba(255,255,255,.65);
      opacity: 0;
    }

    @media (pointer: coarse) {
      .plasma-pointer-dot,
      .plasma-cursor-canvas {
        display: none;
      }
    }
/* End */


/* Start:/local/templates/7sky/assets/css/services-mega.css?17891084883077*/
/* 7SKY: каталог разделов из структуры сайта.
   Загружается после style.css и переопределяет стили popup-меню второго
   уровня: заголовки групп — ссылки (.services-group-title), кнопка-тоггл
   осталась в каждой группе для мобильного аккордеона (site-menu.js). */

/* Заголовок группы: ссылка + компактная кнопка */
.services-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(149, 214, 244, .18);
}

.services-group-title {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.24;
  text-decoration: none;
  transition: color 160ms ease;
}

.services-group-title:hover {
  color: var(--blue-light);
}

.services-group-toggle {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.services-group-icon {
  display: none;
}

.services-group-toggle:focus-visible,
.services-group-title:focus-visible,
.services-mega-all:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

/* Ссылка «Смотреть все услуги» */
.services-mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(149, 214, 244, .18);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.services-mega-all:hover {
  color: var(--blue-light);
  transform: translateX(3px);
}

.services-mega-all .arrow {
  color: var(--blue-light);
}

/* Мобильная версия: тоггл-аккордеон, иконка «+» видна */
@media (max-width: 820px) {
  .services-group-head {
    min-height: 62px;
    padding: 0 17px;
    border-bottom: 0;
    gap: 17px;
  }

  .services-group-title {
    font-size: 17px;
    line-height: 1.3;
  }


  .services-group-toggle {
    min-height: 62px;
    border: 0;
    align-items: center;
    font-size: 17px;
    cursor: pointer;
  }

  .services-group-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid rgba(100, 206, 255, .28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--blue-light);
    font-size: 20px;
    font-weight: 400;
    transition: transform 180ms ease, background 180ms ease;
  }


  .services-group.is-open .services-group-icon {
    transform: rotate(45deg);
    background: rgba(100, 206, 255, .1);
  }

  .services-group-title:focus-visible,
  .services-group-toggle:focus-visible,
  .services-mega-all:focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 4px;
  }

  .services-mega-all {
    margin-top: 14px;
    padding-inline: 17px;
  }
}
/* End */
/* /local/templates/7sky/assets/css/style.css?178910856953538 */
/* /local/templates/7sky/assets/css/services-mega.css?17891084883077 */
