/*
Theme Name: ZoogVPN Lite Theme
Theme URI: https://example.com
Author: ZoogVPN
Author URI: https://example.com
Description: Lightweight, adaptive, SEO-friendly WordPress theme for ZoogVPN.
Version: 1.4
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zoogvpn-lite
*/


body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    color: #1E293B;
    line-height: 1.6;
}

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.center {
    text-align: center;
}

/* HEADER */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.header__container {
    max-width: 1280px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo img {
    height: 40px;
    width: auto;
    display: block;
}
.header__nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 32px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: #1e293b;
    padding: 4px 0;
}

.nav-menu a:hover {
    color: #2ECC71;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.burger span {
    width: 26px;
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
    transition: .3s;
}
/* HERO */
.hero {
    color:#fff;
    padding:140px 20px;
    text-align:center;
}
.hero-content h1 {
    font-size:42px;
    text-shadow:0 3px 6px rgba(0,0,0,0.3);
}

/* BUTTON */
.btn-primary {
    background:#2ECC71; padding:14px 28px; border-radius:10px;
    display:inline-block; color:#fff; text-decoration:none;
}
.btn-primary:hover { background:#27ae60; }

/* SECTION */
.section { padding:80px 20px; }
.section h2 { text-align:center; margin-bottom:40px; font-size:32px; }

/* FEATURES */
.features-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.card {
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    text-align:center;
}
.card img.icon {
    width:64px;
    margin-bottom:15px;
}

/* DEVICES */
.devices-img { max-width:600px; width:100%; }

/* SERVER MAP */
.world-map { width:100%; max-width:700px; margin-bottom:30px; }

/* 404 */
.img-404 {
    width:260px;
    display:block;
    margin:30px auto;
}

/* FOOTER */
.footer {
    background: #0f172a; /* глубокий тёмный фон */
    padding: 50px 0;
    color: white;
}

.footer__container {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;

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

.footer__logo img {
    height: 40px;
}

.footer__left {
    max-width: 260px;
}

.footer__copyright {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 14px;
}

/* FOOTER MENU */
.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    gap: 28px;
}

.footer-nav li a {
    color: #cbd5e1;
    font-size: 15px;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-nav li a:hover {
    color: #2ECC71; /* фирменный зелёный */
}

/* SOCIALS */
.footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__socials img {
    width: 26px;
    height: 26px;
    opacity: 0.8;
    transition: opacity .2s ease, transform .2s ease;
}

.footer__socials img:hover {
    opacity: 1;
    transform: scale(1.12);
}

/* MOBILE */
@media (max-width: 700px) {
    .footer__container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer__socials {
        justify-content: center;
        margin-top: 10px;
    }
}

/* RESPONSIVE */
/* RESPONSIVE */
/* Large tablets -> mobile */
@media (max-width: 1100px) {
    .product-hero__container {
        flex-direction: column;
        text-align: center;
    }

    .product-hero__image img {
        width: 340px;
    }

    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .devices-flex {
        flex-direction: column;
        text-align: center;
    }

    .device-list li {
        text-align: left;
        margin-left: 10px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .product-hero {
        padding: 60px 0 40px;
    }

    .product-hero__content h1 {
        font-size: 34px;
    }

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

    .product-devices h2,
    .product-features h2,
    .cta-final h2,
    .product-map h2 {
        font-size: 28px;
    }

    .product-hero__image img {
        width: 290px;
    }

    .device-list {
        text-align: center;
    }

    /* Mobile nav behaviour */
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 18px;
        padding: 20px 0;
        background: white;
        width: 100%;
    }
    .header__nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        text-align: center;
        display: block;
        padding: 0 20px;
    }
    .burger {
        display: flex;
    }
}
.footer-menu ul{
	list-style-type:none;
}
/* FAQ SECTION */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #1e293b;
}

.faq-list {
    max-width: 820px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: #2ECC71;
    transition: transform .3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 16px;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}
/* ------------------------------------------------------------
   PRODUCT PAGE — HERO SECTION
------------------------------------------------------------ */

.product-hero {
    padding: 90px 0 70px;
    background: #f8fafc;
}

.product-hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.product-hero__content {
    max-width: 520px;
}

.product-hero__content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
}

.product-hero__content .subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
}

.product-price .price {
    display: inline-block;
    font-size: 30px;
    color: #2ECC71;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-hero__image img {
    width: 420px;
    max-width: 100%;
    display: block;
}


/* ------------------------------------------------------------
   FEATURES GRID
------------------------------------------------------------ */

.product-features {
    padding: 80px 0;
    background: #ffffff;
}

.product-features h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #1e293b;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: #f1f5f9;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card img {
    width: 64px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* ------------------------------------------------------------
   DEVICES SECTION
------------------------------------------------------------ */

.product-devices {
    padding: 80px 0;
    background: #f8fafc;
}

.product-devices h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: #1e293b;
}

.devices-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.devices-flex img {
    width: 420px;
    max-width: 100%;
}

.device-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.device-list li {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.device-list li::before {
    content: "•";
    color: #2ECC71;
    font-size: 20px;
    position: absolute;
    left: 0;
}


/* ------------------------------------------------------------
   SERVER MAP
------------------------------------------------------------ */

.product-map {
    padding: 80px 0;
}

.product-map h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
    color: #1e293b;
}

.map-sub {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #475569;
}

.map-wrapper {
    display: flex;
    justify-content: center;
}

.map-wrapper img {
    width: 100%;
    max-width: 900px;
    filter: brightness(96%);
}


/* ------------------------------------------------------------
   FINAL CTA
------------------------------------------------------------ */

.cta-final {
    padding: 80px 0;
    background: #1e293b;
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #cbd5e1;
}


/* ------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------------------------ */

/* Tablets */
@media (max-width: 1100px) {

    .product-hero__container {
        flex-direction: column;
        text-align: center;
    }

    .product-hero__image img {
        width: 340px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .devices-flex {
        flex-direction: column;
        text-align: center;
    }

    .device-list li {
        text-align: left;
        margin-left: 10px;
    }
}

/* Mobile */
@media (max-width: 700px) {

    .product-hero {
        padding: 60px 0 40px;
    }

    .product-hero__content h1 {
        font-size: 34px;
    }

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

    .product-devices h2,
    .product-features h2,
    .cta-final h2,
    .product-map h2 {
        font-size: 28px;
    }

    .product-hero__image img {
        width: 290px;
    }

    .device-list {
        text-align: center;
    }
}
/* DOWNLOAD PAGE */
.download-hero {
    padding: 80px 0 60px;
}
.download-hero__content {
    max-width: 560px;
}
.download-hero__content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}
.download-hero__image img {
    width: 380px;
}

.download-grid {
    padding: 80px 0;
}
.download-grid h2 {
    text-align: center;
    margin-bottom: 40px;
}
.download-grid__items {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}
.download-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.download-card:hover {
    transform: translateY(-6px);
}
.download-card img {
    width: 85px;
    margin-bottom: 16px;
}

.download-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.download-features {
    padding: 80px 0;
}

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

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

    .download-hero__content h1 {
        font-size: 34px;
    }
    .download-hero__image img {
        width: 260px;
    }
}
/* ================= DOWNLOAD PAGE STYLES (isolated `dl-`) ================= */

/* HERO */
.dl-hero {
  padding: 100px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.dl-hero__title {
  font-size: 46px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
}
.dl-hero__subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 640px;
  margin: auto;
}

/* GRID */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.dl-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
}
.dl-card:hover {
  transform: translateY(-4px);
}

/* BENEFITS */
.dl-benefits {
  padding: 80px 0;
  background: #f8fafc;
}
.dl-benefits__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: auto;
}
.dl-benefit-item {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.dl-benefit-item h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
}
.dl-benefit-item p {
  color: #475569;
  font-size: 15px;
}

/* FAQ */
.dl-faq {
  padding: 70px 0 90px;
  background: #1E293B;
  color: #fff;
}
.dl-faq__list {
  max-width: 820px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dl-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 14px;
}
.dl-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #2ECC71;
  cursor: pointer;
  padding: 10px 0;
}
.dl-faq__a {
  display: none;
  color: #cbd5e1;
  font-size: 15px;
  padding-bottom: 10px;
}
.dl-faq__item.active .dl-faq__a {
  display: block;
}

/* SECTIONS TITLES */
.dl-section-title,
.dl-section-title h2,
.dl-download h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  color: inherit;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-benefits__wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-hero__title { font-size: 34px; }
}
/* ================= WINDOWS VPN PAGE (vw- namespace) ================= */

/* HERO */
.vw-hero {
  padding: 100px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.vw-hero__title {
  font-size: 44px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
}
.vw-hero__subtitle {
  font-size: 17px;
  color: #475569;
  max-width: 680px;
  margin: auto auto 26px;
}
.vw-hero__cta {
  margin-top: 12px;
}

/* FEATURES */
.vw-features {
  padding: 80px 0;
  background: #F8FAFC;
}
.vw-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: auto;
}
.vw-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform .25s ease;
}
.vw-card:hover {
  transform: translateY(-4px);
}
.vw-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin-top: 0;
}
.vw-card p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 0;
}

/* INSTALL STEPS */
.vw-install {
  padding: 70px 0;
  background: #ffffff;
}
.vw-install__steps {
  max-width: 760px;
  margin: 40px auto 0;
  padding-left: 20px;
}
.vw-install__steps li {
  font-size: 17px;
  margin-bottom: 14px;
  color: #1E293B;
}

/* CTA BOX */
.vw-cta-box {
  padding: 70px 0;
  background: #1E293B;
  color: #fff;
}
.vw-cta-box h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
.vw-cta-box p {
  font-size: 16px;
  color: #CBD5E1;
  margin-bottom: 24px;
}

/* FAQ */
.vw-faq {
  padding: 80px 0;
  background: #F8FAFC;
}
.vw-faq__list {
  max-width: 820px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vw-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 14px;
}
.vw-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #2ECC71;
  cursor: pointer;
  padding: 10px 0;
}
.vw-faq__a {
  display: none;
  color: #475569;
  font-size: 15px;
  padding-bottom: 8px;
}
.vw-faq__item.active .vw-faq__a {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .vw-features__grid {
    grid-template-columns: 1fr;
  }
}
/* ================= ANDROID VPN PAGE (va- namespace, isolated) ================= */

/* HERO */
.va-hero {
  padding: 100px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.va-hero__title {
  font-size: 44px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
}
.va-hero__subtitle {
  font-size: 17px;
  color: #475569;
  max-width: 680px;
  margin: auto auto 26px;
}

/* GRID */
.va-grid {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
  margin:auto;
  max-width:900px;
}
.va-card {
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
  text-align:center;
  transition:transform .25s ease;
}
.va-card:hover { transform:translateY(-4px); }
.va-card h3 {
  font-size:22px;
  font-weight:700;
  color:#1E293B;
  margin-top:0;
}
.va-card p {
  color:#475569;
  font-size:15px;
  margin-bottom:0;
}

/* INSTALL STEPS */
.va-install { padding:70px 0; background:#f8fafc; }
.va-install__steps {
  max-width:760px;
  margin:40px auto 0;
  padding-left:20px;
}
.va-install__steps li {
  font-size:17px;
  margin-bottom:14px;
  color:#1E293B;
}

/* DEVICES */
.va-devices {
  padding:80px 0;
  background:#ffffff;
}
.va-devices img {
  display:block;
  margin:30px auto 0;
  border-radius:12px;
}

/* FAQ */
.va-faq {
  padding:80px 0;
  background:#1e293b;
  color:#fff;
}
.va-faq__list {
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.va-faq__item { border-bottom:1px solid rgba(255,255,255,0.15); padding-bottom:14px; }
.va-faq__q {
  width:100%;
  background:none;
  border:none;
  text-align:left;
  font-size:18px;
  font-weight:600;
  color:#2ECC71;
  cursor:pointer;
  padding:10px 0;
}
.va-faq__a { display:none; color:#cbd5e1; font-size:15px; padding-bottom:10px; }
.va-faq__item.active .va-faq__a { display:block; }

/* RESPONSIVE */
@media(max-width:900px){ .va-grid{ grid-template-columns:1fr; } }
@media(max-width:600px){ .va-hero__title{ font-size:34px; } }
/* ================= iOS/iPhone VPN PAGE (namespace vi-) — ISOLATED ================= */

.vi-hero {
  padding: 100px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.vi-hero__title {
  font-size: 44px;
  font-weight: 700;
  color:#1E293B;
  margin-bottom: 12px;
}
.vi-hero__cta { margin-top: 10px; }

/* grid benefits */
.vi-features {
  padding: 80px 0;
  background:#f8fafc;
}
.vi-grid {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
  max-width:900px;
  margin:auto;
}
.vi-card {
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
  text-align:center;
  transition:transform .25s ease;
}
.vi-card:hover { transform:translateY(-4px); }
.vi-card h3 {
  font-size:22px;
  font-weight:700;
  color:#1E293B;
  margin-top:0;
}
.vi-card p { color:#475569; font-size:15px; margin-bottom:0; }

/* install */
.vi-install { padding:70px 0; background:#ffffff; }
.vi-install__steps {
  max-width:760px;
  margin:40px auto 0;
  padding-left:20px;
}
.vi-install__steps li {
  font-size:17px;
  margin-bottom:14px;
  color:#1E293B;
}

/* devices */
.vi-devices { padding:80px 0; background:#ffffff; }
.vi-devices img { margin-top:28px; border-radius:12px; }

/* FAQ */
.vi-faq { padding:80px 0; background:#1e293b; color:#fff; }
.vi-faq__list {
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.vi-faq__item {
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:14px;
}
.vi-faq__q {
  width:100%; background:none; border:none; text-align:left;
  font-size:18px; font-weight:600; color:#2ECC71;
  cursor:pointer; padding:10px 0;
}
.vi-faq__a { display:none; color:#cbd5e1; font-size:15px; }
.vi-faq__item.active .vi-faq__a { display:block; }

/* responsive */
@media(max-width:900px){ .vi-grid, .vi-grid-benefits{ grid-template-columns:1fr; } }
@media(max-width:600px){ .vi-hero__title{ font-size:32px; } }
/* ================= ZoogVPN for Mac (namespace vm-) — ISOLATED ================= */

/* HERO */
.vm-hero {
  padding: 100px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.vm-hero__title {
  font-size: 44px;
  font-weight: 700;
  color:#1E293B;
  margin-bottom: 12px;
}
.vm-hero__subtitle {
  font-size: 17px;
  color:#475569;
  max-width: 680px;
  margin: auto auto 26px;
}

/* FEATURES GRID */
.vm-features {
  padding: 80px 0;
  background:#f8fafc;
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: auto;
}
.vm-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform .25s ease;
}
.vm-card:hover { transform: translateY(-4px); }
.vm-card h3 {
  font-size: 22px;
  font-weight: 700;
  color:#1E293B;
  margin-top:0;
}
.vm-card p { color:#475569; font-size:15px; margin-bottom:0; }

/* INSTALL STEPS */
.vm-install { padding:70px 0; background:#ffffff; }
.vm-install__steps {
  max-width:760px;
  margin:40px auto 0;
  padding-left:20px;
}
.vm-install__steps li {
  font-size:17px;
  margin-bottom:14px;
  color:#1E293B;
}

/* CTA BOX */
.vm-cta-box {
  padding:70px 0;
  background:#1E293B;
  color:#fff;
}
.vm-cta-box h2 { font-size:30px; margin-bottom:10px; }
.vm-cta__sub {
  font-size:16px;
  color:#CBD5E1;
  margin-bottom:22px;
}

/* FAQ */
.vm-faq { padding:80px 0; background:#1e293b; color:#fff; }
.vm-faq__list {
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.vm-faq__item { border-bottom:1px solid rgba(255,255,255,0.15); padding-bottom:14px; }
.vm-faq__q {
  width:100%; background:none; border:none; text-align:left;
  font-size:18px; font-weight:600; color:#2ECC71;
  cursor:pointer; padding:10px 0;
}
.vm-faq__a { display:none; color:#cbd5e1; font-size:15px; }
.vm-faq__item.active .vm-faq__a { display:block; }

/* RESPONSIVE */
@media(max-width:900px){
  .vm-grid { grid-template-columns: 1fr; }
}
@media(max-width:600px){
  .vm-hero__title{ font-size:32px; }
}
/* ================= ZoogVPN Router Page (namespace vr-) — ISOLATED ================= */

.vr-hero {
  padding: 100px 20px 80px;
  background:#ffffff;
  border-bottom:1px solid #e2e8f0;
}

.vr-hero__title {
  font-size:44px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:12px;
}

.vr-hero__subtitle {
  font-size:17px;
  color:#475569;
  max-width:680px;
  margin:auto auto 26px;
}

.vr-routers {
  padding:70px 0;
  background:#f8fafc;
}

.vr-routers__grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  gap:24px;
  max-width:960px;
  margin:auto;
}

.vr-card {
  background:#fff;
  padding:16px;
  border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
  font-size:16px;
  font-weight:600;
  color:#1E293B;
  text-align:center;
}

.vr-install {
  padding:70px 0;
  background:#ffffff;
}

.vr-install__steps {
  max-width:760px;
  margin:40px auto 0;
  padding-left:20px;
}
.vr-install__steps li {
  font-size:17px;
  margin-bottom:14px;
  color:#1E293B;
}

.vr-benefits {
  padding:80px 0;
  background:#F8FAFC;
}
.vr-benefits__grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:900px;
  margin:auto;
}

.vr-benefit-item {
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
  text-align:center;
  transition:transform .25s ease;
}
.vr-benefit-item:hover { transform:translateY(-4px); }

.vr-benefit-item h3 {
  font-size:22px;
  font-weight:700;
  color:#1E293B;
  margin-top:0;
}
.vr-benefit-item p {
  color:#475569;
  font-size:15px;
  margin-bottom:0;
}

.vr-map {
  padding:80px 0;
  background:#ffffff;
}
.vr-map__sub {
  font-size:16px;
  color:#475569;
  margin-bottom:28px;
}

/* FAQ */
.vr-faq {
  background:#1E293B;
  padding:80px 0;
  color:#fff;
}
.vr-faq__list {
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:800px;
  margin:auto;
}
.vr-faq__item { border-bottom:1px solid rgba(255,255,255,0.15); padding-bottom:14px; }
.vr-faq__q {
  width:100%; background:none; border:none; text-align:left;
  font-size:18px; font-weight:600; color:#2ECC71;
  cursor:pointer; padding:10px 0;
}
.vr-faq__a { display:none; font-size:15px; color:#cbd5e1; }

.vr-faq__item.active .vr-faq__a { display:block; }

/* Responsive */
@media(max-width:900px){
  .vr-benefits__grid { grid-template-columns:1fr; }
  .vr-download__grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px){
  .vw-hero__title { font-size:32px; }
  .vr-download__grid { grid-template-columns:1fr; }
}
/* ================= ZoogVPN Protocols Page (vp- namespace) — ISOLATED ================= */

/* HERO */
.vp-hero {
  padding: 100px 20px 80px;
  background:#ffffff;
  border-bottom:1px solid #e2e8f0;
}
.vp-hero__title {
  font-size:44px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:12px;
}
.vp-hero__subtitle {
  font-size:17px;
  color:#475569;
  max-width:680px;
  margin:auto auto 26px;
}

/* PROTOCOLS GRID */
.vp-protocols { padding:80px 0; background:#f8fafc; }
.vp-protocols__wrapper {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:960px;
  margin:auto;
}
.vp-protocol-card {
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
  transition:transform .25s ease;
}
.vp-protocol-card:hover { transform:translateY(-4px); }
.vp-protocol-card h3 {
  font-size:22px;
  font-weight:700;
  color:#1E293B;
  margin-top:0;
}
.vp-protocol-card p { font-size:15px; color:#475569; }
.vp-protocol-features {
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.vp-protocol-features li { font-size:15px; color:#1E293B; }

/* HOW TO CHOOSE */
.vp-choose { padding:70px 0; background:#ffffff; }
.vp-choose__text {
  max-width:800px; margin:40px auto 0; font-size:17px; color:#1E293B;
}
.vp-choose ul { padding-left:18px; }
.vp-choose ul li { margin-bottom:10px; }

/* FAQ */
.vp-faq { background:#1E293B; padding:80px 0; color:#fff; }
.vp-faq__list {
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:800px;
  margin:auto;
}
.vp-faq__item { border-bottom:1px solid rgba(255,255,255,0.15); padding-bottom:14px; }
.vp-faq__q {
  width:100%; background:none; border:none;
  font-size:18px; font-weight:600; color:#fff;
  cursor:pointer; padding:10px 0; text-align:center;
  display:flex; justify-content:center; align-items:center; gap:8px;
}
.vp-faq__q:hover { color:#2ECC71; }
.vp-faq__q::before { content:"＋"; color:#2ECC71; font-size:20px; }
.vp-faq__item.active .vp-faq__q::before { transform: rotate(45deg); }
.vp-faq__a {
  display:none;
  color:#cbd5e1;
  font-size:15px;
  max-width:720px;
  margin:10px auto 0;
  text-align:left;
}
.vp-faq__item.active .vp-faq__a { display:block; }

/* RESPONSIVE */
@media(max-width:900px){
  .vp-protocols__wrapper, .vp-benefits__grid { grid-template-columns:1fr; }
}
@media(max-width:600px){
  .vp-hero__title{ font-size:32px; }
}
/* ================= ZoogVPN Security Page (namespace vs-) ================= */

.vs-section { padding:80px 0; }

/* HERO */
.vs-hero {
  padding: 110px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.vs-hero__title {
  font-size: 46px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 14px;
}
.vs-hero__subtitle {
  font-size: 17px;
  color:#475569;
  max-width:700px;
  margin:auto;
}

/* GRID */
.vs-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:28px;
  max-width:1060px;
  margin:auto;
}

/* cards */
.vs-card {
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.03);
  transition:transform .25s ease;
  text-align:center;
}
.vs-card:hover { transform:translateY(-4px); }
.vs-card h3 { font-size:22px; font-weight:700; margin-top:0; color:#1E293B; }
.vs-card p { font-size:15px; color:#475569; margin-bottom:0; }

/* List section */
.vs-list {
  list-style:none;
  padding:0;
  margin-top:32px;
  display:inline-grid;
  gap:14px;
  font-size:17px;
  color:#1E293B;
  text-align:left;
}
.vs-list li::before {
  content:"✔";
  color:#2ECC71;
  margin-right:8px;
  font-weight:bold;
}

/* FAQ */
.vs-faq { background:#1e293b; color:#fff; }
.vs-faq__list {
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:800px;
  margin:auto;
}
.vs-faq__item {
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:14px;
}
.vs-faq__q {
  width:100%; background:none; border:none;
  font-size:18px; font-weight:600; color:#fff;
  cursor:pointer; padding:10px 0;
  display:flex; justify-content:center; align-items:center; gap:8px;
}
.vs-faq__q::before { content:"＋"; color:#2ECC71; font-size:20px; }
.vs-faq__item.active .vs-faq__q::before { transform:rotate(45deg); }

.vs-faq__answer, .vs-faq__a {
  display:none;
  color:#cbd5e1;
  font-size:15px;
}
.vs-faq__item.active .vs-faq__answer,
.vs-faq__item.active .vs-faq__a {
  display:block;
  padding-top:10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vs-grid { grid-template-columns:1fr; }
  .vs-hero__title { font-size:34px; }
}
/* ================= No Logs Policy Page (namespace nl-) ================= */

.nl-section { padding:80px 0; }

/* HERO */
.nl-hero {
  padding:110px 20px 80px;
  background:#ffffff;
  border-bottom:1px solid #e2e8f0;
}
.nl-hero__title {
  font-size:46px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:12px;
}
.nl-hero__subtitle {
  font-size:17px;
  color:#475569;
  max-width:700px;
  margin:auto;
}

/* LIST */
.nl-list {
  list-style:none;
  padding:0;
  margin:40px auto 0;
  display:inline-grid;
  gap:12px;
  font-size:17px;
  color:#1E293B;
  text-align:left;
}
.nl-list li::before {
  content:"✔";
  color:#1c543b;
  margin-right:8px;
  font-weight:bold;
}

/* TEXT BLOCK */
.nl-text-block {
  max-width:800px;
  margin:40px auto 0;
  font-size:16px;
  color:#1E293B;
  text-align:left;
}
.nl-text-block ul { padding-left:18px; margin:20px 0; }
.nl-text-block ul li { margin-bottom:10px; }

/* FAQ */
.nl-faq { background:#1e293b; color:#fff; }
.nl-faq__list {
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:820px;
  margin:auto;
}
.nl-faq__item, .nl-faq__item {
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:14px;
}
.nl-faq__q {
  width:100%; background:none; border:none; cursor:pointer;
  font-size:18px; font-weight:600; color:#2ECC71; padding:10px 0;
  display:flex; justify-content:center; align-items:center; gap:8px;
}
.nl-faq__q::before { content:"＋"; color:#2ECC71; font-size:20px; }
.nl-faq__item.active .nl-faq__q::before { transform:rotate(45deg); }
.nl-faq__a { display:none; font-size:15px; color:#cbd5e1; text-align:left; max-width:720px; margin:10px auto 0; }
.nl-faq__item.active .nl-faq__a { display:block; }

/* CTA */
.nl-cta {
  background:#1E293B;
  color:#fff;
  padding:70px 20px;
  border-radius:0;
}
.nl-cta__sub {
  font-size:16px;
  color:#CBD5E1;
  margin-bottom:22px;
}

/* RESPONSIVE */
@media(max-width:800px){
  .nl-hero__title{ font-size:32px; }
  .nl-text-block{ padding:0 12px; }
}
/* ================= Pricing Page (namespace pr-) ================= */

.pr-hero {
  padding: 110px 20px 70px;
  background:#ffffff;
  border-bottom:1px solid #e2e8f0;
}
.pr-hero__title {
  font-size:46px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:14px;
}
.pr-hero__subtitle {
  font-size:17px;
  color:#475569;
  max-width:700px;
  margin:auto;
}

.pr-section-title, .pr-section-title h2, .pr-section-title {
  font-size:34px;
  margin-bottom:40px;
  color:#1E293B;
}

/* ===== PRICING GRID (обновлено) ===== */

.pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Карточка — flex-колонка, чтобы кнопка прижималась вниз */
.pr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #ffffff;
  padding: 26px 22px 24px;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;

  transition: transform .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
  min-height: 230px; /* общая минимальная высота для выравнивания */
}

.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* Верхняя часть карточки — текст */
.pr-card__period {
  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin: 0 0 6px;
}

.pr-card__price {
  font-size: 30px;
  font-weight: 700;
  color: #1c543b;
  margin-bottom: 8px;
}

.pr-card__price span {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
}

.pr-card__text {
  font-size: 14px;
  color: #475569;
  margin: 0 0 14px;
  min-height: 34px; /* чтобы тексты разной длины не «ломали» высоту ряда */
}

/* Кнопка — внизу карточки */
.pr-btn {
  margin-top: auto;
}

/* Бейдж "Популярно" */
.pr-card__badge {
  position: absolute;
  top: -10px;
  right: -6px;
  background: #2ECC71;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Адаптив: уже не нужен жёсткий пересчёт колонок,
   но на очень узких всё равно подправим */
@media (max-width: 700px) {
  .pr-hero__title {
    font-size: 32px;
  }

  .pr-card {
    min-height: 0; /* на мобилках можно снять ограничение */
  }
}

/* table */
.pr-table-wrapper { overflow-x:auto; margin-top:34px; }
.pr-table {
  width:100%;
  border-collapse:collapse;
  font-size:15px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
}
.pr-table th, .pr-table td {
  padding:14px 12px;
  border-bottom:1px solid #e2e8f0;
}
.pr-table th { background:#f1f5f9; font-weight:600; }
.pr-table tr:last-child td { border-bottom:none; }

/* list */
.pr-list {
  list-style:none;
  padding:0;
  margin:34px auto 0;
  max-width:760px;
  display:inline-grid;
  gap:12px;
  font-size:17px;
  color:#1E293B;
  text-align:left;
}
.pr-list li::before {
  content:"✔";
  color:#1c543b;
  margin-right:8px;
  font-weight:bold;
}

/* FAQ */
.pr-faq { background:#1e293b; color:#fff; }
.pr-faq__list {
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.pr-faq__item {
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:14px;
}
.pr-faq__q {
  width:100%;
  background:none;
  border:none;
  font-size:18px;
  font-weight:600;
  color:#fff;
  cursor:pointer;
  text-align:center;
  padding:10px 0;
}
.pr-faq__a { display:none; font-size:15px; color:#cbd5e1; }
.pr-faq__item.active .pr-faq__a { display:block; }

/* responsive */
@media(max-width:700px){ .pr-hero__title{font-size:32px;} }
/* ================= Support Page (namespace sp-) — ISOLATED ================= */

.sp-section { padding: 80px 0; }

/* HERO */
.sp-hero {
  padding: 110px 20px 70px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.sp-hero__title {
  font-size: 46px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 14px;
}
.sp-hero__subtitle {
  font-size: 17px;
  color:#475569;
  max-width: 700px;
  margin: 0 auto;
}

/* SUPPORT BOX */
.sp-support-box {
  background:#1E293B;
  color:#fff;
  padding:18px 20px;
  border-radius:12px;
  display:inline-block;
  margin-top:20px;
  font-size:15px;
  box-shadow:0 2px 12px rgba(0,0,0,0.12);
}
.sp-support-box p { margin: 6px 0; }

/* TAGS */
.sp-tags {
  list-style:none;
  padding:0;
  margin:40px auto 0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 18px;
  max-width:840px;
}
.sp-tags li {
  background:#fff;
  color:#1E293B;
  padding:10px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight:500;
  border:1px solid #e5e7eb;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* BENEFITS GRID */
.sp-benefits { background:#f8fafc; }
.sp-benefits__grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:900px;
  margin:40px auto 0;
}
.sp-benefit-card {
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
  text-align:center;
  transition:transform .25s ease;
}
.sp-benefit-card:hover { transform:translateY(-4px); }
.sp-benefit-card h3 {
  font-size:20px;
  font-weight:700;
  margin-top:0;
  color:#1E293B;
}
.sp-benefit-card p { font-size:15px; color:#475569; margin-bottom:0; }

/* STEPS */
.sp-steps, .sp-how-to ol.sp-steps {
  max-width:760px;
  margin:40px auto 0;
  padding-left:20px;
  text-align:left;
}
.sp-steps li {
  font-size:16px;
  margin-bottom:14px;
  color:#1E293B;
}

/* Generic numbered steps list */
.sp-steps, .sp-steps-list, .sp-steps-list ol {
  counter-reset: sp-counter;
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 760px;
  text-align:left;
}
.sp-steps li, .sp-steps-list li {
  counter-increment: sp-counter;
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  color: #1E293B;
  margin-bottom: 16px;
}
.sp-steps li::before, .sp-steps-list li::before {
  content: counter(sp-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #2ECC71;
  font-size: 17px;
}

/* FAQ */
.sp-faq { background:#1e293b; color:#fff; }
.sp-faq__list {
  max-width: 820px;
  margin: auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.sp-faq__item, .sp-faq__item {
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:14px;
}
.sp-faq__q {
  width:100%;
  background:none;
  border:none;
  font-size:18px;
  font-weight:600;
  color:#fff;
  cursor:pointer;
  text-align:center;
  padding:10px 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}
.sp-faq__q::before {
  content:"＋";
  color:#2ECC71;
  font-size:20px;
  transition:transform .25s ease;
}
.sp-faq__item.active .sp-faq__q::before { transform: rotate(45deg); }
.sp-faq__a, .sp-faq__answer { display:none; font-size:15px; color:#cbd5e1; max-width:720px; margin:10px auto 0; text-align:left; }
.sp-faq__item.active .sp-faq__a, .sp-faq__item.active .sp-faq__answer { display:block; }

/* RESPONSIVE */
@media(max-width:900px){
  .sp-benefits__grid { grid-template-columns:1fr; }
}
@media(max-width:600px){
  .sp-hero__title { font-size:32px; }
}
