/* ==========================================================================
   NIRVANA AYURVEDIC WELLNESS — RESPONSIVE BREAKPOINTS
   Scales seamlessly down from 1920px to 320px mobile displays.
   ========================================================================== */

/* Laptop & Large Screens (1440px / 1366px / 1200px) */
@media screen and (max-width: 1200px) {
    :root {
        --section-spacing: 80px;
    }

    .nrv-hero__title {
        font-size: 3rem;
    }

    .nrv-benefits__grid,
    .nrv-ingredients__grid,
    .nrv-steps,
    .nrv-dosage__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nrv-ingredient-card--highlight {
        grid-column: span 2;
    }

    .nrv-review-card {
        min-width: 400px;
    }
}

/* Tablet Landscape & Medium Screens (1024px / 992px) */
@media screen and (max-width: 992px) {
    .nrv-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nrv-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .nrv-hero__stats {
        justify-content: center;
    }

    .nrv-hero__actions {
        justify-content: center;
    }

    .nrv-why__grid,
    .nrv-journey__timeline,
    .nrv-bundles {
        grid-template-columns: 1fr;
    }

    .nrv-candidates__grid {
        grid-template-columns: 1fr;
    }

    .nrv-synergy__canvas {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nrv-synergy__svg {
        display: none;
    }

    .nrv-synergy__node {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .nrv-steps__line {
        display: none;
    }
}

/* Mobile & Small Tablets (768px / 576px / 480px / 390px / 360px / 320px) */
@media screen and (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

    .nrv-hero__title {
        font-size: 2.3rem;
    }

    .nrv-section-header__title {
        font-size: 2rem;
    }

    .nrv-benefits__grid,
    .nrv-ingredients__grid,
    .nrv-steps,
    .nrv-dosage__grid {
        grid-template-columns: 1fr;
    }

    .nrv-ingredient-card--highlight {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .nrv-ugc__masonry {
        columns: 2;
    }

    .nrv-review-card {
        min-width: 100%;
        padding: 24px;
    }

    .nrv-offer__card {
        padding: 32px 20px;
    }

    .nrv-table th, .nrv-table td {
        padding: 14px 16px;
        font-size: 0.88rem;
    }

    .nrv-table th {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .nrv-hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .nrv-hero__actions {
        flex-direction: column;
    }

    .nrv-ugc__masonry {
        columns: 1;
    }

    .nrv-slider-container {
        height: 320px;
    }
}