/* Responsive Styles */

/* Large desktop and tablet */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
}

/* Tablets and small desktops */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .about-content, .digital-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .experience-badge {
        bottom: -25px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .years {
        font-size: 1.4rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Tablets and phones */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card, .pricing-card.featured {
        width: 100%;
        max-width: 400px;
        transform: none;
    }
    
    .pricing-card.featured {
        order: -1;
        margin: 1rem 0;
    }
    
    .pricing-card:hover, .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .button {
        width: 100%;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-slogan {
        font-size: 1rem;
    }
}
