/* Differentiators Section Styles */
.differentiators-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.differentiators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,6 18,14 10,18 2,14 2,6" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.differentiators-container {
    position: relative;
    z-index: 2;
}

.differentiators-header {
    text-align: center;
    margin-bottom: 4rem;
}

.differentiators-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.differentiators-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.differentiators-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.differentiator-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.differentiator-item:hover::before {
    left: 100%;
}

.differentiator-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.differentiator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.differentiator-item:hover .differentiator-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

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

.differentiator-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.differentiator-description {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Animation Classes */
.differentiator-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.differentiator-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.differentiator-item:nth-child(1).animate {
    transition-delay: 0.1s;
}

.differentiator-item:nth-child(2).animate {
    transition-delay: 0.2s;
}

.differentiator-item:nth-child(3).animate {
    transition-delay: 0.3s;
}

.differentiator-item:nth-child(4).animate {
    transition-delay: 0.4s;
}

/* Background Elements */
.differentiators-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.differentiators-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 12s ease-in-out infinite;
}

.differentiators-bg-shape:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.differentiators-bg-shape:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 12%;
    animation-delay: 4s;
}

.differentiators-bg-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 20%;
    animation-delay: 8s;
}

/* Glow Effect */
.differentiator-item:hover {
    box-shadow: 
        0 15px 30px rgba(59, 130, 246, 0.2),
        0 0 20px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .differentiators-section {
        padding: 4rem 0;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .differentiator-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .differentiator-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .differentiator-title {
        font-size: 1.2rem;
    }

    .differentiators-bg-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .differentiator-item {
        padding: 1rem;
    }

    .differentiator-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .differentiator-title {
        font-size: 1.1rem;
    }

    .differentiator-description {
        font-size: 0.9rem;
    }
}
