/* Solutions Section Styles */
.solutions-section {
    background: #ffffff;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    margin: 0 1rem 1rem 1rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.solutions-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 25%, rgba(99, 102, 241, 0.08) 2.5px, transparent 2.5px),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.06) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 75%, rgba(236, 72, 153, 0.07) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 1.5px, transparent 1.5px),
        radial-gradient(circle at 95% 25%, rgba(236, 72, 153, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 5% 90%, rgba(99, 102, 241, 0.07) 1.5px, transparent 1.5px);
    background-size: 
        200px 200px,
        150px 150px,
        180px 180px,
        100px 100px,
        130px 130px,
        170px 170px,
        120px 120px;
    pointer-events: none;
    z-index: 0;
    animation: softDrift 28s ease-in-out infinite reverse;
}

@keyframes softDrift {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateX(8px) translateY(-12px) rotate(0.8deg);
        opacity: 0.9;
    }
    66% {
        transform: translateX(-6px) translateY(8px) rotate(-0.5deg);
        opacity: 0.7;
    }
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(71, 164, 160, 0.03) 0%, transparent 30%),
        linear-gradient(225deg, rgba(255, 107, 53, 0.03) 70%, transparent 100%),
        radial-gradient(ellipse at center, rgba(248, 250, 252, 0.8) 0%, transparent 70%),
        radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 80%, rgba(236, 72, 153, 0.08) 2.5px, transparent 2.5px),
        radial-gradient(circle at 75% 85%, rgba(99, 102, 241, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 45% 30%, rgba(139, 92, 246, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 65% 70%, rgba(236, 72, 153, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 50%, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 10% 60%, rgba(139, 92, 246, 0.07) 2px, transparent 2px);
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        140px 140px,
        120px 120px,
        160px 160px,
        130px 130px,
        90px 90px,
        110px 110px,
        70px 70px,
        180px 180px;
    pointer-events: none;
    z-index: 0;
    animation: gentleFloat 22s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        background-position: 
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%;
    }
    25% {
        background-position: 
            0% 0%,
            0% 0%,
            0% 0%,
            8px 12px,
            -10px 8px,
            12px -8px,
            -6px 15px,
            15px -6px,
            -8px 10px,
            10px -12px,
            -12px 8px;
    }
    50% {
        background-position: 
            0% 0%,
            0% 0%,
            0% 0%,
            15px 5px,
            -15px 12px,
            20px -10px,
            -10px 25px,
            25px -10px,
            -15px 18px,
            18px -20px,
            -20px 15px;
    }
    75% {
        background-position: 
            0% 0%,
            0% 0%,
            0% 0%,
            5px -8px,
            -8px 18px,
            15px -15px,
            -12px 10px,
            10px -8px,
            -10px 22px,
            12px -15px,
            -18px 12px;
    }
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.solutions-header {
    text-align: center;
    margin-bottom: 80px;
}

.solutions-title {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.solutions-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Solution Cards */
.solution-option {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.solution-option:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 40px -5px rgba(0, 0, 0, 0.15),
        0 15px 15px -5px rgba(0, 0, 0, 0.08);
}

.solution-option.cloud {
    border-color: rgba(99, 102, 241, 0.2);
}

.solution-option.cloud::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.solution-option.white-label {
    border-color: rgba(139, 92, 246, 0.2);
}

.solution-option.white-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

/* Solution Icons */
.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.solution-option.cloud .solution-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.solution-option.white-label .solution-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

/* Solution Content */
.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Features List */
.solution-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #374151;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 600;
    font-size: 14px;
}

.solution-option.cloud .solution-features li::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.solution-option.white-label .solution-features li::before {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

/* Pricing */
.solution-pricing {
    margin: 30px 0;
    text-align: center;
}

.pricing-note {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 10px;
}

.pricing-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

/* CTA Buttons */
.solution-cta {
    margin-top: 40px;
}

.btn-solution {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-solution:hover::before {
    left: 100%;
}

.btn-cloud {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-cloud:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.btn-white-label {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

.btn-white-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solutions-title {
        font-size: 2.5rem;
    }
    
    .solution-option {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-container {
        padding: 0 15px;
    }
    
    .solutions-header {
        margin-bottom: 50px;
    }
    
    .solutions-title {
        font-size: 2rem;
    }
    
    .solutions-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-option {
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .solution-title {
        font-size: 1.5rem;
    }
    
    .solution-description {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
