/* =========================================================
   PRICING CARDS SECTION — Homepage Module
   /public/frontend/css/pricing-cards.css
   =========================================================
   Tüm renkler :root değişkenleriyle yönetilir.
   Inline stil YOKTUR.
   ========================================================= */

:root {
    --pc-bg:            #080b12;
    --pc-card-bg:       #12151f;
    --pc-card-border:   #1e2236;
    --pc-accent:        #4f8ef7;
    --pc-accent-glow:   rgba(79,142,247,0.18);
    --pc-gold:          #f5a623;
    --pc-text-dark:     #f0f2f8;
    --pc-text-mid:      #8892b0;
    --pc-text-light:    #4a5270;
    --pc-shadow:        0 8px 32px rgba(0,0,0,0.40);
    --pc-radius:        16px;
}

/* ─────────────────────────────────────────────────────────
   SECTION
   ───────────────────────────────────────────────────────── */
.pc-section {
    background: var(--pc-bg);
    padding: 72px 0 88px;
}

.pc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─────────────────────────────────────────────────────────
   SECTION HEADER
   ───────────────────────────────────────────────────────── */
.pc-header {
    text-align: center;
    margin-bottom: 48px;
}

.pc-header-badge {
    display: inline-block;
    background: var(--pc-accent-glow);
    border: 1px solid rgba(79,142,247,0.35);
    color: var(--pc-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.pc-header-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pc-text-dark);
    line-height: 1.15;
    margin: 0 0 12px;
}

.pc-header-title span {
    color: var(--pc-accent);
}

.pc-header-sub {
    font-size: 15px;
    color: var(--pc-text-mid);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   CARDS GRID
   ───────────────────────────────────────────────────────── */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

/* ─────────────────────────────────────────────────────────
   SINGLE CARD
   ───────────────────────────────────────────────────────── */
.pc-card {
    background: var(--pc-card-bg);
    border: 1px solid var(--pc-card-border);
    border-radius: var(--pc-radius);
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.pc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pc-card-border);
    transition: background 0.2s;
}

.pc-card:hover {
    border-color: var(--pc-accent);
    box-shadow: var(--pc-shadow), 0 0 0 1px var(--pc-accent);
    transform: translateY(-4px);
}

.pc-card:hover::before {
    background: var(--pc-accent);
}

/* ─────────────────────────────────────────────────────────
   PLATFORM ICON
   ───────────────────────────────────────────────────────── */
.pc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    margin-bottom: 10px;
}

/* Text-based icons (Samsung S, LG) */
.pc-icon-text {
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pc-icon-lg .pc-icon-text {
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0.04em;
}

/* Platform brand colors */
.pc-icon-samsung        { background: #1428A0; color: #fff; }
.pc-icon-lg             { background: #a50034; color: #fff; }
.pc-icon-android        { background: #2ab36b; color: #fff; }
.pc-icon-firestick      { background: #ff9900; color: #fff; }
.pc-icon-ios            { background: #555; color: #fff; }

/* ─────────────────────────────────────────────────────────
   PLATFORM NAME
   ───────────────────────────────────────────────────────── */
.pc-platform-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--pc-text-dark);
    margin-bottom: 12px;
}

/* ─────────────────────────────────────────────────────────
   PRICE BLOCK
   ───────────────────────────────────────────────────────── */
.pc-price-block {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pc-price-unlimited {
    display: inline-block;
    background: var(--pc-accent-glow);
    border: 1px solid rgba(79,142,247,0.3);
    color: var(--pc-accent);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.pc-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.pc-price-currency {
    font-size: 18px;
    font-weight: 800;
    color: var(--pc-text-dark);
    margin-top: 6px;
}

.pc-price-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pc-text-dark);
    letter-spacing: -0.02em;
}

.pc-price-period {
    font-size: 11px;
    color: var(--pc-text-mid);
    align-self: flex-end;
    margin-bottom: 3px;
}

/* ─────────────────────────────────────────────────────────
   FEATURES LIST
   ───────────────────────────────────────────────────────── */
.pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    width: 100%;
    text-align: left;
}

.pc-features li {
    font-size: 11.5px;
    color: var(--pc-text-mid);
    padding: 4px 0;
    border-bottom: 1px solid var(--pc-card-border);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.pc-features li:last-child {
    border-bottom: none;
}

.pc-features li::before {
    content: '✓';
    color: var(--pc-accent);
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─────────────────────────────────────────────────────────
   ACTIVATE BUTTON
   ───────────────────────────────────────────────────────── */
.pc-activate-btn {
    display: block;
    width: 100%;
    background: var(--pc-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 11px 16px;
    border-radius: 9px;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.15s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.pc-activate-btn:hover {
    background: #2f6de0;
    color: #fff;
    text-decoration: none;
    transform: scale(1.02);
}

/* ─────────────────────────────────────────────────────────
   DISCLAIMER
   ───────────────────────────────────────────────────────── */
.pc-disclaimer {
    text-align: center;
    margin-top: 28px;
    font-size: 11.5px;
    color: var(--pc-text-light);
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.pc-disclaimer a {
    color: var(--pc-text-mid);
    text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .pc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .pc-section {
        padding: 48px 0 60px;
    }
    .pc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .pc-card {
        padding: 20px 14px 18px;
    }
    .pc-header-title {
        font-size: 1.7rem;
    }
    .pc-price-amount {
        font-size: 2rem;
    }
}
