

/* ===========================
   FONTS
=========================== */

tt {
      color: #E0006C;
      }
      

p, a, div, button {
    font-family: "Science Gothic", sans-serif;
}

h1 {
    font-family: "Stalinist One", serif;
}

h2, h3, h4, h5, h6 {
    font-family: "Kelly Slab", serif;
}

a.contact {
  color: #E0006C;
  font-family: "Science Gothic", sans-serif;
  text-decoration: none;
}

/* ===========================
   BACKGROUND
=========================== */

:root{
    --bg:#030308;
    --bg-dark:#1A1028;

    --purple-2:#6A00FF;
    --purple-3:#A100FF;
    --purple-1:#E0006C;
    --purple-4:#FF1744;

    --text:#eaeaea;
}

/* ===========================
   BASE
=========================== */

html{
    min-height:100%;
    background:#030308;
}

body{
    margin:0;
    min-height:100vh;

    color:var(--text);

    background:
        radial-gradient(
            ellipse 80% 60% at 50% 110%,
            rgba(76,29,149,.20),
            transparent 70%
        ),
        radial-gradient(
            ellipse 70% 50% at 0% 0%,
            rgba(109,40,217,.12),
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #030308 0%,
            #07050d 35%,
            #0b0714 65%,
            #030308 100%
        );

    background-attachment:fixed;

    position:relative;
    overflow-x:hidden;
}


/* ===========================
   AURORA
=========================== */

body::before{
    content:"";

    position:fixed;
    inset:-35%;

    pointer-events:none;

    z-index:-2;

    filter:blur(100px);

    opacity:.9;

    background:

/* верхний левый */
radial-gradient(
    ellipse 30% 24% at 15% 20%,
    rgba(106, 0, 255, .32) 0%,
    rgba(106, 0, 255, .14) 35%,
    transparent 75%
),

/* верхний правый */
radial-gradient(
    ellipse 28% 22% at 82% 15%,
    rgba(161, 0, 255, .27) 0%,
    rgba(161, 0, 255, .10) 38%,
    transparent 75%
),

/* центр */
radial-gradient(
    ellipse 35% 25% at 50% 48%,
    rgba(224, 0, 108, .16) 0%,
    transparent 75%
),

/* нижний правый */
radial-gradient(
    ellipse 32% 28% at 85% 82%,
    rgba(255, 23, 68, .28) 0%,
    rgba(255, 23, 68, .10) 40%,
    transparent 75%
),

/* нижний левый */
radial-gradient(
    ellipse 25% 22% at 15% 85%,
    rgba(43, 10, 24, .22) 0%,
    transparent 75%
);

    animation:
        auroraMove 24s ease-in-out infinite alternate,
        auroraPulse 12s ease-in-out infinite alternate;
}


/* ===========================
   SECOND AURORA
=========================== */

body::after{
    content:"";

    position:fixed;
    inset:-40%;

    pointer-events:none;

    z-index:-3;

    filter:blur(150px);

    opacity:.65;

    background:

        radial-gradient(
            ellipse 40% 20% at 20% 55%,
            rgba(147,51,234,.22),
            transparent 70%
        ),

        radial-gradient(
            ellipse 35% 25% at 75% 45%,
            rgba(124,58,237,.20),
            transparent 70%
        ),

        radial-gradient(
            ellipse 30% 30% at 50% 90%,
            rgba(88,28,135,.20),
            transparent 70%
        );

    animation:
        auroraFlow 32s ease-in-out infinite alternate;
}


/* ===========================
   GLOW
=========================== */

body{
    isolation:isolate;
}

body > *{
    position:relative;
    z-index:1;
}


/* ===========================
   NOISE
=========================== */

body .noise{
    position:fixed;
    inset:0;

    pointer-events:none;

    opacity:.025;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.8) 1px,
            transparent 1px
        );

    background-size:7px 7px;

    mix-blend-mode:overlay;

    z-index:10;
}


/* ===========================
   ANIMATIONS
=========================== */

@keyframes auroraMove{

    0%{
        transform:
            translate3d(-6%, -4%, 0)
            scale(1);
    }

    25%{
        transform:
            translate3d(3%, -7%, 0)
            scale(1.08);
    }

    50%{
        transform:
            translate3d(8%, 4%, 0)
            scale(1.15);
    }

    75%{
        transform:
            translate3d(-4%, 8%, 0)
            scale(1.08);
    }

    100%{
        transform:
            translate3d(-8%, 2%, 0)
            scale(1.18);
    }
}


@keyframes auroraPulse{

    0%{
        opacity:.65;
    }

    50%{
        opacity:.9;
    }

    100%{
        opacity:.72;
    }
}


@keyframes auroraFlow{

    0%{
        transform:
            translate3d(8%, -5%, 0)
            rotate(-2deg)
            scale(1);
    }

    30%{
        transform:
            translate3d(-5%, 4%, 0)
            rotate(2deg)
            scale(1.1);
    }

    60%{
        transform:
            translate3d(-10%, -4%, 0)
            rotate(-3deg)
            scale(1.18);
    }

    100%{
        transform:
            translate3d(6%, 8%, 0)
            rotate(2deg)
            scale(1.12);
    }
}


/* ===========================
   REDUCE MOTION
=========================== */

@media (prefers-reduced-motion:reduce){

    body::before,
    body::after{
        animation:none;
    }

}
:root{
  --bg:#030712;
  --glass:rgba(255,255,255,0.04);
  --glass-strong:rgba(255,255,255,0.06);
  --border:rgba(255,255,255,0.08);
  --text:#eaeaea;
  --muted:#9a9a9a;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:radial-gradient(circle at top, #0A101D, #030712 60%);
  color:var(--text);
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;

    padding:14px 28px;

    background:rgba(20,12,36,.62);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 12px 40px rgba(0,0,0,.28),
        inset 0 1px rgba(255,255,255,.04);
}

/* LEFT */

.left{
    display:flex;
    align-items:center;
    gap:16px;
}

.logo{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:14px;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);
}

.site-info{
    display:flex;
    flex-direction:column;
}

.site-title{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#ffffff;
}

.page-title{
    margin-top:3px;
    font-size:12px;
    color:#b9b9c9;
}

/* ===========================
   BUTTONS
=========================== */

.menu-btn,
.right button,
.lang-btn{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    height:42px;

    padding:0 16px;

    border-radius:12px;

    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);

    color:#ececec;

    cursor:pointer;

    transition:.22s ease;

    backdrop-filter:blur(10px);
}

.menu-btn:hover,
.right button:hover,
.lang-btn:hover{

    background:rgba(139,92,246,.12);

    border-color:rgba(139,92,246,.25);

    transform:translateY(-2px);
}

/* ===========================
   RIGHT
=========================== */

.right{
    display:flex;
    align-items:center;
    gap:10px;
}

/* ===========================
   LANGUAGE
=========================== */

.lang{
    position:relative;
}

.lang-menu{

    position:absolute;
    right:0;
    top:52px;

    display:none;

    min-width:400px;

    padding:8px;

    border-radius:14px;

    background:rgba(20,12,36,.92);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.lang-menu a{

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 12px;

    border-radius:10px;

    color:#eaeaea;
    text-decoration:none;

    transition:.2s;
}

.lang-menu a:hover{

    background:rgba(255,255,255,.05);
}

/* ===========================
   DROPDOWN
=========================== */

.dropdown {
    position: relative;
    top: 100px;
    left: 5%;

    width: 475px !important;
    max-width: calc(100vw - 40px);

    box-sizing: border-box;

    display: none;
    padding: 24px;

    border-radius: 18px;
    background: rgba(20, 12, 36, .88);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);

    z-index: 9999;
}

.dropdown.active {
    display: block;
}

.dropdown-grid {
    display: grid;
grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.block h4{

    margin:0 0 12px;

    font-size:11px;

    letter-spacing:.08em;
    text-transform:uppercase;

    color:#8f8fa5;
}

.dropdown a{

    display:flex;
    align-items:center;

    gap:12px;

    padding:12px 14px;

    margin-bottom:8px;

    border-radius:12px;

    text-decoration:none;
    color:#ededed;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.06);

    transition:.2s;
}

.dropdown a:hover{

    transform:translateY(-2px);

    background:rgba(255,255,255,.06);

    border-color:rgba(255,255,255,.12);
}

.dropdown i{

    width:18px;

    text-align:center;

    flex-shrink:0;

    color:#d7d7ff;
}

.dropdown small{

    display:block;

    margin-top:3px;

    font-size:11px;

    color:#9393aa;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:1024px){

    .navbar{
        padding:14px 18px;
    }

    .dropdown{

        left:18px;
        right:18px;

        width:auto;
    }

    .dropdown-grid{

        grid-template-columns:repeat(1,1fr);
    }
}

@media(max-width:720px){

    .site-info{
        display:none;
    }

    .dropdown-grid{
        grid-template-columns:1fr;
    }

    .right{
        gap:8px;
    }

    .menu-btn,
    .right button,
    .lang-btn{

        width:52px;
        padding:0;
    }
}

/* ================= HERO ================= */

.hero{
  text-align:center;
  padding:120px 20px;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:700px;
  height:700px;
  background:radial-gradient(circle, #ffffff0f, transparent 60%);
  filter:blur(40px);
  z-index:-1;
}

.hero h1{
  font-size:64px;
  margin:0;
}

.hero p{
  color:var(--muted);
}

.hero-badge{
  display:inline-flex;
  gap:8px;
  align-items:center;

  padding:6px 12px;
  border-radius:999px;

  background:var(--glass);
  border:1px solid var(--border);
  color:var(--muted);
}

/* ================= SECTIONS ================= */

.section{
  padding:60px 20px;
  max-width:1100px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:20px;
}

/* ================= CARDS ================= */
/* ================= PRIVACY ================= */

.privacy-section{
    display:flex;
    grid-template-columns:1.2fr 1fr;
    gap:28px;
    align-items:start;
}

.privacy-content{

    background:var(--glass);
    border:1px solid var(--border);
    border-radius:22px;

    padding:34px;

    backdrop-filter:blur(16px);
}

.privacy-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);

    color:#d6d2ff;
    font-size:13px;
}

.privacy-content h2{
    margin:20px 0 18px;
    font-size:36px;
    line-height:1.2;
}

.privacy-content p{
    color:var(--muted);
    line-height:1.8;
    margin:0 0 18px;
}

.privacy-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.privacy-card{

    background:var(--glass);
    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

    transition:.25s;
}

.privacy-card:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.06);
}

.privacy-card i{
    font-size:26px;
    color:#b88cff;
    margin-bottom:16px;
}

.privacy-card h3{
    margin:0 0 10px;
    font-size:17px;
}

.privacy-card p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

@media(max-width:900px){

    .privacy-section{
        grid-template-columns:1fr;
    }

    .privacy-features{
        grid-template-columns:1fr;
    }

}

/* ================= PROJECTS GRID ================= */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.card,
.card-text,
.card-text h3,
.card-text p{
  color:#eaeaea;
}

/* карточка = ровная кнопка */
.card{
  display:flex;
  align-items:center;
  gap:12px;

  padding:14px;
  border-radius:14px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  cursor:pointer;
  text-align:left;

  transition:0.2s ease;
}

/* hover */
.card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.15);
}

/* логотип фикс */
.card-logo{
  width:42px;
  height:42px;
  border-radius:10px;

  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);

  flex-shrink:0;
}

.card-icon{
  width:64px;
  height:64px;
  border-radius:10px;

  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);

  flex-shrink:0;
}

/* текст */
.card-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

.card-text h3{
  margin:0;
  font-size:14px;
  line-height:1.2;
}

.card-text p{
  margin:4px 0 0;
  font-size:12px;
  color:#9a9a9a;
  line-height:1.3;

  overflow:hidden;
  text-overflow:ellipsis;
}


/* GRID */
.team{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

/* CARD */
.member{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;

  overflow:hidden;

  transition:0.2s ease;
}

.member:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.06);
}

/* БОЛЬШОЙ АВАТАР СВЕРХУ */
.avatar{
  width:100%;
  height:140px;

  background:rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ТЕКСТОВАЯ ЧАСТЬ */
.member-info{
  padding:12px;
  text-align:left;
}

.member-info h3{
  margin:0;
  font-size:15px;
}

.role{
  font-size:12px;
  color:#9a9a9a;
  margin-top:4px;
  margin-bottom:8px;
}

.member-info p{
  font-size:12px;
  color:#cfcfcf;
  line-height:1.4;
  margin:0;
}

/* ================= CONTACTS GRID ================= */

.contacts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

/* карточка = ссылка */
.contact-card{
  display:flex;
  gap:12px;
  align-items:flex-start;

  padding:16px;

  text-decoration:none;
  color:inherit;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;

  transition:0.2s ease;
}

.contact-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.06);
}

/* иконка */
.contact-card i{
  font-size:36px;
  margin-top:3px;
  color:#eaeaea;
}

/* текст */
.contact-info{
  display:flex;
  flex-direction:column;
}

.contact-info h3{
  margin:0;
  font-size:14px;
}

.value{
  font-size:12px;
  color:#eaeaea;
  margin-top:4px;
}

.contact-info p{
  margin:6px 0 0;
  font-size:12px;
  color:#9a9a9a;
  line-height:1.4;
}

/* ================= FOOTER ================= */


/* ================= FOOTER ================= */

.footer{
  margin-top:60px;
  padding:40px 20px;

  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.02);
  backdrop-filter:blur(12px);
}

/* TOP */
.footer-top{
  max-width:1100px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* BRAND */
.footer-brand{
  display:flex;
  gap:12px;
  align-items:flex-start;
  max-width:300px;
}

.footer-logo{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);

  font-weight:600;
}

.footer-brand h3{
  margin:0;
  font-size:15px;
}

.footer-brand p{
  margin:6px 0 0;
  font-size:12px;
  color:#9a9a9a;
  line-height:1.4;
}

/* LINKS GRID */
.footer-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-links h4{
  margin:0 0 10px;
  font-size:12px;
  color:#9a9a9a;
  text-transform:uppercase;
}

.footer-links a{
  display:block;
  margin-bottom:8px;

  font-size:13px;
  color:#eaeaea;

  text-decoration:none;

  transition:0.2s;
}

.footer-links a:hover{
  color:#ffffff;
  transform:translateX(3px);
}

/* BOTTOM */
.footer-bottom{
  max-width:1100px;
  margin:30px auto 0;

  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.footer-bottom p{
  font-size:12px;
  color:#9a9a9a;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:12px;
  border:none;
}

.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  color:#eaeaea;

  transition:0.2s;
}

.footer-social i{
  display:block;
  line-height:1;
  vertical-align:middle;
  transform:translateY(-0.5px);
}

.footer-social a:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .footer-links{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 500px){
  .footer-links{
    grid-template-columns:1fr;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px){
  .dropdown{
    width:95%;
    left:2.5%;
  }

  .cards{
    grid-template-columns:repeat(2,1fr);
  }

  .team{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 600px){
  .hero h1{
    font-size:40px;
  }

  .cards,
  .team,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .dropdown-grid{
    grid-template-columns:1fr 1fr;
  }
}


.right{
  display:flex;
  gap:10px;
  align-items:center;
}

.right button{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:#eaeaea;

  padding:8px 12px;
  border-radius:10px;

  cursor:pointer;
  transition:0.2s;
}

.right button:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-1px);
}

/* dropdown НЕ ломаем */
.dropdown{
  position:absolute;
  top:70px;
  left:24px;
  width:900px;
  display:none;
  z-index:9999;
}

/* ИКОНКА + ТЕКСТ В ОДНУ СТРОКУ (фикс) */
.dropdown a{
  display:flex;
  flex-direction:row; /* ВАЖНО */
  align-items:center;
  gap:10px;
}

.history{
  max-width:800px;
  margin:auto;
  position:relative;
  padding-left:20px;
}

.history::before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  bottom:0;
  width:1px;
  background:rgba(255,255,255,0.1);
}

.history-item{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#eaeaea;
  margin-top:6px;
}

.history-content{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:14px;
  border-radius:12px;
}

.history-content h3{
  margin:0;
  font-size:14px;
}

.history-content p{
  margin-top:6px;
  font-size:13px;
  color:#9a9a9a;
}

.history-content span{
  display:block;
  margin-top:10px;
  font-size:11px;
  color:#777;
}


/* ================= ICON SPACING FIX ================= */

.dropdown a{
  display:flex;
  align-items:center;
  gap:12px; /* ВАЖНО: единый отступ */
}

/* ВСЕ иконки одинаковые */
.dropdown i{
  width:18px;
  text-align:center;
  flex-shrink:0;
}

/* ================= LANG DROPDOWN ================= */

.lang{
  position:relative;
}

.lang-btn{
  display:flex;
  align-items:center;
  gap:8px;

  padding:8px 12px;

  background:var(--glass);
  border:1px solid var(--border);
  color:var(--text);

  border-radius:10px;
  cursor:pointer;
}

.lang-menu{
  position:absolute;
  right:0;
  top:40px;

  display:none;

  background:rgba(20,20,20,0.9);
  border:1px solid var(--border);
  border-radius:12px;

  padding:8px;
  min-width:190px;
}

.lang-menu a{
  display:block;
  padding:8px;
  color:var(--text);
  text-decoration:none;

  border-radius:8px;
}

.lang-menu a:hover{
  background:rgba(255,255,255,0.06);
}


/* ================= FORUM ================= */

.forum{
  display:flex;
  justify-content:center;
}

.forum-card{
  width:100%;
  max-width:900px;

  background:var(--glass);
  border:1px solid var(--border);

  border-radius:16px;

  padding:24px;

  backdrop-filter:blur(14px);

  transition:0.2s;
}

.forum-card:hover{
  transform:translateY(-3px);
  background:var(--glass2);
}

.forum-badge{
  display:inline-block;

  font-size:11px;
  color:var(--muted);

  padding:4px 10px;
  border-radius:999px;

  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);

  margin-bottom:10px;
}

.forum-content h3{
  margin:0;
  font-size:20px;
}

.forum-content p{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;

  margin:10px 0 20px;
}

/* STATS */
.forum-stats{
  display:flex;
  gap:20px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.forum-stats div{
  display:flex;
  flex-direction:column;
}

.forum-stats span{
  font-size:16px;
  font-weight:600;
}

.forum-stats small{
  font-size:11px;
  color:var(--muted);
}

/* BUTTON */
.forum-btn{
  display:inline-block;

  padding:10px 14px;

  border-radius:12px;

  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);

  color:var(--text);
  text-decoration:none;

  transition:0.2s;
}

.forum-btn:hover{
  background:rgba(255,255,255,0.1);
  transform:translateY(-2px);
}


/* ================= VPN CARDS ================= */

.vpn-cards .card{
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  padding:18px;
}

.vpn-cards .card-text strong{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:#ffffff;
}

.vpn-cards .card-text p{
  margin:0;
}


.legal-menu{
  display:flex;
  flex-direction:column;
  gap:12px;

  max-width:700px;
  margin:0 auto;
}

/* карточка-строка */
.legal-item{
  display:flex;
  align-items:center;
  gap:14px;

  padding:16px;

  border-radius:14px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  text-decoration:none;
  color:#eaeaea;

  transition:0.2s ease;
}

.legal-item:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.06);
}

/* иконка слева */
.legal-item i{
  font-size:18px;
  width:24px;
  text-align:center;
}

/* текст */
.legal-item h3{
  margin:0;
  font-size:14px;
}

.legal-item p{
  margin:4px 0 0;
  font-size:12px;
  color:#9a9a9a;
}

/* ================= HERO V2 CLEAN ================= */

.hero-v2{
  position:relative;

  width:100%;
  height:850px; /* было 700 */

  overflow:hidden;

  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.hero-v2-bg{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;
}

.hero-v2-inner{
  position:relative;
  z-index:2;

  text-align:center;

  max-width:800px;
  padding:60px 20px;
}

/* badge */
.hero-v2-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 14px;

  border-radius:999px;

  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.12);

  color:#ffffff;
  margin-bottom:20px;

  backdrop-filter:blur(8px);
}

/* title */
.hero-v2 h1{
  font-size:64px;
  margin:0 0 16px;
  line-height:1.1;

  color:#ffffff;
  text-shadow:0 4px 20px rgba(0,0,0,0.4);
}

/* text */
.hero-v2 p{
  max-width:600px;
  margin:0 auto 24px;

  color:#e0e0e0;
  line-height:1.6;

  text-shadow:0 2px 10px rgba(0,0,0,0.35);
}

/* buttons */
.hero-v2-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.hero-v2-btn{
  padding:12px 18px;
  border-radius:12px;

  text-decoration:none;
  transition:0.2s;
}

.hero-v2-btn.primary{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;

  backdrop-filter:blur(8px);
}

.hero-v2-btn.secondary{
  background:rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;

  backdrop-filter:blur(8px);
}

.hero-v2-btn:hover{
  transform:translateY(-2px);
}

/* mobile */
@media (max-width:768px){
  .hero-v2{
    height:520px;
  }

  .hero-v2 h1{
    font-size:38px;
  }

  .hero-v2 p{
    font-size:14px;
  }
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:18px;
}



.service-card:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.06);
}
.service-card{
    width:120px;
    height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--glass);
    border:1px solid var(--border);
    border-radius:18px;
}

.service-logo{
    width:120px;
    height:120px;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.service-logo img{
    width:119px !important;
    height:119px !important;

    max-width:119px !important;
    max-height:119px !important;

    object-fit:contain;
}

@media (max-width:900px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

/* Tablet */

@media (max-width:900px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media (max-width:600px){

    .services-grid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   MOBILE
=========================== */

@media screen and (max-width: 449px) {

    .dropdown {
        position: fixed;

        top: 70px;
        left: 8px;
        right: 8px;

        width: auto;
        max-width: none;

        max-height: calc(100dvh - 80px);

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}