.services-section {
    background: linear-gradient(180deg, #dfe1f3 0%, #d7d9f0 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 999px;
    color: #5b5ce9;
    font-size: 14px;
    font-weight: 600;
}

.main-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    color: #0f172a;
}

.main-title span {
    color: #f6a400;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 950px;
    margin-bottom: 40px;
    color: #1f2937;
}

.feature-card {
    background: rgba(255,255,255,0.45);
    border-radius: 24px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.09);
}

.feature-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6a5cff, #7b61ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 18px rgba(106, 92, 255, 0.28);
}

.feature-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    color: #1b1d2a;
}

.feature-text {
    margin: 6px 0 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .feature-title {
        font-size: 1.2rem;
    }

    .feature-text {
        font-size: 0.96rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.3rem;
    }
}