/* Expert Network Section */
.expert-network-section {
    padding: 8rem 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, transparent 40%), radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
    overflow: hidden;
}

.expert-network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.expert-network-section .value-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .expert-network-section .value-card:hover {
        transform: translateY(-12px);
        background: #ffffff;
        border-color: var(--accent);
        box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
    }

.expert-network-section .icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expert-network-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    line-height: 1.3;
}

.expert-network-section p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Specific Badge Colors */
.bg-blue-accent {
    background: linear-gradient(135deg, #2563eb, #60a5fa) !important;
}

.bg-green-accent {
    background: linear-gradient(135deg, #059669, #34d399) !important;
}

.bg-yellow-accent {
    background: linear-gradient(135deg, #d97706, #fbbf24) !important;
}

/* Expert CTA Box */
.expert-cta-box {
    background: var(--portal);
    border-radius: 32px;
    padding: 5rem 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

    .expert-cta-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--accent);
    }

    .expert-cta-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 4rem;
        color: white;
    }

.expert-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.expert-cta-item {
    text-align: center;
}

    .expert-cta-item .icon-large {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        margin-left: auto;
        margin-right: auto;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .expert-cta-item:hover .icon-large {
        transform: translateY(-8px) rotate(8deg);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .expert-cta-item h4 {
        font-size: 1.4rem;
        font-family: 'Playfair Display', serif;
        margin-bottom: 1rem;
        color: #fff;
    }

    .expert-cta-item p {
        color: #94a3b8;
        font-size: 1rem;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .expert-network-section {
        padding: 5rem 0;
    }

    .expert-cta-box {
        padding: 3rem 1.5rem;
    }

        .expert-cta-box h3 {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
        }
}
