#solutions {
    overflow-x: clip;
}


.solution-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem 3rem 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    will-change: transform;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.solution-hover-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg,
            rgba(148, 243, 255, 0.05),
            rgba(59, 218, 246, 0.05),
            rgba(211, 134, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.solution-card:hover .solution-hover-glow {
    opacity: 1;
}


.solution-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at top right,
            rgba(56, 189, 248, 0.25),
            rgba(59, 130, 246, 0.05),
            transparent 70%);
    pointer-events: none;
}

.solution-card h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.solution-intro {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.solution-card li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    color: #374151;
}

.solution-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #3b82f6);
}

/* Read more content */
.solution-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.solution-card.expanded .solution-more {
    max-height: 600px;
    opacity: 1;
}

/* Read more button */
.read-more-btn {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #2563eb;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* ===============================
   SOLUTIONS BACKGROUND SHAPES
================================ */

.solutions-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.85;
}

.bg-shape {
    will-change: transform;
    transform: translateZ(0);
}


.solution-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.solution-title svg {
    width: 26px;
    height: 26px;
    color: #38bdf8;
    /* sky-400 */
}

/* Hover polish */
.solution-card:hover .solution-title svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {

    .solutions-title,
    .solution-card {
        opacity: 1 !important;
        transform: none !important;
    }
}