/* ZENXNET VPN - SUPER MODERN DESIGN */
:root {
    --gradient-light: #DBEDEF;
    --gradient-medium: #51D0E0;
    --gradient-dark: #008798;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --shadow-light: rgba(81, 208, 224, 0.1);
    --shadow-medium: rgba(81, 208, 224, 0.2);
    --shadow-dark: rgba(0, 135, 152, 0.3);
    --zen-border-radius: 1rem;
    --zen-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --zen-primary-gradient: linear-gradient(135deg, var(--gradient-medium), var(--gradient-dark));
    --zen-primary-solid: var(--gradient-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--gradient-light) 0%, var(--white) 50%, var(--gradient-light) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(81, 208, 224, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 135, 152, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(219, 237, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: translate(10px, -15px) rotate(1deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(-5px, 10px) rotate(-0.5deg);
        opacity: 0.9;
    }

    75% {
        transform: translate(-10px, -5px) rotate(0.5deg);
        opacity: 0.7;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(81, 208, 224, 0.02) 49%, rgba(81, 208, 224, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 135, 152, 0.02) 49%, rgba(0, 135, 152, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
    animation: subtleMove 25s linear infinite;
    opacity: 0.3;
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    color: var(--zen-primary-solid);
    text-decoration: none;
    transition: var(--zen-transition);
}

a:hover {
    color: var(--gradient-medium);
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(219, 237, 239, 0.3);
}

.section-title {
    font-size: clamp(2rem, calc(1.8rem + 1.2vw), 3.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
}

.section-title span {
    background: var(--zen-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* MODERN NAVIGATION - ЖИДКОЕ СТЕКЛО */
.navbar {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(81, 208, 224, 0.15);
    transition: var(--zen-transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(81, 208, 224, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--zen-primary-solid) !important;
    text-decoration: none;
    transition: var(--zen-transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    max-height: 30px;
    border-radius: 12px;
    transition: var(--zen-transition);
}

.navbar-brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.btn-navbar {
    background: var(--zen-primary-gradient);
    border: none;
    color: white;
    padding: 0.75rem 1rem !important;
    border-radius: var(--zen-border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: var(--zen-transition);
}

/* Override Bootstrap btn-sm padding specifically for navbar button */
a.btn.btn-sm.btn-navbar {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
}

.btn-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    color: white;
    text-decoration: none;
}

/* MODERN HERO SECTION */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--gradient-light) 0%, var(--white) 30%, var(--gradient-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-5px, -10px) rotate(1deg);
    }

    50% {
        transform: translate(10px, -5px) rotate(-1deg);
    }

    75% {
        transform: translate(-10px, 5px) rotate(0.5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.hero-title {
    font-size: clamp(2.5rem, calc(2rem + 2vw), 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    animation: heroTitleEntrance 1.2s ease-out;
}

@keyframes heroTitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title .freedom-word {
    background: linear-gradient(135deg, var(--gradient-medium) 0%, var(--gradient-dark) 50%, #00a8b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(135deg, var(--gradient-medium) 0%, var(--gradient-dark) 50%, #00a8b8 100%);
        -webkit-background-clip: text;
        background-clip: text;
        transform: scale(1);
    }

    50% {
        background: linear-gradient(135deg, #00a8b8 0%, var(--gradient-medium) 50%, var(--gradient-dark) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        transform: scale(1.05);
    }
}

.hero-title .freedom-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--gradient-medium), var(--gradient-dark));
    border-radius: 8px;
    opacity: 0.1;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

.hero-title #typed-text {
    background: var(--zen-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

@keyframes underlineGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.lead {
    font-size: clamp(1.1rem, calc(1rem + 0.3vw), 1.5rem);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 400;
    opacity: 0.9;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* СОВРЕМЕННЫЙ ГЕРОЙ-РАЗДЕЛ С УЛУЧШЕННОЙ АНИМАЦИЕЙ ЩИТА */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-graphic {
    position: relative;
    width: 350px;
    height: 350px;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--zen-primary-gradient);
    animation: heroFloat 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(81, 208, 224, 0.4);
}

.orb-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    opacity: 0.9;
    filter: blur(0.5px);
}

.orb-2 {
    width: 60px;
    height: 60px;
    top: 65%;
    right: 12%;
    animation-delay: 2s;
    opacity: 0.8;
    filter: blur(0.3px);
}

.orb-3 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    left: 18%;
    animation-delay: 4s;
    opacity: 0.7;
}

.central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--zen-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(81, 208, 224, 0.4),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(81, 208, 224, 0.1);
    animation: shieldPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.central-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shieldShine 3s ease-in-out infinite;
}

.central-icon i {
    font-size: 4rem;
    color: white;
    z-index: 1;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 25px 60px rgba(81, 208, 224, 0.4),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(81, 208, 224, 0.1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 30px 70px rgba(81, 208, 224, 0.6),
            0 0 0 15px rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(81, 208, 224, 0.2);
    }
}

@keyframes shieldShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

/* MODERN BUTTONS */
.btn-primary {
    background: var(--zen-primary-gradient);
    border: none;
    border-radius: var(--zen-border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: var(--zen-transition);
    box-shadow: 0 8px 25px var(--shadow-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ripple wave effect from center */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 400%;
    height: 400%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-primary:active {
    color: white !important;
    transform: translateY(-1px);
}

.btn-orange-gradient {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: var(--zen-border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    transition: var(--zen-transition);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ripple wave effect from center */
.btn-orange-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-orange-gradient:hover::before {
    width: 400%;
    height: 400%;
}

.btn-orange-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.btn-orange-gradient:active {
    color: white !important;
    transform: translateY(-1px);
}

/* MODERN CARDS & FEATURES */
.card-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(81, 208, 224, 0.2);
    border-radius: var(--zen-border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--zen-transition);
    box-shadow: 0 8px 30px var(--shadow-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 208, 224, 0.1), transparent);
    transition: var(--zen-transition);
}

.card-feature:hover::before {
    left: 100%;
}

.card-feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--gradient-medium);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zen-primary-gradient);
    color: white;
    font-size: 2rem;
    transition: var(--zen-transition);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.card-feature:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.card-feature h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-feature p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* MODERN PRICING CARDS */
.card-price {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(81, 208, 224, 0.2);
    border-radius: var(--zen-border-radius);
    box-shadow: 0 10px 35px var(--shadow-light);
    transition: var(--zen-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: visible;
    margin-top: 20px;
}

.card-price::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--zen-primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.card-price:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.card-price:hover::before {
    opacity: 1;
}

.card-price .card-body {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.card-price .card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 0.9;
    margin-bottom: 0.3rem;
    background: var(--zen-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-price ul.list-unstyled {
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-price ul.list-unstyled li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-light);
}

.card-price .btn {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-note {
    margin-top: 2.5rem !important;
    font-size: 1rem;
    color: var(--text-light);
}

.card-price.featured {
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-medium);
    margin-top: 20px;
}

.card-price.featured::before {
    opacity: 1;
}

.card-price.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.card-price.featured-orange::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    opacity: 1;
    inset: 0;
    z-index: 0;
}

.card-price.featured-orange {
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 1;
}

.card-price.featured-orange:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.4);
}

.badge.bg-primary {
    background: var(--zen-primary-gradient) !important;
    color: white !important;
    font-size: 0.75rem;
    padding: 0.5em 1em;
    border-radius: 50rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    box-shadow: 0 8px 25px var(--shadow-light);
    z-index: 100;
    white-space: nowrap;
    border: 2px solid white;
}

.card-price.featured .card-body {
    padding-top: 2.5rem;
}

/* УЛУЧШЕННАЯ КАРТА СЕРВЕРОВ */
.locations-section {
    /* background handled by .section:nth-child(even) */
    padding: 5rem 0 6rem 0;
    /* дополнительный отступ снизу для tooltip'ов */
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 2.2 / 1;
    overflow: visible;
    border-radius: var(--zen-border-radius);
    background: linear-gradient(135deg, rgb(233 244 246), rgb(236 246 246));
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid rgba(81, 208, 224, 0.2);
}

.world-map-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    opacity: 0.8;
    filter: contrast(1.4) brightness(0.7) sepia(10%) hue-rotate(180deg);
}

.map-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--zen-primary-gradient);
    border-radius: 50%;
    box-shadow: 0 0 15px 4px rgba(81, 208, 224, 0.4);
    transform: translate(-50%, -50%);
    animation: mapPulse 3s ease-in-out infinite;
    cursor: pointer;
    z-index: 2;
    transition: var(--zen-transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.map-point:hover {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 30px 8px rgba(81, 208, 224, 0.6);
    border-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.map-point:hover .map-label {
    opacity: 1;
    transform: translateY(-30px) scale(1);
}

.map-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.8);
    background: rgba(0, 135, 152, 0.95);
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: normal;
    opacity: 0;
    transition: var(--zen-transition);
    pointer-events: none;
    z-index: 15;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 200px;
    text-align: center;
    line-height: 1.3;
}

.map-label::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 135, 152, 0.95);
}

@keyframes mapPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px 4px rgba(81, 208, 224, 0.4);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 25px 8px rgba(81, 208, 224, 0.2);
    }
}

.location-list {
    list-style: none;
    padding-left: 0;
}

.location-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.location-list li .continent-group {
    display: inline;
}

.location-list li strong {
    font-weight: 600;
    color: var(--zen-primary-solid);
    margin-right: 0.5rem;
}

.location-list i.fas {
    width: 20px;
    text-align: center;
    color: var(--zen-primary-solid);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* BROWSER EXTENSION SECTION */
.extension-section {
    position: relative;
    overflow: hidden;
}

.extension-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="extensiondots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="%2351D0E0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23extensiondots)"/></svg>') repeat;
    pointer-events: none;
    z-index: 0;
}

.extension-content {
    position: relative;
    z-index: 1;
}

.extension-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    /* 3D perspective for tilted card effect */
    perspective: 1200px;
    display: inline-block;
}

.extension-image {
    width: 90%;
    height: auto;
    display: block;
    border-radius: 24px;
    transform-origin: center;
    /* 3D rotation - tilted view (right side) */
    transform:
        rotateY(18deg) rotateX(8deg) translateZ(0);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(81, 208, 224, 0.15);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

/* Hover effect - slightly reduces tilt and lifts */
.extension-image-wrapper:hover .extension-image {
    transform:
        rotateY(12deg) rotateX(5deg) translateZ(20px);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 80px rgba(81, 208, 224, 0.25);
}

.extension-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.extension-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--zen-border-radius);
    border: 1px solid rgba(81, 208, 224, 0.15);
    transition: var(--zen-transition);
    position: relative;
    overflow: hidden;
}

.extension-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 208, 224, 0.1), transparent);
    transition: var(--zen-transition);
}

.extension-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px var(--shadow-light);
    border-color: var(--gradient-medium);
}

.extension-feature:hover::before {
    left: 100%;
}

.extension-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--zen-primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: var(--zen-transition);
    flex-shrink: 0;
}

.extension-feature:hover .extension-feature-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.extension-feature-content h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.extension-feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.extension-cta {
    margin-top: 2rem;
    text-align: center;
}

/* COMPACT EXTENSION DESIGN */
.extension-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .extension-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .extension-features-grid {
        grid-template-columns: 1fr;
    }
}

.extension-feature-compact {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--zen-border-radius);
    border: 1px solid rgba(81, 208, 224, 0.15);
    transition: var(--zen-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.extension-feature-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 208, 224, 0.1), transparent);
    transition: var(--zen-transition);
}

.extension-feature-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
    border-color: var(--gradient-medium);
}

.extension-feature-compact:hover::before {
    left: 100%;
}

.extension-feature-icon-compact {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--zen-primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: var(--zen-transition);
}

.extension-feature-compact:hover .extension-feature-icon-compact {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.extension-feature-content-compact h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.extension-feature-content-compact p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.extension-cta-compact {
    margin-top: 2rem;
    text-align: center;
}

/* MODERN STEPS */
.steps-section {
    background: rgba(219, 237, 239, 0.2);
}

.step-item {
    text-align: center;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gradient-medium);
    background: rgba(81, 208, 224, 0.1);
    transition: var(--zen-transition);
    position: relative;
}

.step-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--zen-primary-gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--zen-transition);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--zen-primary-solid);
    transition: var(--zen-transition);
}

.step-item:hover .step-icon-wrapper {
    background: rgba(81, 208, 224, 0.2);
    transform: scale(1.1);
}

.step-item:hover .step-icon-wrapper::before {
    opacity: 1;
}

.step-item:hover .step-icon {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.step-item h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* MODERN FAQ */
.faq-section {
    /* background handled by .section:nth-child(even) */
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(81, 208, 224, 0.2);
    border-radius: var(--zen-border-radius) !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--zen-transition);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.accordion-item:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--gradient-medium);
    transform: translateY(-2px);
}

.accordion-button {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    transition: var(--zen-transition);
    border: none;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(81, 208, 224, 0.1);
    color: var(--zen-primary-solid);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008798'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ИСПРАВЛЕННЫЙ FOOTER */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border-top: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerdots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%2351D0E0" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23footerdots)"/></svg>') repeat;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer p {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 0.5rem;
}

.footer .logo-footer {
    max-height: 22px;
    border-radius: 8px;
    transition: var(--zen-transition);
    filter: brightness(1.1);
}

.footer .navbar-brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--zen-transition);
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-links i.fa-fw {
    width: 1.5em;
    text-align: center;
    opacity: 0.9;
    margin-right: 0.5rem;
    color: var(--gradient-medium);
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0 5rem;
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(2rem, calc(1.5rem + 3vw), 3.5rem);
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: clamp(1.8rem, calc(1.5rem + 1vw), 2.8rem);
        margin-bottom: 2rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .card-feature {
        padding: 2rem 1.5rem;
    }

    .map-container {
        max-width: 100%;
        aspect-ratio: 2 / 1;
    }

    .map-point {
        width: 14px;
        height: 14px;
    }

    .map-label {
        font-size: 0.7rem;
        padding: 4px 8px;
        max-width: 150px;
        bottom: -35px;
    }

    .locations-section {
        padding: 3rem 0 4rem 0;
    }

    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .extension-feature {
        padding: 1rem;
        gap: 0.75rem;
    }

    .extension-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .extension-feature-content h4 {
        font-size: 1rem;
    }

    .extension-feature-content p {
        font-size: 0.9rem;
    }

    .extension-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .extension-feature-compact {
        padding: 1.25rem 1rem;
    }

    .extension-feature-icon-compact {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .extension-image-wrapper {
        max-width: 300px;
    }

    .location-list li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .location-list i.fas {
        width: 18px;
        font-size: 1rem;
        margin-right: 0.6rem;
    }
}

@media (max-width: 576px) {

    .btn-primary,
    .btn-orange-gradient {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .card-feature,
    .card-price .card-body {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .extension-features {
        gap: 1rem;
    }

    .extension-feature {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .extension-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .extension-features-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .extension-feature-compact {
        padding: 1rem 0.75rem;
    }

    .extension-feature-icon-compact {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .extension-feature-content-compact h4 {
        font-size: 0.95rem;
    }

    .extension-feature-content-compact p {
        font-size: 0.8rem;
    }

    .extension-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .extension-image-wrapper {
        max-width: 280px;
    }

    .map-point {
        width: 12px;
        height: 12px;
    }

    .map-label {
        font-size: 0.65rem;
        padding: 3px 6px;
        max-width: 120px;
        bottom: -30px;
    }

    .locations-section {
        padding: 3rem 0 3.5rem 0;
    }

    .location-list li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .location-list i.fas {
        width: 16px;
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
}