/**
 * Industry-Specific Excellence — colors derive from theme :root (--primary-color, --heading-color).
 */

.industries-excellence {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 3.5rem;
    overflow: hidden;
}

.industries-excellence::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        1200px 400px at 10% -10%,
        color-mix(in srgb, var(--primary-color, #006d77) 12%, transparent),
        transparent 55%
    );
    pointer-events: none;
    z-index: 0;
}

.industries-excellence .container {
    position: relative;
    z-index: 1;
}

.industries-excellence__title {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.industries-excellence__title-accent {
    color: var(--primary-color, #006d77);
}

.industries-excellence__title-plain {
    color: var(--heading-color, #071920);
}

.industries-excellence-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(7, 25, 32, 0.08);
    box-shadow: 0px 0px 30px 0px rgba(14, 41, 50, 0.08);
    padding: 1.5rem 1.5rem 1.35rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.industries-excellence-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 16px 40px rgba(14, 41, 50, 0.12);
}

.industries-excellence-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #071920;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industries-excellence-card__icon img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
}

.industries-excellence-card__icon-fallback {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.85);
}

.industries-excellence-card__name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--heading-color, #071920);
}

.industries-excellence-card__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--primary-color, #006d77) 14%, #ffffff),
        color-mix(in srgb, var(--primary-color, #006d77) 7%, transparent)
    );
    border: 1px solid color-mix(in srgb, var(--primary-color, #006d77) 26%, transparent);
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #3d565f;
}

.industries-excellence-card__highlight-icon {
    color: var(--primary-color, #006d77);
    flex-shrink: 0;
    margin-top: 2px;
}

.industries-excellence-card__stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.85rem 0.75rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--primary-color, #006d77) 10%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--primary-color, #006d77) 18%, transparent);
}

.industries-excellence-card__stat {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    min-width: 0;
}

.industries-excellence-card__stat-icon {
    color: var(--primary-color, #006d77);
    flex-shrink: 0;
    margin-top: 2px;
}

.industries-excellence-card__stat-value {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.25;
    color: var(--heading-color, #071920);
    word-break: break-word;
}

.industries-excellence-card__stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a838c;
    margin-top: 0.15rem;
}

.industries-excellence-card__stat-divider {
    width: 1px;
    background: rgba(7, 25, 32, 0.12);
    align-self: stretch;
    min-height: 2.5rem;
}

.industries-excellence-card__btn {
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

@media (max-width: 575.98px) {
    .industries-excellence-card__stats {
        grid-template-columns: 1fr;
    }

    .industries-excellence-card__stat-divider {
        display: none;
    }
}
