/* ============================================
V-GURU VPN SERVICE — ГЛАВНАЯ СТРАНИЦА
Версия: 4.1.1 | Дата: Март 2026
============================================ */

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #f5f7fa;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.06) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* PARTICLES BACKGROUND */
.particles-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, rgba(102, 126, 234, 0.2) 70%, transparent 100%);
    animation: particleFloat linear infinite;
}

.particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
    animation: particlePulse 3s ease-in-out infinite;
}

.particle-1 { width: 80px; height: 80px; top: 10%; left: 15%; animation-duration: 55s; animation-delay: 0s; }
.particle-2 { width: 60px; height: 60px; top: 25%; left: 75%; animation-duration: 48s; animation-delay: -8s; }
.particle-3 { width: 100px; height: 100px; top: 55%; left: 35%; animation-duration: 62s; animation-delay: -16s; }
.particle-4 { width: 70px; height: 70px; top: 70%; left: 80%; animation-duration: 52s; animation-delay: -24s; }
.particle-5 { width: 90px; height: 90px; top: 40%; left: 90%; animation-duration: 58s; animation-delay: -32s; }
.particle-6 { width: 65px; height: 65px; top: 80%; left: 25%; animation-duration: 50s; animation-delay: -40s; }
.particle-7 { width: 75px; height: 75px; top: 15%; left: 50%; animation-duration: 54s; animation-delay: -48s; }
.particle-8 { width: 85px; height: 85px; top: 65%; left: 60%; animation-duration: 60s; animation-delay: -56s; }
.particle-9 { width: 55px; height: 55px; top: 35%; left: 10%; animation-duration: 46s; animation-delay: -5s; }
.particle-10 { width: 95px; height: 95px; top: 85%; left: 70%; animation-duration: 65s; animation-delay: -13s; }
.particle-11 { width: 60px; height: 60px; top: 50%; left: 5%; animation-duration: 51s; animation-delay: -21s; }
.particle-12 { width: 70px; height: 70px; top: 20%; left: 85%; animation-duration: 56s; animation-delay: -29s; }

@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(25px, -30px) scale(1.05); }
    50% { transform: translate(-15px, 20px) scale(0.95); }
    75% { transform: translate(20px, 25px) scale(1.02); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes particlePulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.particle-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    height: 1px;
    transform-origin: left center;
    animation: lineFlow 5s ease-in-out infinite;
}

.line-1 { width: 200px; top: 15%; left: 20%; transform: rotate(25deg); animation-delay: 0s; }
.line-2 { width: 180px; top: 30%; left: 60%; transform: rotate(-15deg); animation-delay: 1.5s; }
.line-3 { width: 220px; top: 60%; left: 40%; transform: rotate(35deg); animation-delay: 3s; }
.line-4 { width: 190px; top: 75%; left: 30%; transform: rotate(-25deg); animation-delay: 0.8s; }
.line-5 { width: 210px; top: 45%; left: 70%; transform: rotate(15deg); animation-delay: 2.3s; }
.line-6 { width: 170px; top: 20%; left: 45%; transform: rotate(-35deg); animation-delay: 4s; }
.line-7 { width: 230px; top: 80%; left: 50%; transform: rotate(45deg); animation-delay: 1.2s; }
.line-8 { width: 160px; top: 55%; left: 15%; transform: rotate(-45deg); animation-delay: 3.5s; }

@keyframes lineFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -12s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-45%, -55%) scale(1.08); }
    66% { transform: translate(-55%, -45%) scale(0.95); }
}

/* HEADER */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 100px;
    margin-bottom: 30px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.header p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 20px 40px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* SECTIONS */
.features, .pricing {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

/* LOCATIONS */
.locations {
    padding: 20px 20px;
    border-radius: 30px;
    margin: 0px auto;
    max-width: 1100px;
    background: transparent;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.location-flag {
    width: 50px;
    height: 35px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    will-change: transform;
    animation: flagWave 3s ease-in-out infinite;
    transform-origin: top center;
}

.location-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.location-flag:hover {
    animation-duration: 1.5s;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.4));
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1.5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-1.5deg); }
}

.location-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.location-info p {
    color: #6b7280;
    font-size: 15px;
}

.location-ping {
    width: 100%;
    margin-top: 15px;
    padding: 10px 0;
    background: #d1fae5;
    color: #065f46;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 4px solid #ffd700;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pricing-card.popular:hover {
    transform: translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #ffd700;
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.pricing-days {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 25px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
}

.btn-pricing {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 30px;
    margin: 60px auto;
    max-width: 900px;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: rgba(30, 41, 59, 0.95);
    color: #cbd5e1;
    padding: 50px 20px;
    text-align: center;
    margin-top: 80px;
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
}

/* CHAT BUTTON */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
    z-index: 9998;
    border: none;
    outline: none;
    opacity: 0.9;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    opacity: 1;
}

.chat-button:active {
    transform: scale(0.95);
}

.chat-button-icon {
    font-size: 28px;
    color: white;
}

/* MODAL WINDOWS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 10000;
    padding: 40px 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    margin: 0 auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 20px;
    color: #667eea;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: #6b7280;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.error::placeholder {
    color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.form-group input.error + .error-message {
    display: block;
}

/* CAPTCHA */
.captcha-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.captcha-question {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
}

.captcha-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    outline: none;
    transition: all 0.3s;
}

.captcha-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.captcha-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    padding: 0 15px;
    color: #6b7280;
    font-size: 13px;
}

/* SOCIAL BUTTONS */
.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-social {
    flex: 1;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-social:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-2px);
}

.btn-social svg {
    width: 36px;
    height: 36px;
    display: block;
}

/* MODAL FOOTER */
.modal-footer-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.modal-footer-link p {
    font-size: 14px;
    color: #6b7280;
}

.modal-footer-link a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.modal-footer-link a:hover {
    text-decoration: underline;
}

/* RECOVERY STEPS */
.recovery-step {
    display: none;
}

.recovery-step.active {
    display: block;
}

/* OTP INPUT */
.otp-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 8px;
    font-weight: 700;
    transition: all 0.3s;
    outline: none;
}

.otp-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.otp-hint {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header {
        padding: 80px 20px 60px;
    }
    .logo {
        font-size: 80px;
    }
    .header h1 {
        font-size: 36px;
    }
    .header p {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero {
        width: 100%;
        max-width: 320px;
    }
    .features-grid,
    .pricing-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    .cta h2 {
        font-size: 32px;
    }
    .cta p {
        font-size: 18px;
    }
    .chat-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        opacity: 0.9;
    }
    .chat-button:hover {
        opacity: 1;
    }
    .chat-button-icon {
        font-size: 24px;
    }
    .particles-container {
        display: none !important;
    }
    .location-flag {
        width: 50px;
        height: 35px;
    }
    .modal-overlay {
        padding: 20px 10px;
    }
    .modal-header {
        padding: 25px 20px 20px;
    }
    .modal-body {
        padding: 20px;
    }
    .btn-social svg {
        width: 32px;
        height: 32px;
    }
}

/* PC VERSION */
@media (min-width: 1024px) {
    .particles-container {
        display: block !important;
    }
    .features, .pricing, .locations, .cta {
        max-width: 1200px !important;
    }
    .header {
        padding: 40px 40px 80px !important;
    }
    .header h1 {
        font-size: 52px;
    }
    .header p {
        font-size: 20px;
        max-width: 750px;
    }
    .logo {
        font-size: 110px;
    }
    .btn-hero {
        padding: 22px 45px;
        font-size: 18px;
        min-width: 240px;
    }
    .features, .pricing {
        padding: 60px 0px !important;
    }
    .section-title {
        font-size: 40px;
        margin-bottom: 70px;
        color: #1a1a1a;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    .feature-card {
        padding: 45px 35px;
    }
    .feature-card:hover {
        transform: translateY(-10px);
    }
    .feature-icon {
        font-size: 60px;
        margin-bottom: 28px;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    .feature-card p {
        font-size: 15px;
    }
    .locations {
        padding: 40px 0px !important;
        background: transparent !important;
    }
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    .location-card {
        padding: 40px 30px;
    }
    .location-card:hover {
        transform: translateY(-8px);
    }
    .location-flag {
        width: 80px;
        height: 55px;
    }
    .location-flag:hover {
        animation-duration: 1s;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.6));
    }
    .location-info h3 {
        font-size: 20px;
    }
    .location-ping {
        padding: 12px 0;
        font-size: 14px;
    }
    .pricing {
        padding: 40px 2px !important;
    }
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .pricing-card {
        padding: 45px 35px;
    }
    .pricing-card:hover {
        transform: translateY(-10px);
    }
    .pricing-card.popular {
        border: 2px solid #ffd700;
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    .popular-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    .pricing-card h3 {
        font-size: 20px;
    }
    .pricing-price {
        font-size: 50px;
        margin: auto 0 30px;
    }
    .btn-pricing {
        padding: 20px 40px;
        font-size: 16px;
    }
    .cta {
        padding: 45px 40px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    .cta h2 {
        font-size: 40px;
    }
    .cta p {
        font-size: 19px;
        max-width: 700px;
    }
    .cta .btn-hero {
        padding: 22px 50px;
        font-size: 18px;
    }
    .footer {
        padding: 33px 40px;
        background: rgba(30, 41, 59, 0.95);
    }
    .footer-links {
        gap: 40px;
    }
    .footer-links a {
        font-size: 15px;
    }
    .footer p {
        font-size: 14px;
    }
    .chat-button {
        width: 65px;
        height: 65px;
        bottom: 35px;
        right: 35px;
        opacity: 0.9;
    }
    .chat-button:hover {
        transform: scale(1.1);
        opacity: 1;
    }
    .chat-button-icon {
        font-size: 30px;
    }
}