/* =========================================================
   SHAR'AH SCHOOL PRICES
   PREMIUM YELLOW PRICING EXPERIENCE
   ========================================================= */

.school-prices-page {

    --price-yellow: #ffd21c;
    --price-yellow-light: #ffe76a;
    --price-blue: #0877d1;
    --price-blue-light: #1295ee;
    --price-navy: #021128;
    --price-text: #40556f;
    --price-muted: #718198;

    position: relative;

    overflow: hidden;

    color: var(--price-navy);

    background:
        #fffdf0;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.prices-container {

    width:
        min(
            1240px,
            calc(100% - 50px)
        );

    margin:
        0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.prices-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: white;

    background: #021128;
}


/* =========================================================
   BACKGROUND VIDEO
   ========================================================= */

.prices-hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   VIDEO OVERLAY
   ========================================================= */

.prices-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            rgba(2,17,40,0.84),
            rgba(6,58,126,0.60),
            rgba(255,210,28,0.18)
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.prices-hero-content {

    position: relative;

    z-index: 2;

    width: min(900px, calc(100% - 40px));

    padding: 80px 20px;

    text-align: center;

    animation:
        pricesHeroReveal
        1s
        ease
        both;
}


.prices-hero-content h1 {

    margin-top: 20px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3rem,
            6vw,
            5.8rem
        );

    line-height: 0.95;

    letter-spacing: -0.07em;

    font-weight: 850;
}


.prices-hero-content h1 span {

    display: block;

    color:
        var(--sed-gold);
}


.prices-hero-content p {

    max-width: 680px;

    margin: 25px auto 0;

    color:
        rgba(255,255,255,0.78);

    font-size: 1rem;

    line-height: 1.8;
}


@keyframes pricesHeroReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

.prices-digital-grid {

    position: absolute;

    inset: 0;

    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(2,17,40,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(2,17,40,0.08) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 85%
        );

    pointer-events: none;
}


.prices-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    border: 1px solid
        rgba(8,119,209,0.12);
}


.prices-orb-one {

    width: 480px;
    height: 480px;

    right: -220px;
    top: -180px;

    background:
        rgba(255,255,255,0.18);

    box-shadow:
        0 0 100px
        rgba(255,255,255,0.3);

    animation:
        priceOrbFloat 10s
        ease-in-out
        infinite;
}


.prices-orb-two {

    width: 240px;
    height: 240px;

    left: -120px;
    bottom: -110px;

    background:
        rgba(8,119,209,0.04);

    animation:
        priceOrbFloat 8s
        1s
        ease-in-out
        infinite
        reverse;
}


@keyframes priceOrbFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-18px)
            scale(1.04);
    }
}


.prices-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding:
        90px 0;
}


.prices-eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    color:
        var(--price-blue);

    font-size:
        0.66rem;

    font-weight:
        900;

    letter-spacing:
        0.2em;
}


.prices-eyebrow span {

    width: 35px;
    height: 2px;

    background:
        var(--price-blue);
}


.prices-hero h1 {

    max-width: 850px;

    margin-top: 22px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.5rem,
            7vw,
            7rem
        );

    line-height:
        0.9;

    letter-spacing:
        -0.075em;

    font-weight:
        900;
}


.prices-hero h1 span {

    display: block;

    color:
        var(--yellow);
}


.prices-hero-content > p {

    max-width: 690px;

    margin-top: 30px;

    color:
        rgba(255,255,255,0.72);

    font-size: 1.05rem;

    line-height: 1.85;
}


/* =========================================================
   CURRENCY CONTROL
   ========================================================= */

.currency-control {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;

    padding: 8px 13px;

    border:
        1px solid
        rgba(2,17,40,0.12);

    border-radius: 50px;

    background:
        rgba(255,255,255,0.5);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 10px 30px
        rgba(2,17,40,0.08);
}


.currency-label {

    color:
        rgba(2,17,40,0.42);

    font-size:
        0.65rem;

    font-weight:
        900;

    letter-spacing:
        0.12em;

    transition:
        color 0.3s ease;
}


.currency-label.active {

    color:
        var(--price-navy);
}


.currency-toggle {

    position: relative;

    width: 55px;
    height: 28px;

    padding: 0;

    border: 0;

    border-radius: 50px;

    cursor: pointer;

    background:
        var(--price-navy);

    box-shadow:
        inset 0 2px 5px
        rgba(0,0,0,0.2);

    transition:
        background 0.3s ease;
}


.currency-toggle-knob {

    position: absolute;

    width: 22px;
    height: 22px;

    left: 3px;
    top: 3px;

    border-radius: 50%;

    background:
        var(--price-yellow);

    box-shadow:
        0 3px 10px
        rgba(0,0,0,0.25);

    transition:
        transform 0.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.currency-toggle.usd
.currency-toggle-knob {

    transform:
        translateX(27px);
}


.prices-term-note {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 15px;

    color:
        var(--yellow);

    font-size:
        0.72rem;
}


.prices-term-note i {

    color:
        var(--yellow);
}


/* =========================================================
   PRICING SECTION
   ========================================================= */

.pricing-section {

    position: relative;

    padding:
        120px 0 100px;

    background:
        #fffdf0;
}


.pricing-section-heading {

    max-width: 680px;

    margin:
        0 auto 70px;

    text-align: center;
}


.section-kicker {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--price-blue);

    font-size:
        0.62rem;

    font-weight:
        900;

    letter-spacing:
        0.17em;
}


.section-kicker i {

    color:
        var(--price-yellow);

    filter:
        drop-shadow(
            0 2px 4px
            rgba(2,17,40,0.15)
        );
}


.pricing-section-heading h2 {

    margin-top: 18px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    line-height: 0.95;

    letter-spacing:
        -0.065em;
}


.pricing-section-heading h2 span {

    color:
        var(--price-blue);
}


.pricing-section-heading p {

    max-width: 600px;

    margin: 23px auto 0;

    color:
        var(--price-text);

    font-size:
        0.95rem;

    line-height:
        1.8;
}


/* =========================================================
   PRICING GRID
   ========================================================= */

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* =========================================================
   CARD
   ========================================================= */

.price-card {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(2,17,40,0.08);

    border-radius: 26px;

    background:
        rgba(255,255,255,0.88);

    box-shadow:
        0 18px 50px
        rgba(2,17,40,0.08);

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s
            cubic-bezier(
                0.22,
                1,
                0.36,
                1
            ),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.price-card.is-visible {

    opacity: 1;

    transform:
        translateY(0);
}


.price-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(8,119,209,0.2);

    box-shadow:
        0 30px 75px
        rgba(2,17,40,0.14);
}


/* =========================================================
   FEATURED
   ========================================================= */

.price-card.featured {

    border:
        2px solid
        rgba(255,210,28,0.65);

    box-shadow:
        0 25px 70px
        rgba(255,190,0,0.16);
}


.featured-ribbon {

    position: absolute;

    z-index: 5;

    top: 18px;
    right: -34px;

    width: 135px;

    padding: 7px 0;

    transform:
        rotate(45deg);

    text-align: center;

    color:
        var(--price-navy);

    background:
        var(--price-yellow);

    font-size:
        0.53rem;

    font-weight:
        900;

    letter-spacing:
        0.1em;

    box-shadow:
        0 5px 15px
        rgba(2,17,40,0.12);
}


/* =========================================================
   IMAGE
   ========================================================= */

.price-card-image {

    position: relative;

    height: 175px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #021128,
            #063a7e
        );
}


.price-card-image::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(255,210,28,0.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,210,28,0.4) 1px,
            transparent 1px
        );

    background-size: 25px 25px;
}


.price-card-image::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,210,28,0.18);

    box-shadow:
        0 0 0 25px
        rgba(255,210,28,0.035);

    animation:
        cardRing 7s
        linear
        infinite;
}


@keyframes cardRing {

    to {
        transform:
            rotate(360deg);
    }
}


.price-card-image img {

    position: relative;

    z-index: 2;

    width: 150px;
    height: auto;

    object-fit: contain;

    border-radius:50%;

    filter:
        drop-shadow(
            0 10px 20px
            rgba(0,0,0,0.25)
        );

    transition:
        transform 0.5s ease;
}


.price-card:hover
.price-card-image img {

    transform:
        scale(1.08);
}


.price-card-number {

    position: absolute;

    z-index: 3;

    left: 18px;
    bottom: 14px;

    color:
        rgba(255,255,255,0.35);

    font-family:
        var(--font-heading);

    font-size:
        2.5rem;

    line-height: 1;

    font-weight:
        900;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.price-card-body {

    padding:
        30px 28px 28px;
}


.price-card-heading > span {

    color:
        var(--price-blue);

    font-size:
        0.55rem;

    font-weight:
        900;

    letter-spacing:
        0.15em;
}


.price-card-heading h3 {

    min-height: 54px;

    margin-top: 8px;

    color:
        navy;

    font-family:
        var(--font-heading);

    font-size:
        1.45rem;

    line-height:
        1;

    letter-spacing:
        -0.035em;
}


.price-card-heading h3 small {

    display: block;

    margin-top: 6px;

    color:
        var(--price-muted);

    font-family:
        inherit;

    font-size:
        0.82rem;

    font-weight:
        700;

    letter-spacing:
        0;
}


/* =========================================================
   BREAKDOWN
   ========================================================= */

.price-breakdown {

    margin-top: 25px;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(2,17,40,0.08);
}


.price-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 9px 0;

    color:
        var(--price-text);

    font-size:
        0.69rem;
}


.price-row strong {

    color:
        var(--price-navy);

    font-size:
        0.72rem;

    font-weight:
        800;

    white-space:
        nowrap;
}


.not-applicable {

    color:
        var(--price-muted) !important;
}


/* =========================================================
   TOTAL
   ========================================================= */

.price-total {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 12px;

    padding:
        18px 0 16px;

    border-top:
        2px solid
        rgba(255,210,28,0.45);
}


.price-total span {

    color:
        var(--price-text);

    font-size:
        0.65rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.price-total strong {

    color:
        var(--price-blue);

    font-family:
        var(--font-heading);

    font-size:
        1.3rem;

    font-weight:
        900;

    white-space:
        nowrap;
}


/* =========================================================
   SHANOA
   ========================================================= */

.shanoa-option {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    min-height: 48px;

    padding:
        11px 13px;

    border-radius: 13px;

    background:
        rgba(255,210,28,0.10);
}


.shanoa-option > span {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #9a7600;

    font-size:
        0.6rem;

    font-weight:
        900;

    letter-spacing:
        0.08em;
}


.shanoa-option > span i {

    color:
        var(--price-yellow);

    text-shadow:
        0 2px 5px
        rgba(154,118,0,0.25);
}


.shanoa-option > strong {

    color:
        var(--price-navy);

    font-size:
        0.65rem;

    text-align: right;
}


.shanoa-option.unavailable {

    opacity:
        0.55;

    background:
        rgba(2,17,40,0.035);
}


.shanoa-option.offered {

    background:
        rgba(8,119,209,0.07);
}


.shanoa-option.offered > span {

    color:
        var(--price-blue);
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.pricing-disclaimer {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    max-width: 950px;

    margin:
        55px auto 0;

    padding:
        22px 25px;

    border:
        1px solid
        rgba(8,119,209,0.1);

    border-radius: 17px;

    background:
        rgba(255,255,255,0.7);
}


.pricing-disclaimer > i {

    flex-shrink: 0;

    margin-top: 2px;

    color:
        var(--price-blue);
}


.pricing-disclaimer p {

    color:
        var(--price-muted);

    font-size:
        0.69rem;

    line-height:
        1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.prices-cta {

    padding:
        0 0 110px;

    background:
        #fffdf0;
}


.prices-cta-inner {

    position: relative;

    display: flex;

    align-items: center;

    gap: 28px;

    padding:
        50px 55px;

    overflow: hidden;

    border-radius: 30px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--price-navy),
            #063a7e
        );

    box-shadow:
        0 30px 75px
        rgba(2,17,40,0.16);
}


.prices-cta-inner::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,210,28,0.25);

    box-shadow:
        0 0 0 35px
        rgba(255,210,28,0.04),

        0 0 0 75px
        rgba(255,210,28,0.025);
}


.prices-cta-icon {

    position: relative;

    z-index: 2;

    width: 68px;
    height: 68px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 19px;

    color:
        var(--price-navy);

    background:
        var(--price-yellow);

    font-size: 1.5rem;

    box-shadow:
        0 12px 30px
        rgba(255,210,28,0.2);
}


.prices-cta-inner > div:nth-child(2) {

    position: relative;

    z-index: 2;

    flex: 1;
}


.prices-cta-inner > div:nth-child(2) > span {

    color:
        var(--price-yellow);

    font-size:
        0.58rem;

    font-weight:
        900;

    letter-spacing:
        0.16em;
}


.prices-cta h2 {

    margin-top: 8px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.8rem
        );

    line-height: 1;

    letter-spacing:
        -0.05em;
}


.prices-cta p {

    max-width: 600px;

    margin-top: 10px;

    color:
        rgba(255,255,255,0.65);

    font-size:
        0.78rem;

    line-height:
        1.7;
}


.prices-cta-button {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    padding:
        15px 21px;

    border-radius: 12px;

    color:
        var(--price-navy);

    background:
        var(--price-yellow);

    font-size:
        0.68rem;

    font-weight:
        900;

    text-decoration: none;

    box-shadow:
        0 10px 25px
        rgba(255,210,28,0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.prices-cta-button:hover {

    transform:
        translateY(-3px);

    background:
        var(--price-yellow-light);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .pricing-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .prices-hero {

        min-height: 530px;
    }

}


@media (max-width: 800px) {

    .prices-container {

        width:
            calc(100% - 35px);
    }

    .prices-hero-content {

        padding:
            75px 0;
    }

    .prices-hero h1 {

        font-size:
            clamp(
                3rem,
                11vw,
                5rem
            );
    }

    .pricing-section {

        padding:
            90px 0 75px;
    }

    .pricing-grid {

        grid-template-columns:
            1fr;
    }

    .price-card {

        max-width: 600px;

        width: 100%;

        margin: 0 auto;
    }

    .prices-cta-inner {

        flex-direction: column;

        align-items: flex-start;

        padding:
            40px 30px;
    }

}


@media (max-width: 550px) {

    .prices-hero {

        min-height:
            500px;
    }

    .prices-eyebrow {

        font-size:
            0.55rem;
    }

    .prices-hero h1 {

        font-size:
            2.85rem;
    }

    .prices-hero-content > p {

        font-size:
            0.88rem;
    }

    .price-card-body {

        padding:
            25px 22px;
    }

    .price-card-image {

        height:
            155px;
    }

    .pricing-disclaimer {

        padding:
            18px;
    }

    .prices-cta-button {

        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .school-prices-page *,
    .school-prices-page *::before,
    .school-prices-page *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}

/* =========================================================
   PAYMENT PLANS & DISCOUNTS
   ========================================================= */

.payment-plans-section {

    position: relative;

    padding: 120px 0 130px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #fffdf1 0%,
            #fff9d9 45%,
            #ffffff 100%
        );

    color:
        #021128;
}


.payment-plans-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -260px;
    top: 180px;

    border-radius: 50%;

    background:
        rgba(255,210,28,0.13);

    filter:
        blur(80px);

    pointer-events: none;
}


.payment-plans-section::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -230px;
    bottom: 100px;

    border-radius: 50%;

    background:
        rgba(8,119,209,0.06);

    filter:
        blur(70px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.payment-plans-container {

    position: relative;

    z-index: 2;

    width:
        min(
            1200px,
            calc(100% - 50px)
        );

    margin:
        0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.payment-plans-header {

    max-width: 760px;

    margin:
        0 auto 70px;

    text-align: center;
}


.payment-plans-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        #0877d1;

    font-size:
        0.65rem;

    font-weight:
        850;

    letter-spacing:
        0.18em;
}


.payment-plans-eyebrow i {

    color:
        #d5a900;
}


.payment-plans-header h2 {

    margin-top:
        18px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.8rem,
            5vw,
            5rem
        );

    line-height:
        0.95;

    letter-spacing:
        -0.065em;

    font-weight:
        850;
}


.payment-plans-header h2 span {

    color:
        #0877d1;
}


.payment-plans-header p {

    max-width:
        650px;

    margin:
        24px auto 0;

    color:
        #40556f;

    font-size:
        0.98rem;

    line-height:
        1.8;
}


/* =========================================================
   PAYMENT GRID
   ========================================================= */

.payment-plan-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        24px;
}


/* =========================================================
   PAYMENT CARD
   ========================================================= */

.payment-plan-card {

    position:
        relative;

    min-height:
        420px;

    padding:
        32px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(2,17,40,0.08);

    border-radius:
        26px;

    background:
        rgba(255,255,255,0.88);

    box-shadow:
        0 20px 55px
        rgba(2,17,40,0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.payment-plan-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 30px 70px
        rgba(2,17,40,0.13);
}


.payment-plan-card::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(255,210,28,0.12);

    transition:
        transform 0.5s ease;
}


.payment-plan-card:hover::after {

    transform:
        scale(1.4);
}


/* =========================================================
   CARD COLORS
   ========================================================= */

.payment-plan-standard {

    border-top:
        4px solid
        #0877d1;
}


.payment-plan-semester {

    border-top:
        4px solid
        #ffd21c;
}


.payment-plan-stretch {

    border-top:
        4px solid
        #063a7e;
}


/* =========================================================
   CARD TOP
   ========================================================= */

.payment-plan-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        30px;
}


.payment-plan-icon {

    width:
        58px;

    height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        17px;

    color:
        #0877d1;

    background:
        rgba(8,119,209,0.09);

    font-size:
        1.25rem;
}


.payment-plan-semester .payment-plan-icon {

    color:
        #a47b00;

    background:
        rgba(255,210,28,0.18);
}


.payment-plan-stretch .payment-plan-icon {

    color:
        white;

    background:
        #063a7e;
}


.payment-plan-number {

    color:
        rgba(2,17,40,0.12);

    font-family:
        var(--font-heading);

    font-size:
        2.3rem;

    font-weight:
        850;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.payment-plan-label {

    display:
        block;

    color:
        #0877d1;

    font-size:
        0.6rem;

    font-weight:
        850;

    letter-spacing:
        0.16em;
}


.payment-plan-semester .payment-plan-label {

    color:
        #9a7600;
}


.payment-plan-stretch .payment-plan-label {

    color:
        #063a7e;
}


.payment-plan-card h3 {

    margin-top:
        8px;

    font-family:
        var(--font-heading);

    font-size:
        1.7rem;

    letter-spacing:
        -0.04em;
}


/* =========================================================
   INTEREST
   ========================================================= */

.payment-interest {

    display:
        flex;

    align-items:
        baseline;

    gap:
        8px;

    margin:
        18px 0;
}


.payment-interest strong {

    font-family:
        var(--font-heading);

    font-size:
        2.7rem;

    line-height:
        1;

    color:
        #0877d1;
}


.payment-plan-semester .payment-interest strong {

    color:
        #a47b00;
}


.payment-plan-stretch .payment-interest strong {

    color:
        #063a7e;
}


.payment-interest span {

    color:
        #718198;

    font-size:
        0.7rem;

    font-weight:
        750;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.payment-plan-card > p {

    color:
        #40556f;

    font-size:
        0.82rem;

    line-height:
        1.75;

    min-height:
        86px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.payment-plan-feature {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        14px;

    color:
        #40556f;

    font-size:
        0.7rem;

    font-weight:
        700;
}


.payment-plan-feature i {

    color:
        #0877d1;

    width:
        16px;

    text-align:
        center;
}


.payment-plan-semester
.payment-plan-feature i {

    color:
        #a47b00;
}


/* =========================================================
   IMPORTANT NOTICE
   ========================================================= */

.payment-notice {

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    align-items:
        center;

    gap:
        20px;

    margin-top:
        30px;

    padding:
        25px 30px;

    border:
        1px solid
        rgba(2,17,40,0.12);

    border-radius:
        20px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            #021128,
            #063a7e
        );

    box-shadow:
        0 20px 50px
        rgba(2,17,40,0.13);
}


.payment-notice-icon {

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        14px;

    color:
        #021128;

    background:
        #ffd21c;

    font-size:
        1rem;
}


.payment-notice-content > span {

    display:
        block;

    margin-bottom:
        6px;

    color:
        #ffd21c;

    font-size:
        0.6rem;

    font-weight:
        850;

    letter-spacing:
        0.15em;
}


.payment-notice-content p {

    margin:
        0;

    color:
        rgba(255,255,255,0.72);

    font-size:
        0.72rem;

    line-height:
        1.7;
}


.payment-notice-content strong {

    color:
        white;
}


.payment-notice-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        11px 16px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius:
        10px;

    color:
        white;

    background:
        rgba(255,255,255,0.06);

    font-size:
        0.65rem;

    font-weight:
        750;

    text-decoration:
        none;

    white-space:
        nowrap;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}


.payment-notice-link:hover {

    background:
        rgba(255,255,255,0.12);

    border-color:
        rgba(255,210,28,0.5);
}


/* =========================================================
   SVIP
   ========================================================= */

.payment-svip {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    align-items:
        center;

    gap:
        25px;

    margin-top:
        25px;

    padding:
        32px 35px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255,210,28,0.35);

    border-radius:
        25px;

    background:
        linear-gradient(
            135deg,
            #fffef2,
            #ffffff
        );

    box-shadow:
        0 20px 55px
        rgba(5,42,83,0.08);
}


.payment-svip-glow {

    position:
        absolute;

    width:
        300px;

    height:
        300px;

    right:
        -130px;

    top:
        -170px;

    border-radius:
        50%;

    background:
        rgba(255,210,28,0.15);

    filter:
        blur(25px);

    pointer-events:
        none;
}


.payment-svip-icon {

    position:
        relative;

    z-index:
        2;

    width:
        64px;

    height:
        64px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        18px;

    color:
        #021128;

    background:
        #ffd21c;

    box-shadow:
        0 12px 30px
        rgba(255,210,28,0.25);

    font-size:
        1.35rem;
}


.payment-svip-content {

    position:
        relative;

    z-index:
        2;
}


.payment-svip-label {

    color:
        #9a7600;

    font-size:
        0.58rem;

    font-weight:
        850;

    letter-spacing:
        0.15em;
}


.payment-svip-content h3 {

    margin-top:
        7px;

    font-family:
        var(--font-heading);

    font-size:
        1.65rem;

    letter-spacing:
        -0.04em;
}


.payment-svip-content h3 span {

    color:
        #0877d1;
}


.payment-svip-content p {

    max-width:
        700px;

    margin-top:
        8px;

    color:
        #40556f;

    font-size:
        0.72rem;

    line-height:
        1.7;
}


.payment-svip-button {

    position:
        relative;

    z-index:
        2;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        14px 20px;

    border-radius:
        12px;

    color:
        #021128;

    background:
        #ffd21c;

    font-size:
        0.68rem;

    font-weight:
        850;

    text-decoration:
        none;

    white-space:
        nowrap;

    box-shadow:
        0 10px 25px
        rgba(255,210,28,0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.payment-svip-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(255,210,28,0.3);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .payment-plan-grid {

        grid-template-columns:
            1fr;
    }

    .payment-plan-card {

        min-height:
            auto;
    }

    .payment-notice {

        grid-template-columns:
            auto 1fr;
    }

    .payment-notice-link {

        grid-column:
            2;
        justify-self:
            start;
    }

    .payment-svip {

        grid-template-columns:
            auto 1fr;
    }

    .payment-svip-button {

        grid-column:
            2;

        justify-self:
            start;
    }

}


@media (max-width: 550px) {

    .payment-plans-section {

        padding:
            85px 0 95px;
    }

    .payment-plans-container {

        width:
            calc(100% - 35px);
    }

    .payment-plan-card {

        padding:
            27px;
    }

    .payment-notice {

        grid-template-columns:
            1fr;

        padding:
            25px;
    }

    .payment-notice-link {

        grid-column:
            auto;
    }

    .payment-svip {

        grid-template-columns:
            1fr;

        padding:
            28px;
    }

    .payment-svip-button {

        grid-column:
            auto;
    }

}