/* =========================================================
   YOUR EXAM BUDDY
   PREMIUM SAAS MEMBERSHIP / PRICING
   VERSION 2
========================================================= */

.see-membership-page {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 28px 95px;
    box-sizing: border-box;

    color: #0b1f3a;
    font-family: inherit;

    position: relative;
}


/* =========================================================
   SUBTLE PAGE BACKGROUND
========================================================= */

.see-membership-page::before {
    content: "";
    position: absolute;

    top: 20px;
    left: -100px;

    width: 260px;
    height: 260px;

    background: rgba(37, 99, 235, 0.055);

    border-radius: 50%;

    filter: blur(65px);

    pointer-events: none;
}

.see-membership-page::after {
    content: "";

    position: absolute;

    top: 80px;
    right: -100px;

    width: 300px;
    height: 300px;

    background: rgba(96, 165, 250, 0.05);

    border-radius: 50%;

    filter: blur(75px);

    pointer-events: none;
}


/* =========================================================
   HERO
========================================================= */

.see-membership-hero {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 62px;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.see-membership-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 18px;

    border: 1px solid #cfe0ff;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #f1f6ff,
            #ffffff
        );

    color: #2563eb;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    box-shadow:
        0 6px 20px rgba(37, 99, 235, 0.07);
}


/* =========================================================
   HERO TITLE
========================================================= */

.see-membership-hero h1 {
    margin: 0;

    color: #0b1f3a;

    font-size: 46px;

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -1.7px;
}

.see-membership-hero h1 span {
    color: #2563eb;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.see-membership-hero p {
    max-width: 720px;

    margin: 17px auto 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PLANS
========================================================= */

.see-membership-plans {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


/* =========================================================
   PLAN CARD
========================================================= */

.see-membership-plan-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 500px;

    padding: 30px;

    box-sizing: border-box;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfdff 100%
        );

    border: 1px solid #dce5f0;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.055);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* =========================================================
   TOP ACCENT
========================================================= */

.see-membership-plan-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #1d4ed8,
            #3b82f6,
            #60a5fa
        );
}


/* =========================================================
   CARD HOVER
========================================================= */

.see-membership-plan-card:hover {
    transform: translateY(-7px);

    border-color: #b9d2ff;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.10);
}


/* =========================================================
   POPULAR CARD
========================================================= */

.see-membership-plan-card.is-popular {
    border: 1.5px solid #2563eb;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7fbff 100%
        );

    box-shadow:
        0 22px 60px rgba(37, 99, 235, 0.14);

    transform: translateY(-5px);
}

.see-membership-plan-card.is-popular:hover {
    transform: translateY(-10px);

    box-shadow:
        0 30px 75px rgba(37, 99, 235, 0.19);
}


/* =========================================================
   BEST VALUE
========================================================= */

.see-membership-plan-card.is-best-value {
    border-color: #58d4c5;

    box-shadow:
        0 18px 55px rgba(13, 148, 136, 0.10);
}


/* =========================================================
   BADGES
========================================================= */

.see-membership-badge {
    position: absolute;

    top: 16px;
    right: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 11px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .7px;

    text-transform: uppercase;

    box-shadow:
        0 7px 18px rgba(37, 99, 235, 0.20);
}


/* BEST VALUE */

.is-best-value .see-membership-badge {
    background:
        linear-gradient(
            135deg,
            #0f9f8f,
            #0d9488
        );

    box-shadow:
        0 7px 18px rgba(13, 148, 136, 0.18);
}


/* BEST DEAL */

.see-membership-plan-card.is-best-deal {
    border-color: #fed7aa;
}

.is-best-deal .see-membership-badge {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ea580c
        );

    box-shadow:
        0 7px 18px rgba(245, 158, 11, 0.18);
}


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

.see-plan-header {
    min-height: 126px;

    padding-right: 55px;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.see-plan-small {
    display: inline-flex;

    margin-bottom: 10px;

    color: #2563eb;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}


/* =========================================================
   PLAN TITLE
========================================================= */

.see-plan-header h2 {
    margin: 0;

    color: #0b1f3a;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 900;

    letter-spacing: -.35px;
}


/* =========================================================
   PLAN DESCRIPTION
========================================================= */

.see-plan-header p {
    margin: 9px 0 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.65;
}


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

.see-plan-price {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 5px;

    min-height: 78px;

    margin-top: 9px;

    padding: 18px 0;

    border-top: 1px solid #e4eaf2;

    border-bottom: 1px solid #e4eaf2;

    color: #0b1f3a;

    font-size: 13px;

    line-height: 1.2;
}

.see-plan-price strong {
    color: #0b1f3a;

    font-size: 29px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -.7px;
}

.see-plan-price span {
    color: #64748b;

    font-size: 11px;

    font-weight: 600;
}


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

.is-popular .see-plan-price strong {
    color: #2563eb;
}


/* =========================================================
   BEST VALUE PRICE
========================================================= */

.is-best-value .see-plan-price strong {
    color: #0f9488;
}


/* =========================================================
   BEST DEAL PRICE
========================================================= */

.is-best-deal .see-plan-price strong {
    color: #ea580c;
}


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

.see-plan-features {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 23px 0 28px;

    padding: 0;

    list-style: none;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.see-plan-features li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #475569;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   CHECK
========================================================= */

.see-feature-check {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 20px;

    height: 20px;

    border: 1px solid #cfe0ff;

    border-radius: 50%;

    background: #f0f6ff;

    color: #2563eb;

    font-size: 10px;

    font-weight: 900;
}


/* =========================================================
   POPULAR CHECK
========================================================= */

.is-popular .see-feature-check {
    border-color: #bcd3ff;

    background: #e8f0ff;

    color: #2563eb;
}


/* =========================================================
   BEST VALUE CHECK
========================================================= */

.is-best-value .see-feature-check {
    border-color: #99f6e4;

    background: #ecfdf8;

    color: #0f9488;
}


/* =========================================================
   BEST DEAL CHECK
========================================================= */

.is-best-deal .see-feature-check {
    border-color: #fed7aa;

    background: #fff7ed;

    color: #ea580c;
}


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

.see-plan-button-wrap {
    margin-top: auto;
}


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

.see-plan-button {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    min-height: 48px;

    padding: 12px 18px;

    box-sizing: border-box;

    border: 1px solid transparent;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #0f4c63,
            #0b526c
        );

    color: #ffffff !important;

    font-size: 11px;

    font-weight: 900;

    text-decoration: none !important;

    box-shadow:
        0 8px 20px rgba(15, 76, 99, 0.13);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* BUTTON HOVER */

.see-plan-button:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff !important;

    box-shadow:
        0 13px 28px rgba(37, 99, 235, .20);
}


/* BUTTON ARROW */

.see-plan-button span {
    font-size: 15px;

    line-height: 1;
}


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

.is-popular .see-plan-button {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    box-shadow:
        0 10px 25px rgba(37, 99, 235, .23);
}

.is-popular .see-plan-button:hover {
    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #1e40af
        );
}


/* =========================================================
   BEST VALUE BUTTON
========================================================= */

.is-best-value .see-plan-button {
    background:
        linear-gradient(
            135deg,
            #0f9f8f,
            #0d9488
        );

    box-shadow:
        0 10px 25px rgba(13, 148, 136, .20);
}

.is-best-value .see-plan-button:hover {
    background:
        linear-gradient(
            135deg,
            #0d9488,
            #0f766e
        );
}


/* =========================================================
   BEST DEAL BUTTON
========================================================= */

.is-best-deal .see-plan-button {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ea580c
        );

    box-shadow:
        0 10px 25px rgba(245, 158, 11, .18);
}

.is-best-deal .see-plan-button:hover {
    background:
        linear-gradient(
            135deg,
            #ea580c,
            #c2410c
        );
}


/* =========================================================
   CURRENT PLAN
========================================================= */

.see-plan-current {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 48px;

    padding: 12px 18px;

    box-sizing: border-box;

    border: 1px solid #b9d0f5;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #f1f6ff
        );

    color: #475569;

    font-size: 11px;

    font-weight: 900;
}


/* =========================================================
   FREE PLAN
========================================================= */

.see-membership-plan-card:first-child {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );
}

.see-membership-plan-card:first-child::before {
    background:
        linear-gradient(
            90deg,
            #94a3b8,
            #cbd5e1
        );
}

.see-membership-plan-card:first-child
.see-plan-small {
    color: #64748b;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.see-membership-trust {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0;

    margin-top: 38px;

    padding: 23px 10px;

    border: 1px solid #dce5f0;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #ffffff
        );

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .045);
}


/* =========================================================
   TRUST ITEM
========================================================= */

.see-membership-trust > div {
    position: relative;

    padding: 5px 28px;
}

.see-membership-trust > div:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 3px;
    right: 0;

    width: 1px;

    height: calc(100% - 6px);

    background: #e2e8f0;
}


/* =========================================================
   TRUST TITLE
========================================================= */

.see-membership-trust strong {
    display: block;

    margin-bottom: 5px;

    color: #0b1f3a;

    font-size: 12px;

    font-weight: 900;
}


/* =========================================================
   TRUST DESCRIPTION
========================================================= */

.see-membership-trust span {
    display: block;

    color: #64748b;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   SECURITY NOTE
========================================================= */

.see-membership-page::marker {
    display: none;
}


/* =========================================================
   ERROR
========================================================= */

.see-membership-error {
    position: relative;

    max-width: 600px;

    margin: 60px auto;

    padding: 30px;

    text-align: center;

    border: 1px solid #fecaca;

    border-radius: 18px;

    background: #fff7f7;

    color: #991b1b;

    box-shadow:
        0 10px 35px rgba(127, 29, 29, .07);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .see-membership-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .see-membership-plans {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .see-membership-plan-card {
        min-height: 490px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .see-membership-page {
        padding:
            45px 15px 65px;
    }

    .see-membership-hero {
        margin-bottom: 38px;
    }

    .see-membership-eyebrow {
        padding: 7px 12px;

        font-size: 9px;
    }

    .see-membership-hero h1 {
        font-size: 32px;

        letter-spacing: -.9px;
    }

    .see-membership-hero p {
        font-size: 13px;

        line-height: 1.7;
    }

    .see-membership-plans {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .see-membership-plan-card {
        min-height: auto;

        padding: 25px;

        border-radius: 18px;
    }

    .see-membership-plan-card.is-popular {
        transform: none;
    }

    .see-membership-plan-card.is-popular:hover {
        transform: translateY(-5px);
    }

    .see-plan-header {
        min-height: auto;

        padding-right: 50px;
    }

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

    .see-plan-price {
        margin-top: 17px;
    }

    .see-plan-price strong {
        font-size: 28px;
    }

    .see-plan-features {
        margin-top: 22px;
    }

    .see-membership-badge {
        top: 14px;
        right: 14px;
    }

    .see-membership-trust {
        grid-template-columns: 1fr;

        gap: 0;

        padding: 10px;

        border-radius: 16px;
    }

    .see-membership-trust > div {
        padding: 16px 10px;
    }

    .see-membership-trust > div:not(:last-child)::after {
        display: none;
    }

    .see-membership-trust > div:not(:last-child) {
        border-bottom: 1px solid #e2e8f0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .see-membership-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .see-membership-hero h1 {
        font-size: 28px;
    }

    .see-membership-plan-card {
        padding: 22px;
    }

    .see-plan-header h2 {
        font-size: 19px;
    }

    .see-plan-price strong {
        font-size: 25px;
    }

}