/* ============================================================
   MCDoctor.ai — PRICES page (uses style.css for nav/footer/head)
   ============================================================ */

/* ============================================
   FREE TIER BANNER
   ============================================ */
.prices-free-banner {
  margin: 40px auto 60px;
  padding: 12px 24px;
  background: #979d9d36;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.prices-free-left {
    flex: 1;
    min-width: 0;
}


.prices-free-title {
    font-family: "Minecraft", Arial, sans-serif;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 2px 2px #3e3e3e;
}

.prices-free-desc {
    font-family: "Minecraftia", monospace;
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.prices-free-desc strong {
    color: #6cc349;
}

.prices-free-right .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
    white-space: nowrap;text-decoration: none;
}

/* ============================================
   SECTIONS
   ============================================ */
.prices-section {
    margin-bottom: 70px;
}

.prices-section-title {
    font-family: "Minecraft", Arial, sans-serif;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0 0 14px;
    text-shadow: 2px 2px #3e3e3e;
}

.prices-section-sub {
    font-family: "Minecraftia", monospace;
    font-size: 17px;
    color: #858585;
    text-align: center;
    margin: 0 0 32px;
}

/* ============================================
   PACK CARDS
   ============================================ */
.prices-packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.prices-pack-billed {color:#939ca7;}
.prices-pack-card {
    background: rgb(0 0 0 / 44%);
    border: 3px solid #425a73;
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.prices-pack-card:hover {
    transform: translateY(-4px);
    border-color: #6cc349;
}

.prices-pack-featured {
    border-color: #6cc349;
    box-shadow: 0 0 20px rgba(108, 195, 73, 0.2);
}

.prices-pack-enterprise {
    border:0px;margin-top: 40px;display: grid;flex-direction: row;align-items: center;grid-template-columns: repeat(3, 1fr);gap:40px;
}
.prices-left{display:flex;flex-direction: column;}


/* ── Ribbon ── */
.prices-pack-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(#4caf50, #3d8a3f);
    color: #fff;
    padding: 4px 14px;
    border: 2px solid #2f6b32;
    border-radius: 4px;
    font-family: "Minecraftia", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 1px 1px #000;
    box-shadow: 0 3px #214c23;
    white-space: nowrap;
}

/* ── Head ── */
.prices-pack-name {
    font-family: "Minecraft", Arial, sans-serif;
    font-size: 28px;
    color: #fff;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px #3e3e3e;
}

.prices-pack-tagline {
    font-family: "Minecraftia", monospace;
    font-size: 11px;
    color: #858585;
    text-align: center;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Price ── */
.prices-pack-price {
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    padding: 10px 0;
}

.prices-pack-currency {
    font-family: "Minecraftia", monospace;
    font-size: 24px;
    color: #6cc349;
    font-weight: 700;
}

.prices-pack-amount {
    font-family: "Minecraft", Arial, sans-serif;
    font-size: 48px;
    color: #fff;
    text-shadow: 2px 2px #3e3e3e;
    line-height: 1;
}


/* ── Tokens callout ── */
.prices-pack-tokens {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #2e313a;
    border-radius: 6px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.prices-pack-token-num {
    font-family: "Minecraft", Arial, sans-serif;
    font-size: 28px;
    color: #6cc349;
    text-shadow: 0 0 12px rgba(108, 195, 73, 0.4);
}

.prices-pack-token-label {
    font-family: "Minecraftia", monospace;
    font-size: 13px;
    color: #858585;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.prices-pack-enterprise .prices-pack-token-label {color: #ffd700;font-size: 15px;font-family: "Minecraft", Arial, sans-serif;color: #ffd700;text-shadow: 2px 2px #3e3e3e;}

/* ── Features ── */
.prices-pack-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.prices-pack-features li {
    font-family: "Minecraftia", monospace;
    font-size: 14px;
    color: #ccc;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.prices-pack-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6cc349;
    font-weight: 700;
}

.prices-pack-features li strong {
    color: #fff;
}

.prices-feature-save {
    padding-top: 8px !important;
    margin-top: 4px;
    border-top: 1px dashed #2e313a;
    color: #6cc349 !important;
    font-weight: 700;
}

.prices-pack-enterprise .prices-pack-features li::before {
    color: #ffd700;
}

/* ── Value ── */
.prices-pack-value {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid #6cc349;
    border-radius: 4px;
    text-align: center;
    font-family: "Minecraftia", monospace;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}

.prices-pack-value-enterprise {
    border-left-color: #ffd700;
    font-size: 11px;
    color: #ffd700;
    text-align: center;
}

/* ── Button ── */
.prices-pack-btn {
    padding: 12px 16px !important;
    font-size: 13px !important;
    width: 100%;max-width: 280px;
    box-sizing: border-box; align-self: center;
}

.prices-pack-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(#7a7a7a, #5a5a5a) !important;
    border-color: #404040 !important;
    box-shadow: 0 3px #202020 !important;
    color: #ccc !important;
}

/* ============================================
   COMPARISON (reuse compare-* from style.css)
   ============================================ */
.prices-compare-section {
    padding-top: 32px;
}

.prices-compare-section .compare-grid {
    margin: 30px auto;
    max-width: 900px;
}

/* ============================================
   FAQ — réutilise les classes existantes
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}



.prices-cycle-toggle {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #2e313a;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;margin-bottom:32px;justify-self: center;
}

.prices-cycle-btn {
    background: transparent;
    color: #9ca3af;
    border: none;
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.prices-cycle-btn:hover {
    color: #fff;
}

.prices-cycle-btn.active {
    background: linear-gradient(#4caf50, #3d8a3f);
    color: #fff;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.25);
}

.prices-cycle-save {
    background: rgb(69 91 114 / 85%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prices-cycle-btn:not(.active) .panel-cycle-save {
    background: rgba(122, 202, 115, 0.15);
    color: #7aca73;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .prices-packs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .prices-pack-enterprise {grid-template-columns: repeat(1, 1fr);}
    .prices-pack-full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 880px) {
    .prices-free-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 22px;
        gap: 20px;
    }

    .prices-free-right .btn-primary {
        text-align: center;
    }

    .prices-section-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .prices-packs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prices-pack-featured {
        margin: 12px 0;
    }

    .prices-pack-amount {
        font-size: 48px;
    }

    .prices-free-title {
        font-size: 22px;
    }
}
