  :root{
    --bg:#0a0713;
    --bg-1:#0d0a19;
    --bg-2:#110c20;
    --surface:#140f24;
    --surface-2:#181128;
    --border:#2a2045;
    --border-soft:#231a3a;
    --purple:#9b3bf0;
    --purple-2:#b565f7;
    --magenta:#e83fd4;
    --cyan:#37e6d0;
    --text:#f4f1fb;
    --text-mute:#a79dc4;
    --text-dim:#6f6690;
    --grad: linear-gradient(120deg, var(--purple) 0%, var(--magenta) 100%);
    --grad-soft: linear-gradient(120deg, rgba(155,59,240,.18) 0%, rgba(232,63,212,.18) 100%);
    --radius: 16px;
    --maxw: 1240px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:
      radial-gradient(ellipse 900px 500px at 12% -5%, rgba(155,59,240,.16), transparent 60%),
      radial-gradient(ellipse 700px 500px at 100% 10%, rgba(232,63,212,.10), transparent 55%),
      var(--bg);
    color:var(--text);
    font-family:'Manrope', system-ui, sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.logo,.brand-font{ font-family:'Orbitron', 'Manrope', sans-serif; letter-spacing:.02em; }
  a{color:inherit;text-decoration:none;}
  button{font-family:inherit;cursor:pointer;}
  ul{list-style:none;}
  img,svg{display:block;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 40px;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-size:12.5px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
    color:var(--purple-2); margin-bottom:18px;
  }
  .eyebrow::before,.eyebrow::after{content:"";width:5px;height:5px;border-radius:50%;background:var(--magenta);box-shadow:0 0 8px var(--magenta);}
  section{position:relative; padding:96px 0;}
  .visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);}

  :focus-visible{ outline:2px solid var(--magenta); outline-offset:3px; border-radius:6px; }

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(9,6,17,.72);
    backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid var(--border-soft);
  }
  .nav{ display:flex; align-items:center; justify-content:space-between; padding:20px 40px; max-width:var(--maxw); margin:0 auto; }
  .logo{ font-size:22px; font-weight:800; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; letter-spacing:.03em; }
  .nav-links{ display:flex; gap:38px; }
  .nav-links a{ font-size:14.5px; font-weight:600; color:var(--text-mute); transition:color .2s; position:relative;}
  .nav-links a:hover{ color:var(--text); }
  .nav-right{ display:flex; align-items:center; gap:18px; }
  .lang{ display:flex; align-items:center; gap:6px; font-size:14px; color:var(--text-mute); font-weight:600; cursor:pointer; }
  .lang svg{width:16px;height:16px;}

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 24px; border-radius:10px; font-weight:700; font-size:14.5px;
    border:1px solid transparent; white-space:nowrap; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  }
  .btn-primary{ background:var(--grad); color:#fff; box-shadow:0 0 0 rgba(232,63,212,0); }
  .btn-primary:hover{ box-shadow:0 8px 30px -6px rgba(190,60,235,.65); transform:translateY(-1px); }
  .btn-ghost{ background:rgba(255,255,255,.02); border-color:var(--border); color:var(--text); }
  .btn-ghost:hover{ border-color:var(--purple-2); background:rgba(155,59,240,.08); }
  .btn-outline{ background:transparent; border:1px solid var(--border); color:var(--text); width:100%; }
  .btn-outline:hover{ border-color:var(--purple-2); background:rgba(155,59,240,.08); }
  .btn-block{ width:100%; }
  .btn-sm{ padding:10px 18px; font-size:13.5px; }

  /* ---------- HERO ---------- */
  .hero{ padding:88px 0 70px; }
  .hero-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:56px; align-items:center; }
  .hero h1{ font-size:56px; line-height:1.06; font-weight:800; margin-bottom:22px; }
  .hero h1 .accent{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .hero p{ color:var(--text-mute); font-size:16.5px; line-height:1.65; max-width:460px; margin-bottom:30px; }
  .hero-ctas{ display:flex; gap:14px; margin-bottom:26px; }
  .hero-guarantee{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--text-dim); font-weight:600; }
  .hero-guarantee svg{ width:15px; height:15px; color:var(--purple-2); flex-shrink:0; }

  .hero-visual{ position:relative; border-radius:24px; overflow:hidden; aspect-ratio:1.05/1; border:1px solid var(--border-soft);
    background:
      radial-gradient(circle at 78% 18%, rgba(232,63,212,.35), transparent 45%),
      radial-gradient(circle at 20% 85%, rgba(155,59,240,.35), transparent 50%),
      linear-gradient(180deg,#0c0818 0%, #120a22 55%, #180b26 100%);
  }
  .skyline{ position:absolute; inset:0; opacity:.9; }
  .figure-wrap{ position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:center; }

  .status-card{
    position:absolute; top:8%; left:50%; transform:translateX(-50%);
    width:230px; padding:22px 20px 24px; border-radius:16px; text-align:center;
    background:rgba(14,9,26,.78); backdrop-filter:blur(10px);
    border:1px solid rgba(155,59,240,.4);
    box-shadow:0 0 40px -8px rgba(155,59,240,.5), inset 0 0 30px rgba(155,59,240,.06);
  }
  .status-label{ font-size:11px; letter-spacing:.2em; font-weight:700; color:var(--cyan); margin-bottom:14px; }
  .status-ring{ width:64px; height:64px; margin:0 auto 14px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    border:2px solid rgba(55,230,208,.5); box-shadow:0 0 22px rgba(55,230,208,.35), inset 0 0 14px rgba(55,230,208,.15);
    position:relative;
  }
  .status-ring::before{ content:""; position:absolute; inset:-2px; border-radius:50%; border:2px solid transparent; border-top-color:var(--cyan); animation:spin 3s linear infinite; }
  @keyframes spin{ to{ transform:rotate(360deg);} }
  .status-ring svg{ width:24px; height:24px; color:var(--cyan); }
  .status-timer{ font-family:'Orbitron',monospace; font-size:20px; font-weight:700; letter-spacing:.05em; margin-bottom:6px; }
  .status-sub{ font-size:11px; color:var(--text-dim); font-weight:600; letter-spacing:.02em; }

  .speed-card{
    position:absolute; right:6%; bottom:8%;
    display:flex; align-items:center; gap:14px;
    padding:12px 18px; border-radius:12px;
    background:rgba(12,8,22,.72); backdrop-filter:blur(8px);
    border:1px solid var(--border-soft);
  }
  .speed-label{ font-size:10.5px; letter-spacing:.18em; color:var(--text-dim); font-weight:700; }
  .speed-value{ font-family:'Orbitron',monospace; font-size:20px; font-weight:700; color:var(--cyan); }
  .speed-graph{ width:74px; height:22px; }

  /* ---------- FEATURES ---------- */
  .features{ padding:56px 0 92px; }
  .feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
  .feature-card{ display:flex; gap:16px; align-items:flex-start; }
  .feature-icon{
    width:52px; height:52px; flex-shrink:0; border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    background:var(--grad-soft); border:1px solid rgba(155,59,240,.3);
  }
  .feature-icon svg{ width:24px; height:24px; color:var(--purple-2); }
  .feature-card h3{ font-size:16px; font-weight:700; margin-bottom:6px; font-family:'Manrope',sans-serif; }
  .feature-card p{ font-size:13.5px; color:var(--text-mute); line-height:1.5; }

  /* ---------- PRICING ---------- */
  .pricing{ background:linear-gradient(180deg, transparent, rgba(155,59,240,.045) 40%, transparent); }
  .section-head{ text-align:center; margin-bottom:48px; }
  .section-head.left{ text-align:left; }
  .price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; align-items:start; }
  .price-card{
    background:var(--surface); border:1px solid var(--border); border-radius:20px; padding:34px 30px;
    display:flex; flex-direction:column; transition:transform .2s ease, border-color .2s ease;
  }
  .price-card:hover{ transform:translateY(-4px); border-color:var(--border-soft); }
  .price-card.featured{
    position:relative; border-color:var(--purple);
    background:linear-gradient(180deg, rgba(155,59,240,.13), rgba(20,15,36,1) 55%);
    box-shadow:0 0 50px -12px rgba(155,59,240,.55);
    transform:scale(1.035);
  }
  .price-card.featured:hover{ transform:scale(1.035) translateY(-4px); }
  .badge-pop{
    position:absolute; top:-14px; left:50%; transform:translateX(-50%);
    background:var(--grad); color:#fff; font-size:11.5px; font-weight:800; letter-spacing:.06em;
    padding:6px 16px; border-radius:999px; white-space:nowrap;
    box-shadow:0 6px 18px -4px rgba(232,63,212,.6);
  }
  .plan-name{ font-size:13px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mute); margin-bottom:14px; }
  .price-row{ display:flex; align-items:baseline; gap:8px; margin-bottom:6px; flex-wrap:wrap; }
  .price-amount{ font-family:'Orbitron',sans-serif; font-size:38px; font-weight:800; }
  .price-per{ font-size:14px; color:var(--text-dim); font-weight:600; }
  .price-old{ font-size:14px; color:var(--text-dim); text-decoration:line-through; }
  .price-discount{ background:rgba(232,63,212,.14); color:var(--magenta); font-size:12px; font-weight:800; padding:4px 10px; border-radius:7px; border:1px solid rgba(232,63,212,.35); }
  .price-feats{ margin:26px 0 30px; display:flex; flex-direction:column; gap:13px; flex-grow:1; }
  .price-feats li{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-mute); }
  .price-feats svg{ width:17px; height:17px; color:var(--cyan); flex-shrink:0; }
  .pricing-note{ text-align:center; margin-top:30px; font-size:13.5px; color:var(--text-dim); }

  /* ---------- SERVERS ---------- */
  .server-top{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:50px; flex-wrap:wrap; }
  .server-top h2{ font-size:34px; font-weight:800; max-width:520px; line-height:1.2; }
  .map-box{
    position:relative; border-radius:22px; border:1px solid var(--border-soft);
    background:radial-gradient(ellipse 700px 400px at 50% 40%, rgba(155,59,240,.10), transparent 65%), var(--surface);
    padding:30px; overflow:hidden; margin-bottom:34px;
  }
  .map-box svg{ width:100%; height:auto; display:block; }
  .map-tooltip{
    position:absolute; top:36%; right:8%;
    background:rgba(15,10,27,.92); border:1px solid var(--border); border-radius:12px;
    padding:12px 16px; font-size:12.5px; backdrop-filter:blur(6px);
    box-shadow:0 10px 30px -8px rgba(0,0,0,.5);
  }
  .map-tooltip .country{ display:flex; align-items:center; gap:7px; font-weight:700; margin-bottom:3px; }
  .map-tooltip .ping{ color:var(--text-dim); }
  .stats-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border-soft); border:1px solid var(--border-soft); border-radius:18px; overflow:hidden; }
  .stat-cell{ background:var(--surface); padding:26px 22px; display:flex; align-items:center; gap:14px; }
  .stat-cell svg{ width:26px; height:26px; color:var(--purple-2); flex-shrink:0; }
  .stat-num{ font-family:'Orbitron',sans-serif; font-size:22px; font-weight:800; }
  .stat-label{ font-size:12.5px; color:var(--text-dim); font-weight:600; }

  /* ---------- REVIEWS ---------- */
  .review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:34px; }
  .review-card{ background:var(--surface); border:1px solid var(--border); border-radius:18px; padding:26px; }
  .review-head{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
  .avatar{ width:42px; height:42px; border-radius:50%; background:var(--grad); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px; color:#fff; }
  .review-name{ font-weight:700; font-size:14.5px; margin-bottom:3px; }
  .stars{ display:flex; gap:2px; }
  .stars svg{ width:13px; height:13px; color:#f7c948; }
  .review-card p{ font-size:14px; color:var(--text-mute); line-height:1.6; }
  .review-controls{ display:flex; align-items:center; justify-content:center; gap:20px; }
  .arrow-btn{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid var(--border); background:var(--surface); transition:border-color .2s, background .2s; }
  .arrow-btn:hover{ border-color:var(--purple-2); background:rgba(155,59,240,.1); }
  .arrow-btn svg{ width:16px; height:16px; }
  .dots{ display:flex; gap:8px; }
  .dot{ width:7px; height:7px; border-radius:50%; background:var(--border); transition:background .2s, transform .2s; }
  .dot.active{ background:var(--magenta); transform:scale(1.3); }

  /* ---------- FAQ ---------- */
  .faq-layout{ display:grid; grid-template-columns:1.5fr 1fr; gap:26px; align-items:start; }
  .faq-cols{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .faq-item{ background:var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
  .faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:14px; padding:18px 20px; background:none; border:none; color:var(--text); font-size:14.5px; font-weight:600; text-align:left; }
  .faq-q .plus{ width:22px; height:22px; flex-shrink:0; border-radius:6px; background:rgba(155,59,240,.14); display:flex; align-items:center; justify-content:center; position:relative; transition:transform .25s ease, background .25s ease; }
  .faq-q .plus svg{ width:11px; height:11px; color:var(--purple-2); }
  .faq-item.open .faq-q .plus{ transform:rotate(45deg); background:var(--grad); }
  .faq-item.open .faq-q .plus svg{ color:#fff; }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
  .faq-a p{ padding:0 20px 18px; font-size:13.5px; color:var(--text-mute); line-height:1.6; }

  .support-card{
    border-radius:18px; padding:30px 26px; height:100%;
    background:var(--grad-soft); border:1px solid rgba(155,59,240,.4);
    display:flex; flex-direction:column; justify-content:center;
    position:relative; overflow:hidden;
  }
  .support-card::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(155,59,240,.25), transparent 60%); }
  .support-card > *{ position:relative; }
  .support-card h3{ font-size:16px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px; }
  .support-card p{ font-size:14px; color:var(--text-mute); line-height:1.6; margin-bottom:22px; }

  /* ---------- FOOTER CTA ---------- */
  .cta-bar{ padding:60px 0 70px; }
  .cta-box{
    display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
    padding:38px 44px; border-radius:22px;
    border:1px solid var(--border-soft);
    background:linear-gradient(120deg, rgba(155,59,240,.14), rgba(232,63,212,.10));
    position:relative; overflow:hidden;
  }
  .cta-box::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 85% 20%, rgba(232,63,212,.25), transparent 55%); }
  .cta-left{ display:flex; align-items:center; gap:24px; position:relative; flex-wrap:wrap; }
  .cta-logo{ font-size:20px; font-weight:800; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .cta-divider{ width:1px; height:36px; background:var(--border); }
  .cta-left h3{ font-size:19px; font-weight:800; margin-bottom:4px; }
  .cta-left p{ font-size:13.5px; color:var(--text-mute); }
  .cta-box .btn{ position:relative; }

  footer.site-footer{ padding:26px 0 44px; text-align:center; color:var(--text-dim); font-size:12.5px; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .wrap{ padding:0 24px; }
    .nav{ padding:16px 24px; }
    .nav-links{ display:none; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero h1{ font-size:42px; }
    .hero-visual{ aspect-ratio:4/3; max-width:520px; margin:0 auto; }
    .feature-grid{ grid-template-columns:repeat(2,1fr); }
    .price-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
    .price-card.featured{ transform:none; order:-1; }
    .price-card.featured:hover{ transform:translateY(-4px); }
    .stats-row{ grid-template-columns:repeat(2,1fr); }
    .review-grid{ grid-template-columns:1fr; }
    .faq-layout{ grid-template-columns:1fr; }
    .faq-cols{ grid-template-columns:1fr; }
    .cta-box{ flex-direction:column; align-items:flex-start; }
  }
  @media (max-width: 560px){
    .hero h1{ font-size:34px; }
    .hero-ctas{ flex-direction:column; }
    .feature-grid{ grid-template-columns:1fr; }
    .server-top{ flex-direction:column; align-items:flex-start; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }

  /* Дополнительные стили для формы оплаты */
#payment-form input[type="email"]:focus {
    border-color: #4cc9f0 !important;
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.2);
}

#payment-form input[type="radio"]:checked {
    box-shadow: 0 0 8px rgba(76, 201, 240, 0.4);
}

.error-message {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для кнопки оплаты */
#submit-btn {
    transition: all 0.3s ease;
}

#submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 201, 240, 0.3);
}

#submit-btn:active {
    transform: translateY(0);
}

/* Payment Page Styles */
.payment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.next-step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.next-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.next-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.next-step-card p {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-card {
        padding: 20px;
    }
}

/* Next Steps Section */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.next-step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.next-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: 0 8px 30px -6px rgba(190, 60, 235, 0.3);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--purple-2);
    margin-bottom: 16px;
    display: inline-block;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-soft);
    border: 1px solid rgba(155, 59, 240, 0.3);
    margin-bottom: 20px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--purple-2);
}

.next-step-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.next-step-card p {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .next-step-card {
        padding: 24px 20px;
    }
}

/* Reviews Carousel */
.review-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.review-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    height: 100%;
}

/* Адаптивность */
@media (max-width: 980px) {
    .review-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 560px) {
    .review-slide {
        flex: 0 0 100%;
    }
}