/* ===== HERO B2B ===== */
.hero-b2b {
    background: linear-gradient(rgba(10, 0, 0, 0.1), rgba(20, 0, 0, 0.5)), url('../images/hero-b2b.jpg') no-repeat center/cover;
}


/* ===== SOLUTION ===== */
.b2b-solution {
    padding: 20px;
    background-color: white;
}

.b2b-solution h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f03749;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== BENEFITS ===== */
.b2b-benefits {
    padding: 20px;
    background-color: var(--light);
}

.b2b-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ===== PARTNERS ===== */
.b2b-partners {
    padding: 20px;
    background-color: white;
}

.b2b-partners h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.partners-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-type {
    text-align: center;
    padding: 10px;
}

.partner-type img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* ===== CTA ===== */
.b2b-cta {
    padding: 20px;
    background-color: var(--light);
    color: white;
    text-align: center;
}

.b2b-cta h2 {
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-b2b h1 {
        font-size: 2.2rem;
    }
    
    .solution-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        margin-bottom: 50px;
    }
    
    .step:last-child {
        margin-bottom: 0;
    }
}