@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(12, 74, 110, 0.9) 100%);
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
    background: rgba(15, 23, 42, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 158, 11, 0.3);
}

.pricing-card {
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.pricing-card:hover {
    transform: scale(1.03);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border: 2px solid rgba(245, 158, 11, 0.7);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: #0f172a;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-3px);
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #f59e0b;
}

.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.glow {
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}