/* Dark pricing-style layout inspired by the attached design */
.pricing-section {
    background: #0f0f10;
    padding-top: 140px !important;
    padding: 60px 16px;
    color: #e6e6e6;
}

.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
    text-align: center;
}

.pricing-grid {
    display: flex;
    align-items: stretch; /* ensure children stretch to same height */
    justify-content: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px !important;
}

.pricing-card {
    width: 25%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }
}

.pricing-card-content-wrapper {
    background: linear-gradient(180deg, rgba(18, 18, 19, 0.9), rgba(15, 15, 16, 0.95));
    margin: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; /* allow wrapper to grow and match siblings */
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.07);
}

.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 80px;
    margin-bottom: 30px;
}

.pc-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.pc-sub {
    font-size: 13px;
    color: #cfcfcf;
    margin-top: 3px;
}

.pc-price {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.pc-price small {
    font-weight: 500;
    color: #bdbdbd;
    font-size: 13px;
}

.pc-cta {
    margin-top: 18px;
}

.pc-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 26px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    text-align: center
}

.pc-btn:hover {
    opacity: 95%;
}

.pc-features {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    flex: 1 1 auto;
}

.pc-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 8px 0;
    color: #cfcfcf;
    font-size: 13px;
}

.pc-features li .tick {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: transparent;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pc-footer {
    margin-top: 14px;
    color: #9a9a9a;
    font-size: 12px;
}

/* small badges */
.badge-new {
    font-size: 11px;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
}

@media (max-width:760px) {
    .pricing-section {
        padding: 20px 10px;
    }

    .pc-price {
        font-size: 18px;
    }

    .pricing-title {
        margin-bottom: 15px;
    }

    .currency {
        position: static !important;
        transform: none !important;
        justify-content: center !important;
        margin-bottom: 30px !important;

    }
}

/* Empty state — match pricing card styling for realism */
.empty-state {
    display: flex;
    justify-content: center;
    padding: 20px 16px;
    width: 100%;
}

.empty-card {
    max-width: 100%;
    width: 100%;
    background: #111213;
    border-radius: 8px;
    padding: 20px 18px;
    display: flex;
    gap: 25px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45) inset;
    color: #e6e6e6;
}

.empty-icon {
    flex: 0 0 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    color: #6ee7b7;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.empty-body {
    flex: 1 1 auto;
}

.empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px
}

.empty-desc {
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.45
}

.empty-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 25px
}

/* Reuse `.pc-btn` for visual consistency but keep them inline */
.pc-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pc-btn.empty {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 10px;
    width: auto;
    text-align: center;
    font-weight: 600;
}

.pc-btn.empty.primary {
    background: var(--primary-color);
    color: #fff;
}

.pc-btn.empty.secondary {
    background: transparent;
    color: #cfcfcf;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

@media (max-width:760px) {
    .empty-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px
    }

    .empty-icon {
        flex-basis: 48px;
        height: 48px
    }

    .empty-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%
    }
}

.course-name {
    color: var(--primary-color);
    font-style: italic
}

/* === Updated card visuals (overrides) === */
.pricing-card-content-wrapper {
    background: linear-gradient(180deg, rgba(18, 18, 19, 0.94), rgba(12, 12, 13, 0.96));
    margin: 10px;
    border-radius: 14px;
    padding: 22px 20px;
    min-height: 380px;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
}

.pc-header {
    gap: 8px
}

.pc-subtitle {
    display: block;
    color: #bfc0bf;
    font-size: 13px;
    margin-top: 5px
}

.pc-price {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.pc-price small {
    font-size: 13px;
    color: #9da0a0;
    margin-left: 8px
}

.pc-cta {
    margin-top: 20px;
    display: flex;
    justify-content: center
}

.pc-btn {
    min-width: 170px;
    padding: 12px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #0d0d0f, #0b0b0b);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    text-decoration: none;
}
.pc-btn:hover {
    opacity: 0.9;
}

.pc-btn i {
    opacity: 0.8
}

.pc-features {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    flex: 1
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 10px 0
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    color: #cfcfcf;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.feature-text {
    color: #cfcfcf;
    font-size: 13px;
    width: 85%;
}

.more-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 8px;
    display: inline-block
}

@media (max-width:760px) {
    .pricing-card {
        width: 100%
    }

    .pricing-card-content-wrapper {
        min-height: auto;
        padding: 16px
    }

    .pc-price {
        font-size: 28px
    }

    .pc-cta {
        margin-top: 14px
    }
}

/* End updated visuals */