/* Responsive Design */

/* Large Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section .container {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .cta-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .time-value {
        font-size: 2.5rem;
        min-width: 70px;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .guarantee-box {
        padding: 30px 20px;
    }
    
    .alert-card-preview {
        padding: 20px;
    }
    
    .alert-ticker {
        font-size: 2rem;
    }
    
    .detail-row {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 5px;
    }
    
    .time-value {
        font-size: 2rem;
        min-width: 60px;
        padding: 8px;
    }
    
    .time-label {
        font-size: 0.75rem;
    }
    
    .time-separator {
        font-size: 1.25rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}