/* ========== TABLET STYLES (768px - 1023px) ========== */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-inner {
        padding: 0 30px;
    }

    .hero-split {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-block {
        flex: 1;
        padding: 2.5rem;
    }

    .hero-block h1 {
        font-size: 2rem;
    }

    .value-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: row;
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-buttons .btn {
        width: auto;
    }

    .contact-split {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        text-align: left;
    }

    .footer-brand .logo {
        margin: 0 0 1rem 0;
    }

    .footer h4 {
        text-align: left;
    }

    .footer-links ul {
        text-align: left;
    }

    .footer-contact {
        text-align: left;
    }

    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        padding: 3rem;
    }
}

/* ========== DESKTOP STYLES (1024px+) ========== */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .header-inner {
        padding: 0 40px;
        height: 80px;
    }

    .header.shrink .header-inner {
        height: 60px;
    }

    .logo {
        height: 50px;
    }

    .header.shrink .logo {
        height: 40px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        background: none;
        flex-direction: row;
        align-items: center;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .nav-menu .cta-button {
        margin-top: 0;
        margin-left: 1rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-split {
        gap: 2rem;
    }

    .hero-block {
        padding: 3rem;
    }

    .hero-block h1 {
        font-size: 2.25rem;
    }

    .hero-block p {
        font-size: 1.1rem;
    }

    .value-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-overview {
        gap: 3rem;
    }

    .service-block {
        padding: 2.5rem;
    }

    .service-block img {
        max-width: 350px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step {
        max-width: 350px;
    }

    .testimonials-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer h4 {
        text-align: left;
    }

    .footer-links ul {
        text-align: left;
    }

    .footer-contact {
        text-align: left;
    }

    .stats-grid {
        gap: 3rem;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .tab-list {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 14px 32px;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-form-container {
        padding: 3rem;
    }

    .newsletter {
        padding: 4rem 2rem;
    }

    .trust-badges {
        gap: 3rem;
    }
}

/* ========== LARGE DESKTOP (1280px+) ========== */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }

    .hero-block h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.75rem;
    }
}

/* ========== UTILITY CLASSES ========== */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}
