.compliance-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.cert-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(229, 199, 56, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    transition: all 0.3s;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
    background: rgba(229, 199, 56, 0.05);
}

.cert-icon {
    color: var(--wfs-yellow);
    margin-bottom: 20px;
    display: inline-block;
}

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

.cert-card p {
    color: var(--wfs-light-gray);
    margin-bottom: 20px;
    min-height: 50px;
}

.cert-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0, 204, 136, 0.1);
    color: var(--wfs-success);
    border: 1px solid rgba(0, 204, 136, 0.3);
}

.compliance-features {
    margin: 80px 0;
}

.compliance-features h3 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(229, 199, 56, 0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(229, 199, 56, 0.03);
    border-color: rgba(229, 199, 56, 0.2);
}

.feature-check {
    font-size: 1.5rem;
    color: var(--wfs-success);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--wfs-white);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

.compliance-process {
    margin: 80px 0;
}

.compliance-process h3 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wfs-yellow) 0%, var(--wfs-gold) 100%);
    color: var(--wfs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--wfs-white);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
}

.process-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, var(--wfs-yellow) 0%, transparent 100%);
    position: relative;
    top: -40px;
}

.compliance-cta {
    text-align: center;
    padding: 60px;
    background: rgba(229, 199, 56, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

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

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

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
    }
    
    .process-connector {
        width: 2px;
        height: 60px;
        flex: none;
        top: 0;
        background: linear-gradient(180deg, var(--wfs-yellow) 0%, transparent 100%);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
