/* ==========================================
   PROHZ PRICING CARDS
   Clean • Professional • Compact
   ========================================== */

.col {
    display: flex;
    width: 100%;
}

.card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
                transform 0.2s ease;
}

.card-wrapper:hover {
    border-color: #cfd4dc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}


/* ==========================================
   CARD CONTENT
   ========================================== */

.title-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 24px 22px;
}


/* ==========================================
   PLAN HEADER
   ========================================== */

.plan-header {
    margin-bottom: 16px;
}

.plan-header h3 {
    margin: 0 0 7px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.plan-header p {
    margin: 0;
    max-width: 390px;
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
}


/* ==========================================
   MOST POPULAR LABEL
   ========================================== */

.plan-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 9px;
    padding: 4px 9px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;

    /* Uses your existing theme */
    background: #f3f4f6;
    color: #374151;
}


/* ==========================================
   FEATURED CARD
   ========================================== */


/* ==========================================
   PRICE
   ========================================== */

.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 17px;
    margin-top: 5px;
}

.promo-price {
    margin: 0;
    font-size: 29px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.price-note {
    font-size: 12px;
    line-height: 1.2;
    color: #6b7280;
}


/* ==========================================
   BUTTON
   ========================================== */

.card-wrapper button {
    width: 100%;
    min-height: 40px;
    padding: 9px 16px;

    border: 1px solid var(--primary-color, #428324);
    border-radius: 5px;

    background: var(--primary-color, #428324);
    color: #fff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    cursor: pointer;

    transition: background-color 0.2s ease,
                border-color 0.2s ease,
                transform 0.15s ease;
}

.card-wrapper button:hover {
    background: var(--primary-color-dark, #428324);
    border-color: var(--primary-color-dark, #428324);
}

.card-wrapper button:active {
    transform: translateY(1px);
}


/* ==========================================
   FEATURES
   ========================================== */

.card-meta {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid #edf0f2;
}

.card-meta ul {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.card-meta li {
    position: relative;
    padding-left: 19px;

    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
}

.card-meta li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    font-size: 12px;
    font-weight: 700;

    color: var(--primary-color, #428324);
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 767px) {

    .title-wrapper {
        padding: 21px 20px 20px;
    }

    .plan-header h3 {
        font-size: 20px;
    }

    .plan-header p {
        font-size: 13px;
    }

    .promo-price {
        font-size: 27px;
    }

    .card-meta li {
        font-size: 12.5px;
    }
}