/* ===== RESPONSIVE STYLES ===== */

/* Large Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        gap: 40px;
    }
}

/* Tablets and Small Desktops */
@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--light);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .feature-card, .pricing-card {
        padding: 25px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
}

/* Small Mobile Phones */
@media (max-width: 400px) {
    .logo span {
        font-size: 1.2rem;
    }
    
    .plan-price .amount {
        font-size: 2.8rem;
    }
    
    .dashboard-frame {
        transform: perspective(1000px) rotateY(0);
    }
    
    .dashboard-frame:hover {
        transform: perspective(1000px) rotateY(0);
    }
}

/* Print Styles */
@media print {
    .navbar, .cta, .footer, .modal, .hero-buttons {
        display: none !important;
    }
    
    body {
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
    
    section {
        padding: 40px 0;
        break-inside: avoid;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
}