/* ========================================
   SOLUTION PAGES - ENHANCED OVERVIEW SECTION
   Stats + Benefits with visual cards
   Accent color: #dff000
   ======================================== */

/* Stats Bar - Impactful Numbers */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 48px 0;
    margin: 40px 0 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Lead Text */
#section-overview .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    color: #444;
    margin-bottom: 0;
}

/* Overview Content - Better Spacing */
#section-overview .section-title {
    margin-top: 48px;
    margin-bottom: 24px;
    font-size: 2.25rem;
}

#section-overview > .container > .row > .col-lg-10 > p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px;
}

/* Enhanced Who/What Cards */
.info-cards-row {
    margin-top: 72px;
    display: flex;
    gap: 32px;
}

.info-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 36px 32px;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dff000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.info-card:hover::before {
    opacity: 1;
}

/* Card Icons */
.info-card-icon {
    width: 56px;
    height: 56px;
    background: #dff000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #111;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Card Titles */
.info-card .alt-features-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Card Lists */
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #555;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #dff000;
    font-weight: 700;
    font-size: 16px;
}

.info-card ul li:last-child {
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .stats-bar {
        gap: 40px;
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .info-cards-row {
        flex-direction: column;
        margin-top: 56px;
    }

    .info-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .stats-bar {
        gap: 32px;
        padding: 32px 0;
        margin: 32px 0 48px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 12px;
    }

    #section-overview .lead {
        font-size: 1.125rem;
    }

    #section-overview .section-title {
        margin-top: 36px;
        font-size: 1.875rem;
    }

    .info-cards-row {
        margin-top: 48px;
    }

    .info-card {
        padding: 28px 24px;
    }
}

/* Alternative: Replace existing alt-features-item styling in solution pages */
#section-overview .alt-features-item {
    background: transparent;
    border: none;
    padding: 0;
}

/* Remove the old column-based layout styles for this specific section */
#section-overview .row.mt-60 {
    margin-top: 0 !important;
}

#section-overview .col-md-6.mb-40 {
    margin-bottom: 0 !important;
}
