.pricing-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: #ffffff;
    z-index: 1;
}

.pricing-section .pricing-bg-blur {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: linear-gradient(to top right, #ff80b5, #9089fc);
    opacity: 0.25;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

.pricing-section .pricing-header {
    position: relative;
    z-index: 2;
}

.pricing-section .pricing-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #2ca52c;
}

.pricing-section .pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #2ca52c;
}

.pricing-section .pricing-desc {
    max-width: 650px;
    margin: 15px auto 0;
    color: #4b5563;
    font-size: 16px;
}

/* GRID: Mobilde 1, tablet'te 2, desktop'ta 3 kolon */
.pricing-section .pricing-grid {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

@media (min-width: 576px) {
    .pricing-section .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .pricing-section .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 box yan yana */
    }
}

/* Kartlar */
.pricing-section .pricing-card {
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    overflow: hidden;
    padding: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-section .pricing-card.featured {
    background: #111827;
    color: #d1d5db;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    border-color: rgba(129, 140, 248, 0.7);
}

.pricing-section .pricing-plan-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-section .pricing-plan-title.hobby {
    color: #4f46e5;
}

.pricing-section .pricing-plan-title.pro {
    color: #10b981;
}

.pricing-section .pricing-plan-title.enterprise {
    color: #818cf8;
}

/* Fiyat alanı */
.pricing-section .pricing-price {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    align-items: baseline;
    margin-top: 10px;
}

.pricing-section .pricing-amount {
    font-size: 32px;
    font-weight: 700;
}

.pricing-section .pricing-period {
    font-size: 14px;
    color: #6b7280;
}

.pricing-section .featured .pricing-period {
    color: #9ca3af;
}

.pricing-section .pricing-plan-info {
    margin-top: 8px;
    font-size: 14px;
    color: #4b5563;
}

.pricing-section .featured .pricing-plan-info {
    color: #e5e7eb;
}

/* Özellik listesi */
.pricing-section .pricing-features {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
}

.pricing-section .pricing-features li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #4b5563;
}

.pricing-section .featured .pricing-features li {
    color: #d1d5db;
}

.pricing-section .pricing-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #4f46e5;
    font-weight: bold;
}

.pricing-section .featured .pricing-features li::before {
    color: #818cf8;
}

/* Butonlar */
.pricing-section .pricing-btn {
    display: block;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.pricing-section .pricing-btn-outline {
    border: 1px solid #c7d2fe;
    color: #4f46e5;
    background: #ffffff;
}

.pricing-section .pricing-btn-outline:hover {
    background: #e0e7ff;
}

.pricing-section .pricing-btn-solid {
    background: #6366f1;
    color: #fff;
    border: none;
}

.pricing-section .pricing-btn-solid:hover {
    background: #4f46e5;
}

/* Mobil iyileştirmeler */
@media (max-width: 575.98px) {
    .pricing-section .pricing-title {
        font-size: 28px;
    }

    .pricing-section .pricing-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .pricing-section .pricing-card {
        padding: 18px;
    }
}

.pricing-tab {
    padding: 10px 22px;
    margin: 0 6px;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.pricing-tab.active {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.pricing-tab:hover {
    background: #eef2ff;
}
