/* home.css
   Restructured:
   1. Buttons
   2. Hero
   3. Partner Labs
   4. Stats
   5. Services
   6. CTA
   7. Health Insights
   8. Process
   9. Testimonials
   10. Journey
   Tablet responsive
   Mobile responsive
*/

/* =====================================================
   GENERAL
===================================================== */

section {
    position: relative;
}

.hero,
.stats,
.services,
.cta {
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-top: -35px;
    margin-bottom: 60px;
}

/* =====================================================
   1. BUTTONS
===================================================== */

.hero-btn {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    min-width: 180px;
}

.primary-btn {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(13,110,253,.2);
}

.primary-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13,110,253,.3);
    color: #fff;
}

.secondary-btn {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.secondary-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(13,110,253,.15);
}

/* Features */

.features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 20px;
    list-style: none;
}

.features li {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i {
    color: var(--success-color);
}

/* =====================================================
   2. HERO
===================================================== */

.hero-banner {
    padding: 30px 0;
    background: #f8fbff;
}

.hero-banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Slider */

.banner-slider {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.heroSwiper {
    width: 100%;
    padding-bottom: 0;
}

.heroSwiper .swiper-slide {
    width: 100%;
}

.banner-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1280 / 548;
    object-fit: contain;
}

.heroSwiper .swiper-pagination {
    bottom: 15px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: .6;
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    opacity: 1;
}

/* Booking Card */

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

.booking-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 14px;
    text-align: center;
}

.booking-search {
    display: flex;
    align-items: center;
    border: 2px solid #eaf1ff;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}

.booking-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 11px 16px;
    font-size: 13px;
}

.booking-search button {
    border: none;
    background: #0d6efd;
    color: #fff;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.booking-search button:hover {
    background: #0b5ed7;
}

.or-divider {
    text-align: center;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    margin: 2px 0 12px;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}

.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

.booking-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eef5ff;
    color: #0d47a1;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 11px;
    margin-bottom: 10px;
}

.booking-option:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateX(4px);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 10px;
}

.quick-action {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 600;
    color: #555;
    padding: 10px 4px;
    border-radius: 11px;
    border: 1px solid #eee;
}

.quick-action:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-3px);
}

.quick-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef5ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.quick-action:hover .quick-icon {
    background: #0d6efd;
    color: #fff;
}

/* =====================================================
   3. PARTNER LABS
===================================================== */

.partner-section {
    padding: 70px 0 90px;
    background: linear-gradient(135deg,#eef6ff,#f8fbff);
}

.partner-toggle-container {
    position: relative;
    display: flex;
    width: max-content;
    background: #fff;
    border-radius: 9999px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(13,110,253,.06);
    margin: 40px auto;
    border: 1px solid #e2e8f0;
    z-index: 1;
}

.partner-tab {
    position: relative;
    padding: 14px 28px;
    min-width: 170px;
    border: none;
    background: transparent !important;
    font-weight: 600;
    font-size: 16px;
    color: #475569;
    border-radius: 9999px;
    cursor: pointer;
    transition: color .3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none !important;
}

.partner-tab.active {
    color: #fff !important;
}

.partner-toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: #0d6efd;
    border-radius: 9999px;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    z-index: 0;
}

.partner-toggle-container.radiology-active .partner-toggle-slider {
    transform: translateX(100%);
}

.partner-grid {
    display: none !important;
}

.partner-grid.active-grid {
    display: grid !important;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.partner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
    border: 1px solid #f1f5f9;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s ease,
                border-color .3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13,110,253,.06);
    border-color: #0d6efd;
}

.partner-card-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partner-logo-container {
    width: 90px;
    height: 90px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.partner-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.partner-card-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.partner-name {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px;
}

.partner-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #f0fdf4;
    color: #166534;
    font-size: 12px;
    font-weight: 600;
    border-radius: 9999px;
}

.partner-badge i {
    color: #15803d;
    font-size: 11px;
}

.partner-card-action {
    flex-shrink: 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 9999px;
    transition: all .25s ease;
}

.partner-card:hover .action-btn {
    background: #0b5ed7;
    transform: translateX(4px);
}

/* =====================================================
   4. STATS
===================================================== */

.stats {
    position: relative;
    z-index: 10;
    background: var(--bg-card);
    margin-top: 0;
    padding: 85px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-grid div {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    text-align: center;
    padding: 40px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.stat-grid div:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13,110,253,.15);
}

.stat-grid h2 {
    color: var(--accent-color);
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-grid p {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
}

/* =====================================================
   5. SERVICES
===================================================== */

.services {
    background: var(--bg-light);
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    font-size: 40px;
    color: var(--text-title);
    margin-bottom: 60px;
    font-weight: 800;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.service-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(13,110,253,.12);
    box-shadow: 0 4px 12px rgba(13,110,253,.05);
    transition: var(--transition-smooth);
}

/* Scoped to service cards so Bootstrap/other .card elements are not overridden */
.service-grid .card {
    background: var(--bg-card);
    padding: 45px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.service-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-grid .card:hover .service-icon {
    transform: scale(1.08) rotate(5deg);
    background: var(--accent-color);
    color: #fff;
}

.service-grid .card h3 {
    margin: 18px 0 12px;
    font-size: 21px;
    color: var(--text-title);
    font-weight: 700;
}

.service-grid .card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   6. CTA
===================================================== */

.cta {
    background: linear-gradient(135deg,var(--accent-color),#094cb3);
    padding: 90px 0;
    text-align: center;
    border-radius: 40px 40px 0 0;
    color: #fff;
}

.cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.cta p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: .9;
}

.cta .primary-btn {
    background: #fff;
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.cta .primary-btn:hover {
    background: #f8fafc;
    color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,.1);
}

/* =====================================================
   7. HEALTH INSIGHTS
===================================================== */

.health-insights {
    padding: 100px 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 42px;
    color: #0d47a1;
    font-weight: 700;
}

.section-heading p {
    margin-top: 15px;
    color: #666;
    font-size: 18px;
}

.insight-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    background: linear-gradient(135deg,#eef6ff,#f9fcff);
    padding: 60px;
    border-radius: 30px;
    border: 2px solid #dcecff;
}

.insight-image {
    position: relative;
    text-align: center;
}

.insight-image img {
    width: 330px;
}

.insight-box {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.insight-box .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 26px;
    transition: .3s;
}

.insight-box:hover .icon {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1);
}

.insight-box h3 {
    margin-bottom: 10px;
    color: #0d47a1;
}

.insight-box p {
    color: #666;
    line-height: 28px;
}

.pulse {
    position: absolute;
    border: 3px solid #0d6efd;
    border-radius: 50%;
    animation: pulse 2.5s infinite;
}

.pulse1 {
    width: 120px;
    height: 120px;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}

.pulse2 {
    width: 180px;
    height: 180px;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%,-50%) scale(.6);
        opacity: 1;
    }
    100% {
        transform: translate(-50%,-50%) scale(1.4);
        opacity: 0;
    }
}

/* =====================================================
   8. PROCESS
===================================================== */

.process {
    padding: 100px 0;
    background: #f8fbff;
}

.process-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 20px;
    background: #eef5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #0d6efd;
}

/* =====================================================
   9. TESTIMONIALS
===================================================== */

.testimonial-section {
    padding: 100px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.testimonial-header img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #edf5ff;
    flex-shrink: 0;
    margin: 0;
}

.testimonial-user {
    flex: 1;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #444;
}

.testimonial-user span {
    display: block;
    color: #777;
    font-size: 18px;
    margin: 4px 0 8px;
}

.stars {
    color: #ffb400;
    font-size: 18px;
    margin: 0;
}

.review-title {
    font-size: 30px;
    font-weight: 600;
    color: #555;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* Keep testimonial Swiper styling scoped */
.testimonial-section .swiper {
    padding-bottom: 60px;
}

.testimonial-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #0d6efd;
}

.testimonial-section .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 20px;
}
/* =====================================================
   10. JOURNEY
===================================================== */

.journey {
    padding: 80px 0;
    background: #f8fbff;
    overflow: hidden;
}

.journey-heading {
    text-align: center;
    margin-bottom: 40px;
}

.journey-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0d47a1;
    margin-bottom: 10px;
}

.journey-heading p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.journeySwiper {
    padding: 10px 5px 55px;
    overflow: visible;
}

.journeySwiper .swiper-slide {
    height: auto;
}

.journey-card {
    height: 100%;
    background: #fff;
    padding: 18px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e8eef7;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13,110,253,.12);
}

.journey-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 16px;
}

.journey-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform .5s ease;
}

.journey-card:hover .journey-image img {
    transform: scale(1.08);
}

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    z-index: 2;
}

.step-tag {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
}

.step-tag.blue {
    background: #eaf4ff;
    color: #0d6efd;
}

.step-tag.green {
    background: #e9fff1;
    color: #14a44d;
}

.step-tag.red {
    background: #ffe9ef;
    color: #d63384;
}

.step-tag.pink {
    background: #fff0f6;
    color: #d63384;
}

.journey-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 8px;
}

.journey-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.journey-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 20px;
    background: #0d6efd;
}
/* =====================================================
   TABLET ONLY / TABLET + MOBILE
   Applies at 991px and below
===================================================== */

@media (max-width: 991px) {

    /* Hero */
    .hero-banner {
        padding: 20px 0;
    }

    .hero-banner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .banner-slider,
    .heroSwiper,
    .heroSwiper .swiper-wrapper,
    .heroSwiper .swiper-slide {
        width: 100%;
    }

    .banner-image {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .booking-card {
        width: 100%;
    }

    /* Partner Labs */
    .partner-grid.active-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .partner-card {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 10px;
    }

    .partner-card-body {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .partner-logo-container {
        width: 70px;
        height: 70px;
        padding: 6px;
    }

    .partner-card-details {
        align-items: center;
        text-align: center;
    }

    .partner-name {
        font-size: 15px;
        margin: 0 0 6px;
    }

    .partner-badges {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .partner-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .partner-card-action {
        margin-top: 12px;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        font-size: 13px;
    }

    .partner-section {
        padding: 40px 0;
    }

    .partner-section .display-5,
    .section-title h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .partner-section .lead,
    .section-title p {
        font-size: 16px;
    }
    /* ---------- Stats: 4 items in one row ---------- */

    .stats {
        padding: 20px 0 !important;
    }

    .stats .stat-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 5px !important;
    }

    .stats .stat-grid > div {
        min-width: 0 !important;
        padding: 12px 2px !important;
        border-radius: 8px;
    }

    .stats .stat-grid h2 {
        font-size: 15px !important;
        white-space: nowrap;
        margin-bottom: 3px;
    }

    .stats .stat-grid p {
        font-size: 7px !important;
        line-height: 1.2;
        margin: 0;
    }
}

/* =====================================================
   MOBILE ONLY
   One consolidated mobile block
===================================================== */

@media (max-width: 576px) {

    /* ---------- General ---------- */

    body {
        font-size: 13px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .display-5,
    .section-title h1,
    .health-insights .display-5,
    .process .display-5,
    .testimonial-section .display-5,
    .journey .display-5,
    section > .container > h2.display-5 {
        font-size: 21px !important;
        line-height: 1.25;
    }

    .lead,
    .section-title p {
        font-size: 12px !important;
        line-height: 1.5;
    }

    .partner-section,
    .stats,
    .services,
    .health-insights,
    .process,
    .testimonial-section,
    .journey {
        padding: 35px 0 !important;
    }

    .py-5 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .mb-5 {
        margin-bottom: 25px !important;
    }

    /* ---------- Buttons ---------- */

    .primary-btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 12px;
    }

    /* ---------- Hero ---------- */

    .hero-banner {
        padding: 15px 0;
    }

    .hero-banner-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .banner-slider {
        border-radius: 14px;
    }

    .booking-card {
        width: 100%;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .booking-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .booking-search {
        margin-bottom: 12px;
        border-width: 1px;
    }

    .booking-search input {
        min-width: 0;
        padding: 10px 12px;
        font-size: 11px;
    }

    .booking-search button {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .or-divider {
        font-size: 10px;
        margin: 3px 0 12px;
    }

    .booking-option {
        padding: 11px 13px;
        margin-bottom: 9px;
        border-radius: 10px;
        font-size: 11px;
    }

    .booking-option i {
        font-size: 11px;
    }

    .quick-actions {
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 6px;
        padding-top: 10px;
    }

    .quick-action {
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 9px 2px;
        gap: 5px;
        border-radius: 10px;
        font-size: 8px;
        line-height: 1.3;
    }

    .quick-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* ---------- Partner Labs ---------- */

    .section-title {
        margin-bottom: 22px !important;
    }

    .section-title .badge {
        font-size: 10px !important;
        padding: 7px 14px !important;
    }

    .partner-toggle-container {
        width: 100%;
        max-width: 320px;
        padding: 4px;
    }

    .partner-tab {
        padding: 12px 0;
        min-width: 0;
        flex: 1;
        justify-content: center;
        font-size: 14px;
    }

    .partner-toggle-slider {
        top: 4px;
        left: 4px;
        height: calc(100% - 8px);
        width: calc(50% - 4px);
    }

    /* ---------- Stats ---------- */

    .stat-grid {
        grid-template-columns: repeat(4,1fr);
        gap: 6px;
    }

    .stat-grid div {
        padding: 15px 4px;
        border-radius: 10px;
    }

    .stat-grid h2 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .stat-grid p {
        font-size: 9px;
        line-height: 1.25;
        margin: 0;
    }

    /* ---------- Services: Mobile ---------- */

    .services {
        padding: 24px 0 !important;
    }

    .services h2 {
        font-size: 17px !important;
        line-height: 1.2;
        margin-bottom: 5px !important;
    }

    .services .section-subtitle {
        max-width: 250px;
        margin: 0 auto 18px !important;
        font-size: 9px !important;
        line-height: 1.4;
    }

    .services .service-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .services .service-grid .card {
        min-width: 0;
        min-height: 130px;
        padding: 13px 7px;
        border-radius: 11px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .services .service-icon {
        width: 34px;
        height: 34px;
        margin: 0 auto 7px;
        font-size: 14px;
    }

    .services .service-grid .card h3 {
        font-size: 11px;
        line-height: 1.25;
        margin: 4px 0 5px;
    }

    .services .service-grid .card p {
        font-size: 8px;
        line-height: 1.45;
        margin: 0;
        color: var(--text-muted);
    }

    /* ---------- CTA ---------- */

    .cta {
        padding: 30px 15px;
        border-radius: 18px 18px 0 0;
    }

    .cta h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .cta p {
        font-size: 12px;
        margin-bottom: 18px;
    }

    /* ---------- Health Insights ---------- */

    .health-insights .row {
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }

    .health-insights h4 {
        font-size: 14px;
    }

    .health-insights p {
        font-size: 11px;
        line-height: 1.5;
    }

    .health-insights .icon-circle {
        flex-shrink: 0;
    }

    /* ---------- Process ---------- */

    .process .row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .process .col-md-6 {
        width: 50%;
    }

    .process-card {
        padding: 18px 8px;
        border-radius: 12px;
    }

    .process-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .process-card h4 {
        font-size: 13px;
    }

    .process-card p {
        font-size: 10px;
        line-height: 1.4;
        margin: 0;
    }

    /* ---------- Testimonials ---------- */

    .testimonial-card {
        padding: 18px;
        border-radius: 14px;
    }

    .testimonial-header {
        gap: 10px;
        margin-bottom: 14px;
    }

    .testimonial-header img {
        width: 48px;
        height: 48px;
    }

    .testimonial-user h4 {
        font-size: 15px;
    }

    .testimonial-user span,
    .stars {
        font-size: 11px;
    }

    .review-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .testimonial-card p {
        font-size: 11px;
        line-height: 1.6;
    }

    /* ---------- Journey ---------- */

    .journey-card {
        padding: 14px;
        border-radius: 14px;
    }

    .journey-image img {
        height: 130px;
    }

    .journey-card h4 {
        font-size: 15px;
        margin-bottom: 7px;
    }

    .journey-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    .step-tag {
        padding: 6px 12px;
        font-size: 9px;
        margin-bottom: 10px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    /* ---------- FAQ ---------- */

    .accordion-button {
        font-size: 12px;
        padding: 14px;
    }

    .accordion-body {
        font-size: 11px;
        padding: 14px;
    }
    /* ---------- Stats: 4 items in one row ---------- */

    .stats {
        padding: 20px 0 !important;
    }

    .stats .stat-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 5px !important;
    }

    .stats .stat-grid > div {
        min-width: 0 !important;
        padding: 12px 2px !important;
        border-radius: 8px;
    }

    .stats .stat-grid h2 {
        font-size: 15px !important;
        white-space: nowrap;
        margin-bottom: 3px;
    }

    .stats .stat-grid p {
        font-size: 7px !important;
        line-height: 1.2;
        margin: 0;
    }
}
