﻿.pricingSection {
    margin: 57px 0 57px 0;
}
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* ----- KART (BASE) ----- */
.pricing-card {
    position: relative;
    width: 320px; /* w-80 = 20rem = 320px */
    min-height: 480px;
    background: radial-gradient(at 88% 40%, #181925 0%, transparent 75%), radial-gradient(at 49% 30%, #181925 0%, transparent 75%), radial-gradient(at 14% 26%, #181925 0%, transparent 75%), radial-gradient(at 0% 64%, var(--themeColor) 0%, transparent 80%), radial-gradient(at 41% 94%, var(--themeColorHover) 0%, transparent 80%), radial-gradient(at 100% 99%, var(--themeColor) 0%, transparent 80%);
    background-color: var(--dark);
    background-blend-mode: normal;
    border-radius: 1rem; /* rounded-xl */
    padding: 1.5rem; /* pt-6 px-6 eşdeğeri, pb düzenlenecek */
    display: flex;
    flex-direction: column;
    gap: 1rem; /* gap-4 (1rem) */
    box-shadow: inset 0px -16px 24px 0px rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(167, 139, 250, 0.1);
}

    /* hover efekti (tüm kartlar) */
    .pricing-card:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 40px -12px rgba(0, 245, 255, 0.35), inset 0px -16px 24px 0px rgba(255, 255, 255, 0.2);
        border-color: rgba(167, 139, 250, 0.3);
    }

/* ----- PRO PLAN ÖZEL (vurgulu) ----- */
.pricing-card--pro {
    border: 2px solid rgba(0, 245, 255, 0.4);
    transform: scale(1.05);
    box-shadow: inset 0px -16px 24px 0px rgba(255, 255, 255, 0.25), 0 10px 20px -5px rgba(0,0,0,0.4);
    transition: all 0.2s ease-in-out;
}

    .pricing-card--pro:hover {
        transform: scale(1.1);
        box-shadow: 0 30px 45px -12px rgba(0, 245, 255, 0.45), inset 0px -16px 24px 0px rgba(255, 255, 255, 0.25);
        border-color: rgba(0, 245, 255, 1);
    }

/* plan başlıkları */
.plan-name {
    font-size: 2.5rem; /* text-5xl */
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'PilatExtended';
}

.plan-name--light {
    font-weight: 700;
}

.plan-description {
    color: #d1d5db; /* gray-300 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.4;
}

/* fiyat alanı */
.price-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.price-amount {
    font-size: 3rem; /* text-5xl */
    font-weight: 300;
    color: white;
    letter-spacing: -0.02em;
}

.price-period {
    color: #9ca3af; /* gray-400 */
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

/* ayraç çizgisi */
.divider {
    width: 100%;
    height: 2px;
    background: #23242b;
    border: 0;
    margin: 0.5rem 0 0.25rem 0;
}

/* özellik listesi */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0.5rem 0 0.8rem 0;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.feature-text {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 450;
}

/* onay ikonu (yuvarlak mor arkaplan) */
.check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem; /* w-4 = 1rem , biraz büyütüldü daha belirgin */
    height: 1.25rem;
    background-color: var(--themeColor);
    border-radius: 9999px;
    flex-shrink: 0;
}

.check-icon {
    width: 0.75rem;
    height: 0.75rem;
    color: #181925;
    fill: currentColor;
}

/* buton - modern gradient */
.plan-button {
    margin-top: auto;
    width: 100%;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(to top, rgba(0, 245, 255, 0.1), var(--themeColor));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 2px 4px rgba(0,0,0,0.2);
    text-align: center;
}

    .plan-button:hover {
        background: linear-gradient(to top, rgba(255, 90, 20, 0.3), var(--themeColorHover));
        transform: translateY(-1px);
        box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 6px 12px -6px rgba(255, 90, 20, 0.6);
    }

    .plan-button:active {
        transform: translateY(1px);
    }

/* ekstra boşluk dengesi — flex yapısıyla buton altta kalır */
.pricing-card {
    display: flex;
    flex-direction: column;
}

/* responsive: küçük ekranlarda pro kart scale düzgün dursun */
@media (max-width: 700px) {
    .pricing-grid {
        gap: 2rem;
    }

    .pricing-card--pro {
        transform: scale(1.02);
    }

        .pricing-card--pro:hover {
            transform: scale(1.07);
        }

    .pricing-card:hover {
        transform: scale(1.02);
    }

    body {
        padding: 1.5rem;
    }
}

/* ufak animasyonlu dokunuş */
.pricing-card {
    will-change: transform, box-shadow;
}

/* özel yazıtipi desteği — eğer Satoshi / Neue Montreal yoksa sistem kullan */
@font-face {
    font-family: 'Satoshi';
    src: local('Satoshi'), local('Inter');
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: local('Neue Montreal'), local('Inter');
    font-display: swap;
}
