:root {
  --bg: #050b14;
  --bg-2: #08111f;
  --card: rgba(13, 27, 45, .74);
  --line: rgba(255,255,255,.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,.99);
  --muted-2: rgba(255,255,255,.99);
  --accent: rgb(109, 93, 252);
  --accent-2: #1da9ff;
  --radius: 24px;
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 10%, rgba(109,93,252,.24), transparent 25%),
    radial-gradient(circle at 22% 55%, rgba(29,169,255,.14), transparent 32%),
    linear-gradient(180deg, #06101c 0%, #03070d 58%, #02050a 100%);
}
.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.72) 1px, transparent 1px),
    radial-gradient(circle, rgba(29,169,255,.65) 1px, transparent 1px);
  background-size: 76px 76px, 132px 132px;
  background-position: 0 0, 24px 18px;
  opacity: .18;
}

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-space { padding: 82px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 8, 16, .76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 74px; height: 74px; object-fit: contain; }
.brand-name { font-family: var(--font-title); font-size: 35px; font-weight: 900; letter-spacing: -.04em; }
.brand-name span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 14px; }
.main-nav a { color: rgba(255,255,255,.99); transition: .2s; }
.main-nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.telegram-link {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #229ED9;
  color: #fff;
  box-shadow: 0 12px 28px rgba(34,158,217,.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.telegram-link:hover {
  transform: translateY(-2px) scale(1.05);
  background: #2aaeea;
  box-shadow: 0 16px 34px rgba(34,158,217,.42);
}
.telegram-link svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
  margin-left: -2px;
  margin-top: 1px;
}

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.06); }
.burger span { display: block; width: 18px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(180deg, #ff934f, #ff672b); color: #fff; box-shadow: 0 14px 30px rgba(255, 106, 43, .28); }
.btn-ghost { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn-outline { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: var(--accent); background: rgba(109,93,252,.08); }
.btn-large { min-height: 58px; padding: 0 34px; font-size: 16px; }
.full { width: 100%; }

.hero { position: relative; padding-top: 72px; }
.hero::after {
  content: '';
  position: absolute;
  left: -8%; right: -8%; bottom: -50px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(29,169,255,.36), transparent 56%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 60px; min-height: 560px; }
.eyebrow { color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
h1, h2, h3 { margin: 0; }
h1 { font-family: var(--font-title); font-size: clamp(44px, 6vw, 76px); line-height: 1.03; letter-spacing: -.05em; margin-bottom: 26px; }
h1 span, .section-head h2 span { color: var(--accent); display: block; }
.vps-mark { display: inline-block; color: #fff; padding: 0 .18em; margin-right: .08em; border-radius: 18px; background: linear-gradient(180deg, #ff934f, #ff672b); box-shadow: 0 18px 48px rgba(0,212,255,.28); }
.hero-text { color: var(--muted); font-size: 20px; line-height: 1.52; max-width: 580px; margin: 0 0 28px; }
.hero-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 32px 0; }
.hero-features div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hero-features img { width: 42px; height: 42px; flex: 0 0 42px; display: block; filter: drop-shadow(0 0 18px rgba(109,93,252,.18)); }
.hero-features span { color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.25; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: nowrap; }
.testdrive-note { max-width: 520px; margin: 14px 0 0; color: var(--muted-2); font-size: 12.5px; line-height: 1.45; }

.hero-visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.hero-trust-card {
  position: absolute;
  right: 20px;
  bottom: 10px;
  z-index: 6;
  width: min(430px, 92%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 7px 9px;
  border: 1px solid rgba(109,93,252,.36);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13,27,45,.88), rgba(7,16,29,.82));
  box-shadow: 0 18px 46px rgba(0,0,0,.34), 0 0 36px rgba(109,93,252,.12);
  backdrop-filter: blur(14px);
}
.hero-trust-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  filter: drop-shadow(0 0 18px rgba(109,93,252,.22));
}
.hero-trust-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 21px;
  line-height: 1.2;
}
.hero-trust-card span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.rocket-img { position: relative; width: min(380px, 80vw); z-index: 4; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); animation: float 7s ease-in-out infinite; }
.planet-main {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.45) 0 4%, transparent 5%),
    radial-gradient(circle at 63% 48%, rgba(105, 39, 10, .4) 0 8%, transparent 9%),
    radial-gradient(circle at 40% 68%, rgba(255,240,210,.36) 0 9%, transparent 10%),
    linear-gradient(135deg, #00D4FF, #5B4BF0 45%, #8c3516);
  right: 6%;
  top: 15px;
  box-shadow: 0 0 110px rgba(109,93,252,.42);
  opacity: .96;
}
.planet-small {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  right: 3%;
  top: 245px;
  background: radial-gradient(circle at 28% 22%, #ffd69a, #6D5DFC 52%, #5e2a18 100%);
  box-shadow: inset -14px -12px 0 rgba(0,0,0,.16), 0 0 44px rgba(109,93,252,.35);
}
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); transform: rotate(-22deg); }
.orbit-one { width: 510px; height: 230px; }
.orbit-two { width: 610px; height: 290px; border-color: rgba(29,169,255,.12); }
.flame { position: absolute; bottom: 50px; width: 82px; height: 170px; background: linear-gradient(180deg, rgba(109,93,252,.92), rgba(0,212,255,.12), transparent); filter: blur(4px); clip-path: polygon(48% 0, 72% 38%, 54% 100%, 34% 36%); z-index: 1; animation: flame 1.6s ease-in-out infinite; }
.flame-left { left: 37%; }
.flame-right { right: 31%; animation-delay: .3s; }

.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; }
.section-head h2, .about-box h2, .cta-box h2 { font-family: var(--font-title); font-size: clamp(32px, 4.3vw, 48px); line-height: 1.12; letter-spacing: -.03em; margin-bottom: 14px; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.plans-grid-three { grid-template-columns: repeat(3, 1fr); align-items: stretch; max-width: 1060px; margin: 0 auto; }
.plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  min-height: 348px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(15, 32, 53, .9), rgba(7, 16, 28, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 22px 60px rgba(0,0,0,.24);
}
.plan-card::after { content: '⌁'; position: absolute; right: 22px; bottom: 22px; font-size: 110px; color: rgba(255,255,255,.035); transform: rotate(-25deg); }
.plan-card:hover { border-color: rgba(109,93,252,.5); transform: translateY(-6px); transition: .25s; }
.plan-card.popular { border-color: rgba(109,93,252,.88); box-shadow: 0 18px 55px rgba(0,0,0,.28), inset 0 0 0 1px rgba(109,93,252,.18); }
.plan-card.optimal { border-color: rgba(255,255,255,.22); box-shadow: 0 0 34px rgba(29,169,255,.08), inset 0 0 0 1px rgba(255,255,255,.04); }
.plan-card.bestseller {
  transform: translateY(-10px) scale(1.025);
  border-color: rgba(109,93,252,.95);
  background:
    radial-gradient(circle at 50% 0%, rgba(109,93,252,.16), transparent 44%),
    linear-gradient(180deg, rgba(21, 38, 61, .96), rgba(8, 17, 30, .96));
  box-shadow:
    0 0 0 1px rgba(109,93,252,.28),
    0 18px 48px rgba(0,0,0,.34),
    0 0 36px rgba(109,93,252,.16);
}
.plan-card.bestseller::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,93,252,.95), transparent);
  pointer-events: none;
}
.plan-card.bestseller:hover { transform: translateY(-16px) scale(1.025); }
.badge-soft { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.18); }
.plan-lead { color: rgba(255,255,255,.86); line-height: 1.45; margin: 0 0 14px; font-weight: 800; }
.plan-lead.muted-line { color: var(--muted); font-weight: 500; min-height: 42px; }
.plan-caption { color: var(--muted-2); font-size: 13px; line-height: 1.45; margin: -8px 0 18px; }
.plan-under-price { color: rgba(109,93,252,.92); font-size: 15px; line-height: 1.4; font-weight: 800; margin: -10px 0 18px; }
.plan-after { color: rgba(255,255,255,.43); font-size: 13px; line-height: 1.45; margin: 12px 0 0; }
.price-sale { display: flex; align-items: flex-end; gap: 10px; flex-wrap: nowrap; }
.price del { color: rgba(255,255,255,.38); font-size: 17px; font-weight: 700; text-decoration-thickness: 2px; text-decoration-color: rgba(109,93,252,.9); margin-bottom: 5px; }

.badge { position: absolute; top: 0; right: 22px; background: var(--accent); color: #251008; border-radius: 0 0 12px 12px; padding: 7px 15px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.badge-center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 10px 22px;
  border-radius: 0 0 18px 18px;
  letter-spacing: .05em;
  box-shadow: 0 10px 26px rgba(109,93,252,.32);
}
.bestseller h3 { margin-top: 22px; text-align: center; }
.bestseller .price, .bestseller .plan-under-price { justify-content: center; text-align: center; }
.bestseller .plan-lead { text-align: center; }
.plan-card h3 { font-size: 28px; margin-bottom: 8px; }
.price { margin-bottom: 20px; color: rgba(255,255,255,.9); }
.price span { color: var(--accent); font-size: 42px; line-height: 1; font-family: var(--font-title); font-weight: 900; }
ul { list-style: none; padding: 0; margin: 0 0 24px; }
.plan-card ul { flex: 1; }
.plan-card li { position: relative; color: rgba(255,255,255,.99); padding-left: 28px; margin: 13px 0; }
.plan-card li::before { content: ''; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px; border-radius: 3px; background: var(--accent); box-shadow: 0 0 12px rgba(109,93,252,.45); }
.plans-note { text-align: center; color: var(--muted-2); margin: 22px 0 0; }
.plans-note a { color: var(--accent); font-weight: 800; }

.benefits-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.benefit-card { border: 1px solid rgba(255,255,255,.1); background: var(--card); border-radius: 18px; padding: 26px 18px; text-align: center; min-height: 184px; }
.benefit-card img { width: 54px; height: 54px; margin: 0 auto 18px; display: block; filter: drop-shadow(0 0 22px rgba(109,93,252,.14)); }
.benefit-card h3 { font-size: 18px; margin-bottom: 10px; }
.benefit-card p { color: var(--muted); font-size: 14px; line-height: 1.45; margin: 0; }

.location-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.location-card { border: 1px solid rgba(255,255,255,.1); background: rgba(13,27,45,.78); border-radius: 14px; padding: 18px 12px; display: grid; place-items: center; text-align: center; gap: 5px; }
.flag { width: 44px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 12px; font-weight: 900; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 10px 24px rgba(0,0,0,.2); }
.flag-ru { background: linear-gradient(#fff 0 33%, #2557d6 33% 66%, #e23b35 66%); color: #10213a; }
.flag-de { background: linear-gradient(#111 0 33%, #d62828 33% 66%, #ffc400 66%); }
.flag-fi { background: linear-gradient(90deg, transparent 0 30%, #1d5faa 30% 45%, transparent 45%), linear-gradient(transparent 0 38%, #1d5faa 38% 62%, transparent 62%), #fff; color: #123; }
.flag-nl { background: linear-gradient(#d62828 0 33%, #fff 33% 66%, #1d5faa 66%); color: #14223a; }
.flag-us { background: linear-gradient(#b22234 0 14%,#fff 14% 28%,#b22234 28% 42%,#fff 42% 56%,#b22234 56% 70%,#fff 70% 84%,#b22234 84%); }
.flag-sg { background: linear-gradient(#ef3340 0 50%, #fff 50%); color: #14223a; }
.flag-kz { background: #00a3dd; }
.flag-tr { background: #e30a17; }
.location-card b { font-size: 15px; }
.location-card small { color: var(--muted-2); font-size: 13px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { position: relative; overflow: hidden; min-height: 210px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(180deg, rgba(15,32,53,.82), rgba(7,16,28,.86)); border-radius: 22px; padding: 26px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.review-card::before { content: '“'; position: absolute; right: 22px; top: 8px; font-family: var(--font-title); font-size: 84px; line-height: 1; color: rgba(109,93,252,.16); }
.review-top { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.review-top b { font-size: 20px; }
.review-top span { color: var(--accent); font-size: 14px; font-weight: 800; }
.review-card p { color: var(--muted); line-height: 1.55; margin: 0; }

.about-box { display: grid; grid-template-columns: .75fr 1fr; gap: 40px; align-items: center; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(135deg, rgba(109,93,252,.1), rgba(29,169,255,.08)); border-radius: 28px; padding: 42px; }
.about-box p { color: var(--muted); font-size: 18px; line-height: 1.58; margin: 0; }

.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 46px; }
.faq-list { display: grid; gap: 14px; }
details { border: 1px solid rgba(255,255,255,.1); background: rgba(13,27,45,.75); border-radius: 18px; padding: 18px 22px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--muted); line-height: 1.55; margin: 14px 0 0; }

.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(109,93,252,.55); background: linear-gradient(115deg, rgba(109,93,252,.18), rgba(29,169,255,.12)); border-radius: 24px; padding: 34px 42px; box-shadow: 0 0 50px rgba(29,169,255,.08); }
.cta-box > div:first-child > p { margin: 8px 0 0; color: var(--muted); font-size: 18px; }
.cta-copy { max-width: 650px; }
.cta-note { max-width: 620px; margin: 8px 0 0; color: rgba(255,255,255,.34); font-size: 11.5px; line-height: 1.45; font-weight: 400; }
.cta-box > div:first-child > p.cta-note { color: rgba(255,255,255,.34); font-size: 11.5px; line-height: 1.45; font-weight: 400; }
.cta-action { max-width: 420px; display: grid; gap: 10px; justify-items: end; }

.footer { padding: 62px 0 38px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(2,6,12,.99); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .95fr .8fr 1.05fr 1.35fr; gap: 28px; align-items: start; }
.footer-brand { margin-bottom: 18px; }
.footer p { color: var(--muted); line-height: 1.5; }
.footer small { color: var(--muted-2); }
.footer h3 { font-size: 16px; margin-bottom: 16px; }
.footer-grid > div:not(:first-child) p,
.footer-grid > div:not(:first-child) a { font-size: 15px; }
.footer-grid > div:nth-child(5) p { font-size: 14px; line-height: 1.55; }
.footer a:hover { color: var(--accent); }

.footer-legal {
  margin-top: 34px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
}
.footer-legal p {
  margin: 0;
  color: rgba(174,183,194,.72);
  font-size: 13px;
  line-height: 1.65;
}
.footer-bottom {
  padding-top: 22px;
  text-align: center;
}
.footer-bottom small {
  color: rgba(174,183,194,.62);
}


@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-50px); } }
@keyframes flame { 0%,100% { transform: scaleY(.92); opacity: .65; } 50% { transform: scaleY(1.08); opacity: .95; } }

@media (max-width: 1040px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { position: fixed; inset: 82px 20px auto; display: none; flex-direction: column; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(5,11,20,.96); box-shadow: 0 20px 70px rgba(0,0,0,.35); }
  .main-nav.active { display: flex; }
  .burger { display: block; }
  .hide-mobile { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .testdrive-note { margin-left: auto; margin-right: auto; }
  .hero-trust-card { left: 50%; right: auto; transform: translateX(-50%); bottom: 0; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid-three { grid-template-columns: 1fr; max-width: 560px; }
  .plan-card.bestseller { transform: none; }
  .plan-card.bestseller:hover { transform: translateY(-6px); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-wrap, .about-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-space { padding: 58px 0; }
  .brand-logo { width: 54px; height: 54px; }
  .brand-name { font-size: 27px; }
  .header-inner { min-height: 72px; }
  .btn { padding-left: 18px; padding-right: 18px; }
  .header-actions .btn-primary { display: none; }
  .telegram-link { width: 44px; height: 44px; flex-basis: 44px; }
  .telegram-link svg { width: 21px; height: 21px; }
  .hero { padding-top: 42px; }
  .hero-grid { min-height: auto; gap: 25px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 380px; }
  .planet-main { width: 280px; height: 280px; right: 8%; }
  .planet-small { width: 68px; height: 68px; right: 2%; top: 160px; }
  .rocket-img { width: 280px; }
  .flame { bottom: 90px; height: 110px; }
  .hero-trust-card { position: relative; left: auto; right: auto; bottom: auto; transform: none; width: 100%; margin: 14px auto 0; padding: 15px 16px; text-align: left; }
  .hero-trust-icon { width: 48px; height: 48px; flex-basis: 48px; }
  .hero-trust-card strong { font-size: 17px; }
  .hero-trust-card span { font-size: 14px; }
  .plans-grid, .benefits-grid, .location-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-box { display: grid; padding: 28px; text-align: center; }
  .cta-copy { max-width: none; }
  .cta-action { justify-items: center; max-width: none; }
  .cta-note { max-width: none; text-align: center; }
  .about-box { padding: 28px; }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #121826;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: 0 16px 34px rgba(109,93,252,.28);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: 0 20px 42px rgba(109,93,252,.36);
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

/* Updated benefits block: 5 larger centered cards */
.benefits-grid.benefits-grid-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.benefits-grid-five .benefit-card {
  grid-column: span 2;
  min-height: 282px;
  padding: 38px 32px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(109,93,252,.08), transparent 42%),
    linear-gradient(180deg, rgba(15,32,53,.92), rgba(7,16,28,.94));
  border-color: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 20px 52px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.benefits-grid-five .benefit-card:nth-child(4) { grid-column: 2 / span 2; }
.benefits-grid-five .benefit-card:nth-child(5) { grid-column: 4 / span 2; }

.benefits-grid-five .benefit-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 26px rgba(109,93,252,.22));
}

.benefits-grid-five .benefit-card h3 {
  max-width: 330px;
  font-size: 24px;
  line-height: 1.16;
  margin-bottom: 14px;
}

.benefits-grid-five .benefit-card p {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.99);
}

@media (max-width: 1040px) {
  .benefits-grid.benefits-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .benefits-grid-five .benefit-card,
  .benefits-grid-five .benefit-card:nth-child(4),
  .benefits-grid-five .benefit-card:nth-child(5) {
    grid-column: auto;
  }

  .benefits-grid-five .benefit-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 368px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .benefits-grid.benefits-grid-five {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .benefits-grid-five .benefit-card,
  .benefits-grid-five .benefit-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    min-height: auto;
    padding: 32px 24px;
  }

  .benefits-grid-five .benefit-card img {
    width: 82px;
    height: 82px;
  }

  .benefits-grid-five .benefit-card h3 {
    font-size: 22px;
  }
}


.telegram-note{
    margin-top:10px;
    text-align:center;
    font-size:20px;
    color:rgba(255,255,255,.65);
}
.telegram-note a{
    color:rgb(109, 93, 252);
    text-decoration:none;
}
.telegram-note a:hover{
    text-decoration:underline;
}

@media (max-width: 720px) {
  .footer-legal {
    text-align: left;
    padding: 24px 0;
  }
  .footer-legal p {
    font-size: 12px;
  }
}

.footer-legal{display:flex;align-items:center;gap:18px}.legal-emblem{font-size:56px;line-height:1;flex:0 0 auto}


/* Legal footer emblem image */
.footer-legal {
  align-items: center;
}
.legal-emblem {
  width: 96px;
  height: auto;
  display: block;
  flex: 0 0 96px;
  object-fit: contain;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 720px) {
  .footer-legal {
    align-items: flex-start;
  }
  .legal-emblem {
    width: 72px;
    flex-basis: 72px;
  }
}

/* Payment systems in footer */
.payment-systems {
  margin-top: 22px;
}
.payment-title {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  font-weight: 700;
}
.payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px 18px;
}
.payment-logos img {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
  filter: saturate(.95) brightness(.98);
}
.payment-logos img[alt="СБП"] {
  height: 34px;
}
.payment-logos img[alt="Mastercard"] {
  height: 26px;
}
@media (max-width: 720px) {
  .payment-logos {
    gap: 12px 16px;
  }
  .payment-logos img {
    height: 24px;
  }
  .payment-logos img[alt="СБП"] {
    height: 30px;
  }
  .payment-logos img[alt="Mastercard"] {
    height: 23px;
  }
}

/* Company modal lightbox */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 12, .76);
  backdrop-filter: blur(10px);
}
.modal-overlay.active {
  display: flex;
}
.modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(82vh, 720px);
  overflow: auto;
  padding: 34px 36px 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(13,26,43,.98), rgba(5,10,18,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.45), 0 0 36px rgba(109,93,252,.12);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  border-color: rgba(109,93,252,.7);
  color: var(--accent);
}
.modal-dialog h2 {
  margin: 0 44px 18px 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}
.modal-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.modal-content p { margin: 0 0 14px; }
.modal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
.modal-content li { margin: 8px 0; }
.modal-content strong { color: var(--text); }
.modal-content a { color: var(--accent); font-weight: 700; }
@media (max-width: 720px) {
  .modal-dialog {
    padding: 28px 22px 26px;
    border-radius: 20px;
  }
  .modal-content { font-size: 15px; }
}


.tariffs-highlight{
background:#6D5DFC;
color:#fff !important;
padding:10px 18px;
border-radius:10px;
font-weight:700;
display:inline-block;
line-height:1;
}
.tariffs-highlight:hover{opacity:.92;}



/* ===== Pulsaro A/B theme overrides ===== */
body {
  background:
    radial-gradient(circle at 72% 24%, rgba(109,93,252,.24), transparent 36%),
    radial-gradient(circle at 88% 58%, rgba(0,212,255,.12), transparent 32%),
    linear-gradient(180deg, #050718 0%, #08111F 55%, #050718 100%);
}

.brand-logo {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 22px rgba(0,212,255,.34));
}
.brand-name {
  font-family: var(--font-title);
  letter-spacing: -.03em;
  text-transform: none;
}
.brand-name span { color: var(--accent-2); }

.btn-primary,
.main-nav a.nav-tarif-highlight {
  background: linear-gradient(135deg, #6D5DFC, #00D4FF);
  color: #fff;
  box-shadow: 0 12px 32px rgba(109,93,252,.28);
}
.btn-primary:hover,
.main-nav a.nav-tarif-highlight:hover {
  box-shadow: 0 16px 42px rgba(0,212,255,.24);
  transform: translateY(-1px);
}

.eyebrow {
  color: #00D4FF;
  text-shadow: 0 0 22px rgba(0,212,255,.22);
}
.vps-mark {
  background: linear-gradient(135deg, #6D5DFC, #00D4FF);
  box-shadow: 0 16px 38px rgba(109,93,252,.28);
}
h1 span:not(.vps-mark) {
  color: #00D4FF;
}

.pulsaro-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.pulsaro-visual::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,93,252,.26), rgba(0,212,255,.10) 38%, transparent 68%);
  filter: blur(6px);
  animation: pulsaroGlow 5.8s ease-in-out infinite;
}
.pulsar-core {
  position: relative;
  z-index: 5;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #fff 0 4%, #00D4FF 7%, #6D5DFC 34%, rgba(24,13,84,.58) 58%, transparent 70%);
  box-shadow:
    0 0 42px rgba(0,212,255,.70),
    0 0 120px rgba(109,93,252,.56),
    0 0 220px rgba(0,212,255,.24);
  animation: pulsaroPulse 4.8s ease-in-out infinite;
}
.pulsar-core-inner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px #fff, 0 0 64px rgba(0,212,255,.95);
}
.pulsar-orbit {
  position: absolute;
  z-index: 3;
  border: 2px solid rgba(0,212,255,.42);
  border-radius: 50%;
  transform: rotate(-24deg);
  box-shadow: 0 0 26px rgba(0,212,255,.22);
}
.pulsar-orbit-one { width: 520px; height: 180px; animation: orbitFloat 8s linear infinite; }
.pulsar-orbit-two { width: 610px; height: 230px; border-color: rgba(109,93,252,.36); transform: rotate(21deg); animation: orbitFloatReverse 11s linear infinite; }
.pulsar-orbit-three { width: 390px; height: 135px; border-color: rgba(255,255,255,.20); transform: rotate(0deg); animation: orbitFloat 9s linear infinite; }

.pulsar-beam {
  position: absolute;
  z-index: 2;
  width: 3px;
  height: 520px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,.72), #fff, rgba(109,93,252,.66), transparent);
  filter: blur(.4px) drop-shadow(0 0 16px rgba(0,212,255,.55));
  opacity: .82;
}
.beam-one { transform: rotate(90deg); }
.beam-two { transform: rotate(0deg); opacity: .45; }

.pulsar-particle {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00D4FF;
  box-shadow: 0 0 18px rgba(0,212,255,.88);
}
.p1 { top: 22%; right: 29%; animation: particle 6s ease-in-out infinite; }
.p2 { top: 35%; right: 72%; animation: particle 7s ease-in-out infinite .8s; }
.p3 { top: 72%; right: 38%; animation: particle 5s ease-in-out infinite 1.4s; }

.hero-trust-card {
  border-color: rgba(0,212,255,.36);
  box-shadow: 0 18px 46px rgba(0,0,0,.34), 0 0 36px rgba(0,212,255,.12);
}
.hero-trust-icon {
  filter: hue-rotate(135deg) drop-shadow(0 0 18px rgba(0,212,255,.22));
}
.hero-features img,
.benefit-card img {
  filter: hue-rotate(135deg) drop-shadow(0 0 18px rgba(0,212,255,.18));
}

@keyframes pulsaroPulse {
  0%,100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.06); filter: brightness(1.18); }
}
@keyframes pulsaroGlow {
  0%,100% { opacity: .72; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes orbitFloat {
  0% { transform: rotate(-24deg) scale(1); }
  50% { transform: rotate(-20deg) scale(1.025); }
  100% { transform: rotate(-24deg) scale(1); }
}
@keyframes orbitFloatReverse {
  0% { transform: rotate(21deg) scale(1); }
  50% { transform: rotate(17deg) scale(1.02); }
  100% { transform: rotate(21deg) scale(1); }
}
@keyframes particle {
  0%,100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(-18px); opacity: 1; }
}

@media (max-width: 1040px) {
  .pulsaro-visual { min-height: 430px; }
  .pulsaro-visual::before { width: 380px; height: 380px; }
  .pulsar-core { width: 130px; height: 130px; }
  .pulsar-orbit-one { width: 340px; height: 130px; }
  .pulsar-orbit-two { width: 390px; height: 160px; }
  .pulsar-orbit-three { width: 270px; height: 105px; }
  .pulsar-beam { height: 340px; }
}


/* ===== Pulsaro v3 ===== */
.plan-card.featured,
.plan-card.popular {
    border: 1px solid rgba(0,212,255,.45) !important;
    box-shadow: 0 0 40px rgba(0,212,255,.12), 0 0 80px rgba(109,93,252,.10);
}

.plan-card {
    background: linear-gradient(180deg,#0a1026 0%,#09111f 100%);
}

.hero::after{
    content:'';
    position:absolute;
    right:10%;
    top:15%;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(0,212,255,.12), rgba(109,93,252,.08), transparent 70%);
    animation:pulsaroWave 8s linear infinite;
    pointer-events:none;
}

@keyframes pulsaroWave{
    0%{transform:scale(.8);opacity:.2}
    50%{transform:scale(1.15);opacity:.5}
    100%{transform:scale(1.4);opacity:0}
}

.brand-name{
    letter-spacing:.08em;
    font-weight:800;
}

.btn-primary{
    background:linear-gradient(135deg,#6D5DFC,#00D4FF)!important;
}

.location-card:hover,
.plan-card:hover{
    transform:translateY(-4px);
    transition:.25s;
}

/* Pulsaro v5 force blue theme */
.plan-badge,.popular-badge,.hit-badge,.recommended-badge,
.review-role,.benefit-icon svg,.benefit-icon,
.price,.accent,.highlight{
    color:#00D4FF !important;
    border-color:#00D4FF !important;
}
.plan-badge,.popular-badge,.hit-badge,.recommended-badge{
    background:#00D4FF !important;
    color:#08111F !important;
}


/* Pulsaro v6 - purple tariff accents */
.plan-badge,
.popular-badge,
.hit-badge,
.recommended-badge{
    background:#6D5DFC !important;
    color:#FFFFFF !important;
    border:none !important;
}

.price,
.plan-price,
.plan-price strong,
.tariff-price{
    color:#6D5DFC !important;
}

.plan-features li::marker,
.plan-features li:before,
.plan-features .check,
.plan-features .bullet{
    color:#6D5DFC !important;
    background:#6D5DFC !important;
}

.scroll-top,
.back-to-top{
    background:#6D5DFC !important;
    color:#fff !important;
}

.plan-card.featured,
.plan-card.popular{
    border-color:#6D5DFC !important;
    box-shadow:0 0 35px rgba(109,93,252,.22) !important;
}


/* Pulsaro v7 - flat purple buttons */
.btn-primary,
.cta-button,
.order-btn,
.hero .btn-primary,
.hero-cta-primary,
.header-order-btn,
.nav-order-btn{
    background:#6D5DFC !important;
    background-image:none !important;
    border-color:#6D5DFC !important;
    color:#FFFFFF !important;
}

.btn-primary:hover,
.cta-button:hover,
.order-btn:hover,
.hero .btn-primary:hover,
.hero-cta-primary:hover,
.header-order-btn:hover,
.nav-order-btn:hover{
    background:#7B68FF !important;
    background-image:none !important;
}

.nav-link.active,
.main-nav .active,
.main-nav a.active{
    background:#6D5DFC !important;
    background-image:none !important;
}

.telegram-btn,
.telegram-link{
    background:#6D5DFC !important;
    background-image:none !important;
}


/* v9 white ₽/мес and purple numbers */
.price{color:#FFFFFF !important;}
.price span{color:#6D5DFC !important;}
.plan-card .price{color:#FFFFFF !important;}
.plan-card .price span{color:#6D5DFC !important;}


/* Pulsaro v11 - real tariff badge fix */
.badge,
.badge-center,
.plan-card .badge,
.plan-card .badge-center,
.bestseller .badge,
.optimal .badge {
    background: #6D5DFC !important;
    background-image: none !important;
    color: #FFFFFF !important;
    border-color: #6D5DFC !important;
    text-shadow: none !important;
}

.badge *,
.badge-center *,
.plan-card .badge *,
.plan-card .badge-center * {
    color: #FFFFFF !important;
}
