/* Why Choose Us Section Styles */
#why-choose-us {
    padding: 60px 0 80px 0;
}

#why-choose-us .section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(255, 255, 255, 0.15);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
    padding: 20px 0;
    display: block;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-box {
    background: rgba(8, 11, 14, 0.8);
    border: 1px solid rgba(0, 167, 150, 0.2);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.comparison-box::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(0, 167, 150, 0.35) 0%,
        rgba(0, 167, 150, 0.2) 30%,
        rgba(0, 167, 150, 0.1) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
    opacity: 0.8;
}

.comparison-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
}

.comparison-title {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #00a796, #00c7b3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(0,167,150,0.2);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    position: relative;
    z-index: 1;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.comparison-list li {
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text);
}

.comparison-box.others .comparison-list li::before {
    content: '×';
    color: #FFFFFF;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.comparison-box.ours .comparison-list li::before {
    content: '✓';
    color: #FFFFFF;
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 22px;
}

.comparison-list strong {
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.bonus-box {
    background: rgba(0, 167, 150, 0.1);
    border: 1px solid rgba(0, 167, 150, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.bonus-title {
    color: #00a796;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.bonus-text {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 16px;
    }
    
    .comparison-box {
        padding: 24px;
        width: 100%;
    }
    
    #why-choose-us .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    #why-choose-us {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .comparison-title {
        font-size: 28px;
    }
    
    .comparison-box {
        padding: 30px;
    }
}
