/*
Theme Name: VPN #1 Theme
Theme URI: https://example.com/vpn1
Author: Your Name
Author URI: https://example.com
Description: Лёгкая адаптивная тема для сервиса VPN #1.
Version: 1.0.0
Text Domain: vpn1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
    --vpn1-bg: #020617;
    --vpn1-bg-soft: #020617;
    --vpn1-surface: #0b1120;
    --vpn1-surface-soft: #020617;
    --vpn1-border: rgba(148, 163, 184, 0.25);
    --vpn1-primary: #22c55e;
    --vpn1-primary-soft: rgba(34, 197, 94, 0.12);
    --vpn1-primary-strong: #16a34a;
    --vpn1-accent: #38bdf8;
    --vpn1-text: #e5e7eb;
    --vpn1-text-muted: #9ca3af;
    --vpn1-danger: #f97373;
    --vpn1-radius-lg: 24px;
    --vpn1-radius-md: 18px;
    --vpn1-radius-sm: 12px;
    --vpn1-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
    --vpn1-shadow-card: 0 16px 40px rgba(15, 23, 42, 0.8);
    --vpn1-max-width: 1160px;
}

/* Базовые стили */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0f172a 0, #020617 38%, #000 100%);
    color: var(--vpn1-text);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--vpn1-accent);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus-visible {
    color: #7dd3fc;
    opacity: 0.95;
}

button {
    font-family: inherit;
}

/* Контейнер, сетки, утилиты */

.vpn1-container {
    width: 100%;
    max-width: var(--vpn1-max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.vpn1-main {
    padding-top: 40px;
    padding-bottom: 64px;
}

.vpn1-section {
    margin-bottom: 56px;
}

.vpn1-section--tight {
    margin-bottom: 32px;
}

.vpn1-section--alt {
    margin-bottom: 64px;
}

.vpn1-section__header {
    margin-bottom: 24px;
    text-align: left;
}

.vpn1-section__kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--vpn1-accent);
    margin-bottom: 8px;
}

.vpn1-section__title {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 8px;
}

.vpn1-section__subtitle {
    margin: 0;
    color: var(--vpn1-text-muted);
    max-width: 620px;
}

/* Карточки и поверхности */

.vpn1-surface {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 45%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.08), transparent 55%),
        var(--vpn1-surface);
    border-radius: var(--vpn1-radius-lg);
    border: 1px solid var(--vpn1-border);
    box-shadow: var(--vpn1-shadow-card);
    padding: 22px 22px 22px;
    position: relative;
    overflow: hidden;
}

.vpn1-surface--soft {
    background: rgba(15, 23, 42, 0.9);
    border-radius: var(--vpn1-radius-md);
    border: 1px solid rgba(51, 65, 85, 0.8);
    box-shadow: var(--vpn1-shadow-soft);
}

.vpn1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.28);
    font-size: 12px;
    color: var(--vpn1-text-muted);
}

.vpn1-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #bbf7d0 0, #16a34a 60%, #052e16 100%);
}

/* Кнопки */

.vpn1-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.vpn1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
    text-decoration: none;
    white-space: nowrap;
}

.vpn1-btn--primary {
    background: radial-gradient(circle at top left, #4ade80 0, #22c55e 45%, #16a34a 100%);
    color: #022c22;
    box-shadow: 0 18px 48px rgba(34, 197, 94, 0.55);
}

.vpn1-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 52px rgba(34, 197, 94, 0.75);
}

.vpn1-btn--ghost {
    background: rgba(15, 23, 42, 0.8);
    color: var(--vpn1-text);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.vpn1-btn--ghost:hover {
    border-color: rgba(248, 250, 252, 0.8);
    background: rgba(15, 23, 42, 0.94);
}

.vpn1-btn--sm {
    padding: 7px 13px;
    font-size: 13px;
}

/* Header / навигация */

.vpn1-header-shell {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.74), transparent);
    border-bottom: 1px solid rgba(30, 64, 175, 0.35);
}

.vpn1-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: var(--vpn1-max-width);
    margin: 0 auto;
}

.vpn1-logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.vpn1-logo__mark {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 10%, #e5f9ff 0, #22c55e 45%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.7);
    overflow: hidden;
}

.vpn1-logo__mark-inner {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(15, 23, 42, 0.92);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.vpn1-logo__text {
    display: flex;
    flex-direction: column;
}

.vpn1-logo__brand {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.vpn1-logo__tagline {
    font-size: 11px;
    color: var(--vpn1-text-muted);
}

/* Навигация */

.vpn1-nav {
    display: none;
}

.vpn1-nav__list {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vpn1-nav__link {
    font-size: 14px;
    color: var(--vpn1-text-muted);
    padding: 6px 0;
    position: relative;
}

.vpn1-nav__link--active,
.vpn1-nav__link:hover {
    color: var(--vpn1-text);
}

.vpn1-nav__link--active::after,
.vpn1-nav__link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--vpn1-primary), var(--vpn1-accent));
}

/* Выпадающее меню “Приложения” */

.vpn1-nav__item--has-children {
    position: relative;
}

.vpn1-nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.vpn1-nav__caret {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.vpn1-nav__dropdown {
    position: absolute;
    right: 0;
    top: 130%;
    min-width: 210px;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    padding: 8px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.95);
    display: none;
}

.vpn1-nav__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
}

.vpn1-nav__dropdown-item {
    margin: 0;
}

.vpn1-nav__dropdown-link {
    display: block;
    padding: 7px 9px;
    font-size: 13px;
    border-radius: 12px;
    color: var(--vpn1-text-muted);
}

.vpn1-nav__dropdown-link:hover {
    background: rgba(15, 23, 42, 0.96);
    color: var(--vpn1-text);
}

/* Бургер */

.vpn1-burger {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 9px;
    cursor: pointer;
}

.vpn1-burger__line {
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
}

/* Мобильное меню */

.vpn1-mobile-nav {
    display: none;
    border-top: 1px solid rgba(30, 64, 175, 0.35);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96) 40%, rgba(15, 23, 42, 0.94) 100%);
}

.vpn1-mobile-nav__inner {
    max-width: var(--vpn1-max-width);
    margin: 0 auto;
    padding: 10px 16px 16px;
}

.vpn1-mobile-nav__list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vpn1-mobile-nav__link {
    display: block;
    padding: 8px 4px;
    font-size: 15px;
    color: var(--vpn1-text-muted);
}

.vpn1-mobile-nav__link--active {
    color: var(--vpn1-text);
    font-weight: 500;
}

.vpn1-mobile-nav__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px 4px;
	margin-bottom: 18px;
    background-color: #182547;
}

.vpn1-mobile-nav__group-label {
    font-size: 15px;
    color: var(--vpn1-text-muted);
}

.vpn1-mobile-nav__group-caret {
    font-size: 13px;
    color: var(--vpn1-text-muted);
}

.vpn1-mobile-nav__group-list {
    list-style: none;
    margin: 0;
    padding: 4px 0 4px 12px;
    display: none;
}

.vpn1-mobile-nav__group-link {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--vpn1-text-muted);
}

/* Hero */

.vpn1-hero {
    display: grid;
    gap: 26px;
}

.vpn1-hero__left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vpn1-hero__title {
    font-size: 30px;
    line-height: 1.15;
    margin: 0;
}

.vpn1-hero__title span {
    background-image: linear-gradient(to right, #4ade80, #22c55e, #38bdf8);
    -webkit-background-clip: text;
    color: transparent;
}

.vpn1-hero__subtitle {
    color: var(--vpn1-text-muted);
    margin: 0;
    max-width: 520px;
}

.vpn1-hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vpn1-hero__bullet {
    font-size: 13px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.9);
    color: var(--vpn1-text-muted);
}

.vpn1-hero__meta {
    font-size: 13px;
    color: var(--vpn1-text-muted);
}

.vpn1-hero__right {
    position: relative;
}

.vpn1-hero-illustration {
    position: relative;
    padding: 18px 18px 18px;
    border-radius: var(--vpn1-radius-lg);
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.98) 34%, #020617 100%);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
    overflow: hidden;
}

.vpn1-hero-illustration__glow {
    position: absolute;
    inset: 8%;
    background:
        radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(circle at 80% 26%, rgba(34, 197, 94, 0.18), transparent 54%),
        radial-gradient(circle at 40% 90%, rgba(52, 211, 153, 0.18), transparent 50%);
    opacity: 0.95;
    filter: blur(2px);
}

.vpn1-hero-illustration__device {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top, #020617 0, #020617 30%, #0b1120 100%);
    padding: 14px 12px 16px;
    max-width: 320px;
    margin: 0 auto;
}

.vpn1-hero-illustration__device-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.vpn1-hero-illustration__device-dots {
    display: flex;
    gap: 4px;
}

.vpn1-hero-illustration__device-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.8);
}

.vpn1-hero-illustration__device-status {
    font-size: 11px;
    color: var(--vpn1-text-muted);
}

.vpn1-hero-illustration__map {
    position: relative;
    margin: 4px 0 10px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background:
        radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.45), transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(34, 197, 94, 0.4), transparent 52%),
        radial-gradient(circle at 40% 90%, rgba(59, 130, 246, 0.35), transparent 55%),
        #020617;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.9);
}

.vpn1-hero-illustration__node {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #bbf7d0;
    box-shadow:
        0 0 0 4px rgba(74, 222, 128, 0.35),
        0 0 18px rgba(74, 222, 128, 0.9);
}

.vpn1-hero-illustration__node--ru { top: 32%; left: 52%; }
.vpn1-hero-illustration__node--eu { top: 42%; left: 46%; }
.vpn1-hero-illustration__node--us { top: 56%; left: 18%; }
.vpn1-hero-illustration__node--asia { top: 55%; left: 70%; }

.vpn1-hero-illustration__device-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.vpn1-hero-illustration__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.65);
    color: var(--vpn1-text-muted);
}

/* Преимущества, сетки, списки */

.vpn1-grid {
    display: grid;
    gap: 16px;
}

.vpn1-grid--3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.vpn1-grid--4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.vpn1-feature-card {
    border-radius: var(--vpn1-radius-md);
    border: 1px solid rgba(30, 64, 175, 0.8);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 52%),
        rgba(15, 23, 42, 0.96);
    padding: 16px 15px 15px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.9);
}

.vpn1-feature-card__icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #4ade80, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 32px rgba(34, 197, 94, 0.8);
    margin-bottom: 10px;
}

.vpn1-feature-card__title {
    margin: 0 0 4px;
    font-size: 15px;
}

.vpn1-feature-card__text {
    margin: 0;
    font-size: 14px;
    color: var(--vpn1-text-muted);
}

/* Список с иконками */

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

.vpn1-list--check li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
}

.vpn1-list--check span.vpn1-list__icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 2px;
}

.vpn1-list__text {
    color: var(--vpn1-text-muted);
}

/* Тарифы */

.vpn1-pricing {
    display: grid;
    gap: 18px;
}

.vpn1-pricing__card {
    border-radius: var(--vpn1-radius-md);
    border: 1px solid rgba(30, 64, 175, 0.9);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
        rgba(15, 23, 42, 0.98);
    padding: 18px 16px 16px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.9);
    position: relative;
}

.vpn1-pricing__card--popular {
    border-color: rgba(34, 197, 94, 0.9);
    box-shadow: 0 22px 52px rgba(34, 197, 94, 0.6);
}

.vpn1-pricing__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.8);
}

.vpn1-pricing__title {
    margin: 0 0 4px;
    font-size: 16px;
}

.vpn1-pricing__subtitle {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--vpn1-text-muted);
}

.vpn1-pricing__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.vpn1-pricing__price {
    font-size: 22px;
    font-weight: 700;
}

.vpn1-pricing__price-period {
    font-size: 13px;
    color: var(--vpn1-text-muted);
}

/* FAQ */

.vpn1-faq {
    border-radius: var(--vpn1-radius-md);
    border: 1px solid rgba(30, 64, 175, 0.9);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--vpn1-shadow-card);
    padding: 12px 12px 6px;
}

.vpn1-faq-item + .vpn1-faq-item {
    border-top: 1px solid rgba(30, 64, 175, 0.7);
}

.vpn1-faq__question {
    width: 100%;
    padding: 10px 4px;
    background: transparent;
    border: none;
    color: var(--vpn1-text);
    font-size: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}

.vpn1-faq__title {
    flex: 1;
}

.vpn1-faq__icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--vpn1-text-muted);
}

.vpn1-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.18s ease;
    font-size: 14px;
    color: var(--vpn1-text-muted);
}

.vpn1-faq-item--open .vpn1-faq__answer {
    padding-bottom: 8px;
}

/* Подвал */

.vpn1-footer {
    border-top: 1px solid rgba(30, 64, 175, 0.6);
    padding: 28px 0 24px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617 22%, #000 100%);
}

.vpn1-footer__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
}

.vpn1-footer__col-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--vpn1-text-muted);
    margin-bottom: 6px;
}

.vpn1-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vpn1-footer__link a {
    font-size: 13px;
    color: var(--vpn1-text-muted);
}

.vpn1-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: var(--vpn1-text-muted);
}

/* Типовые страницы */

.vpn1-page-head {
    margin-bottom: 24px;
}

.vpn1-page-head__eyebrow {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vpn1-accent);
    margin-bottom: 6px;
}

.vpn1-page-head__title {
    margin: 0 0 6px;
    font-size: 26px;
}

.vpn1-page-head__subtitle {
    margin: 0;
    color: var(--vpn1-text-muted);
    max-width: 640px;
}

.vpn1-page-layout {
    display: grid;
    gap: 20px;
}

.vpn1-page-layout--with-sidebar {
    display: grid;
    gap: 20px;
}

/* Блоки CTA */

.vpn1-cta {
    border-radius: var(--vpn1-radius-lg);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.16), transparent 50%),
        rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(151, 208, 255, 0.45);
    padding: 18px 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    display: grid;
    gap: 12px;
}

.vpn1-cta__title {
    margin: 0 0 4px;
    font-size: 18px;
}

.vpn1-cta__text {
    margin: 0;
    font-size: 14px;
    color: var(--vpn1-text-muted);
}

/* Формы */

.vpn1-form {
    display: grid;
    gap: 10px;
}

.vpn1-form__row {
    display: grid;
    gap: 10px;
}

.vpn1-form__label {
    font-size: 13px;
    color: var(--vpn1-text-muted);
    margin-bottom: 3px;
}

.vpn1-form__input,
.vpn1-form__textarea,
.vpn1-form__select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(15, 23, 42, 0.96);
    color: var(--vpn1-text);
    padding: 9px 10px;
    font-size: 14px;
}

.vpn1-form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* 404 */

.vpn1-404 {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.vpn1-404__code {
    font-size: 80px;
    line-height: 1;
    margin: 0 0 10px;
    background-image: linear-gradient(to right, #38bdf8, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}

.vpn1-404__title {
    margin: 0 0 6px;
    font-size: 22px;
}

.vpn1-404__text {
    color: var(--vpn1-text-muted);
    margin: 0 0 16px;
}

/* WordPress базовые */

.alignwide,
.alignfull {
    width: 100%;
    max-width: none;
}

.wp-caption {
    max-width: 100%;
}

/* Адаптивность */

@media (min-width: 640px) {
    .vpn1-main {
        padding-top: 40px;
        padding-bottom: 72px;
    }

    .vpn1-section {
        margin-bottom: 64px;
    }

    .vpn1-hero__title {
        font-size: 34px;
    }

    .vpn1-pricing {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vpn1-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vpn1-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vpn1-page-layout--with-sidebar {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }
}

@media (min-width: 860px) {
    .vpn1-header {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .vpn1-nav {
        display: block;
    }

    .vpn1-burger {
        display: none;
    }

    .vpn1-hero {
        grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.6fr);
        align-items: center;
    }

    .vpn1-hero__title {
        font-size: 38px;
    }

    .vpn1-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 859.98px) {
    .vpn1-mobile-nav--open {
        display: block;
    }

    .vpn1-hero-illustration {
        max-width: 380px;
        margin-inline: auto;
    }
}
