/* How We Work section styles */
.how-we-work {
    padding: 100px 0;
    background: #1E3A8A;
    color: white;
}

.how-we-work .section-header {
    margin-bottom: 60px;
}

.how-we-work .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.how-we-work .section-header h2 {
    color: white;
}

.how-we-work .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    color: #1E293B;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3B82F6;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card.active {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.step-card.active::before {
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-card.active:hover {
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.step-badge {
    display: inline-block;
    background: #3B82F6;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card.active .step-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1E293B;
}

.step-card.active h3 {
    color: white;
}

.step-card p {
    color: #64748B;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-card.active p {
    color: rgba(255, 255, 255, 0.9);
}