/* =========================
   PRICING CARDS BASE STYLE (PREMIUM)
========================= */

.card-plan {
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 24px;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Segoe UI", sans-serif;
}

.card-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    border-color: #dbe6f3;
}

/* =========================
   PACKAGE HEADER
========================= */

.card-plan__package {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-plan__package .icon img {
    width: 38px;
    height: 38px;
}

.package__name {
    font-size: 22px;
    font-weight: 900; /* 🔥 BOLD */
    margin: 0;
    color: #111827;
    letter-spacing: 0.5px;
}

/* =========================
   DESCRIPTION (CENTER + BOLD LOOK)
========================= */

.card-plan__desc {
    font-size: 15px;
    font-weight: 600;  /* 🔥 BOLD */
    color: #4b5563;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.4;
}

/* =========================
   PRICE (STRONG VISUAL)
========================= */

.card-plan__price {
    text-align: center;
    margin: 10px 0;
}

.card-plan__price h5 {
    font-size: 32px;
    font-weight: 900; /* 🔥 VERY BOLD */
    color: #111827;
}

.card-plan__price sup {
    font-size: 14px;
    font-weight: 700;
}

.card-plan__price sub {
    font-size: 15px;
    font-weight: 700;
    color: #10b981;
}

/* =========================
   BUTTON (MORE STRONG CTA)
========================= */

.card-plan__cartbtn {
    text-align: center;
    margin: 18px 0;
}

.card-plan__cartbtn a {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 800; /* 🔥 BOLD BUTTON TEXT */
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(16,185,129,0.25);
}

.card-plan__cartbtn a:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(59,130,246,0.3);
}

/* =========================
   FEATURES LIST (CLEAN + BOLD TEXT)
========================= */

.card-plan__feature--list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-plan__feature--list-item {
    font-size: 14.5px;
    font-weight: 600; /* 🔥 BOLD TEXT */
    padding: 9px 0;
    border-bottom: 1px dashed #eef2f7;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.card-plan__feature--list-item i {
    color: #10b981;
    font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .card-plan {
        padding: 18px;
    }

    .package__name {
        font-size: 20px;
    }

    .card-plan__price h5 {
        font-size: 26px;
    }

    .card-plan__desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card-plan {
        padding: 15px;
    }

    .card-plan__cartbtn a {
        width: 100%;
        text-align: center;
    }
}