 /* ========== CREDENTIALING SERVICES HERO STYLES ========== */

        /* Hero Section */
        .cs-hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0, 107, 95, 0.92), rgba(0, 137, 162, 0.92)), url('images/credentialing-background.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 100px 5% 60px;
        }

        .cs-hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .cs-hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 0),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 0),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 0),
                radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 0);
            background-size: 400px 400px;
            animation: floatParticles 25s infinite linear;
        }

        @keyframes floatParticles {
            0% {
                transform: translateY(0) translateX(0);
            }
            100% {
                transform: translateY(-400px) translateX(400px);
            }
        }

        .cs-hero-content {
            max-width: 580px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        .cs-hero-title {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.3s;
        }

        .cs-hero-subtitle {
            font-size: clamp(1.3rem, 2.5vw, 1.6rem);
            margin-bottom: 28px;
            line-height: 1.4;
            font-weight: 500;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.6s;
        }

        .cs-hero-description {
            font-size: clamp(1rem, 1.8vw, 1.1rem);
            margin-bottom: 45px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.9s;
        }

        .cs-hero-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 42px;
            background: linear-gradient(135deg, #ffffff, #f0f9f8);
            color: #006c5f;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 1.2s;
            border: none;
            cursor: pointer;
        }

        .cs-hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #ffffff, #ffffff);
            color: #00544a;
        }

        .hero-visual {
            position: relative;
            width: 50%;
            max-width: 650px;
            height: 520px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .network-visualization {
            position: relative;
            width: 420px;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .central-provider {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130px;
            height: 130px;
            background: linear-gradient(135deg, #006c5f, #0089a2);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
            z-index: 10;
            text-align: center;
            animation: gentlePulse 3s ease-in-out infinite;
        }

        @keyframes gentlePulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.03);
                box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
            }
        }

        .central-provider i {
            font-size: 2.6rem;
            margin-bottom: 10px;
        }

        .central-provider span {
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
        }

        /* Insurance Network Visualization */
        .insurance-connector {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: connectorFlow 4s infinite;
        }

        .connector-line {
            position: absolute;
            width: 140px;
            height: 2px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
            transform-origin: 0% 50%;
        }

        .insurance-logo {
            position: absolute;
            width: 75px;
            height: 75px;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #006c5f;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
            transition: all 0.4s ease;
            animation: networkFloat 5s ease-in-out infinite;
            transform-origin: center;
            cursor: pointer;
        }

        /* Individual connector positioning */
        .insurance-connector:nth-child(1) { 
            transform: translate(-50%, -50%) rotate(0deg); 
        }
        .insurance-connector:nth-child(1) .connector-line { 
            transform: rotate(0deg); 
        }
        .insurance-connector:nth-child(1) .insurance-logo { 
            transform: translateX(140px) rotate(0deg); 
            animation-delay: 0s; 
        }

        .insurance-connector:nth-child(2) { 
            transform: translate(-50%, -50%) rotate(60deg); 
        }
        .insurance-connector:nth-child(2) .connector-line { 
            transform: rotate(0deg); 
        }
        .insurance-connector:nth-child(2) .insurance-logo { 
            transform: translateX(140px) rotate(-60deg); 
            animation-delay: 0.8s; 
        }

        .insurance-connector:nth-child(3) { 
            transform: translate(-50%, -50%) rotate(120deg); 
        }
        .insurance-connector:nth-child(3) .connector-line { 
            transform: rotate(0deg); 
        }
        .insurance-connector:nth-child(3) .insurance-logo { 
            transform: translateX(140px) rotate(-120deg); 
            animation-delay: 1.6s; 
        }

        .insurance-connector:nth-child(4) { 
            transform: translate(-50%, -50%) rotate(180deg); 
        }
        .insurance-connector:nth-child(4) .connector-line { 
            transform: rotate(0deg); 
        }
        .insurance-connector:nth-child(4) .insurance-logo { 
            transform: translateX(140px) rotate(-180deg); 
            animation-delay: 2.4s; 
        }

        .insurance-connector:nth-child(5) { 
            transform: translate(-50%, -50%) rotate(240deg); 
        }
        .insurance-connector:nth-child(5) .connector-line { 
            transform: rotate(0deg); 
        }
        .insurance-connector:nth-child(5) .insurance-logo { 
            transform: translateX(140px) rotate(-240deg); 
            animation-delay: 3.2s; 
        }

        .insurance-connector:nth-child(6) { 
            transform: translate(-50%, -50%) rotate(300deg); 
        }
        .insurance-connector:nth-child(6) .connector-line { 
            transform: rotate(0deg); 
        }
        .insurance-connector:nth-child(6) .insurance-logo { 
            transform: translateX(140px) rotate(-300deg); 
            animation-delay: 4s; 
        }

        @keyframes connectorFlow {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes networkFloat {
            0%, 100% {
                transform: translateX(140px) rotate(var(--rotation, 0deg)) translateY(0);
            }
            50% {
                transform: translateX(140px) rotate(var(--rotation, 0deg)) translateY(-12px);
            }
        }

        .insurance-logo:hover {
            transform: translateX(140px) rotate(var(--rotation, 0deg)) scale(1.15) translateY(0);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            background: rgba(255, 255, 255, 1);
        }

        .insurance-logo i {
            font-size: 1.7rem;
            margin-bottom: 6px;
        }

        .insurance-logo span {
            font-size: 0.68rem;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            animation: subtleFloat 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: clamp(70px, 12vw, 120px);
            height: clamp(70px, 12vw, 120px);
            top: 12%;
            left: 8%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: clamp(100px, 16vw, 160px);
            height: clamp(100px, 16vw, 160px);
            top: 68%;
            left: 82%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: clamp(60px, 10vw, 100px);
            height: clamp(60px, 10vw, 100px);
            top: 78%;
            left: 12%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            width: clamp(80px, 14vw, 140px);
            height: clamp(80px, 14vw, 140px);
            top: 22%;
            left: 78%;
            animation-delay: 6s;
        }

        @keyframes subtleFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-15px) rotate(120deg);
            }
            66% {
                transform: translateY(8px) rotate(240deg);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== RESPONSIVE HERO STYLES ========== */

        /* Large Desktop (1200px+) */
        @media (min-width: 1200px) {
            .cs-hero {
                padding: 120px 8% 80px;
            }
            
            .cs-hero-content {
                max-width: 620px;
            }
            
            .hero-visual {
                width: 55%;
                max-width: 700px;
                height: 580px;
            }
            
            .network-visualization {
                width: 480px;
                height: 480px;
            }
        }

        /* Medium Devices (Tablets, 768px - 991px) */
        @media (max-width: 991px) {
            .cs-hero {
                padding: 90px 4% 50px;
                flex-direction: column;
                text-align: center;
                min-height: auto;
            }
            
            .cs-hero-content {
                max-width: 100%;
                margin-bottom: 50px;
            }
            
            .hero-visual {
                width: 100%;
                height: 400px;
                max-width: 500px;
            }
            
            .network-visualization {
                width: 360px;
                height: 360px;
            }
            
            .connector-line {
                width: 120px;
            }
            
            .insurance-connector:nth-child(1) .insurance-logo { 
                transform: translateX(120px) rotate(0deg); 
            }
            .insurance-connector:nth-child(2) .insurance-logo { 
                transform: translateX(120px) rotate(-60deg); 
            }
            .insurance-connector:nth-child(3) .insurance-logo { 
                transform: translateX(120px) rotate(-120deg); 
            }
            .insurance-connector:nth-child(4) .insurance-logo { 
                transform: translateX(120px) rotate(-180deg); 
            }
            .insurance-connector:nth-child(5) .insurance-logo { 
                transform: translateX(120px) rotate(-240deg); 
            }
            .insurance-connector:nth-child(6) .insurance-logo { 
                transform: translateX(120px) rotate(-300deg); 
            }
            
            @keyframes networkFloat {
                0%, 100% {
                    transform: translateX(120px) rotate(var(--rotation, 0deg)) translateY(0);
                }
                50% {
                    transform: translateX(120px) rotate(var(--rotation, 0deg)) translateY(-10px);
                }
            }
            
            .insurance-logo:hover {
                transform: translateX(120px) rotate(var(--rotation, 0deg)) scale(1.1) translateY(0);
            }
        }

        /* Small Devices (Phones, 576px - 767px) */
        @media (max-width: 767px) {
            .cs-hero {
                padding: 80px 20px 40px;
            }
            
            .cs-hero-content {
                margin-bottom: 40px;
            }
            
            .hero-visual {
                height: 320px;
            }
            
            .network-visualization {
                width: 300px;
                height: 300px;
                transform: scale(0.9);
            }
            
            .central-provider {
                width: 110px;
                height: 110px;
            }
            
            .central-provider i {
                font-size: 2.2rem;
            }
            
            .connector-line {
                width: 90px;
            }
            
            .insurance-connector:nth-child(1) .insurance-logo { 
                transform: translateX(90px) rotate(0deg); 
            }
            .insurance-connector:nth-child(2) .insurance-logo { 
                transform: translateX(90px) rotate(-60deg); 
            }
            .insurance-connector:nth-child(3) .insurance-logo { 
                transform: translateX(90px) rotate(-120deg); 
            }
            .insurance-connector:nth-child(4) .insurance-logo { 
                transform: translateX(90px) rotate(-180deg); 
            }
            .insurance-connector:nth-child(5) .insurance-logo { 
                transform: translateX(90px) rotate(-240deg); 
            }
            .insurance-connector:nth-child(6) .insurance-logo { 
                transform: translateX(90px) rotate(-300deg); 
            }
            
            @keyframes networkFloat {
                0%, 100% {
                    transform: translateX(90px) rotate(var(--rotation, 0deg)) translateY(0);
                }
                50% {
                    transform: translateX(90px) rotate(var(--rotation, 0deg)) translateY(-8px);
                }
            }
            
            .insurance-logo {
                width: 65px;
                height: 65px;
            }
            
            .insurance-logo i {
                font-size: 1.4rem;
            }
            
            .insurance-logo span {
                font-size: 0.62rem;
            }
        }

        /* Extra Small Devices (Phones, under 576px) */
        @media (max-width: 575px) {
            .cs-hero {
                padding: 70px 15px 30px;
                min-height: 80vh;
            }
            
            .hero-visual {
                height: 280px;
            }
            
            .network-visualization {
                width: 260px;
                height: 260px;
                transform: scale(0.8);
            }
            
            .connector-line {
                width: 80px;
            }
            
            .insurance-connector:nth-child(1) .insurance-logo { 
                transform: translateX(80px) rotate(0deg); 
            }
            .insurance-connector:nth-child(2) .insurance-logo { 
                transform: translateX(80px) rotate(0deg); 
            }
            .insurance-connector:nth-child(3) .insurance-logo { 
                transform: translateX(80px) rotate(0deg); 
            }
            .insurance-connector:nth-child(4) .insurance-logo { 
                transform: translateX(80px) rotate(-180deg); 
            }
            .insurance-connector:nth-child(5) .insurance-logo { 
                transform: translateX(80px) rotate(-240deg); 
            }
            .insurance-connector:nth-child(6) .insurance-logo { 
                transform: translateX(80px) rotate(-300deg); 
            }
            
            @keyframes networkFloat {
                0%, 100% {
                    transform: translateX(80px) rotate(var(--rotation, 0deg)) translateY(0);
                }
                50% {
                    transform: translateX(80px) rotate(var(--rotation, 0deg)) translateY(-6px);
                }
            }
            
            .cs-hero-button {
                padding: 14px 32px;
                font-size: 1rem;
            }
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .cs-hero-title,
            .cs-hero-subtitle,
            .cs-hero-description,
            .cs-hero-button,
            .floating-element,
            .insurance-connector,
            .insurance-logo,
            .central-provider {
                animation: none;
                transition: none;
            }
            
            .cs-hero-button:hover {
                transform: none;
            }
            
            .insurance-logo:hover {
                transform: translateX(140px) rotate(var(--rotation, 0deg));
            }
        }





/* Credentialing Process Section */
.credentialing-process {
    padding: clamp(60px, 8vw, 100px) 20px;
    background: #f8fbff;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 80px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #009688;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 20px;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.process-phase {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.process-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #009688, #00bcd4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-phase:hover::before {
    transform: scaleX(1);
}

.process-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.phase-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #009688;
    margin-right: 15px;
}

.phase-icon {
    width: 50px;
    height: 50px;
    background: #e0f2f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009688;
    font-size: 1.3rem;
    margin-right: 15px;
}

.phase-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.phase-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.phase-features {
    list-style: none;
}

.phase-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.phase-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #009688;
    font-weight: 600;
}

.phase-features li:last-child {
    border-bottom: none;
}

/* Payer Network Section */
.payer-network {
    padding: clamp(60px, 8vw, 100px) 20px;
    background: white;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
}

.payer-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: #f8fbff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0f2f1;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009688, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 15px;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.payer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payer-item:hover {
    background: #e0f2f1;
    transform: translateX(5px);
}

.payer-item i {
    color: #009688;
    font-size: 0.9rem;
}

.payer-item span {
    font-weight: 500;
    color: #555;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009688, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #009688;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

/* Benefits Section */
.benefits-section {
    padding: clamp(60px, 8vw, 100px) 20px;
    background: linear-gradient(135deg, #f8fbff, #e0f2f1);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50px);
}

.benefits-orbital {
    position: relative;
    width: 400px;
    height: 400px;
}

.central-benefit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #009688, #00bcd4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-align: center;
}

.central-benefit i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.central-benefit span {
    font-size: 0.8rem;
    font-weight: 600;
}

.orbital-benefit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle)));
    width: 160px;
    transition: all 0.5s ease;
    animation: orbit 20s linear infinite;
    animation-delay: calc(var(--angle) * -0.05s);
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle)));
    }
    to {
        transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateX(180px) rotate(calc(-1 * var(--angle) - 360deg));
    }
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009688;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-text {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.benefit-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009688, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
}

/* Specialty Credentialing Section */
.specialty-credentialing {
    padding: clamp(60px, 8vw, 100px) 20px;
    background: white;
}

.specialty-container {
    max-width: 1200px;
    margin: 0 auto;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.specialty-card {
    background: #f8fbff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #009688, #00bcd4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #009688, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.specialty-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.specialty-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.specialty-payers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialty-payers span {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #009688;
    border: 1px solid #e0f2f1;
}

/* CTA Section */
.cta-section {
    padding: clamp(60px, 8vw, 100px) 20px;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.9), rgba(0, 188, 212, 0.9)), url('images/credentialing-background.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(30px, 5vw, 40px);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.cta-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: clamp(12px, 3vw, 15px) clamp(30px, 5vw, 40px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    min-width: min(100%, 200px);
}

.cta-button.primary {
    background: white;
    color: #009688;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-left.animated, .animate-right.animated {
    transform: translateX(0);
}

/* ========== COMPREHENSIVE RESPONSIVE BREAKPOINTS ========== */

/* Extra Small Devices (Phones, 320px - 575px) */
@media (max-width: 575px) {
    .cs-hero {
        padding: 70px 15px 30px;
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .credentialing-process,
    .payer-network,
    .benefits-section,
    .specialty-credentialing,
    .cta-section {
        padding: 50px 15px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-phase {
        padding: 25px 20px;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .phase-number {
        margin-right: 0;
    }
    
    .payer-categories {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-visual {
        height: 300px;
    }
    
    .benefits-orbital {
        width: 280px;
        height: 280px;
    }
    
    .orbital-benefit {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle)));
    }
    
    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Small Devices (Phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .cs-hero {
        padding: 80px 20px 40px;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .payer-categories {
        grid-template-columns: 1fr;
    }
    
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (Tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .cs-hero {
        padding: 100px 40px 60px;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 40px;
    }
    
    .network-visualization {
        height: 300px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payer-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .section-title {
        font-size: clamp(2.2rem, 4vw, 2.6rem);
    }
}

/* Large Devices (Desktops, 992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .cs-hero {
        padding: 120px 50px 80px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payer-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .network-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .specialty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cs-hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .cs-hero {
        padding: 140px 60px 100px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .payer-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .network-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .specialty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Special Breakpoints for Specific Layout Adjustments */

/* Tablet Landscape and Small Laptops */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .cs-hero {
        min-height: 100vh;
        padding: 100px 40px 60px;
    }
    
    .cs-hero-title {
        font-size: 3rem;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cs-hero-button,
    .cta-button {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .cs-hero-title,
    .cs-hero-subtitle,
    .cs-hero-description,
    .cs-hero-button,
    .floating-element,
    .insurance-connector,
    .orbital-benefit {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .process-phase:hover,
    .category-card:hover,
    .stat-card:hover,
    .specialty-card:hover,
    .cta-button:hover {
        transform: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .process-phase:hover,
    .category-card:hover,
    .stat-card:hover,
    .specialty-card:hover,
    .cta-button:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .cs-hero {
        min-height: 120vh;
        padding: 100px 20px 60px;
    }
    
    .cs-hero-title {
        font-size: 2.5rem;
    }
    
    .cs-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

/* Very Small Screens (Old Android Devices) */
@media (max-width: 360px) and (max-height: 640px) {
    .cs-hero {
        min-height: 90vh;
        padding: 60px 15px 30px;
    }
    
    .cs-hero-title {
        font-size: 2rem;
    }
    
    .cs-hero-subtitle {
        font-size: 1rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
}

/* Ultra-wide Screens */
@media (min-width: 1600px) {
    .process-timeline,
    .network-container,
    .benefits-container,
    .specialty-container {
        max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .cs-hero {
        background: #009688 !important;
        color: #000 !important;
        min-height: auto;
        padding: 50px 20px !important;
    }
    
    .cs-hero-button,
    .cta-button {
        display: none;
    }
    
    .floating-elements,
    .hero-visual {
        display: none;
    }
    
    .process-phase:hover,
    .category-card:hover,
    .stat-card:hover,
    .specialty-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Safe Area Insets for Notch Phones */
@supports (padding: max(0px)) {
    .cs-hero {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-top: max(80px, env(safe-area-inset-top));
    }
    
    @media (max-width: 575px) {
        .cs-hero {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
    }
}