/* Why Choose Glassmorphism */
.why-glass {
    padding: 6rem 2rem;
}

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

.why-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.why-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.why-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.why-grid-glass {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.why-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.why-icon-wrapper-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.why-icon-glass {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.why-number-glass {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.why-card-glass h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.why-card-glass p {
    opacity: 0.9;
    line-height: 1.7;
    color: white;
}

@media (max-width: 968px) {
    .why-grid-glass {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-glass {
        padding: 3rem 1rem;
    }
}
