/* Solutions Page Styles
   Version: 2.1.0
   Date: 2026-07-26 */

.page-hero {

    background: linear-gradient(135deg, var(--brand-white) 0%, var(--brand-cloud-gray) 100%);
    padding: 4rem 0;
}

.page-hero h1 {
    color: var(--brand-midnight-charcoal);
}

.page-hero p.lead {
    color: var(--brand-graphite);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.service-detail-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-detail-card.featured {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #eff6ff 0%, white 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--brand-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-midnight-charcoal);
}

.service-detail-card p {
    color: var(--brand-graphite);
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.check-list li {
    padding: 0.5rem 0;
    color: var(--brand-graphite);
    position: relative;
    padding-left: 1.75rem;
}

.check-list li::before {
    content: "\F26B";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-size: 1.25rem;
}

.benefits-section {
    background: var(--brand-cloud-gray);
}

.benefits-section h2 {
    color: var(--brand-midnight-charcoal);
}

.benefits-section .lead {
    color: var(--brand-graphite);
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--brand-white);
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--brand-midnight-charcoal);
}

.benefit-card p {
    color: var(--brand-graphite);
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-section {
    background: var(--brand-cloud-gray);
}

.testimonial-card-large {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 2rem;
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
    opacity: 0.45;
}

.testimonial-card-large blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--brand-silver-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    border-top: 2px solid var(--gray-200);
    padding-top: 1.5rem;
}

.author-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-details p {
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 2rem 0;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .testimonial-card-large blockquote {
        font-size: 1.25rem;
    }
}
