/* solution section css */

/* Hero Image */
.hero-image {
    padding: 0 0 3rem;
}

.hero-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 48px rgba(0, 0, 0, .09);
    background: var(--muted);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-img-placeholder {
    color: var(--muted-foreground);
    font-size: .85rem;
    padding: 3rem;
}

/* ─── SECTION ─── */
.section {
    padding: 4rem 0;
}

.section-alt {
    padding: 4rem 0;
    background: var(--muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sol-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color .2s, box-shadow .2s;
}

.sol-card:hover {
    border-color: rgba(16, 185, 129, .3);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
}

.sol-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--muted);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: .2s;
}

.sol-icon svg {
    width: 28px;
    height: 28px;
}

.sol-card:hover .sol-icon {
    background: var(--primary);
    color: var(--primary-foreground);
}

.sol-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.sol-desc {
    font-size: .83rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.sol-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--muted);
    border-radius: 10px;
    padding: .75rem .5rem;
    margin-bottom: 1rem;
    gap: .25rem;
}

.stat-cell {
    text-align: center;
}

.stat-cell svg {
    width: 14px;
    height: 14px;
    color: #10b981;
    margin: 0 auto 3px;
    display: block;
}

.stat-cell .val {
    display: block;
    font-size: .8rem;
    font-weight: 700;
}

.stat-cell .lbl {
    font-size: .68rem;
    color: var(--muted-foreground);
}

.use-cases {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.use-cases li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: .8rem;
    color: var(--muted-foreground);
}

.uc-check {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 1px;
}

.uc-check svg {
    width: 13px;
    height: 13px;
}

/* Case Studies */
.case-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.case-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: .2s;
}

.case-card:hover {
    border-color: #d4d4d4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.industry-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 2px 10px;
    margin-bottom: .75rem;
    color: var(--muted-foreground);
}

.case-section {
    margin-bottom: .75rem;
}

.case-section h4 {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.case-section p {
    font-size: .82rem;
    color: var(--muted-foreground);
    line-height: 1.65;
}

.results-box {
    background: rgba(16, 185, 129, .06);
    border-radius: 10px;
    padding: 1rem;
    margin-top: .75rem;
}

.results-box h4 {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
}

.result-item svg {
    width: 14px;
    height: 14px;
    color: #10b981;
    flex-shrink: 0;
}
/* Responsive */

@media (max-width:900px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:560px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}