/* kesb-landing.css – طراحی جذاب برای صفحه فرود */

/* بخش Split-Screen */
.hero-split {
    display: flex;
    min-height: 80vh;
    overflow: hidden;
}

.hero-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.hero-business {
    background: linear-gradient(135deg, #ffffff 0%, #fef9ef 100%);
}

.hero-customer {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

/* شکل‌های تزئینی پس‌زمینه */
.hero-half::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.08;
    top: 20%;
    right: 10%;
}

.hero-customer::before {
    background: var(--orange);
    opacity: 0.12;
    left: 10%;
    right: auto;
}

.hero-half .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
    background: white;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 1;
}

.hero-half h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    z-index: 1;
    color: var(--gray-800);
}

.hero-half p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 320px;
    font-size: 1.1rem;
    z-index: 1;
}

/* بخش‌های بعدی */
.section-title {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-800);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.cards-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem 1.8rem;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--orange);
}

.card .card-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1.2rem;
    background: var(--orange-light);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ریسپانسیو لندینگ */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }
    .hero-half {
        padding: 3rem 1.5rem;
    }
    .hero-half .icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    .hero-half h2 {
        font-size: 1.8rem;
    }
}