/* ================================================
   SOLUTION OFFER SECTION
   Vertical line on left with services list
   ================================================ */

.solution-offer-section {
    position: relative;
    padding: 5rem 0;
    background: var(--color-bg-primary);
}

.solution-offer-content {
    /* Full width like other sections */
}

.solution-offer-title {
    /* Base styles come from .section-heading and .section-heading-gradient */
}

.solution-offer-subtitle {
    font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 400;
}

/* Wrapper - clean layout */
.solution-offer-wrapper {
    position: relative;
}

/* List - Grid Layout */
.solution-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .solution-offer-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solution-offer-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-offer-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.solution-offer-item__icon {
    flex-shrink: 0;
    width: clamp(1.65rem, 2.2vw, 2.15rem);  /* Matches 24/7 metric size */
    height: clamp(1.65rem, 2.2vw, 2.15rem);
    color: var(--color-brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-offer-item__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
}

.solution-offer-item__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.solution-offer-item:hover .solution-offer-item__text {
    color: rgba(255, 255, 255, 1);
}

.solution-offer-item:hover .solution-offer-item__icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .solution-offer-section {
        padding: 3.5rem 0;
    }

    .solution-offer-subtitle {
        margin-bottom: 3rem;
    }

    .solution-offer-list {
        gap: 1rem;
    }

    .solution-offer-item {
        gap: 0.875rem;
        padding: 0.875rem 0;
    }

    .solution-offer-item__text {
        font-size: 1rem;
    }
}
