:root {
      --bg-1: #0a0b14;
      --bg-2: #10122a;
      --primary: #9b5cfb;
      --primary-2: #3eb7f7;
      --text: #e7e7f2;
      --muted: #a0a3b8;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: "Inter", sans-serif;
      background:
        radial-gradient(circle at 20% 30%, rgba(155,92,251,0.30), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(62,183,247,0.20), transparent 60%),
        linear-gradient(180deg, var(--bg-2), var(--bg-1));
      background-attachment: fixed;
      overflow-x: hidden;
      padding-top: 80px;
      line-height: 1.55;
    }

    /* Навигация */
    .nav {
      position: fixed; top: 0; left: 0; width: 100%;
      background: rgba(10,11,15,0.85);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-inner {
      max-width: 1160px; margin: 0 auto; padding: 16px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .brand {
      display: inline-flex; align-items: center; font-weight: 800; font-size: 18px;
      background: linear-gradient(90deg, #9b5cfb 0%, #3eb7f7 100%);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      text-decoration: none;
      animation: glow 2.6s ease-in-out infinite, flicker 6.8s linear infinite;
    }
    @keyframes glow {
      0%   { text-shadow: 0 0 6px rgba(155,92,251,0.60), 0 0 16px rgba(62,183,247,0.35), 0 0 28px rgba(62,183,247,0.25); }
      50%  { text-shadow: 0 0 10px rgba(155,92,251,0.90), 0 0 26px rgba(62,183,247,0.55), 0 0 48px rgba(62,183,247,0.45); }
      100% { text-shadow: 0 0 6px rgba(155,92,251,0.60), 0 0 16px rgba(62,183,247,0.35), 0 0 28px rgba(62,183,247,0.25); }
    }
    @keyframes flicker {
      0%,100%{opacity:1} 3%{opacity:.85} 8%{opacity:1} 10%{opacity:.6} 11%{opacity:1}
      13%{opacity:.75} 20%{opacity:1} 22%{opacity:.55} 23%{opacity:1}
      37%{opacity:.9} 38%{opacity:.4} 39%{opacity:.1} 55%{opacity:.95}
      56%{opacity:.7} 57%{opacity:.9} 72%{opacity:.9} 73%{opacity:.5} 74%{opacity:1}
    }

    nav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
    nav a {
      position: relative; font-weight: 600; font-size: 15px; color: #c8cbe3; text-decoration: none; transition: color 0.3s ease;
    }
    nav a::after {
      content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
      background: linear-gradient(90deg,#9b5cfb,#3eb7f7); transform: scaleX(0);
      transform-origin: center; transition: transform 0.25s ease; border-radius: 2px;
    }
    nav a:hover { color: #fff; }
    nav a:hover::after { transform: scaleX(1); }

    /* Кнопка бургера */
    .menu-toggle{
      display: none; width: 40px; height: 40px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.05);
      align-items: center; justify-content: center; cursor: pointer;
    }
    .menu-toggle span, .menu-toggle::before, .menu-toggle::after{
      content: ""; display: block; width: 20px; height: 2px; background: #e7e7f2; border-radius: 2px;
    }
    .menu-toggle::before{ transform: translateY(-6px); }
    .menu-toggle::after{ transform: translateY(6px); }

    /* Общие блоки */
    .container{ max-width:1160px; margin:0 auto; padding:64px 24px; text-align:center; }
    .title{
      font-size:clamp(28px,5vw,56px); font-weight:800; line-height:1.16;
      background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%);
      -webkit-background-clip:text; color:transparent;
      text-shadow:0 0 6px rgba(155,92,251,0.70),0 0 16px rgba(62,183,247,0.40);
    }
    .subtitle{ color:var(--muted); font-size:18px; line-height:1.6; margin-top:20px; }
    .badge{ display:inline-block; margin:22px auto 0; font-weight:600; font-size:15px; color:#3eb7f7; }
    .cta-row{ display:flex; gap:16px; justify-content:center; margin-top:28px; flex-wrap:wrap; }
    .btn{ display:inline-flex; align-items:center; justify-content:center; padding:14px 28px; border-radius:10px; font-weight:700; cursor:pointer; transition:all .25s ease; text-decoration:none; font-size:15px; }
    .btn-primary{ background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%); color:#fff; box-shadow:0 4px 20px rgba(62,183,247,0.25); border:none; }
    .btn-primary:hover{ transform:translateY(-1px); box-shadow:0 6px 28px rgba(62,183,247,0.35); }
    .btn-ghost{ background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); color:#fff; }
    .btn-ghost:hover{ background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); }

    /* Hero */
    .hero { position: relative; overflow: hidden; }
    .hero::after {
      content:""; position:absolute; inset:-20%; background:
        radial-gradient(60% 60% at 20% 20%, rgba(155,92,251,0.15), transparent 60%),
        radial-gradient(60% 60% at 80% 60%, rgba(62,183,247,0.12), transparent 60%);
      filter: blur(40px); pointer-events:none;
    }

    /* Почему мы */
    .features { margin-top:120px; text-align:center; }
    .features h2 { font-size:36px; font-weight:800; background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%); -webkit-background-clip:text; color:transparent; margin-bottom:60px; }
    .feature-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:24px; max-width:1100px; margin:0 auto; }
    .feature-card {
      background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
      border-radius:20px; padding:32px 24px; text-align:center; transition:all .3s ease;
    }
    .feature-card:hover { transform:translateY(-6px); box-shadow:0 0 25px rgba(155,92,251,0.25),0 0 40px rgba(62,183,247,0.20); border-color: rgba(155,92,251,0.30); }
    .feature-icon { width:48px; height:48px; margin-bottom:18px; display:block; }
    .feature-card h3 { font-size:18px; margin:0 0 8px 0; font-weight:700; color:#fff; }
    .feature-card p { margin:0; color:var(--muted); font-size:15px; line-height:1.5; }

    /* Как это работает */
    .how-it-works { margin-top:100px; text-align:center; }
    .how-it-works h2 { font-size:36px; font-weight:800; background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%); -webkit-background-clip:text; color:transparent; margin-bottom:70px; }
    .steps { display:flex; justify-content:center; flex-wrap:wrap; gap:100px; }
    .step { text-align:center; max-width:240px; transition:transform 0.3s ease; }
    .step:hover { transform:translateY(-11px); }
    .circle {
      width:70px; height:70px; border-radius:50%;
      background:linear-gradient(135deg,#9b5cfb,#3eb7f7); color:#fff;
      font-size:26px; font-weight:700; display:flex; align-items:center; justify-content:center;
      margin:0 auto 20px; box-shadow:0 0 25px rgba(155,92,251,0.45),0 0 45px rgba(62,183,247,0.35);
      transition:all .3s ease;
    }
    .step:hover .circle { transform:scale(1.08); box-shadow:0 0 35px rgba(155,92,251,0.60),0 0 60px rgba(62,183,247,0.45); }
    .step h3 { font-size:18px; font-weight:700; color:#fff; margin:0 0 8px 0; }
    .step p { color:#b4b7ca; font-size:15px; margin:0; }

    /* Локации */
    .locations { margin-top:120px; text-align:center; }
    .locations h2 { font-size:36px; font-weight:800; background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%); -webkit-background-clip:text; color:transparent; margin-bottom:12px; }
    .locations .subtitle { color: var(--muted); font-size:16px; margin-bottom:40px; }
    .location-grid { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; }
    .location-card {
      background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
      border-radius:20px; padding:24px 32px; text-align:center; width:180px; transition:all 0.3s ease;
    }
    .location-card:hover { transform:translateY(-6px); box-shadow:0 0 25px rgba(155,92,251,0.25),0 0 40px rgba(62,183,247,0.20); }
    .location-card .flag {
      width:96px; height:96px; border-radius:50%; margin-bottom:18px;
      box-shadow:0 0 18px rgba(155,92,251,0.25), 0 0 30px rgba(62,183,247,0.20);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .location-card:hover .flag { transform: scale(1.08); box-shadow:0 0 25px rgba(155,92,251,0.40), 0 0 40px rgba(62,183,247,0.30); }
    .location-card h3 { color:#fff; font-size:16px; margin:0; font-weight:600; }

    /* Тарифы */
    .pricing { margin-top:100px; text-align:center; }
    .pricing h2 { font-size:36px; font-weight:800; background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%); -webkit-background-clip:text; color:transparent; margin-bottom:60px; }
    .pricing-grid { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; }
    .pricing-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 32px 24px;
      width: 280px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 360px;
      transition: all .3s ease;
    }
    .pricing-card .period { font-size:16px; color:var(--muted); margin:0; }
    .pricing-card .price { font-size:28px; font-weight:700; margin: 8px 0; color:#9b5cfb; }
    .pricing-card .desc {
      flex-grow: 1; display:flex; align-items:flex-end; justify-content:center;
      text-align:center; min-height:40px; color:var(--muted);
    }
    .pricing-card .btn { margin-top: 16px; }
    .pricing-card:hover { transform: translateY(-4px); box-shadow:0 0 25px rgba(155,92,251,0.25),0 0 40px rgba(62,183,247,0.20); }

    .pricing-card.highlight { border: 1px solid #9b5cfb; position: relative; padding-top: 50px; }
    .pricing-card.highlight .label {
      position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
      display:inline-block; font-size:12px; background:linear-gradient(90deg,#9b5cfb,#3eb7f7);
      color:#fff; padding:2px 8px; border-radius:10px; margin-bottom:0;
    }
    .pricing-card.highlight .btn { transform: translateY(-6px); }

    /* Поддержка и футер */
    .support { margin-top:100px; text-align:center; }
    .support h2 { font-size:36px; font-weight:800; background:linear-gradient(90deg,#9b5cfb 0%,#3eb7f7 100%); -webkit-background-clip:text; color:transparent; margin-bottom:20px; }
    .support .subtitle { color: var(--muted); font-size:16px; margin-bottom:40px; }

    footer { margin-top:100px; padding:30px 24px; color:#9aa0bd; text-align:center; font-size:14px; }

    /* Анимация появления при скролле */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Мобильная адаптация */
    @media(max-width: 992px){
      .menu-toggle{display:flex;}
      .nav-inner{gap:12px;}
      nav ul{
        position:absolute; top:64px; right:24px; width:220px;
        flex-direction:column; gap:12px; margin:0; padding:12px;
        background:rgba(10,11,15,0.95); border:1px solid rgba(255,255,255,0.08); border-radius:12px;
        display:none;
      }
      nav ul.show{display:flex;}
    }
    @media(max-width:768px){
      .steps{gap:40px;}
      .pricing-grid, .location-grid{flex-direction:column; align-items:center;}
    }