/* =========================================
   FİYATLANDIRMA (PRICING) SAYFASI ÖZEL MİMARİSİ
   ========================================= */

/* --- 1. HERO BÖLÜMÜ --- */
.pricing-hero {
    padding: 120px 0 80px 0;
    background: radial-gradient(circle at top, var(--bg-soft) 0%, var(--bg-white) 100%);
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 0;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- 2. KARTLAR VE GRID YERLEŞİMİ --- */
.pricing-section {
    padding: 20px 0 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch; 
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(147, 51, 234, 0.08); /* Yumuşak mor gölge */
}

/* Popüler Kart (Premium Vurgusu) */
.pricing-card.popular {
    border: 2px solid #d8b4fe; /* Uçuk mor sınır */
    box-shadow: 0 20px 40px -10px rgba(147, 51, 234, 0.15);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(147, 51, 234, 0.25);
    white-space: nowrap;
}

/* --- 3. KART İÇERİĞİ --- */
.p-header {
    margin-bottom: 32px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.p-tier {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.p-price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.p-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.p-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.p-features li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.p-features li.disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

.list-check {
    margin-right: 12px;
    font-weight: 700;
}

.disabled .list-check {
    color: #fca5a5; /* Soluk pembe/kırmızımsı iptal ikonu */
}

/* --- 4. BUTONLAR --- */
.p-btn-wrapper {
    margin-top: auto;
    width: 100%;
}

.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 9999px; /* Tam yuvarlak - Pill Shape */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-buy.primary {
    background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.2);
}

.btn-buy.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(147, 51, 234, 0.3);
}

.btn-buy.outline {
    background-color: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-buy.outline:hover {
    background-color: var(--bg-soft);
}

.btn-buy.secondary {
    background-color: #f3f4f6;
    color: var(--text-gray);
}

.btn-buy.secondary:hover {
    background-color: #e5e7eb;
    color: var(--text-dark);
}

/* =========================================
   5. MOBİL UYUMLULUK
   ========================================= */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 80px 0 40px 0;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
}