/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .nav-center {
        margin: 1rem 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .tutorial-info {
        text-align: center;
    }

    .page-container {
        padding: 1rem;
    }

    .page-content {
        padding: 1rem;
        border: 1px solid #2d3748 !important;
    }

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

    .plan-card.featured {
        order: -1;
    }
} 