/* GLOBAL SAFETY (recommended) */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* SECTION */
.pricing-section {
    background: #f7f9fc;
    padding: 80px 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    width: 320px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}

/* FEATURED CARD */
.pricing-card.featured {
    background: linear-gradient(180deg, #02002c, #03064f);
    color: #fff;
    transform: scale(1.05);
}

/* TEXT */
.plan-name {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 10px;
}

.amount {
    font-size: 42px;
    font-weight: 700;
}

.duration {
    color: #aaa;
}

.fee {
    color: #3cb371;
    font-size: 14px;
    margin-bottom: 15px;
}

.success {
    color: #5ddf91;
}

/* BUTTON (ANCHOR + BUTTON SAFE) */
.btn-primary {
    display: block;
    width: 100%;

    background: #4564b2;
    color: #fff;
    padding: 14px;

    border-radius: 10px;
    border: none;
    outline: none;

    font-size: 16px;
    font-family: inherit;
    line-height: 1;
    text-align: center;

    cursor: pointer;
    margin-bottom: 15px;

    text-decoration: none;

    appearance: none;
    -webkit-appearance: none;
}

.btn-primary:hover {
    background: #2f55d4;
}

.btn-primary:focus-visible {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 2px;
}

/* FEATURES LIST */
.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    margin: 12px 0;
    font-size: 14px;
}

.features li.yes::before {
    content: "✔";
    color: #4564b2;
    margin-right: 10px;
}

.features li.no::before {
    content: "✖";
    color: #ccc;
    margin-right: 10px;
}

/* TAGS */
.tag {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 6px;
    margin-right: 6px;
}

.orange {
    background: #ffb703;
    color: #000;
}

.green {
    background: #00c896;
    color: #fff;
}
