/* Mobile Navigation Styles */
@media (max-width: 1024px) {

    /* Force nav wrapper to stay horizontal */
    .nav-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 0;
        flex-wrap: nowrap !important;
    }

    /* Logo stays on left */
    .logo {
        flex-shrink: 0;
        z-index: 1001;
        order: 1;
    }

    .logo img {
        max-height: 35px;
        width: auto;
    }

    /* Hide desktop navigation menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    /* Force nav-actions to stay horizontal */
    .nav-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.75rem;
        flex-shrink: 0;
        order: 2;
        flex-wrap: nowrap !important;
    }

    /* Hide Sign In text, keep button */
    .nav-actions .btn-text {
        display: none !important;
    }

    /* Make Get Started button smaller */
    .nav-actions .btn-primary {
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Show mobile toggle */
    .mobile-toggle {
        display: block !important;
        z-index: 1001;
        order: 3;
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {

    /* Hero Section */
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Typography */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo img {
        max-height: 30px;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }
}