/* ===== Solutions Section ===== */
.solutions-section {
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-4xl) 0 !important;
}

/* Background Decoration */
.solutions-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

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

.solutions-header {
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-title {
    color: var(--color-text-primary);
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.solutions-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-4xl);
    width: 100%;
}

.solution-card {
    background: var(--color-bg-secondary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent-light);
}

.solution-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: rotate(10deg);
}

.solution-icon-svg {
    width: 32px;
    height: 32px;
}

.solution-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.solution-card-desc {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Bridge Section */
.solutions-bridge {
    background: var(--color-accent);
    color: #ffffff;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    position: relative;
    max-width: 900px !important;
    margin-top: var(--spacing-xl);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.bridge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bridge-text {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    font-style: italic;
}

.bridge-accent {
    width: 40px;
    height: 4px;
    background: #ffffff;
    margin-bottom: var(--spacing-lg);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--card-delay);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solutions-title {
        font-size: 1.75rem;
    }

    .solutions-subtitle {
        font-size: 1.1rem;
    }

    .solution-card {
        padding: var(--spacing-xl);
    }

    .bridge-text {
        font-size: 1.15rem;
    }
}