 /* Стартовая анимация появления */
    body {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    /* После загрузки — плавно показать */
    body.page-loaded {
      opacity: 1;
    }

    /* Плавное исчезновение при переходе */
    .fade-out {
      opacity: 0;
      transition: opacity 0.4s ease;
    }


    /* ===== БАЗА ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #05060a;
      --card: #10121b;
      --card-soft: #151826;
      --accent: #9b3dff;
      --accent-2: #4cff7a;
      --accent-3: #ff4ddb;
      --text-main: #ffffff;
      --text-muted: #a0a4b8;
      --border-soft: rgba(255, 255, 255, 0.05);
      --radius-xl: 24px;
      --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
      --transition-fast: 0.25s ease;
    }

    html,
    body {
      min-height: 100%;
      background: radial-gradient(circle at top, #16192b 0, #05060a 55%, #020309 100%);
      color: var(--text-main);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: #0d0f17;
      position: relative;
      overflow-x: hidden;
      z-index: 0;

    }

    /* фон только в верхней части страницы */
    body::before {
      content: "";
      position: absolute;
      /* было fixed */
      top: -150px;
      /* чуть выше, чтобы свечение мягко начиналось */
      left: 0;
      width: 100%;
      height: 900px;
      /* ВЫСОТА области с картинкой, можно менять */

      background: url("../images/bg.png") center top / cover no-repeat;

      filter: blur(90px) brightness(1.2);
      opacity: 0.55;

      z-index: -1;
      pointer-events: none;
    }


    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ===== ФОН ===== */
    /* .bg-orbit {
      position: fixed;
      inset: -200px;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    } */

    .blob {
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: conic-gradient(from 120deg, #6e3bff, #4cff7a, #ff4ddb, #6e3bff);
      filter: blur(2px);
      opacity: 0.35;
      mix-blend-mode: screen;
      animation: float 22s linear infinite;
    }

    .blob:nth-child(1) {
      top: -40px;
      left: 6%;
      animation-duration: 26s;
    }

    .blob:nth-child(2) {
      top: 10%;
      right: 12%;
      animation-duration: 30s;
    }

    .blob:nth-child(3) {
      bottom: 8%;
      left: 18%;
      animation-duration: 24s;
    }

    .blob:nth-child(4) {
      bottom: -60px;
      right: 4%;
      animation-duration: 32s;
    }

    .blob:nth-child(5) {
      top: 35%;
      left: -40px;
      animation-duration: 28s;
      width: 260px;
      height: 260px;
    }

    .blob:nth-child(6) {
      top: 50%;
      right: -80px;
      animation-duration: 34s;
      width: 260px;
      height: 260px;
    }

    @keyframes float {
      0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }

      50% {
        transform: translate3d(30px, -30px, 0) rotate(150deg);
      }

      100% {
        transform: translate3d(0, 0, 0) rotate(360deg);
      }
    }

    /* ===== HEADER ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.7), transparent);
      /* border-bottom: 1px solid rgba(255,255,255,0.03); */
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .logo-badge {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      /* background: radial-gradient(circle at 30% 20%, #a448f8, #f53de1, #1d1233); */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 0 0 2px #05060a, 0 0 25px rgba(255, 122, 61, 0.6);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .nav-link {
      position: relative;
      cursor: pointer;
      transition: color var(--transition-fast);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      transition: width var(--transition-fast);
    }

    .nav-link:hover {
      color: var(--text-main);
    }

    .nav-link.active::after {
      width: 18px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-ghost {
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
      background: rgba(8, 10, 18, 0.7);
      transition: var(--transition-fast);
    }

    .nav-ghost:hover {
      border-color: rgba(255, 255, 255, 0.22);
      color: var(--text-main);
      transform: translateY(-1px);
    }

    .btn-primary {
      padding: 10px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, #a93dff, #ff3ddd);
      color: #fff;
      font-weight: 600;
      font-size: 13px;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 15px 30px rgba(169, 61, 255, 0.6);
      transition: var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary:hover {
      transform: translateY(-1px) scale(1.02);
      box-shadow: 0 20px 50px rgba(169, 61, 255, 0.9);
    }

    /* ===== HERO ===== */
    .hero {
      padding: 56px 0 64px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 48px;
      align-items: center;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px 4px 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .hero-label span {
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(155, 61, 255, 0.18);
      font-size: 11px;
      color: #f5e6ff;
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 50px);
      line-height: 1.08;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero-title span {
      background: linear-gradient(90deg, #4cff7a, #a93dff, #ff3ddd);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 500px;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .hero-note {
      font-size: 13px;
      color: var(--text-muted);
    }

    .hero-note strong {
      color: #e0e3ff;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
    }

    .metric-pill {
      padding: 14px 20px;
      border-radius: 16px;

      /* БОЛЕЕ ТЁМНЫЙ и БОЛЕЕ ПРОЗРАЧНЫЙ фон
    /* background: linear-gradient(
        135deg,
        rgba(40, 0, 60, 0.35) 0%,
        rgba(30, 0, 80, 0.30) 35%,
        rgba(5, 15, 25, 0.25) 100%
    );*/
      backdrop-filter: blur(14px);

      /* Рамка — намного спокойнее */
      border: 1px solid rgba(255, 255, 255, 0.05);

      /* Минимальный glow, чтобы не слепил */
      box-shadow:
        0 0 12px rgba(120, 60, 255, 0.20);

      color: #fff;
      font-size: 14px;
      line-height: 1.4;
      transition: 0.25s ease;
    }

    .metric-pill strong {
      color: #ffffff;
      font-weight: 700;
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }

    /* Ховер эффект — мягкий, не яркий */
    .metric-pill:hover {
      transform: translateY(-2px);
      box-shadow:
        0 0 22px rgba(140, 80, 255, 0.45),
        inset 0 0 25px rgba(255, 255, 255, 0.04);

      border-color: rgba(255, 255, 255, 0.12);
    }



    /* HERO правый блок */
    .hero-right {
      display: grid;
      grid-template-rows: auto auto;
      gap: 16px;
    }

    .hero-stat-card {
      /* background: radial-gradient(circle at top left, rgba(76,255,122,0.16), rgba(7,9,17,0.98)); */
      border-radius: 26px;
      padding: 18px 18px 16px;
      /* border: 1px solid rgba(255,255,255,0.05); */
      box-shadow: var(--shadow-soft);
    }

    .hero-stat-card:nth-child(2) {
      /* background: radial-gradient(circle at top right, rgba(155,61,255,0.18), rgba(7,9,17,0.98)); */
    }

    .stat-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 10px;
      font-size: 13px;
    }

    .stat-label {
      color: #e9ecff;
      font-weight: 500;
    }

    .stat-value {
      color: var(--accent-2);
      font-weight: 600;
      font-size: 14px;
    }

    .stat-chart {
      position: relative;
      border-radius: 18px;
      background: #02040a;
      padding: 12px 12px 10px;
      overflow: hidden;
    }

    .stat-graph {
      margin-left: 34px;
      /* место под цифры слева */
      height: 90px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.85);
    }

    #services .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 16px;
      /* чтобы на мобилке не прилипало к краям */
    }

    /* Адаптивная сетка */
    #services .grid-2 {
      display: grid;
      gap: 32px;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    /* Карточки растягиваются по высоте, но не ломают адаптив */
    #services .grid-2 .card {
      height: 100%;
      display: flex;
      flex-direction: column;
    }




    /* фон для первого и второго графика чуть разный */
    .stat-chart--percent .stat-graph {
      background: linear-gradient(180deg, #0d2136, #061019);
    }

    .stat-chart--traffic .stat-graph {
      background: linear-gradient(180deg, #081a26, #050d14);
    }

    .stat-graph svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* подписи по Y слева */
    .stat-y-labels {
      position: absolute;
      left: 10px;
      top: 10px;
      bottom: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.55);
    }

    /* подписи по X снизу */
    .stat-x-labels {
      position: absolute;
      left: 38px;
      right: 12px;
      bottom: 4px;
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.55);
    }

    /* стили линий / области */
    .stat-area {
      fill: #16a34a;
      /* зелёная заливка */
      fill-opacity: 0.55;
    }

    .stat-line-base {
      stroke: #1d4ed8;
      /* синяя линия 100% */
      stroke-width: 2;
      fill: none;
    }

    .stat-line {
      stroke: #4cff7a;
      /* лаймовая кривая */
      stroke-width: 2.2;
      fill: none;
    }



    /* ===== СЕКЦИИ ОБЩИЕ ===== */
    section {
      padding: 36px 0 60px;
    }

    section+section {
      /* border-top: 1px solid rgba(255,255,255,0.02); */
    }

    .section-label {
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .section-title span {
      color: var(--accent-2);
    }

    .section-sub {
      max-width: 640px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .card {
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(12, 14, 24, 0.96));
      border-radius: var(--radius-xl);
      padding: 20px 20px 22px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .card-soft {
      /* background: linear-gradient(180deg, rgba(10,12,20,0.95), rgba(6,7,13,0.98)); */
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at 0 0, rgba(155, 61, 255, 0.16), transparent 52%);
      opacity: 0.8;
      pointer-events: none;
    }

    .card>* {
      position: relative;
      z-index: 1;
    }

    .card-title {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .card-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ===== БЛОК СЕРВИСОВ ===== */
    .service-icon {
      font-size: 42px;
      margin-bottom: 6px;
    }

    .badge-small {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-2);
    }

    .platform-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .platform-pill {
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      /* background: #0c0e16; */
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text-muted);
    }

    .platform-pill span {
      font-size: 16px;
    }

    /* ===== ПРАЙСЫ ===== */
    #pricing .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 12px;
    }


    .price-column {
      background: linear-gradient(180deg, rgb(15 18 27), rgba(5, 6, 10, 0.98));
      border-radius: 26px;
      padding: 20px 20px 22px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow-soft);
    }

    .price-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .price-title {
      font-size: 18px;
      font-weight: 600;
    }

    .price-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .price-badge {
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      background: rgba(76, 255, 122, 0.16);
      color: #bbf7d0;
      border: 1px solid rgba(76, 255, 122, 0.5);
    }

    .price-table {
      margin-top: 10px;
      border-radius: 18px;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), rgb(8 11 24 / 96%));
      border: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
      font-size: 13px;
    }

    .price-row {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr;
      padding: 9px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .price-row:last-child {
      border-bottom: none;
    }

    .price-row:nth-child(odd) {
      background: rgba(255, 255, 255, 0.01);
    }

    .price-amount {
      color: #e5e7ff;
    }

    .price-cost {
      text-align: right;
      color: var(--accent-2);
      font-weight: 500;
    }

    .price-note {
      margin-top: 10px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .price-footer {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 24px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .price-footer small {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* Блок преимуществ */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    .benefit-card {
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), rgba(12, 14, 22, 0.96));
      border-radius: 22px;
      padding: 16px 16px 18px;
      border: 1px solid var(--border-soft);
      font-size: 13px;
      color: var(--text-muted);
    }



    .benefit-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .benefit-title {
      color: #f5f6ff;
      font-weight: 500;
      margin-bottom: 4px;
    }

    /* ===== CTA SEO ===== */
    .seo-cta {
      margin-top: 26px;
      padding: 18px 18px 20px;
      border-radius: 22px;
      border: 1px solid rgba(155, 61, 255, 0.5);
      background: radial-gradient(circle at top left, rgba(155, 61, 255, 0.24), rgba(5, 6, 10, 0.96));
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      justify-content: space-between;
    }

    .seo-cta-text {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 580px;
    }

    .seo-cta-text strong {
      color: #fff;
    }

    .seo-link-btn {
      padding: 9px 20px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgb(255 255 255 / 90%);
      font-size: 13px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition-fast);
    }

    .seo-link-btn span {
      font-size: 16px;
    }

    .seo-link-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* ===== CTA ОБЩИЙ ===== */
    .cta {
      text-align: center;
      /* padding-bottom: 80px; */
    }

    .cta-title {
      font-size: 26px;
      margin-bottom: 16px;
    }

    .cta-title span {
      color: var(--accent-2);
    }

    .cta-sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .cta-note {
      margin-top: 15px;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ===== FOOTER ===== */
    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 22px 0 30px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-links a {
      opacity: 0.8;
      transition: opacity var(--transition-fast);
    }

    .footer-links a:hover {
      opacity: 1;
    }

    .footer-contacts {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    /* ===== АДАПТИВ ===== */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-right {
        order: -1;
      }

      .pricing-grid,
      .benefits-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 720px) {
      .nav {
        flex-wrap: wrap;
        gap: 12px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 32px;
      }

      section {
        padding: 30px 0 48px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }