/* Modern Smart Solutions Section */
.modern-smart-solutions-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(151, 71, 255, 0.03) 50%, 
        rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.modern-smart-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(151, 71, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.smart-solutions-content {
    padding-left: 40px;
}

.solutions-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 48px;
    color: #1a1a1a;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.solutions-title span.text-gradient {
    background: linear-gradient(135deg, #9747ff 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-right: 12px;
    font-size: 3.2rem;
    line-height: inherit;
    font-weight: 800;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(151, 71, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(151, 71, 255, 0.08);
    animation: fadeInUp 0.8s ease-out calc(0.4s + var(--delay, 0s)) both;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(151, 71, 255, 0.02), rgba(151, 71, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(151, 71, 255, 0.15);
    border-color: rgba(151, 71, 255, 0.2);
}

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

.solution-card:nth-child(1) { --delay: 0s; }
.solution-card:nth-child(2) { --delay: 0.1s; }
.solution-card:nth-child(3) { --delay: 0.2s; }
.solution-card:nth-child(4) { --delay: 0.3s; }

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #9747ff 0%, #6366f1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(151, 71, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
}

.solution-icon svg {
    width: 24px !important;
    height: 24px !important;
    color: white !important;
    fill: none !important;
    stroke: white !important;
    stroke-width: 2 !important;
    z-index: 3 !important;
    position: relative !important;
}

.solution-icon svg path {
    stroke: white !important;
    fill: none !important;
}

.solution-icon svg circle {
    stroke: white !important;
    fill: none !important;
}

.solution-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.solution-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-content p {
    color: #2d3748;
}

/* Smart Solutions Visual */
.smart-solutions-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-solutions-image {
    position: relative;
    z-index: 2;
    max-width: 450px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.main-solutions-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(151, 71, 255, 0.2);
    transition: all 0.3s ease;
}

.main-solutions-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 100px rgba(151, 71, 255, 0.25);
}

.solutions-decorative {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(151, 71, 255, 0.2), rgba(99, 102, 241, 0.2));
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

.floating-orb.orb-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating-orb.orb-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.floating-orb.orb-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    33% {
        transform: translateY(-20px) scale(1.05);
    }
    66% {
        transform: translateY(10px) scale(0.95);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-smart-solutions-section {
        padding: 80px 0;
    }
    
    .smart-solutions-content {
        padding-left: 0;
        margin-top: 60px;
        text-align: center;
    }
    
    .solutions-title {
        font-size: 2.2rem;
    }
    
    .solutions-title span.text-gradient {
        font-size: 2.6rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .smart-solutions-visual {
        height: 400px;
    }
    
    .solution-card {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .solutions-title {
        font-size: 1.9rem;
    }
    
    .solutions-title span.text-gradient {
        font-size: 2.2rem;
    }
    
    .solution-card {
        padding: 20px;
        gap: 16px;
    }
    
    .solution-icon {
        width: 48px;
        height: 48px;
    }
    
    .solution-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .solution-content p {
        font-size: 1rem;
    }
    
    .floating-orb {
        display: none;
    }
}

@media (max-width: 576px) {
    .modern-smart-solutions-section {
        padding: 60px 0;
    }
    
    .solutions-title {
        font-size: 1.6rem;
        margin-bottom: 32px;
        line-height: 1.4;
    }
    
    .solutions-title span.text-gradient {
        font-size: 1.8rem;
        display: block;
        margin-right: 0;
        margin-bottom: 4px;
    }
    
    .solution-card {
        padding: 16px;
        border-radius: 16px;
    }
    
    .smart-solutions-visual {
        height: 300px;
    }
    
    .main-solutions-image {
        max-width: 300px;
    }
}
