/* 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: 'Outfit', system-ui, 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: 1rem;
    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;
    font-size: 1rem;
    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);
}

/* Hero section buttons - равный размер */
.hero-section .btn.btn-lg {
    padding: 1rem 2.5rem !important;
    white-space: nowrap !important;
}

/* Subtitles from NEW design */
.section-subtitle {
    color: #5a6577;
    /* --muted-foreground */
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* --font-sans */
    text-align: center;
    line-height: 1.3;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* MODERN CARDS & FEATURES */
.card-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(81, 208, 224, 0.15);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    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.08), transparent);
    transition: left 0.6s ease;
}

.card-feature:hover::before {
    left: 100%;
}

.card-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 135, 152, 0.15);
    border-color: rgba(81, 208, 224, 0.3);
}

.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), 0 0 20px rgba(81, 208, 224, 0.3);
}

.card-feature:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px var(--shadow-medium), 0 0 35px rgba(81, 208, 224, 0.5);
}

.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 - New Design */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 5rem auto 0;
    align-items: start;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 224, 228, 0.5);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 135, 152, 0.15);
}

.pricing-card:not(.pricing-card-popular):hover {
    border-color: rgba(0, 135, 152, 0.3);
}

.pricing-card-inner {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 768px) {
    .pricing-card-inner {
        padding: 2rem;
    }
}

/* Популярный тариф */
.pricing-card-popular {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid transparent;
    box-shadow: 0 8px 40px rgba(255, 87, 34, 0.25);
    z-index: 10;
    margin-top: 0;
}

@media (min-width: 1024px) {
    .pricing-card-popular {
        margin-top: -0.75rem;
        margin-bottom: -0.75rem;
    }

    .pricing-card-popular .pricing-card-inner {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.pricing-card-popular:hover {
    border-color: rgba(255, 87, 34, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 87, 34, 0.25);
}

/* Бейдж "Популярный выбор" */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.35);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    border: 2px solid white;
}

.popular-badge i {
    font-size: 0.7rem;
}

/* Заголовок карточки */
.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.plan-price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plan-price .price {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    background: var(--zen-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

@media (min-width: 768px) {
    .plan-price .price {
        font-size: 3.25rem;
    }
}

.plan-price .price.orange {
    background: linear-gradient(135deg, #FF471A 0%, #FF471A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
    margin-left: 0.2rem;
    -webkit-text-fill-color: #94a3b8;
}

.plan-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}

/* Фичи */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
}

.plan-features .check {
    width: 1.4rem;
    height: 1.4rem;
    min-width: 1.4rem;
    border-radius: 50%;
    background: rgba(0, 135, 152, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #008798;
    flex-shrink: 0;
}

.plan-features .check.orange {
    background: rgba(255, 87, 34, 0.12);
    color: #ea580c;
}

/* Кнопки */
.pricing-card .btn {
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.pricing-card .btn-primary {
    background: var(--zen-primary-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 135, 152, 0.25);
    color: white;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 135, 152, 0.35);
    color: white;
}

.pricing-card .btn-orange-gradient {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    color: white;
}

.pricing-card .btn-orange-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
    color: white;
}

.pricing-note {
    margin-top: 2.5rem !important;
    font-size: 1rem;
    color: #64748b;
}

.pricing-note i {
    color: #fb923c;
}

/* УЛУЧШЕННАЯ КАРТА СЕРВЕРОВ */
.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: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid rgba(213, 231, 234, 0.5);
}

.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);
    /* GPU acceleration for smooth loading */
    will-change: opacity;
    transform: translateZ(0);
}

.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%) translateZ(0) scale(0);
    /* Start hidden - will animate when map becomes visible */
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* GPU acceleration */
    will-change: transform, opacity;
    contain: layout style;
}

/* Animate points ONLY when map container has .visible class */
.map-container.visible .map-point {
    animation: mapPointAppear 0.6s ease-out forwards, mapPulse 3s ease-in-out 0.6s infinite;
}

/* Staggered appearance for map points - appear AFTER the map (0.5s base delay) */
.map-container.visible .map-point[data-region="europe"] {
    animation-delay: 0.5s, 1.1s;
}

.map-container.visible .map-point[data-region="asia"] {
    animation-delay: 0.7s, 1.3s;
}

.map-container.visible .map-point[data-region="asia-pacific"] {
    animation-delay: 0.9s, 1.5s;
}

.map-container.visible .map-point[data-region="oceania"] {
    animation-delay: 1.1s, 1.7s;
}

.map-container.visible .map-point[data-region="americas"] {
    animation-delay: 1.3s, 1.9s;
}

@keyframes mapPointAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.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;
}

/* NEW Locations Grid Layout */
.locations-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: 3fr 2fr;
        gap: 3rem;
    }
}

.locations-map {
    width: 100%;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.location-icon {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
    max-width: 2rem !important;
    border-radius: 8px;
    background: rgba(0, 135, 152, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.location-item:hover .location-icon {
    background: rgba(0, 135, 152, 0.2);
}

.location-icon svg {
    width: 1rem !important;
    height: 1rem !important;
    color: var(--zen-primary-solid);
    display: block;
}

.location-continent {
    font-weight: 600;
    color: var(--zen-primary-solid);
    margin-right: 0.25rem;
}

.location-countries {
    color: var(--text-muted);
}

.location-new {
    color: var(--zen-primary-solid);
    font-weight: 500;
    padding-top: 0.5rem;
}

.location-new .location-icon span {
    font-size: 1.125rem;
    color: var(--zen-primary-solid);
    font-weight: 700;
}



.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 {
    display: none;
    /* Deprecated - using clean version */
}

/* Clean image alignment - with perspective like NEW folder */
.extension-image-simple {
    width: 100%;
    height: 100%;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extension-image-clean {
    width: auto;
    max-width: 100%;
    max-height: 500px;
    /* Increased from 400px for desktop */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    /* Perspective tilt like NEW folder */
    transform: perspective(1000px) rotateY(8deg) rotateX(5deg);
    /* Strong shadow + glow like NEW folder */
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(0, 135, 152, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.extension-image-clean:hover {
    transform: perspective(1000px) rotateY(4deg) rotateX(2deg) scale(1.02);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(0, 135, 152, 0.15);
}

/* MOBILE: Smaller image */
@media (max-width: 991px) {
    .extension-image-clean {
        max-width: 260px !important;
        max-height: 350px;
        transform: none;
        /* Remove tilt on tablet/mobile */
    }
}

@media (max-width: 576px) {
    .extension-image-clean {
        max-width: 240px !important;
        max-height: 320px;
    }

    .extension-image-simple {
        padding: 1rem 0;
    }
}

/* Center extension button on ALL mobile/tablet devices */
@media (max-width: 991px) {
    .extension-cta-modern {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
    }

    .extension-cta-modern .btn {
        width: auto;
        max-width: none;
        white-space: nowrap !important;
        /* Keep text on one line */
        font-size: 0.9rem;
        /* Slightly smaller font on mobile */
        padding: 0.75rem 1.5rem;
        /* Smaller padding */
    }
}

/* ===== FULL VIEWPORT SECTIONS ===== */
/* Each main section fills the screen */
.section.features-section,
.section.locations-section,
.section.extension-section,
.section.pricing-section,
.section.steps-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
}

/* Container inside needs to handle the flex layout */
.section.features-section>.container,
.section.locations-section>.container,
.section.extension-section>.container,
.section.pricing-section>.container,
.section.steps-section>.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* On mobile reduce to auto height to avoid too much empty space */
@media (max-width: 768px) {

    .section.features-section,
    .section.locations-section,
    .section.extension-section,
    .section.pricing-section,
    .section.steps-section {
        min-height: auto;
        padding: 3rem 0;
    }
}

/* ===== FOOTER BASE STYLES ===== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Footer: Brand block goes to end on mobile */
    .footer .footer-grid .footer-brand {
        order: 99 !important;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .footer-grid .footer-section {
        order: 1;
    }
}

.extension-image {
    display: none;
}

.extension-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Replaced with modern grid below */
.extension-feature {
    display: none;
}

.extension-cta {
    display: none;
}

/* 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 EXTENSION SECTION - NEW */
.extension-features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 0.75rem;
    /* Smaller gap on mobile */
}

@media (min-width: 768px) {
    .extension-features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .extension-features-grid-modern.three-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.extension-feature-modern {
    background: #ffffff;
    border-radius: var(--radius-lg, 1rem);
    /* Match NEW folder */
    padding: 1.25rem;
    /* Match NEW folder */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal, 0.3s) ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hover effect from NEW folder: translate, glow, border color */
.extension-feature-modern:hover {
    transform: translateY(-4px);
    /* Match NEW */
    box-shadow: 0 0 40px rgba(0, 135, 152, 0.2);
    /* var(--shadow-glow) */
    border-color: rgba(0, 135, 152, 0.4);
}

.feature-icon-modern {
    width: 3rem;
    /* Match NEW: 3rem */
    height: 3rem;
    border-radius: var(--radius-lg, 1rem);
    background: linear-gradient(135deg, #51d0e0 0%, #008798 100%);
    /* var(--gradient-primary) */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Match NEW */
    margin-bottom: 1rem;
    box-shadow: 0 0 40px rgba(0, 135, 152, 0.2);
    /* var(--shadow-glow) */
    transition: transform var(--transition-normal, 0.3s) ease;
}

/* Icon rotation on hover like NEW folder */
.extension-feature-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(-3deg);
}

.feature-content-modern h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition-normal, 0.3s) ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Title color change on hover like NEW folder */
.extension-feature-modern:hover .feature-content-modern h4 {
    color: var(--primary, #008798);
}

.feature-content-modern p {
    font-size: 0.875rem;
    color: var(--muted-foreground, #5a6577);
    margin: 0;
    line-height: 1.6;
    /* Match NEW */
}

.extension-cta-modern .btn {
    background: linear-gradient(135deg, #51d0e0 0%, #008798 100%);
    /* var(--gradient-primary) */
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 135, 152, 0.2);
    /* var(--shadow-glow) */
}

.extension-cta-modern .btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 0 50px rgba(0, 135, 152, 0.4) !important;
}



/* 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) */
}

.faq-section .section-title {
    margin-bottom: 3rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-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: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 5px 20px var(--shadow-light);
    /* GPU acceleration */
    will-change: transform;
    contain: content;
}

/* Disable backdrop-filter on mobile for performance */
@media (max-width: 768px) {
    .accordion-item {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
}

.accordion-item:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--gradient-medium);
    transform: translateY(-2px) translateZ(0);
}

.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 styles moved to end of file */

/* MOBILE OPTIMIZATION FIXES */
html,
body {
    overflow-x: hidden;
}

/* Mobile-only fixes to prevent horizontal scroll */
@media (max-width: 991px) {
    .row {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .container,
    .container-fluid {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Compact navbar buttons on mobile */
    .navbar-buttons {
        gap: 0.375rem !important;
    }

    .navbar-buttons .btn-navbar {
        padding: 0.375rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .navbar-brand-text {
        font-size: 1.25rem !important;
    }

    .navbar-brand img {
        width: 32px !important;
        height: 32px !important;
    }

    /* Reset Bootstrap offset classes on mobile */
    [class*="offset-"] {
        margin-left: 0 !important;
    }

    /* Make all columns full width on mobile */
    [class*="col-md-"],
    [class*="col-lg-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Reduce hero title size */
    .hero-title {
        font-size: 1.75rem !important;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* 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%;
        /* Keep same aspect-ratio as desktop for point alignment */
    }

    .map-point {
        width: 14px;
        height: 14px;
        margin-top: -10px;
        /* Корректировка позиции на мобильных */
    }

    .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;
    }

    /* Mobile fix for extension image */
    .extension-image-clean {
        max-width: 200px;
        transform: none;
        /* Remove tilt on mobile */
        margin: 0 auto;
    }

    .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;
    }

    .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;
    }
}

/* ===== Footer ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #cbd5e1;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.footer .container {
    position: relative;
    z-index: 10;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand .logo-text {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.875rem;
    color: #64748b;
}

/* footer-section alignment handled via line-height */

.footer-title {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    margin-top: 7px;
    margin-bottom: 1rem;
    line-height: 28px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #51d0e0;
    transition: transform 0.3s ease;
}

/* Spacing for sections without subtitles */
#features .row,
.steps-section .row {
    margin-top: 3rem;
}

/* Animate on scroll from NEW */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-links a:hover .icon {
    transform: translateX(4px);
}

.footer-disclaimer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(71, 85, 105, 0.5);
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}