
    .membership-section {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(213, 166, 77, 0.10),
            transparent 28%
        ),
        #f8f6f1;
}

.membership-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.membership-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #c88618;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.membership-heading h2 {
    margin: 0 0 15px;
    color: #004c3f;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
}

.membership-heading p {
    margin: 0;
    color: #6c7c77;
    font-size: 16px;
    line-height: 1.8;
}


/* ================================
   GRID
================================ */

.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}


/* ================================
   CARD
================================ */

.membership-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e6dfd2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(22, 57, 48, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.membership-card:hover {
    transform: translateY(-7px);
    border-color: #cdbd9e;
    box-shadow: 0 22px 55px rgba(22, 57, 48, 0.11);
}


/* ================================
   FEATURED
================================ */

.membership-featured {
    border: 2px solid #c88a25;
    box-shadow: 0 20px 55px rgba(185, 126, 30, 0.14);
}

.membership-popular {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    padding: 8px 18px;
    border-radius: 0 0 13px 13px;
    background: #c88720;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    transform: translateX(-50%);
}


/* ================================
   CARD HEADER
================================ */

.membership-card-top {
    padding: 34px 27px 25px;
}

.membership-featured .membership-card-top {
    padding-top: 48px;
}

.membership-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #edf6f1;
    color: #05755e;
    font-size: 21px;
}

.membership-family .membership-icon {
    background: #fff4e4;
    color: #c67d14;
}

.membership-elite .membership-icon {
    background: #004c3f;
    color: #e9b657;
}

.membership-plan-name {
    margin-bottom: 8px;
    color: #008268;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.membership-card h3 {
    min-height: 52px;
    margin: 0;
    color: #173e35;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}


/* ================================
   PRICE
================================ */

.membership-price {
    display: flex;
    align-items: baseline;
    margin-top: 22px;
    color: #004c3f;
}

.membership-price .currency {
    margin-right: 4px;
    font-size: 19px;
    font-weight: 700;
}

.membership-price strong {
    font-size: 38px;
    font-weight: 750;
    line-height: 1;
}

.membership-price .period {
    margin-left: 6px;
    color: #8b9793;
    font-size: 12px;
}


/* ================================
   DIVIDER
================================ */

.membership-divider {
    height: 1px;
    margin: 0 27px;
    background: #eee8df;
}


/* ================================
   BENEFITS
================================ */

.membership-benefits {
    flex: 1;
    padding: 24px 27px;
}

.membership-benefit-heading {
    min-height: 36px;
    margin: 0 0 17px;
    color: #75847e;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.membership-benefits ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.membership-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: #50635c;
    font-size: 12px;
    line-height: 1.5;
}

.membership-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f5ef;
    color: #08765f;
    font-size: 8px;
}

.membership-elite .membership-check {
    background: #f5ead5;
    color: #ae771c;
}


/* ================================
   BUTTON
================================ */

.membership-card-footer {
    padding: 0 27px 28px;
}

.membership-button {
    min-height: 49px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #005343;
    border-radius: 13px;
    color: #005343;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.membership-button:hover {
    background: #005343;
    color: #fff;
}

.membership-featured .membership-button,
.membership-elite .membership-button {
    border-color: #005343;
    background: #005343;
    color: #fff;
}

.membership-featured .membership-button:hover,
.membership-elite .membership-button:hover {
    background: #08745e;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {

    .membership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .membership-section {
        padding: 60px 0;
    }

    .membership-heading {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .membership-heading h2 {
        font-size: 32px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-card h3 {
        min-height: auto;
    }

    .membership-benefit-heading {
        min-height: auto;
    }

}
