    /* ============================================
       SERVICES PAGE - VITANOR MEDICAL
       ============================================ */

    /* --- Section Kicker & Heading Center --- */
    .section-kicker {
        display: inline-block;
        color: var(--secondary);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.8px;
        margin-bottom: 12px;
    }

    .section-heading-center {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 45px;
    }

    .section-heading-center h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    /* ============================================
       1. HERO
       ============================================ */
    .services-hero {
        position: relative;
        min-height: clamp(440px, 62svh, 720px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: var(--white);
        text-align: center;
    }

    .services-hero-media {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.03);
        animation: servicesHeroZoom 12s ease-in-out infinite alternate;
    }

    @keyframes servicesHeroZoom {
        to {
            transform: scale(1.09);
        }
    }

    .services-hero-overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg,
                rgba(9, 30, 55, 0.92) 0%,
                rgba(16, 54, 88, 0.78) 45%,
                rgba(22, 73, 89, 0.38) 100%);
    }

    .services-hero-content {
        position: relative;
        z-index: 2;
        max-width: 820px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .services-hero-content .hero-label {
        color: var(--accent);
        margin-bottom: 16px;
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.9rem;
    }

    .services-hero-content .hero-title {
        color: var(--white);
        font-size: clamp(2.4rem, 5vw, 4.4rem);
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -0.035em;
        margin: 0 0 16px;
    }

    .services-hero-content .hero-subtitle {
        max-width: 620px;
        color: rgba(255, 255, 255, 0.85);
        font-size: clamp(1rem, 1.2vw, 1.2rem);
        line-height: 1.7;
        margin: 0 auto;
    }

    @media (max-width: 767px) {
        .services-hero {
            min-height: 520px;
        }
        .services-hero-content .hero-title {
            letter-spacing: -0.02em;
        }
    }

    @media (max-width: 480px) {
        .services-hero {
            min-height: 460px;
        }
        .services-hero-content .hero-title {
            font-size: clamp(1.8rem, 8vw, 2.2rem);
        }
        .services-hero-content .hero-label {
            font-size: 0.7rem;
        }
        .services-hero-content .hero-subtitle {
            font-size: 0.95rem;
        }
    }

    /* ============================================
       2. BUSINESS SCOPE
       ============================================ */
    .services-scope {
        background: var(--white);
        padding-block: clamp(60px, 8vw, 100px);
    }

    .scope-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 10px;
    }

    .scope-item {
        padding: 30px 26px;
        border-radius: 18px;
        background: var(--primary-soft);
        border: 1px solid rgba(36, 59, 89, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .scope-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--box-shadow-hover);
    }

    .scope-item .scope-number {
        display: inline-block;
        font-size: 13px;
        font-weight: 800;
        color: var(--secondary);
        letter-spacing: 0.08em;
        margin-bottom: 12px;
    }

    .scope-item h3 {
        font-size: clamp(1rem, 1.15vw, 1.15rem);
        font-weight: 700;
        color: var(--primary);
        margin: 0;
        line-height: 1.4;
    }

    @media (max-width: 991px) {
        .scope-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .scope-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .scope-item {
            padding: 24px 20px;
        }
    }

    /* ============================================
       3. MARKET PRESENCE
       ============================================ */
    .services-market {
        background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
        padding-block: clamp(60px, 8vw, 100px);
    }

    .market-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 10px;
    }

    .market-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 22px;
        border-radius: 14px;
        background: var(--white);
        border: 1px solid rgba(36, 59, 89, 0.06);
        box-shadow: var(--box-shadow);
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .market-item:hover {
        background: var(--secondary-soft);
        transform: translateX(4px);
    }

    .market-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--secondary);
        color: var(--white);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .market-icon svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }

    .market-item span {
        font-size: 15px;
        font-weight: 600;
        color: var(--primary);
        line-height: 1.4;
    }

    @media (max-width: 767px) {
        .market-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .market-item {
            padding: 14px 18px;
        }
        .market-item span {
            font-size: 14px;
        }
    }

    /* ============================================
       4. WHY CHOOSE VITANOR MEDICAL
       ============================================ */
    .services-why {
        background: var(--white);
        padding-block: clamp(60px, 8vw, 100px);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 10px;
    }

    .why-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        border-radius: 14px;
        background: var(--primary-soft);
        border-left: 4px solid var(--secondary);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--box-shadow-hover);
    }

    .why-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--secondary), var(--accent));
        color: var(--white);
        font-weight: 800;
        font-size: 12px;
        flex-shrink: 0;
    }

    .why-item span {
        font-size: 15px;
        font-weight: 600;
        color: var(--primary);
        line-height: 1.4;
    }

    @media (max-width: 991px) {
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
    }

    @media (max-width: 600px) {
        .why-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .why-item {
            padding: 14px 18px;
        }
        .why-item span {
            font-size: 14px;
        }
    }

  
    /* ============================================
       RESPONSIVE - Additional Fine-Tuning
       ============================================ */
    @media (max-width: 480px) {
        .btn {
            padding: 12px 24px;
            font-size: 14px;
            width: 100%;
            justify-content: center;
            text-align: center;
        }
    }

    /* --- Reduced Motion --- */
    @media (prefers-reduced-motion: reduce) {
        .services-hero-media {
            animation: none !important;
        }
        .scope-item,
        .market-item,
        .why-item {
            transition: none !important;
            transform: none !important;
        }
        .wow {
            visibility: visible !important;
        }
        .animate__animated {
            animation: none !important;
        }
    }