/* --- PREMİUM GÖRSEL VE TABLO GÜNCELLEMELERİ --- */

/* Karşılaştırma Tablosu (Ekran görüntüsü ile birebir) */
.premium-image-table {
    padding: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.premium-image-table .price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Image proporations */
    padding: 22px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    text-align: center;
}

.premium-image-table .header-row {
    font-weight: 800;
    background: rgba(255, 255, 255, 0.02);
}

.premium-image-table .price-row div:first-child {
    text-align: left;
    color: var(--text-main);
    font-weight: 600;
}

.premium-header-pill {
    background: linear-gradient(90deg, #8A2387 0%, #E94057 100%);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    color: white;
    display: inline-block;
}

.highlight-pill {
    background: rgba(233, 64, 87, 0.1);
    color: #E94057;
    font-weight: 800;
    padding: 8px 0;
    border-radius: 8px;
    width: 100%;
}

/* Fiyatlandırma Kartı */
.pricing-card-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.main-plan {
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
    border: 1px solid rgba(233, 64, 87, 0.2);
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.plan-price small {
    font-size: 18px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-normal);
}

.premium-glow {
    box-shadow: 0 0 50px rgba(233, 64, 87, 0.1);
}

/* Bento Cards */
.icon-huge {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.bento-card {
    text-align: center;
    padding: 40px 30px;
}

/* Mobil Ayarları */
@media screen and (max-width: 768px) {
    .premium-image-table .price-row {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 15px 10px;
        font-size: 12px;
    }
    .premium-header-pill {
        padding: 6px 10px;
        font-size: 11px;
    }
    .plan-price {
        font-size: 36px;
    }
}