/* Общие стили всех лендингов Raketa VPN.
   Правится один раз — меняется сразу на всех 10 страницах. */
:root{
  --bg:#161616; --bg-soft:#1c1c1f; --card:#1f1f23; --line:rgba(255,255,255,.09);
  --text:#eef1f7; --muted:#a1a1aa; --accent:#2963ff; --accent-hover:#2156e0;
  --green:#34d399; --sky:#38bdf8; --radius:18px;
}
*{ box-sizing:border-box; margin:0; padding:0; -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; }
body{ background:var(--bg); color:var(--text); line-height:1.6;
      font-family:'SF Pro Display',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.wrap{ width:100%; max-width:1100px; margin:0 auto; padding:0 20px; }
.section{ padding:72px 0; }
@media (max-width:640px){ .section{ padding:48px 0; } }

h1,h2,h3{ line-height:1.22; font-weight:800; letter-spacing:-.01em; }
h1{ font-size:clamp(30px,5.2vw,52px); }
h2{ font-size:clamp(24px,3.4vw,34px); margin-bottom:14px; }
h3{ font-size:17px; margin-bottom:7px; }
.lead{ color:var(--muted); font-size:clamp(15px,1.9vw,18px); max-width:640px; }
.center{ text-align:center; } .center .lead{ margin-inline:auto; }

/* header */
header{ position:sticky; top:0; z-index:50; backdrop-filter:blur(14px);
        background:rgba(22,22,22,.82); border-bottom:1px solid var(--line); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:64px; gap:16px; }
.brand{ display:flex; align-items:center; gap:9px; font-weight:800; font-size:17px; }
.brand img{ width:30px; height:30px; border-radius:9px; object-fit:cover; }
.brand-mark{ width:30px; height:30px; border-radius:9px; display:block; flex-shrink:0; }
.nav-links{ display:flex; gap:26px; font-size:14px; color:var(--muted); }
.nav-links a:hover{ color:var(--text); }
@media (max-width:820px){ .nav-links{ display:none; } }

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px;
      border:0; border-radius:13px; padding:12px 22px; font-size:15px; font-weight:700;
      cursor:pointer; font-family:inherit; transition:background .15s, transform .1s; }
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-hover); }
.btn-ghost{ background:rgba(255,255,255,.06); border:1px solid var(--line); color:var(--text); }
.btn-ghost:hover{ background:rgba(255,255,255,.11); }
.btn-lg{ padding:15px 30px; font-size:16px; }

/* промо-баннер блогера */
.promo{ display:none; margin-bottom:26px; padding:18px 20px; border-radius:16px;
        background:linear-gradient(135deg,rgba(52,211,153,.16),rgba(41,99,255,.14));
        border:1px solid rgba(52,211,153,.32); }
.promo.show{ display:block; }
.promo-top{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:6px; }
.promo-badge{ background:var(--green); color:#06231c; font-weight:800; font-size:12px;
              padding:4px 11px; border-radius:999px; white-space:nowrap; }
.promo-head{ font-weight:800; font-size:17px; }
.promo-text{ color:var(--muted); font-size:14px; }

/* hero */
.hero{ position:relative; overflow:hidden; padding:84px 0 64px; }
.hero::before, .hero::after{ content:''; position:absolute; border-radius:999px;
                             filter:blur(110px); pointer-events:none; z-index:0; }
.hero::before{ width:420px; height:420px; background:rgba(52,211,153,.16); top:-160px; left:-120px; }
.hero::after{ width:380px; height:380px; background:rgba(41,99,255,.18); bottom:-170px; right:-110px; }
.hero > .wrap{ position:relative; z-index:1; }
.hero .lead{ margin-top:16px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.trust{ display:flex; flex-wrap:wrap; gap:20px; margin-top:26px; color:var(--muted); font-size:13.5px; }
.trust span{ display:flex; align-items:center; gap:7px; }
.dot{ width:7px; height:7px; border-radius:999px; background:var(--green); flex-shrink:0; }

/* grids */
.grid{ display:grid; gap:16px; margin-top:36px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:900px){ .grid-3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .grid-3,.grid-2{ grid-template-columns:1fr; } }

.card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:22px; }
.card p{ color:var(--muted); font-size:14px; }
.ico{ width:40px; height:40px; border-radius:11px; display:grid; place-items:center;
      margin-bottom:13px; background:rgba(41,99,255,.15); color:#93b4ff; }
.ico.green{ background:rgba(52,211,153,.14); color:var(--green); }

.step-n{ width:30px; height:30px; border-radius:9px; display:grid; place-items:center;
         background:var(--accent); color:#fff; font-weight:800; font-size:14px; margin-bottom:12px; }

/* tariffs — колонки задаём только в CSS: инлайновый style перебил бы
   медиазапросы, и на телефоне карточки остались бы в 4 колонки */
#tariffGrid{ grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ #tariffGrid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ #tariffGrid{ grid-template-columns:1fr; } }
.tariff{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
         padding:24px; text-align:center; position:relative; }
.tariff.best{ border-color:rgba(41,99,255,.55); }
.badge{ position:absolute; top:-11px; left:50%; transform:translateX(-50%);
        background:var(--accent); color:#fff; font-size:11px; font-weight:700;
        padding:4px 12px; border-radius:999px; white-space:nowrap; }
.tariff .days{ color:var(--muted); font-size:13.5px; }
.tariff .price{ font-size:32px; font-weight:800; margin:8px 0 2px; }
.tariff .price-old{ font-size:16px; font-weight:600; color:var(--muted);
                    text-decoration:line-through; margin-right:6px; }
.badge-disc{ position:absolute; top:-11px; right:12px; background:var(--green);
             color:#06231c; font-size:11px; font-weight:800; padding:4px 10px;
             border-radius:999px; }
.tariff .per{ color:var(--muted); font-size:12.5px; margin-bottom:16px; }
.tariff .btn{ width:100%; }

/* faq */
details{ background:var(--card); border:1px solid var(--line); border-radius:14px;
         padding:16px 18px; margin-bottom:10px; }
details summary{ cursor:pointer; font-weight:700; font-size:15px; list-style:none;
                 display:flex; justify-content:space-between; align-items:center; gap:12px; }
details summary::-webkit-details-marker{ display:none; }
details summary::after{ content:'+'; color:var(--muted); font-size:20px; font-weight:400; flex-shrink:0; }
details[open] summary::after{ content:'−'; }
details p{ color:var(--muted); font-size:14.5px; margin-top:11px; }

/* seo text */
.seo{ background:var(--bg-soft); border-top:1px solid var(--line); }
.seo-body{ color:var(--muted); font-size:14.5px; max-width:900px; }
.seo-body p{ margin-bottom:13px; }
.seo-body h2{ color:var(--text); font-size:22px; margin-bottom:14px; }

/* cta band */
.cta-band{ background:linear-gradient(135deg,rgba(41,99,255,.18),rgba(52,211,153,.14));
           border:1px solid var(--line); border-radius:24px; padding:44px 28px; text-align:center; }

/* перелинковка между лендингами */
.links{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.links a{ font-size:13.5px; color:var(--muted); background:rgba(255,255,255,.05);
          border:1px solid var(--line); border-radius:999px; padding:8px 15px; }
.links a:hover{ color:var(--text); background:rgba(255,255,255,.1); }

footer{ border-top:1px solid var(--line); padding:32px 0; color:var(--muted); font-size:13.5px; }
.foot{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; align-items:center; }
.foot a:hover{ color:var(--text); }
