:root {

    --blue-950: #021128;
    --blue-900: #06245a;
    --blue-800: #07367f;
    --blue-700: #0757b9;
    --blue-600: #0876dc;
    --blue-500: #1295ee;

    --yellow: #ffd21c;
    --yellow-light: #ffe76a;

    --white: #ffffff;

    --ink: #06204a;
    --muted: #52647b;
    --soft: #f5f8fc;

    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --container: 1280px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    font-family:
        var(--font-body);

    color:
        var(--ink);

    background:
        #ffffff;

    overflow-x: hidden;
}


a {

    color: inherit;

    text-decoration: none;
}


button {
    font: inherit;
}



.school-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}


.school-header.scrolled {

    background:
        rgba(
            2,
            17,
            40,
            0.92
        );

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 45px
        rgba(
            0,
            0,
            0,
            0.18
        );
}


.school-header-inner {

    width:
        min(
            var(--container),
            calc(100% - 50px)
        );

    height: 96px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}




.school-brand {

    width: 92px;
    height: 92px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 1002;
}


.school-brand img {

    width: 78px;
    height: 78px;

    object-fit: contain;

    position: relative;

    z-index: 3;

    filter:
        drop-shadow(
            0 8px 20px
            rgba(
                0,
                0,
                0,
                0.22
            )
        );
}


.logo-pulse {

    position: absolute;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background:
        rgba(
            255,
            210,
            28,
            0.08
        );

    border:
        1px solid
        rgba(
            255,
            210,
            28,
            0.25
        );

    animation:
        logoRingPulse 3.5s ease-out infinite;
}


@keyframes logoRingPulse {

    0% {
        transform:
            scale(0.85);

        opacity:
            0.8;
    }

    70% {
        transform:
            scale(1.35);

        opacity:
            0;
    }

    100% {
        transform:
            scale(1.35);

        opacity:
            0;
    }
}



.school-nav {

    display: flex;

    align-items: center;

    gap: 5px;
}


.school-nav a {

    position: relative;

    padding: 12px 15px;

    border-radius: 100px;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 0.82rem;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.school-nav a::after {

    content: "";

    position: absolute;

    left: 17px;
    right: 17px;

    bottom: 7px;

    height: 2px;

    background:
        var(--yellow);

    transform:
        scaleX(0);

    transform-origin: right;

    transition:
        transform 0.3s ease;
}


.school-nav a:hover {

    color: white;

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );

    transform:
        translateY(-1px);
}


.school-nav a:hover::after,
.school-nav a.active::after {

    transform:
        scaleX(1);

    transform-origin: left;
}


.school-nav a.active {
    color: white;
}


.school-nav .staff-access {

    margin-left: 7px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--yellow);

    border:
        1px solid
        rgba(
            255,
            210,
            28,
            0.28
        );

    background:
        rgba(
            255,
            210,
            28,
            0.05
        );
}


.school-nav .staff-access::after {
    display: none;
}


.school-nav .staff-access:hover {

    color:
        var(--blue-950);

    background:
        var(--yellow);

    border-color:
        var(--yellow);
}


.staff-access i {
    font-size: 0.7rem;
}



.school-menu-toggle {

    display: none;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.09
        );

    cursor: pointer;

    z-index: 1002;
}


.school-menu-toggle span {

    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: white;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.school-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);
}


.school-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.school-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);
}



.programs-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        var(--blue-950);

    border-bottom:
        7px solid
        var(--yellow);
}


.programs-hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform:
        scale(1.03);
}



.programs-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(2,17,40,0.96) 0%,
            rgba(2,17,40,0.86) 34%,
            rgba(2,17,40,0.52) 65%,
            rgba(2,17,40,0.25) 100%
        );
}


.programs-hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(
                8,
                118,
                220,
                0.22
            ),
            transparent 36%
        );
}



.programs-hero-grid {

    position: absolute;

    inset: -100px;

    z-index: 2;

    opacity: 0.14;

    background-image:

        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.04
            ) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.04
            ) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    transform:
        perspective(500px)
        rotateX(55deg)
        translateY(100px);

    transform-origin:
        center bottom;
}



.programs-hero-content {

    position: relative;

    z-index: 5;

    width:
        min(
            var(--container),
            calc(100% - 50px)
        );

    margin:
        auto;

    padding-top:
        90px;

    animation:
        programsHeroReveal
        1s
        0.15s
        both;
}


@keyframes programsHeroReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size:
        0.68rem;

    font-weight:
        800;

    letter-spacing:
        0.22em;

    text-transform:
        uppercase;
}


.hero-eyebrow span {

    width: 38px;
    height: 2px;

    background:
        var(--yellow);

    box-shadow:
        0 0 12px
        rgba(
            255,
            210,
            28,
            0.7
        );
}


.programs-hero h1 {

    max-width:
        980px;

    margin-top:
        22px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.8rem,
            7vw,
            7.2rem
        );

    line-height:
        0.94;

    letter-spacing:
        -0.075em;

    font-weight:
        800;

    color:
        white;
}


.programs-hero h1 span {

    display: block;

    color:
        var(--yellow);

    text-shadow:
        0 0 40px
        rgba(
            255,
            210,
            28,
            0.12
        );
}


.hero-motto {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-top: 38px;
}


.motto-line {

    width: 55px;
    height: 3px;

    background:
        var(--yellow);

    box-shadow:
        0 0 15px
        rgba(
            255,
            210,
            28,
            0.45
        );
}


.hero-motto p {

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    font-family:
        var(--font-heading);

    font-size:
        1rem;

    font-weight:
        600;

    letter-spacing:
        0.18em;

    text-transform:
        uppercase;
}



.hero-scroll {

    position: absolute;

    z-index: 6;

    right: 43px;

    bottom: 42px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size:
        0.62rem;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;
}


.scroll-arrow {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.2
        );

    border-radius:
        50%;

    color:
        var(--yellow);

    animation:
        scrollBounce
        2s
        ease-in-out
        infinite;
}


.scroll-arrow i {
    font-size: 0.7rem;
}


@keyframes scrollBounce {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(7px);
    }
}



.programs-about {

    position: relative;

    overflow: hidden;

    background:
        #ffffff;

    padding:
        120px 0 130px;
}


.programs-about-inner {

    position: relative;

    z-index: 5;

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    margin:
        0 auto;
}



.programs-about-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.glow-one {

    width: 500px;
    height: 500px;

    right: -250px;
    top: 250px;

    background:
        rgba(
            8,
            118,
            220,
            0.045
        );

    filter:
        blur(10px);
}


.glow-two {

    width: 350px;
    height: 350px;

    left: -200px;
    bottom: 250px;

    background:
        rgba(
            255,
            210,
            28,
            0.045
        );

    filter:
        blur(10px);
}


.programs-section-heading {

    max-width:
        900px;

    margin:
        0 auto 85px;

    text-align:
        center;
}


.section-eyebrow {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color:
        #1574c5;

    font-size:
        0.68rem;

    font-weight:
        800;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;
}


.section-eyebrow span {

    width: 38px;
    height: 2px;

    background:
        var(--yellow);
}


.programs-section-heading h2 {

    margin-top:
        18px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3rem,
            5vw,
            5rem
        );

    line-height:
        0.98;

    letter-spacing:
        -0.065em;

    font-weight:
        800;

    color:
        var(--ink);
}


.programs-section-heading h2 span {

    color:
        #0877d1;
}


.programs-section-heading > p {

    max-width:
        760px;

    margin:
        32px auto 0;

    color:
        var(--muted);

    font-size:
        1rem;

    line-height:
        1.9;
}



.programs-content-grid {

    display:
        grid;

    grid-template-columns:
        minmax(420px, 0.95fr)
        minmax(450px, 1.05fr);

    gap:
        90px;

    align-items:
        center;
}


.programs-image-large {

    position:
        relative;

    min-height:
        600px;

    border-radius:
        28px;

    overflow:
        hidden;

    box-shadow:
        0 30px 70px
        rgba(
            5,
            42,
            83,
            0.16
        );
}


.programs-image-large::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(
                2,
                17,
                40,
                0.48
            )
        );
}


.programs-image-large img {

    width:
        100%;

    height:
        100%;

    min-height:
        600px;

    object-fit:
        cover;

    transition:
        transform
        0.8s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


.programs-image-large:hover img {

    transform:
        scale(1.045);
}


.image-badge {

    position:
        absolute;

    z-index:
        3;

    left:
        25px;

    bottom:
        25px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px 17px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );

    border-radius:
        100px;

    background:
        rgba(
            2,
            17,
            40,
            0.72
        );

    backdrop-filter:
        blur(12px);

    color:
        white;

    font-size:
        0.72rem;

    font-weight:
        700;
}


.image-badge i {

    color:
        var(--yellow);
}



.programs-main-copy {

    display:
        flex;

    flex-direction:
        column;

    gap:
        45px;
}


.copy-block {

    display:
        grid;

    grid-template-columns:
        52px 1fr;

    gap:
        20px;
}


.copy-number {

    width:
        44px;

    height:
        44px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        linear-gradient(
            145deg,
            #0877d1,
            #064b9b
        );

    color:
        white;

    font-family:
        var(--font-heading);

    font-size:
        0.68rem;

    font-weight:
        800;

    box-shadow:
        0 10px 25px
        rgba(
            8,
            119,
            209,
            0.18
        );
}


.copy-block h3 {

    margin-bottom:
        15px;

    color:
        var(--ink);

    font-family:
        var(--font-heading);

    font-size:
        1.35rem;

    letter-spacing:
        -0.035em;
}


.copy-block p {

    margin-top:
        13px;

    color:
        var(--muted);

    font-size:
        0.92rem;

    line-height:
        1.85;
}


.copy-block strong {
    color:
        #0877d1;

    font-weight:
        700;
}



.programs-support-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        25px;

    margin-top:
        100px;
}


.program-support-card {

    display:
        grid;

    grid-template-columns:
        180px 1fr;

    min-height:
        180px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            6,
            56,
            111,
            0.09
        );

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbfe
        );

    box-shadow:
        0 18px 45px
        rgba(
            5,
            42,
            83,
            0.065
        );

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.program-support-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 25px 55px
        rgba(
            5,
            42,
            83,
            0.11
        );
}


.program-support-image {

    height:
        100%;

    min-height:
        180px;

    overflow:
        hidden;
}


.program-support-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform
        0.6s ease;
}


.program-support-card:hover img {

    transform:
        scale(1.07);
}


.program-support-content {

    padding:
        25px;
}


.program-support-content > span {

    color:
        #0877d1;

    font-size:
        0.57rem;

    font-weight:
        800;

    letter-spacing:
        0.16em;
}


.program-support-content h3 {

    margin-top:
        9px;

    font-family:
        var(--font-heading);

    font-size:
        1.05rem;

    letter-spacing:
        -0.025em;

    color:
        var(--ink);
}


.program-support-content p {

    margin-top:
        10px;

    color:
        var(--muted);

    font-size:
        0.76rem;

    line-height:
        1.65;
}



.shanoa-block {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        75px 1fr;

    gap:
        30px;

    margin-top:
        100px;

    padding:
        55px 60px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            255,
            210,
            28,
            0.3
        );

    border-radius:
        28px;

    background:

        linear-gradient(
            135deg,
            #021b40,
            #062b63
        );

    box-shadow:
        0 30px 70px
        rgba(
            2,
            24,
            54,
            0.16
        );

    color:
        white;
}


.shanoa-block::before {

    content:
        "";

    position:
        absolute;

    width:
        350px;

    height:
        350px;

    right:
        -180px;

    top:
        -180px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            210,
            28,
            0.08
        );
}


.shanoa-accent {

    position:
        absolute;

    left:
        0;

    top:
        0;

    bottom:
        0;

    width:
        5px;

    background:
        linear-gradient(
            180deg,
            var(--yellow),
            #0877d1
        );
}


.shanoa-icon {

    width:
        68px;

    height:
        68px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        18px;

    color:
        var(--blue-950);

    background:
        var(--yellow);

    box-shadow:
        0 15px 35px
        rgba(
            255,
            210,
            28,
            0.2
        );

    font-size:
        1.25rem;
}


.shanoa-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        850px;
}


.shanoa-eyebrow {

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    font-size:
        0.62rem;

    font-weight:
        800;

    letter-spacing:
        0.2em;
}


.shanoa-content h2 {

    margin-top:
        8px;

    font-family:
        var(--font-heading);

    font-size:
        2.7rem;

    letter-spacing:
        -0.06em;

    color:
        white;
}


.shanoa-content h2 > span {

    color:
        var(--yellow);

    font-size:
        1.1rem;

    vertical-align:
        top;
}


.shanoa-content h2 small {

    display:
        block;

    margin-top:
        4px;

    color:
        var(--yellow);

    font-family:
        var(--font-body);

    font-size:
        0.68rem;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;
}


.shanoa-content p {

    margin-top:
        20px;

    max-width:
        850px;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );

    font-size:
        0.91rem;

    line-height:
        1.85;
}


.shanoa-content strong {
    color:
        white;
}


.shanoa-tag-row {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-top:
        27px;
}


.shanoa-tag-row span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        8px 12px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius:
        100px;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size:
        0.62rem;

    font-weight:
        700;
}


.shanoa-tag-row i {

    color:
        var(--yellow);
}



.programs-model-summary {

    display:
        grid;

    grid-template-columns:
        1fr 50px 1fr 50px 1fr;

    align-items:
        center;

    margin-top:
        75px;

    padding:
        35px;

    border-top:
        1px solid
        rgba(
            6,
            56,
            111,
            0.09
        );

    border-bottom:
        1px solid
        rgba(
            6,
            56,
            111,
            0.09
        );

    text-align:
        center;
}


.programs-model-summary > div:not(.summary-plus):not(.summary-equals) {

    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}


.summary-label {

    color:
        #8492a3;

    font-size:
        0.57rem;

    font-weight:
        800;

    letter-spacing:
        0.16em;
}


.programs-model-summary strong {

    color:
        var(--ink);

    font-family:
        var(--font-heading);

    font-size:
        0.88rem;
}


.summary-plus,
.summary-equals {

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin:
        auto;

    border-radius:
        50%;

    color:
        var(--blue-700);

    background:
        rgba(
            8,
            119,
            209,
            0.07
        );
}


.summary-result strong {

    color:
        #0877d1;
}



.school-footer {

    position: relative;

    background:
        linear-gradient(
            145deg,
            #021128 0%,
            #031a38 55%,
            #021128 100%
        );

    color: white;

    border-top:
        5px solid
        var(--yellow);

    overflow: hidden;
}


.school-footer::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -200px;

    border-radius: 50%;

    background:
        rgba(
            8,
            118,
            220,
            0.08
        );

    pointer-events: none;
}


.school-footer::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(
            255,
            210,
            28,
            0.035
        );

    pointer-events: none;
}


.school-footer-inner {

    position: relative;

    z-index: 2;

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    margin:
        0 auto;

    padding:
        70px 0 55px;

    display:
        grid;

    grid-template-columns:
        1fr 1.15fr 0.8fr;

    column-gap:
        80px;

    align-items:
        start;
}


.footer-label {

    display:
        block;

    margin-bottom:
        22px;

    color:
        var(--yellow);

    font-family:
        var(--font-heading);

    font-size:
        0.65rem;

    font-weight:
        800;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;
}


.footer-brand {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;
}


.footer-school-logo {

    width:
        105px;

    height:
        105px;

    object-fit:
        contain;

    margin-bottom:
        25px;
}


.footer-address {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size:
        0.78rem;

    line-height:
        1.8;
}


.footer-address p {
    margin: 0;
}


.footer-copyright {

    margin-top:
        18px !important;

    color:
        rgba(
            255,
            255,
            255,
            0.38
        );

    font-size:
        0.68rem;
}


.footer-contact {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;
}


.footer-contact > a:not(.footer-reggaepixel) {

    display:
        inline-block;

    margin-bottom:
        10px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size:
        0.82rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-contact > a:not(.footer-reggaepixel):hover {

    color:
        var(--yellow);

    transform:
        translateX(4px);
}


.footer-socials {

    display:
        flex;

    gap:
        10px;

    margin-top:
        24px;
}


.footer-socials a {

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius:
        50%;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );

    background:
        rgba(
            255,
            255,
            255,
            0.035
        );

    transition:
        0.3s ease;
}


.footer-socials a:hover {

    color:
        var(--blue-950);

    background:
        var(--yellow);

    border-color:
        var(--yellow);

    transform:
        translateY(-4px);
}


.footer-reggaepixel {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        28px;

    color:
        rgba(
            255,
            255,
            255,
            0.48
        );

    font-size:
        0.64rem;
}


.footer-reggaepixel img {

    width:
        38px;

    height:
        38px;

    object-fit:
        contain;
}


.footer-reggaepixel strong {
    color:
        var(--yellow);
}


.footer-links {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;
}


.footer-links a {

    display:
        inline-block;

    margin-bottom:
        13px;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    font-size:
        0.78rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-links a:hover {

    color:
        white;

    transform:
        translateX(4px);
}



@media (max-width: 1100px) {

    .school-nav {
        gap: 0;
    }

    .school-nav a {

        padding:
            10px 10px;

        font-size:
            0.74rem;
    }
}


@media (max-width: 950px) {

    .school-menu-toggle {
        display: block;
    }


    .school-nav {

        position: fixed;

        inset: 0;

        padding:
            120px 30px 40px;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        background:
            linear-gradient(
                135deg,
                rgba(
                    2,
                    17,
                    40,
                    0.99
                ),
                rgba(
                    5,
                    46,
                    105,
                    0.98
                )
            );

        backdrop-filter:
            blur(20px);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-20px);

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease;
    }


    .school-nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .school-nav a {

        padding:
            17px 20px;

        border-radius:
            12px;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.07
            );

        font-size:
            1rem;
    }


    .school-nav a::after {
        display: none;
    }


    .programs-hero-content {

        width:
            calc(100% - 40px);

        padding-top:
            70px;
    }


    .programs-content-grid {

        grid-template-columns:
            1fr;

        gap:
            55px;
    }


    .programs-image-large {

        min-height:
            500px;
    }


    .programs-image-large img {
        min-height: 500px;
    }


    .programs-support-grid {

        grid-template-columns:
            1fr;
    }


    .school-footer-inner {

        width:
            calc(100% - 50px);

        grid-template-columns:
            1fr 1fr;

        gap:
            55px 45px;
    }


    .footer-contact {
        grid-column: 2;
    }


    .footer-links {

        grid-column:
            1 / -1;

        padding-top:
            35px;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                0.08
            );
    }
}


@media (max-width: 600px) {

    .school-header-inner {

        width:
            calc(100% - 30px);

        height:
            82px;
    }


    .school-brand {

        width:
            78px;

        height:
            78px;
    }


    .school-brand img {

        width:
            67px;

        height:
            67px;
    }


    .programs-hero {

        min-height:
            750px;
    }


    .programs-hero-content {

        width:
            calc(100% - 30px);

        padding-top:
            50px;
    }


    .programs-hero h1 {

        font-size:
            clamp(
                3rem,
                14vw,
                4.7rem
            );
    }


    .hero-motto p {

        font-size:
            0.67rem;

        letter-spacing:
            0.12em;
    }


    .hero-scroll {
        display: none;
    }


    .programs-about {

        padding:
            85px 0 90px;
    }


    .programs-about-inner {

        width:
            calc(100% - 30px);
    }


    .programs-section-heading {

        margin-bottom:
            60px;
    }


    .programs-section-heading h2 {

        font-size:
            3rem;
    }


    .programs-section-heading > p {

        font-size:
            0.88rem;
    }


    .programs-image-large {

        min-height:
            400px;

        border-radius:
            20px;
    }


    .programs-image-large img {

        min-height:
            400px;
    }


    .copy-block {

        grid-template-columns:
            40px 1fr;

        gap:
            13px;
    }


    .copy-number {

        width:
            36px;

        height:
            36px;

        font-size:
            0.58rem;
    }


    .copy-block h3 {
        font-size:
            1.12rem;
    }


    .copy-block p {
        font-size:
            0.84rem;
    }


    .programs-support-grid {
        margin-top:
            70px;
    }


    .program-support-card {

        grid-template-columns:
            1fr;

        min-height:
            0;
    }


    .program-support-image {

        min-height:
            190px;
    }


    .shanoa-block {

        grid-template-columns:
            1fr;

        gap:
            20px;

        margin-top:
            70px;

        padding:
            40px 28px;
    }


    .shanoa-content h2 {
        font-size:
            2.3rem;
    }


    .shanoa-content p {
        font-size:
            0.84rem;
    }


    .programs-model-summary {

        grid-template-columns:
            1fr;

        gap:
            20px;

        padding:
            30px 10px;
    }


    .summary-plus,
    .summary-equals {
        transform:
            rotate(90deg);
    }


    .school-footer-inner {

        width:
            calc(100% - 40px);

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;

        gap:
            45px;

        text-align:
            center;

        padding:
            55px 0 40px;
    }


    .footer-brand,
    .footer-contact,
    .footer-links {

        width:
            100%;

        align-items:
            center;
    }


    .footer-contact,
    .footer-links {

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                0.08
            );

        padding-top:
            40px;
    }


    .footer-socials {
        justify-content:
            center;
    }


    .footer-reggaepixel {
        justify-content:
            center;
    }
}



@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}



.special-education-section {

    --sed-navy: #021128;
    --sed-navy-light: #06245a;
    --sed-blue: #0877d1;
    --sed-blue-light: #1295ee;
    --sed-gold: #ffd21c;
    --sed-gold-light: #ffe76a;
    --sed-text: #40556f;
    --sed-muted: #718198;

    position: relative;

    overflow: hidden;

    padding:
        120px 0 130px;

    color:
        var(--sed-navy);

    background:
        #ffffff;
}




.special-education-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(8,119,209,0.055),
            transparent 28%
        ),

        radial-gradient(
            circle at 88% 65%,
            rgba(255,210,28,0.055),
            transparent 25%
        );

    pointer-events: none;
}


.special-education-section::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--sed-blue),
            var(--sed-gold),
            var(--sed-blue)
        );

    background-size: 200% 100%;

    animation:
        sedTopLine 6s linear infinite;
}


@keyframes sedTopLine {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}



.special-ed-bg-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(2px);
}


.special-ed-bg-orb-one {

    width: 420px;
    height: 420px;

    right: -220px;
    top: 260px;

    background:
        rgba(
            8,
            119,
            209,
            0.035
        );

    border:
        1px solid
        rgba(
            8,
            119,
            209,
            0.07
        );

    animation:
        sedOrbFloat 12s
        ease-in-out
        infinite;
}


.special-ed-bg-orb-two {

    width: 260px;
    height: 260px;

    left: -150px;
    bottom: 280px;

    background:
        rgba(
            255,
            210,
            28,
            0.045
        );

    animation:
        sedOrbFloat 9s
        1s
        ease-in-out
        infinite
        reverse;
}


@keyframes sedOrbFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-25px)
            scale(1.04);
    }
}



.special-ed-container {

    position: relative;

    z-index: 5;

    width:
        min(
            1240px,
            calc(100% - 50px)
        );

    margin:
        0 auto;
}



.special-ed-header {

    max-width: 850px;

    margin:
        0 auto 85px;

    text-align:
        center;
}


.special-ed-eyebrow {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        13px;

    color:
        var(--sed-blue);

    font-size:
        0.65rem;

    font-weight:
        850;

    letter-spacing:
        0.2em;
}


.special-ed-eyebrow span {

    width:
        34px;

    height:
        2px;

    background:
        var(--sed-gold);
}


.special-ed-header h2 {

    margin-top:
        20px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3rem,
            5vw,
            5.5rem
        );

    line-height:
        0.95;

    letter-spacing:
        -0.07em;

    font-weight:
        850;

    color:
        var(--sed-navy);
}


.special-ed-header h2 span {

    display:
        block;

    color:
        var(--sed-blue);
}


.special-ed-lead {

    max-width:
        650px;

    margin:
        28px auto 0;

    color:
        var(--sed-text);

    font-size:
        1.05rem;

    line-height:
        1.8;
}



.special-ed-label {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--sed-blue);

    font-size:
        0.62rem;

    font-weight:
        850;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


.special-ed-label i {

    color:
        var(--sed-gold);

    font-size:
        0.78rem;
}



.special-ed-introduction {

    display:
        grid;

    grid-template-columns:
        1fr 0.9fr;

    gap:
        90px;

    align-items:
        center;

    margin-bottom:
        130px;
}


.special-ed-intro-copy h3,
.special-ed-process-heading h3,
.special-ed-tracking-copy h3,
.psychology-content h3 {

    margin-top:
        17px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.3rem,
            4vw,
            4rem
        );

    line-height:
        1;

    letter-spacing:
        -0.06em;

    font-weight:
        850;

    color:
        var(--sed-navy);
}


.special-ed-intro-copy h3 span,
.special-ed-process-heading h3 span,
.special-ed-tracking-copy h3 span,
.psychology-content h3 span {

    color:
        var(--sed-blue);
}


.special-ed-intro-copy p {

    max-width:
        620px;

    margin-top:
        23px;

    color:
        var(--sed-text);

    font-size:
        0.98rem;

    line-height:
        1.9;
}


.special-ed-intro-copy strong {

    color:
        var(--sed-navy);

    font-weight:
        750;
}



.special-ed-image-card {

    position:
        relative;

    min-height:
        470px;

    overflow:
        hidden;

    border-radius:
        30px;

    background:
        var(--sed-navy);

    box-shadow:
        0 30px 70px
        rgba(
            2,
            17,
            40,
            0.16
        );

    transform:
        translateZ(0);
}


.special-ed-image-card::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    z-index:
        2;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(2,17,40,0.88)
        );

    pointer-events:
        none;
}


.special-ed-image-card img {

    width:
        100%;

    height:
        100%;

    min-height:
        470px;

    object-fit:
        cover;

    display:
        block;

    transition:
        transform 0.8s ease;
}


.special-ed-image-card:hover img {

    transform:
        scale(1.06);
}


.special-ed-image-glow {

    position:
        absolute;

    z-index:
        3;

    width:
        150px;

    height:
        150px;

    right:
        -60px;

    top:
        -60px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            210,
            28,
            0.25
        );

    filter:
        blur(25px);
}


.special-ed-image-caption {

    position:
        absolute;

    z-index:
        5;

    left:
        25px;

    right:
        25px;

    bottom:
        24px;

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        15px 18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    border-radius:
        16px;

    background:
        rgba(
            255,
            255,
            255,
            0.1
        );

    backdrop-filter:
        blur(15px);

    color:
        white;
}


.caption-icon {

    width:
        42px;

    height:
        42px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    color:
        var(--sed-navy);

    background:
        var(--sed-gold);
}


.special-ed-image-caption strong {

    display:
        block;

    font-size:
        0.78rem;
}


.special-ed-image-caption small {

    display:
        block;

    margin-top:
        3px;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size:
        0.62rem;
}


.special-ed-process-heading {

    max-width:
        720px;

    margin:
        0 auto 75px;

    text-align:
        center;
}


.special-ed-process-heading .special-ed-label {

    justify-content:
        center;
}


.special-ed-process-heading p {

    max-width:
        620px;

    margin:
        23px auto 0;

    color:
        var(--sed-text);

    font-size:
        0.98rem;

    line-height:
        1.8;
}


.special-ed-process {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        25px;

    margin-bottom:
        130px;
}


.process-line {

    position:
        absolute;

    left:
        8%;

    right:
        8%;

    top:
        43px;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                8,
                119,
                209,
                0.25
            ),
            var(--sed-gold),
            rgba(
                8,
                119,
                209,
                0.25
            ),
            transparent
        );

    z-index:
        0;
}


.special-ed-step {

    position:
        relative;

    z-index:
        2;

    padding:
        28px 27px 30px;

    min-height:
        300px;

    border:
        1px solid
        rgba(
            6,
            56,
            111,
            0.09
        );

    border-radius:
        22px;

    background:
        rgba(
            255,
            255,
            255,
            0.94
        );

    box-shadow:
        0 15px 45px
        rgba(
            5,
            42,
            83,
            0.065
        );

    opacity:
        0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.special-ed-step.visible {

    opacity:
        1;

    transform:
        translateY(0);
}


.special-ed-step:hover {

    border-color:
        rgba(
            8,
            119,
            209,
            0.2
        );

    box-shadow:
        0 22px 55px
        rgba(
            5,
            42,
            83,
            0.11
        );

    transform:
        translateY(-6px);
}


.step-number {

    position:
        absolute;

    top:
        17px;

    right:
        20px;

    color:
        rgba(
            6,
            56,
            111,
            0.08
        );

    font-family:
        var(--font-heading);

    font-size:
        2rem;

    line-height:
        1;

    font-weight:
        850;
}


.step-icon {

    width:
        56px;

    height:
        56px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        16px;

    color:
        var(--sed-blue);

    background:
        linear-gradient(
            145deg,
            rgba(
                8,
                119,
                209,
                0.09
            ),
            rgba(
                255,
                210,
                28,
                0.14
            )
        );

    border:
        1px solid
        rgba(
            8,
            119,
            209,
            0.09
        );

    box-shadow:
        0 8px 22px
        rgba(
            5,
            42,
            83,
            0.07
        );

    transition:
        transform 0.35s ease;
}


.special-ed-step:hover .step-icon {

    transform:
        rotate(-5deg)
        scale(1.08);
}


.step-content span {

    display:
        block;

    margin-top:
        25px;

    color:
        var(--sed-blue);

    font-size:
        0.57rem;

    font-weight:
        850;

    letter-spacing:
        0.14em;
}


.step-content h4 {

    margin-top:
        7px;

    color:
        var(--sed-navy);

    font-family:
        var(--font-heading);

    font-size:
        1.12rem;

    font-weight:
        800;
}


.step-content p {

    margin-top:
        12px;

    color:
        var(--sed-text);

    font-size:
        0.79rem;

    line-height:
        1.7;
}


.special-ed-step-final {

    border-color:
        rgba(
            255,
            210,
            28,
            0.35
        );

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffdf2
        );
}


.special-ed-step-final .step-icon {

    color:
        #a47b00;

    background:
        var(--sed-gold);
}



.special-ed-tracking {

    display:
        grid;

    grid-template-columns:
        0.95fr 1fr;

    gap:
        90px;

    align-items:
        center;

    margin-bottom:
        130px;
}


.special-ed-tracking-image {

    position:
        relative;

    min-height:
        450px;

    overflow:
        visible;
}


.special-ed-tracking-image > img {

    width:
        100%;

    height:
        450px;

    object-fit:
        cover;

    display:
        block;

    border-radius:
        30px;

    box-shadow:
        0 30px 70px
        rgba(
            2,
            17,
            40,
            0.14
        );
}


.tracking-floating-card {

    position:
        absolute;

    right:
        -28px;

    bottom:
        30px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        16px 20px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.7
        );

    border-radius:
        17px;

    background:
        rgba(
            255,
            255,
            255,
            0.94
        );

    box-shadow:
        0 20px 45px
        rgba(
            2,
            17,
            40,
            0.14
        );

    backdrop-filter:
        blur(15px);

    animation:
        trackingFloat 4s
        ease-in-out
        infinite;
}


@keyframes trackingFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


.tracking-floating-card > i {

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    color:
        var(--sed-blue);

    background:
        rgba(
            8,
            119,
            209,
            0.09
        );
}


.tracking-floating-card strong {

    display:
        block;

    color:
        var(--sed-navy);

    font-size:
        0.75rem;
}


.tracking-floating-card small {

    display:
        block;

    margin-top:
        3px;

    color:
        var(--sed-muted);

    font-size:
        0.58rem;
}


.special-ed-tracking-copy p {

    max-width:
        570px;

    margin-top:
        22px;

    color:
        var(--sed-text);

    font-size:
        0.95rem;

    line-height:
        1.85;
}


.tracking-features {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        12px;

    margin-top:
        28px;
}


.tracking-features div {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--sed-text);

    font-size:
        0.72rem;

    font-weight:
        700;
}


.tracking-features i {

    color:
        var(--sed-blue);

    font-size:
        0.65rem;
}



.special-ed-psychology {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        1fr 330px;

    gap:
        90px;

    align-items:
        center;

    padding:
        70px;

    margin-bottom:
        100px;

    overflow:
        hidden;

    border-radius:
        32px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--sed-navy),
            #063a7e
        );

    box-shadow:
        0 30px 80px
        rgba(
            2,
            17,
            40,
            0.16
        );
}


.special-ed-psychology::before {

    content:
        "";

    position:
        absolute;

    width:
        450px;

    height:
        450px;

    right:
        -180px;

    top:
        -220px;

    border:
        1px solid
        rgba(
            255,
            210,
            28,
            0.15
        );

    border-radius:
        50%;
}


.special-ed-psychology .special-ed-label {

    color:
        var(--sed-gold);
}


.special-ed-psychology .special-ed-label i {

    color:
        var(--sed-gold);
}


.psychology-content {

    position:
        relative;

    z-index:
        2;
}


.psychology-content h3 {

    color:
        white;
}


.psychology-content h3 span {

    color:
        var(--sed-gold);
}


.psychology-content p {

    max-width:
        700px;

    margin-top:
        20px;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );

    font-size:
        0.91rem;

    line-height:
        1.85;
}


.psychology-badge {

    position:
        relative;

    width:
        270px;

    height:
        270px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    margin:
        auto;

    border:
        2px solid
        rgba(
            255,
            210,
            28,
            0.75
        );

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );

    box-shadow:
        0 0 0 12px
        rgba(
            255,
            210,
            28,
            0.05
        ),

        0 0 0 30px
        rgba(
            255,
            255,
            255,
            0.025
        );

    animation:
        psychologyPulse 4s
        ease-in-out
        infinite;
}


@keyframes psychologyPulse {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.035);
    }
}


.psychology-badge-ring {

    position:
        absolute;

    inset:
        -18px;

    border:
        1px dashed
        rgba(
            255,
            210,
            28,
            0.3
        );

    border-radius:
        50%;

    animation:
        badgeRotate 18s
        linear
        infinite;
}


@keyframes badgeRotate {

    to {
        transform:
            rotate(360deg);
    }
}


.psychology-badge > i {

    color:
        var(--sed-gold);

    font-size:
        2rem;

    margin-bottom:
        12px;
}


.psychology-badge strong {

    font-family:
        var(--font-heading);

    font-size:
        1.4rem;

    letter-spacing:
        0.14em;
}


.psychology-badge span {

    color:
        var(--sed-gold);

    font-family:
        var(--font-heading);

    font-size:
        0.72rem;

    font-weight:
        800;

    letter-spacing:
        0.12em;
}


.psychology-badge small {

    margin-top:
        10px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size:
        0.45rem;

    letter-spacing:
        0.08em;
}



.special-ed-final {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    gap:
        35px;

    max-width:
        1000px;

    margin:
        0 auto;

    padding:
        55px 60px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            255,
            210,
            28,
            0.3
        );

    border-radius:
        28px;

    background:
        linear-gradient(
            145deg,
            #fffef5,
            #ffffff
        );

    box-shadow:
        0 25px 65px
        rgba(
            5,
            42,
            83,
            0.08
        );
}


.final-glow {

    position:
        absolute;

    width:
        250px;

    height:
        250px;

    right:
        -100px;

    bottom:
        -150px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            210,
            28,
            0.12
        );

    filter:
        blur(20px);
}


.final-icon {

    position:
        relative;

    z-index:
        2;

    width:
        72px;

    height:
        72px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        20px;

    color:
        var(--sed-navy);

    background:
        var(--sed-gold);

    box-shadow:
        0 12px 30px
        rgba(
            255,
            210,
            28,
            0.25
        );

    font-size:
        1.4rem;
}


.final-copy {

    position:
        relative;

    z-index:
        2;
}


.final-copy .special-ed-label {

    color:
        #9a7600;
}


.final-copy h3 {

    margin-top:
        10px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.7rem
        );

    line-height:
        1;

    letter-spacing:
        -0.055em;

    color:
        var(--sed-navy);
}


.final-copy h3 span {

    color:
        var(--sed-blue);
}


.final-copy p {

    max-width:
        780px;

    margin-top:
        15px;

    color:
        var(--sed-text);

    font-size:
        0.82rem;

    line-height:
        1.8;
}


.final-copy strong {

    color:
        var(--sed-navy);
}



@media (max-width: 1050px) {

    .special-ed-introduction,
    .special-ed-tracking {

        gap:
            50px;
    }

    .special-ed-process {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-line {
        display:
            none;
    }

    .special-ed-psychology {

        gap:
            45px;

        padding:
            55px;
    }
}


@media (max-width: 800px) {

    .special-education-section {

        padding:
            90px 0 100px;
    }

    .special-ed-container {

        width:
            calc(100% - 35px);
    }

    .special-ed-header {

        margin-bottom:
            65px;
    }

    .special-ed-introduction,
    .special-ed-tracking,
    .special-ed-psychology {

        grid-template-columns:
            1fr;
    }

    .special-ed-introduction {

        margin-bottom:
            90px;
    }

    .special-ed-image-card {

        min-height:
            390px;
    }

    .special-ed-image-card img {

        min-height:
            390px;
    }

    .special-ed-process {

        grid-template-columns:
            1fr;

        margin-bottom:
            90px;
    }

    .special-ed-step {

        min-height:
            auto;
    }

    .special-ed-tracking {

        margin-bottom:
            90px;
    }

    .special-ed-tracking-image > img {

        height:
            390px;
    }

    .special-ed-psychology {

        padding:
            45px 30px;

        text-align:
            center;
    }

    .psychology-content .special-ed-label {

        justify-content:
            center;
    }

    .psychology-badge {

        width:
            220px;

        height:
            220px;
    }

    .special-ed-final {

        align-items:
            flex-start;

        padding:
            40px 30px;
    }
}


@media (max-width: 550px) {

    .special-ed-header h2 {

        font-size:
            2.8rem;
    }

    .special-ed-lead {

        font-size:
            0.9rem;
    }

    .special-ed-intro-copy h3,
    .special-ed-process-heading h3,
    .special-ed-tracking-copy h3,
    .psychology-content h3 {

        font-size:
            2.35rem;
    }

    .special-ed-image-card {

        min-height:
            340px;

        border-radius:
            22px;
    }

    .special-ed-image-card img {

        min-height:
            340px;
    }

    .tracking-floating-card {

        right:
            10px;

        bottom:
            15px;
    }

    .tracking-features {

        grid-template-columns:
            1fr;
    }

    .special-ed-final {

        flex-direction:
            column;

        gap:
            22px;

        border-radius:
            22px;
    }

    .final-icon {

        width:
            60px;

        height:
            60px;
    }
}



@media (prefers-reduced-motion: reduce) {

    .special-education-section *,
    .special-education-section *::before,
    .special-education-section *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;
    }
}



.special-ed-process-heading {

    position: relative;

    /*
     * Give the heading enough room for the visual
     * without allowing it to cover the text.
     */
    padding-right: 190px;

}




.special-ed-process-heading::after {

    content: "SPT™";

    position: absolute;

    right: 0;
    top: 50%;

    width: 120px;
    height: 120px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #0877d1;

    font-family:
        var(--font-heading);

    font-size: 1.35rem;

    font-weight: 850;

    letter-spacing: 0.08em;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.92) 42%,
            rgba(255,210,28,0.12) 43%,
            rgba(255,210,28,0.05) 100%
        );

    border:
        2px solid
        rgba(255,210,28,0.65);

    box-shadow:
        0 0 0 10px
        rgba(255,210,28,0.06),

        0 0 0 22px
        rgba(8,119,209,0.035),

        0 20px 55px
        rgba(5,42,83,0.12);

    animation:
        sptCorePulse 3.5s
        ease-in-out
        infinite;

    pointer-events:
        none;

    z-index:
        0;

    transform:
        translateY(-50%);
}



.special-ed-process-heading::before {

    content: "";

    position: absolute;

    right: -18px;
    top: 50%;

    width: 156px;
    height: 156px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(8,119,209,0.25);

    box-shadow:
        0 0 0 8px
        rgba(8,119,209,0.025);

    animation:
        sptOrbitSpin
        12s
        linear
        infinite;

    pointer-events:
        none;

    z-index:
        0;

    transform:
        translateY(-50%);
}



.special-ed-process-heading .special-ed-label,
.special-ed-process-heading h3,
.special-ed-process-heading p {

    position:
        relative;

    z-index:
        3;
}



.special-ed-process {

    position:
        relative;
}


.special-ed-process::before,
.special-ed-process::after {

    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ffd21c;

    box-shadow:
        0 0 12px
        rgba(255,210,28,0.75);

    pointer-events:
        none;

    z-index:
        5;
}


.special-ed-process::before {

    left:
        8%;

    top:
        20%;

    animation:
        sptParticleOne
        4s
        ease-in-out
        infinite;
}


.special-ed-process::after {

    right:
        8%;

    bottom:
        18%;

    background:
        #0877d1;

    box-shadow:
        0 0 12px
        rgba(8,119,209,0.5);

    animation:
        sptParticleTwo
        5s
        ease-in-out
        infinite;
}



.special-ed-step {

    position:
        relative;

    opacity:
        1;

    transform:
        translateY(0)
        scale(1);

    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;
}


.special-ed-step.visible {

    opacity:
        1;

    transform:
        translateY(0)
        scale(1);
}


.special-ed-step:nth-child(2) {
    transition-delay: 0.05s;
}

.special-ed-step:nth-child(3) {
    transition-delay: 0.12s;
}

.special-ed-step:nth-child(4) {
    transition-delay: 0.19s;
}

.special-ed-step:nth-child(5) {
    transition-delay: 0.26s;
}

.special-ed-step:nth-child(6) {
    transition-delay: 0.33s;
}

.special-ed-step:nth-child(7) {
    transition-delay: 0.40s;
}



.special-ed-step.visible .step-icon {

    animation:
        sptStepPulse
        3s
        ease-in-out
        infinite;
}



@keyframes sptCorePulse {

    0%,
    100% {

        transform:
            translateY(-50%)
            scale(0.94);

        box-shadow:
            0 0 0 10px
            rgba(255,210,28,0.06),

            0 0 0 22px
            rgba(8,119,209,0.035),

            0 20px 55px
            rgba(5,42,83,0.12);
    }

    50% {

        transform:
            translateY(-50%)
            scale(1.04);

        box-shadow:
            0 0 0 15px
            rgba(255,210,28,0.10),

            0 0 0 30px
            rgba(8,119,209,0.045),

            0 25px 70px
            rgba(5,42,83,0.18);
    }
}


@keyframes sptOrbitSpin {

    from {

        transform:
            translateY(-50%)
            rotate(0deg);
    }

    to {

        transform:
            translateY(-50%)
            rotate(360deg);
    }
}


@keyframes sptStepPulse {

    0%,
    100% {

        box-shadow:
            0 0 0 0
            rgba(255,210,28,0);
    }

    50% {

        box-shadow:
            0 0 0 8px
            rgba(255,210,28,0.09);
    }
}


@keyframes sptParticleOne {

    0%,
    100% {

        transform:
            translate(
                0,
                0
            );

        opacity:
            0.25;
    }

    50% {

        transform:
            translate(
                35px,
                -25px
            );

        opacity:
            1;
    }
}


@keyframes sptParticleTwo {

    0%,
    100% {

        transform:
            translate(
                0,
                0
            );

        opacity:
            0.25;
    }

    50% {

        transform:
            translate(
                -30px,
                25px
            );

        opacity:
            1;
    }
}



@media (max-width: 900px) {

  
    .special-ed-process-heading {

        padding-right:
            0;
    }


    .special-ed-process-heading::before,
    .special-ed-process-heading::after {

        display:
            none;
    }

}


@media (prefers-reduced-motion: reduce) {

    .special-ed-process-heading::before,
    .special-ed-process-heading::after,
    .special-ed-process::before,
    .special-ed-process::after,
    .special-ed-step.visible .step-icon {

        animation:
            none !important;
    }

}



.shanoa-section {

    --shn-navy: #021128;
    --shn-blue: #0877d1;
    --shn-blue-light: #1599ef;
    --shn-gold: #ffd21c;
    --shn-white: #ffffff;
    --shn-text: rgba(255,255,255,0.76);

    position: relative;

    overflow: hidden;

    padding:
        130px 0 140px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            #032b63 0%,
            #075fa8 48%,
            #063a7d 100%
        );
}



.shanoa-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 8% 12%,
            rgba(255,210,28,0.12),
            transparent 24%
        ),

        radial-gradient(
            circle at 92% 82%,
            rgba(21,153,239,0.20),
            transparent 28%
        );

    pointer-events:
        none;
}


.shanoa-section::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--shn-gold),
            #ffffff,
            var(--shn-gold)
        );

    background-size:
        200% 100%;

    animation:
        shanoaTopLine 6s
        linear infinite;
}


@keyframes shanoaTopLine {

    from {
        background-position:
            0% 50%;
    }

    to {
        background-position:
            200% 50%;
    }
}



.shanoa-bg-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events:
        none;

    border:
        1px solid
        rgba(255,255,255,0.08);

    animation:
        shanoaOrbFloat
        10s
        ease-in-out
        infinite;
}


.shanoa-bg-orb-one {

    width:
        500px;

    height:
        500px;

    top:
        400px;

    left:
        -300px;

    background:
        rgba(255,255,255,0.025);
}


.shanoa-bg-orb-two {

    width:
        380px;

    height:
        380px;

    right:
        -220px;

    bottom:
        500px;

    background:
        rgba(255,210,28,0.035);

    animation-delay:
        -3s;
}


@keyframes shanoaOrbFloat {

    0%,
    100% {

        transform:
            translateY(0)
            scale(1);
    }

    50% {

        transform:
            translateY(-25px)
            scale(1.035);
    }
}



.shanoa-container {

    position:
        relative;

    z-index:
        5;

    width:
        min(
            1240px,
            calc(100% - 50px)
        );

    margin:
        0 auto;
}



.shanoa-header {

    max-width:
        850px;

    margin:
        0 auto 110px;

    text-align:
        center;
}


.shanoa-eyebrow {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        13px;

    color:
        var(--shn-gold);

    font-size:
        0.64rem;

    font-weight:
        850;

    letter-spacing:
        0.2em;
}


.shanoa-eyebrow span {

    width:
        34px;

    height:
        2px;

    background:
        var(--shn-gold);
}


.shanoa-header h2 {

    margin-top:
        20px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.4rem,
            6vw,
            6rem
        );

    line-height:
        0.9;

    letter-spacing:
        -0.075em;

    font-weight:
        850;
}


.shanoa-header h2 span {

    display:
        block;

    color:
        var(--shn-gold);
}


.shanoa-header > p {

    max-width:
        720px;

    margin:
        30px auto 0;

    color:
        var(--shn-text);

    font-size:
        1rem;

    line-height:
        1.9;
}


.shanoa-program {

    display:
        grid;

    grid-template-columns:
        0.95fr 1fr;

    gap:
        90px;

    align-items:
        center;

    margin-bottom:
        135px;

    opacity:
        0;

    transform:
        translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.9s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.shanoa-program.shanoa-visible {

    opacity:
        1;

    transform:
        translateY(0);
}


.shanoa-program-reverse
.shanoa-program-image {

    order:
        2;
}


.shanoa-program-reverse
.shanoa-program-content {

    order:
        1;
}



.shanoa-program-image {

    position:
        relative;

    min-height:
        500px;

    overflow:
        hidden;

    border-radius:
        30px;

    border:
        1px solid
        rgba(255,255,255,0.13);

    background:
        #021128;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.18);
}


.shanoa-program-image::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(2,17,40,0.82)
        );

    pointer-events:
        none;
}


.shanoa-program-image img {

    width:
        100%;

    height:
        500px;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 0.9s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.shanoa-program:hover
.shanoa-program-image img {

    transform:
        scale(1.06);
}


.shanoa-image-number {

    position:
        absolute;

    z-index:
        4;

    top:
        24px;

    left:
        25px;

    font-family:
        var(--font-heading);

    font-size:
        4rem;

    line-height:
        1;

    font-weight:
        850;

    color:
        rgba(255,255,255,0.16);
}


.shanoa-image-badge {

    position:
        absolute;

    z-index:
        5;

    left:
        25px;

    bottom:
        25px;

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        13px 17px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius:
        14px;

    color:
        white;

    background:
        rgba(2,17,40,0.55);

    backdrop-filter:
        blur(14px);

    font-size:
        0.62rem;

    font-weight:
        800;

    letter-spacing:
        0.11em;
}


.shanoa-image-badge i {

    color:
        var(--shn-gold);

    font-size:
        0.9rem;
}


.shanoa-program-content {

    max-width:
        620px;
}


.shanoa-program-label {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    color:
        var(--shn-gold);

    font-size:
        0.61rem;

    font-weight:
        850;

    letter-spacing:
        0.17em;
}


.shanoa-program-label span {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        34px;

    height:
        34px;

    border:
        1px solid
        rgba(255,210,28,0.35);

    border-radius:
        10px;

    color:
        var(--shn-gold);

    background:
        rgba(255,210,28,0.07);

    font-family:
        var(--font-heading);

    font-size:
        0.8rem;

    letter-spacing:
        0;
}


.shanoa-program-content h3 {

    margin-top:
        18px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.5rem,
            4vw,
            4.3rem
        );

    line-height:
        0.95;

    letter-spacing:
        -0.065em;

    font-weight:
        850;
}


.shanoa-program-content h3 span {

    display:
        block;

    color:
        var(--shn-gold);
}


.shanoa-program-content > p {

    margin-top:
        22px;

    color:
        var(--shn-text);

    font-size:
        0.92rem;

    line-height:
        1.85;
}


.shanoa-highlight-row {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        10px;

    margin-top:
        30px;
}


.shanoa-highlight-row div {

    min-height:
        78px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    gap:
        8px;

    padding:
        13px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius:
        14px;

    background:
        rgba(255,255,255,0.045);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.shanoa-highlight-row div:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(255,210,28,0.25);

    background:
        rgba(255,210,28,0.07);
}


.shanoa-highlight-row i {

    color:
        var(--shn-gold);

    font-size:
        0.78rem;
}


.shanoa-highlight-row span {

    color:
        rgba(255,255,255,0.72);

    font-size:
        0.6rem;

    line-height:
        1.3;

    font-weight:
        700;
}


.shanoa-eligibility {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        25px;

    padding:
        11px 15px;

    border:
        1px solid
        rgba(255,210,28,0.2);

    border-radius:
        12px;

    color:
        rgba(255,255,255,0.7);

    background:
        rgba(255,210,28,0.05);

    font-size:
        0.68rem;
}


.shanoa-eligibility i {

    color:
        var(--shn-gold);
}


.shanoa-eligibility strong {

    color:
        white;
}


.shanoa-note {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    margin-top:
        18px;

    padding:
        13px 15px;

    border-left:
        2px solid
        var(--shn-gold);

    color:
        rgba(255,255,255,0.55);

    background:
        rgba(255,255,255,0.035);

    font-size:
        0.66rem;

    line-height:
        1.6;
}


.shanoa-note i {

    margin-top:
        3px;

    color:
        var(--shn-gold);
}


.shanoa-investment-display {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    margin-top:
        28px;

    padding:
        17px 19px;

    border:
        1px solid
        rgba(255,210,28,0.2);

    border-radius:
        16px;

    background:
        linear-gradient(
            90deg,
            rgba(255,210,28,0.08),
            rgba(255,255,255,0.035)
        );
}


.investment-icon {

    width:
        48px;

    height:
        48px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        13px;

    color:
        var(--shn-navy);

    background:
        var(--shn-gold);

    box-shadow:
        0 8px 25px
        rgba(255,210,28,0.18);
}


.shanoa-investment-display strong {

    display:
        block;

    color:
        white;

    font-size:
        0.78rem;
}


.shanoa-investment-display span {

    display:
        block;

    margin-top:
        4px;

    color:
        rgba(255,255,255,0.55);

    font-size:
        0.62rem;
}


.shanoa-closing {

    max-width:
        850px;

    margin:
        20px auto 0;

    text-align:
        center;
}


.shanoa-closing-line {

    width:
        70px;

    height:
        2px;

    margin:
        0 auto 25px;

    background:
        var(--shn-gold);
}


.shanoa-closing > span {

    color:
        var(--shn-gold);

    font-size:
        0.6rem;

    font-weight:
        850;

    letter-spacing:
        0.18em;
}


.shanoa-closing h3 {

    margin-top:
        18px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2rem,
            4vw,
            3.7rem
        );

    line-height:
        1;

    letter-spacing:
        -0.06em;
}


.shanoa-closing h3 strong {

    color:
        var(--shn-gold);
}


.shanoa-closing p {

    max-width:
        650px;

    margin:
        22px auto 0;

    color:
        rgba(255,255,255,0.6);

    font-size:
        0.85rem;

    line-height:
        1.8;
}



@media (max-width: 950px) {

    .shanoa-program {

        grid-template-columns:
            1fr;

        gap:
            50px;

        margin-bottom:
            100px;
    }


    .shanoa-program-reverse
    .shanoa-program-image {

        order:
            initial;
    }


    .shanoa-program-reverse
    .shanoa-program-content {

        order:
            initial;
    }


    .shanoa-program-content {

        max-width:
            760px;

        margin:
            0 auto;
    }


    .shanoa-program-image {

        min-height:
            420px;
    }


    .shanoa-program-image img {

        height:
            420px;
    }

}


@media (max-width: 650px) {

    .shanoa-section {

        padding:
            95px 0 100px;
    }


    .shanoa-container {

        width:
            calc(100% - 35px);
    }


    .shanoa-header {

        margin-bottom:
            75px;
    }


    .shanoa-header h2 {

        font-size:
            3.4rem;
    }


    .shanoa-program-image {

        min-height:
            340px;

        border-radius:
            22px;
    }


    .shanoa-program-image img {

        height:
            340px;
    }


    .shanoa-program-content h3 {

        font-size:
            2.65rem;
    }


    .shanoa-highlight-row {

        grid-template-columns:
            1fr;
    }


    .shanoa-highlight-row div {

        min-height:
            60px;

        flex-direction:
            row;

        align-items:
            center;
    }


    .shanoa-image-number {

        font-size:
            3rem;
    }

}


@media (prefers-reduced-motion: reduce) {

    .shanoa-section *,
    .shanoa-section *::before,
    .shanoa-section *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}



.svip-section {

    --svip-navy: #021128;
    --svip-blue: #0877d1;
    --svip-blue-light: #1295ee;
    --svip-gold: #ffd21c;
    --svip-gold-light: #ffe76a;
    --svip-text: #40556f;
    --svip-muted: #718198;

    position: relative;

    overflow: hidden;

    padding:
        120px 0 125px;

    color:
        var(--svip-navy);

    background:
        #ffffff;
}



.svip-section::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(8,119,209,0.045),
            transparent 25%
        ),

        radial-gradient(
            circle at 92% 75%,
            rgba(255,210,28,0.06),
            transparent 27%
        );
}


.svip-section::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--svip-blue),
            var(--svip-gold),
            var(--svip-blue)
        );

    background-size: 200% 100%;

    animation:
        svipTopLine 6s linear infinite;
}


@keyframes svipTopLine {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}



.svip-bg-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(1px);
}


.svip-bg-orb-one {

    width: 380px;
    height: 380px;

    right: -220px;
    top: 180px;

    border:
        1px solid
        rgba(8,119,209,0.07);

    background:
        rgba(8,119,209,0.025);

    animation:
        svipOrbFloat 11s
        ease-in-out
        infinite;
}


.svip-bg-orb-two {

    width: 260px;
    height: 260px;

    left: -160px;
    bottom: 150px;

    border:
        1px solid
        rgba(255,210,28,0.12);

    background:
        rgba(255,210,28,0.035);

    animation:
        svipOrbFloat 9s
        1s
        ease-in-out
        infinite
        reverse;
}


@keyframes svipOrbFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-25px)
            scale(1.04);
    }
}


.svip-container {

    position: relative;

    z-index: 5;

    width:
        min(
            1180px,
            calc(100% - 50px)
        );

    margin:
        0 auto;
}



.svip-header {

    max-width: 850px;

    margin:
        0 auto 65px;

    text-align: center;
}


.svip-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color:
        var(--svip-blue);

    font-size:
        0.65rem;

    font-weight:
        850;

    letter-spacing:
        0.2em;
}


.svip-eyebrow span {

    width: 34px;
    height: 2px;

    background:
        var(--svip-gold);
}


.svip-header h2 {

    margin-top: 20px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3rem,
            5vw,
            5.2rem
        );

    line-height: 0.95;

    letter-spacing:
        -0.07em;

    font-weight: 850;
}


.svip-header h2 span {

    display: block;

    color:
        var(--svip-blue);
}


.svip-lead {

    max-width: 650px;

    margin:
        27px auto 0;

    color:
        var(--svip-text);

    font-size:
        1rem;

    line-height:
        1.8;
}


.svip-introduction {

    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 25px;

    align-items: start;

    max-width: 900px;

    margin:
        0 auto 70px;

    padding:
        30px 35px;

    border:
        1px solid
        rgba(8,119,209,0.09);

    border-radius:
        24px;

    background:
        rgba(255,255,255,0.82);

    box-shadow:
        0 20px 55px
        rgba(2,17,40,0.055);
}


.svip-intro-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color:
        var(--svip-navy);

    background:
        var(--svip-gold);

    box-shadow:
        0 10px 25px
        rgba(255,210,28,0.22);

    font-size: 1.25rem;
}


.svip-introduction h3 {

    margin: 0;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.7rem
        );

    line-height: 1;

    letter-spacing:
        -0.055em;
}


.svip-introduction h3 span {

    color:
        var(--svip-blue);
}


.svip-introduction p {

    max-width: 820px;

    margin-top: 15px;

    color:
        var(--svip-text);

    font-size: 0.87rem;

    line-height: 1.8;
}


.svip-introduction strong {

    color:
        var(--svip-navy);

    font-weight: 750;
}


.svip-tiers {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;

    align-items: stretch;
}



.svip-card {

    position: relative;

    display: flex;

    flex-direction: column;

    padding:
        38px 38px 32px;

    overflow: hidden;

    border:
        1px solid
        rgba(6,56,111,0.1);

    border-radius:
        30px;

    background:
        rgba(255,255,255,0.96);

    box-shadow:
        0 22px 65px
        rgba(2,17,40,0.075);

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.svip-card.svip-visible {

    opacity: 1;

    transform:
        translateY(0);
}


.svip-card:hover {

    border-color:
        rgba(8,119,209,0.22);

    box-shadow:
        0 30px 80px
        rgba(2,17,40,0.12);

    transform:
        translateY(-8px);
}


.svip-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--svip-blue),
            var(--svip-gold)
        );
}


.svip-card-premium {

    border:
        1px solid
        rgba(255,210,28,0.35);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffdf3
        );

    box-shadow:
        0 25px 75px
        rgba(2,17,40,0.09);
}


.svip-card-premium::before {

    background:
        linear-gradient(
            90deg,
            var(--svip-gold),
            var(--svip-blue),
            var(--svip-gold)
        );

    background-size:
        200% 100%;

    animation:
        svipPremiumLine 4s
        linear infinite;
}


@keyframes svipPremiumLine {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}


.svip-popular {

    position: absolute;

    top: 22px;
    right: 25px;

    padding:
        7px 12px;

    border-radius:
        100px;

    color:
        var(--svip-navy);

    background:
        var(--svip-gold);

    font-size:
        0.5rem;

    font-weight:
        900;

    letter-spacing:
        0.12em;

    box-shadow:
        0 8px 20px
        rgba(255,210,28,0.22);
}


.svip-card-top {

    display: flex;

    align-items: center;

    gap: 17px;
}


.svip-tier-icon {

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color:
        var(--svip-blue);

    background:
        rgba(8,119,209,0.08);

    border:
        1px solid
        rgba(8,119,209,0.1);

    font-size: 1.25rem;

    transition:
        transform 0.35s ease;
}


.svip-card:hover .svip-tier-icon {

    transform:
        rotate(-6deg)
        scale(1.08);
}


.svip-card-premium .svip-tier-icon {

    color:
        var(--svip-navy);

    background:
        var(--svip-gold);

    border-color:
        rgba(255,210,28,0.3);

    box-shadow:
        0 10px 25px
        rgba(255,210,28,0.18);
}


.svip-tier-label {

    display: block;

    color:
        var(--svip-blue);

    font-size:
        0.55rem;

    font-weight:
        850;

    letter-spacing:
        0.15em;
}


.svip-card h3 {

    margin-top: 5px;

    color:
        var(--svip-navy);

    font-family:
        var(--font-heading);

    font-size:
        2.25rem;

    line-height: 1;

    letter-spacing:
        -0.06em;
}


.svip-card h3 span {

    color:
        var(--svip-blue);
}


.svip-card-description {

    min-height: 55px;

    margin:
        28px 0 24px;

    color:
        var(--svip-text);

    font-size:
        0.8rem;

    line-height:
        1.75;
}


.svip-benefits {

    display: flex;

    flex-direction: column;

    gap: 9px;

    padding:
        22px 0;

    border-top:
        1px solid
        rgba(6,56,111,0.08);

    border-bottom:
        1px solid
        rgba(6,56,111,0.08);
}


.svip-benefit {

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 38px;

    color:
        var(--svip-text);

    font-size:
        0.72rem;

    font-weight:
        650;

    line-height:
        1.4;
}


.svip-benefit i {

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color:
        var(--svip-blue);

    background:
        rgba(8,119,209,0.07);

    font-size:
        0.68rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.svip-benefit:hover i {

    transform:
        scale(1.1);

    background:
        rgba(255,210,28,0.2);
}


.svip-card-premium .svip-benefit i {

    color:
        #9a7600;

    background:
        rgba(255,210,28,0.13);
}


.svip-inherited {

    color:
        var(--svip-navy);

    font-weight:
        800;
}



.svip-card-footer {

    margin-top: auto;

    padding-top: 28px;
}


.svip-price small {

    display: block;

    color:
        var(--svip-muted);

    font-size:
        0.52rem;

    font-weight:
        850;

    letter-spacing:
        0.16em;
}


.svip-price strong {

    display: inline-block;

    margin-top: 5px;

    color:
        var(--svip-navy);

    font-family:
        var(--font-heading);

    font-size:
        2.2rem;

    line-height: 1;

    letter-spacing:
        -0.055em;
}


.svip-price span {

    margin-left: 5px;

    color:
        var(--svip-muted);

    font-size:
        0.68rem;
}


.svip-bottom {

    display: flex;

    align-items: center;

    gap: 18px;

    max-width: 760px;

    margin:
        55px auto 0;

    padding:
        22px 28px;

    border:
        1px solid
        rgba(8,119,209,0.09);

    border-radius:
        18px;

    background:
        rgba(8,119,209,0.025);

    text-align: left;
}


.svip-bottom-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color:
        var(--svip-navy);

    background:
        var(--svip-gold);

    font-size:
        1rem;
}


.svip-bottom strong {

    display: block;

    color:
        var(--svip-navy);

    font-family:
        var(--font-heading);

    font-size:
        0.95rem;
}


.svip-bottom p {

    margin-top: 4px;

    color:
        var(--svip-muted);

    font-size:
        0.72rem;
}



@media (max-width: 850px) {

    .svip-section {

        padding:
            90px 0 100px;
    }

    .svip-container {

        width:
            calc(100% - 35px);
    }

    .svip-tiers {

        grid-template-columns:
            1fr;
    }

    .svip-card {

        max-width:
            650px;

        width: 100%;

        margin:
            0 auto;
    }

}


@media (max-width: 550px) {

    .svip-header h2 {

        font-size:
            2.8rem;
    }

    .svip-introduction {

        grid-template-columns:
            1fr;

        padding:
            25px;
    }

    .svip-intro-icon {

        width: 52px;
        height: 52px;
    }

    .svip-card {

        padding:
            32px 25px 28px;

        border-radius:
            24px;
    }

    .svip-popular {

        top: 18px;
        right: 18px;
    }

    .svip-tier-icon {

        width: 55px;
        height: 55px;
    }

    .svip-card h3 {

        font-size:
            2rem;
    }

    .svip-card-description {

        min-height:
            auto;
    }

    .svip-bottom {

        align-items:
            flex-start;

        padding:
            20px;
    }

}



@media (prefers-reduced-motion: reduce) {

    .svip-section *,
    .svip-section *::before,
    .svip-section *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}