/* Tablet Adjustments */
@media (max-width: 992px) {
    :root {
        --spacing-desktop: var(--spacing-tablet);
    }

    .hero-grid,
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .hero-image-wrapper img,
    .split-image img {
        height: 500px;
    }

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

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-desktop: var(--spacing-mobile);
    }

    .nav-links {
        display: none; /* In a full production build, this would toggle a mobile menu */
    }

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

    .hero-image-wrapper img,
    .split-image img {
        height: 400px;
    }

    .grid-3,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}