@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        text-align: center;
    }

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

    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trusted-row {
        text-align: center;
        align-items: center;
    }

    .feature-panel,
    .feature-panel.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-text {
        max-width: none;
    }

    /* Hide hero product showcase on tablet */
    .hero-product-showcase {
        display: none;
    }

    .footer-row-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

}

@media (max-width: 1000px) {

    /* Resize logo on mobile */
    .nav-logo {
        height: 25px;
        margin-left: 2px;
    }

    /* Mobile Nav Overrides */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: var(--surface-1);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 80px;
        gap: 0;
        border-left: 1px solid var(--border-subtle);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 24px;
        margin-top: 8px;
    }

    .nav-mobile-actions .btn {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-pill);
        color: var(--text-primary);
    }

    .nav-mobile-actions .btn-primary {
        color: #fff;
    }

    .nav-mobile-actions a {
        border-bottom: none !important;
        padding: 10px 22px !important;
        font-size: 14px !important;
    }
}
