.enterprise-section {
    background: var(--wfs-darker);
}

.enterprise-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.enterprise-icon {
    color: var(--wfs-yellow);
    margin-bottom: 20px;
}

.enterprise-card h3 {
    color: var(--wfs-white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.enterprise-card p {
    color: var(--wfs-light-gray);
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    color: var(--wfs-light-gray);
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wfs-success);
    font-weight: bold;
}

.integration-showcase {
    margin-top: 80px;
    text-align: center;
}

.integration-showcase h3 {
    color: var(--wfs-white);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.integration-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.integration-logo {
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    padding: 15px 25px;
    background: rgba(229, 199, 56, 0.05);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 10px;
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.logo-placeholder:hover {
    background: rgba(229, 199, 56, 0.1);
    border-color: var(--wfs-yellow);
    color: var(--wfs-white);
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(229, 199, 56, 0.05) 0%, rgba(229, 199, 56, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.2);
}

.cta-section h3 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--wfs-light-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
