/* ================================================
   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 {
    max-width: 800px;
    margin: 0 auto;
}

.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 with vertical line */
.solution-offer-wrapper {
    position: relative;
    padding-left: 3rem;
}

/* Vertical line on the left */
.solution-offer-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        rgba(59, 130, 246, 0.5) 0%,
        rgba(59, 130, 246, 0.3) 50%,
        rgba(59, 130, 246, 0.5) 100%);
    border-radius: 2px;
}

/* List */
.solution-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-offer-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    opacity: 0;
    animation: fadeInSlide 0.6s ease forwards;
}

.solution-offer-item:nth-child(1) { animation-delay: 0.05s; }
.solution-offer-item:nth-child(2) { animation-delay: 0.1s; }
.solution-offer-item:nth-child(3) { animation-delay: 0.15s; }
.solution-offer-item:nth-child(4) { animation-delay: 0.2s; }
.solution-offer-item:nth-child(5) { animation-delay: 0.25s; }
.solution-offer-item:nth-child(6) { animation-delay: 0.3s; }
.solution-offer-item:nth-child(7) { animation-delay: 0.35s; }
.solution-offer-item:nth-child(8) { animation-delay: 0.4s; }
.solution-offer-item:nth-child(9) { animation-delay: 0.45s; }
.solution-offer-item:nth-child(10) { animation-delay: 0.5s; }

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Horizontal line from vertical bar to item */
.solution-offer-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(59, 130, 246, 0.5) 0%,
        rgba(148, 163, 184, 0.3) 100%);
    transform: translateY(-50%);
}

/* Connection point on vertical line */
.solution-offer-item::after {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    width: 10px;
    height: 10px;
    background: rgba(59, 130, 246, 0.7);
    border: 2px solid var(--color-bg-primary);
    border-radius: 50%;
    transform: translate(-4px, -50%);
    z-index: 1;
}

.solution-offer-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    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-wrapper {
        padding-left: 2.5rem;
    }

    .solution-offer-wrapper::before {
        width: 2px;
    }

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

    .solution-offer-item::before {
        left: -2.5rem;
        width: 2rem;
    }

    .solution-offer-item::after {
        left: -2.5rem;
        width: 8px;
        height: 8px;
    }

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

    .solution-offer-item__icon {
        width: 24px;
        height: 24px;
    }

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