/* ===== Scroll Reveal ===== */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--mobile-menu-bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
        background-position: right center;
        background-size: cover;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-support {
        font-size: 0.9rem;
    }

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

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .device-mockup.dual {
        flex-direction: column;
        align-items: center;
    }

    .device-frame {
        width: 100%;
        max-width: 340px;
    }

    .capability-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .about-credentials {
        flex-direction: column;
        gap: 1rem;
    }

    .pre-footer-cta h2 {
        font-size: 1.5rem;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .hero-content > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .proof-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
