/* 1. Genel Konteynır */
.seo-comparison-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Başlık Alanı */
.seo-comparison-section .comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-comparison-section .sub-badge {
    color: #FC521D;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
    padding: 5px 15px;
    background: rgba(252, 82, 29, 0.05);
    border-radius: 50px;
}

.seo-comparison-section .comparison-header h2 {
    color: #3878C3;
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
    line-height: 1.1;
    max-width: 800px;
}

/* 3. Tablo Sarmalayıcı - Kritik Alan */
.seo-comparison-section .comparison-table-wrapper {
    overflow-x: auto;
    margin: 70px auto 50px;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    background: #fff;
    position: relative; /* Badge'i buna göre konumlandırıyoruz */
}

/* FARKIMIZ Etiketi - HTML'de Değişiklik Yapmadan Buradan Ekliyoruz */
.seo-comparison-section .comparison-table-wrapper::before {
    content: 'FARKIMIZ';
    position: absolute;
    top: -1px; /* Çerçevenin dışına taşırıyoruz */
    right: 5%; /* Brandaft kolonunun üzerine denk gelecek şekilde sağa yasladık */
    background: #FC521D;
    color: #fff;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(252, 82, 29, 0.3);
    z-index: 999; /* En üstte görünmesi için */
    letter-spacing: 1px;
}

.seo-comparison-section .comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 850px;
}

/* 4. Hücre Tasarımları */
.seo-comparison-section .comparison-table th,
.seo-comparison-section .comparison-table td {
    padding: 22px 25px;
    vertical-align: middle;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid #f4f4f4;
}

/* Header Tasarımı */
.seo-comparison-section .comparison-table thead th {
    background-color: #fafafa;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    border-bottom: 2px solid #eee;
}

/* Brandaft Kolonu Başlığı */
.seo-comparison-section .comparison-table thead th.brandaft-col {
    background-color: #3878C3 !important;
    color: #ffffff !important;
    font-size: 1.2rem;
}

/* 5. Sütun Vurguları */
.seo-comparison-section .comparison-table td.feature-title {
    font-weight: 700;
    color: #333;
    background-color: #fdfdfd;
    width: 25%;
    border-right: 1px solid #f0f0f0;
}

.seo-comparison-section .comparison-table td:nth-child(2) {
    color: #666;
    text-align: center;
}

.seo-comparison-section .comparison-table td:last-child {
    background-color: rgba(56, 120, 195, 0.04);
    border-left: 1px solid #f0f0f0;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* 6. Footer */
.seo-comparison-section .comparison-footer {
    text-align: center;
    margin-top: 40px;
    padding: 25px 40px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fffbf9 0%, #fff 100%);
    border: 1px solid #ffece5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-comparison-section .comparison-footer p {
    color: #222;
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0;
}

/* 7. Mobil Uyumluluk */
@media (max-width: 768px) {
    .seo-comparison-section .comparison-table-wrapper::before {
        right: 15px; /* Mobilde kolonlar daraldığı için biraz daha kenara aldık */
        font-size: 0.6rem;
    }
    .seo-comparison-section .comparison-header h2 {
        font-size: 1.7rem;
    }
}