body { font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; }
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.pricing-card:hover { transform: translateY(-10px); transition: all 0.3s ease; }
.lang-hidden { display: none; }
.lang-btn.active { background: #2563eb; border-color: #2563eb; color: #ffffff; }
.testimonial-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track { -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
}
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
    padding: 24px;
}
.modal.open { display: flex; }
.modal-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: #0b0f1a;
    color: #ffffff;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.1); }
