/* RESPONSIVE.CSS - Source: index.css.bak (Massive Restore) */
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

    .main-wrapper {
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    .nav-menu {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .logo-link {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--header-height) !important;
        overflow-x: hidden;
    }

    .main-wrapper {
        padding: 0 15px !important;
    }

    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .hero-bible {
        padding: 3rem 15px 2rem;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        overflow-wrap: anywhere;
    }

    h2 {
        font-size: 1.5rem;
        display: block;
        line-height: 1.3;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    h3 {
        font-size: 1.3rem;
        overflow-wrap: anywhere;
    }

    .calc-hero {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 2rem 0;
    }

    .calc-form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .calc-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .results-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .impact-description {
        border-left: none;
        border-top: 2px solid var(--brand-primary);
        padding: 1rem 0 0;
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
    }

    .pillar-zone {
        padding: 1.5rem !important;
    }

    .comparison-table {
        min-width: 700px;
        width: 100%;
    }

    .table-td,
    .table-th,
    .table-td-category {
        padding: 0.75rem !important;
        font-size: 0.85rem;
    }

    .table-td-category {
        min-width: 140px;
    }
}


