:root{
    --ai-primary:#6d5dfc;
    --ai-primary-2:#8b5cf6;
    --ai-cyan:#22d3ee;
    --ai-blue:#60a5fa;
    --ai-green:#34d399;
    --ai-pink:#f472b6;

    --bg:#f5f7fb;
    --surface:rgba(255,255,255,.58);
    --surface-strong:rgba(255,255,255,.76);
    --surface-dark:rgba(13,18,38,.68);

    --border:rgba(255,255,255,.72);
    --border-soft:rgba(148,163,184,.18);

    --text:#0f172a;
    --muted:#64748b;

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

    --shadow-heavy:
        0 45px 120px rgba(15,23,42,.17);

    --container:1200px;
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    overflow-x:hidden;

    color:var(--text);

    font-family:
        "DM Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(109,93,252,.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(34,211,238,.08),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f9fbff 0%,
            #f4f7fb 45%,
            #eef2f7 100%
        );
}

body::before{
    content:"";

    position:fixed;
    inset:0;

    pointer-events:none;

    opacity:.32;

    background-image:
        linear-gradient(
            rgba(99,91,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(99,91,255,.035) 1px,
            transparent 1px
        );

    background-size:
        48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.9),
            transparent 85%
        );

    z-index:-1;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    font-family:inherit;
}

.gs-container{
    width:min(
        calc(100% - 48px),
        var(--container)
    );

    margin:auto;
}

/* =========================================================
   GLOBAL GLASS
========================================================= */

.glass{
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.78),
            rgba(255,255,255,.42)
        );

    border:
        1px solid var(--border);

    box-shadow:
        var(--shadow);

    backdrop-filter:
        blur(24px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(150%);
}

/* =========================================================
   NAVBAR
========================================================= */

.gs-navbar{
    position:sticky;
    top:0;
    z-index:9999;

    height:82px;

    background:
        rgba(248,250,255,.66);

    border-bottom:
        1px solid rgba(255,255,255,.85);

    backdrop-filter:
        blur(22px)
        saturate(160%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(160%);

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

.nav-inner{
    height:82px;

    display:flex;
    align-items:center;

    gap:28px;
}

.gs-brand{
    display:flex;
    align-items:center;
    gap:11px;
}

.brand-mark{
    position:relative;

    width:44px;
    height:44px;

    display:grid;
    place-items:center;

    overflow:hidden;

    border-radius:15px;

    color:#fff;

    background:
        radial-gradient(
            circle at 25% 20%,
            rgba(255,255,255,.45),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #7267ff,
            #6d5dfc 45%,
            #7c3aed
        );

    box-shadow:
        0 12px 30px rgba(109,93,252,.28),
        inset 0 1px 0 rgba(255,255,255,.35);

    font-family:
        "Manrope",
        sans-serif;

    font-size:22px;
    font-weight:800;
}

.brand-mark::after{
    content:"";

    position:absolute;

    width:30px;
    height:30px;

    top:-14px;
    right:-12px;

    border-radius:50%;

    background:
        rgba(255,255,255,.2);

    filter:blur(5px);
}

.brand-text{
    display:flex;
    flex-direction:column;

    line-height:1;
}

.brand-text strong{
    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:18px;
    font-weight:800;
}

.brand-text small{
    margin-top:4px;

    color:var(--ai-primary);

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

    letter-spacing:.16em;
}

.desktop-nav{
    display:flex;
    align-items:center;
    gap:30px;

    margin-left:auto;
}

.desktop-nav a{
    color:#475569;

    font-size:13px;
    font-weight:700;

    transition:.25s ease;
}

.desktop-nav a:hover{
    color:var(--ai-primary);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:17px;
}

.login-link{
    color:var(--text);

    font-size:13px;
    font-weight:800;
}

.login-link:hover{
    color:var(--ai-primary);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    min-height:46px;

    padding:
        11px 19px;

    border-radius:14px;

    font-size:13px;
    font-weight:800;

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

.btn-primary{
    color:#fff;

    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #7c3aed
        );

    box-shadow:
        0 14px 35px rgba(109,93,252,.28),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-primary:hover{
    color:#fff;

    transform:
        translateY(-3px);

    filter:
        brightness(1.04);

    box-shadow:
        0 20px 45px rgba(109,93,252,.34);
}

.btn-outline{
    color:var(--text);

    background:
        rgba(255,255,255,.52);

    border:
        1px solid rgba(255,255,255,.86);

    box-shadow:
        0 10px 25px rgba(15,23,42,.05);

    backdrop-filter:
        blur(15px);
}

.btn-outline:hover{
    transform:
        translateY(-3px);

    color:var(--ai-primary);

    box-shadow:
        0 18px 40px rgba(15,23,42,.08);
}

.btn-large{
    min-height:54px;

    padding:
        14px 23px;

    border-radius:16px;

    font-size:14px;
}

.btn-white{
    color:#5548db;

    background:
        rgba(255,255,255,.92);

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);
}

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

.hero{
    position:relative;

    min-height:760px;

    padding:
        95px 0 80px;

    overflow:hidden;

    perspective:
        1400px;
}

.hero::after{
    content:"";

    position:absolute;

    width:600px;
    height:600px;

    top:-170px;
    right:-160px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(109,93,252,.15),
            transparent 70%
        );

    filter:blur(20px);

    pointer-events:none;
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
        minmax(0,.90fr)
        minmax(0,1.10fr);

    align-items:center;

    gap:55px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;

    gap:9px;

    padding:
        8px 13px;

    border-radius:100px;

    border:
        1px solid rgba(109,93,252,.16);

    background:
        rgba(255,255,255,.58);

    color:#5f53e9;

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

    letter-spacing:.12em;

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 8px 25px rgba(109,93,252,.07);
}

.eyebrow span{
    width:7px;
    height:7px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #22d3ee
        );

    box-shadow:
        0 0 0 5px rgba(109,93,252,.09);
}

.hero h1{
    max-width:680px;

    margin-top:24px;

    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(50px,5.8vw,80px);

    line-height:.98;

    letter-spacing:-.068em;

    font-weight:800;
}

.hero h1 span{
    display:block;

    background:
        linear-gradient(
            135deg,
            #6d5dfc 0%,
            #7c3aed 42%,
            #0ea5e9 100%
        );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
}

.hero-description{
    max-width:570px;

    margin-top:24px;

    color:#64748b;

    font-size:15px;

    line-height:1.8;
}

.hero-buttons{
    display:flex;
    align-items:center;

    gap:12px;

    margin-top:30px;
}

.hero-trust{
    display:flex;
    align-items:center;

    gap:12px;

    margin-top:30px;
}

.hero-trust strong{
    display:block;

    margin-top:3px;

    color:#475569;

    font-size:11px;
}

.stars{
    color:#f59e0b;

    font-size:11px;

    letter-spacing:2px;
}

.avatar-stack{
    display:flex;

    padding-left:6px;
}

.avatar-stack span{
    width:34px;
    height:34px;

    display:grid;
    place-items:center;

    margin-left:-6px;

    border:
        2px solid rgba(255,255,255,.9);

    border-radius:50%;

    color:#fff;

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

    background:
        linear-gradient(
            135deg,
            #8b7cff,
            #6d5dfc
        );

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

.avatar-stack span:nth-child(2){
    background:
        linear-gradient(
            135deg,
            #67e8f9,
            #0891b2
        );
}

.avatar-stack span:nth-child(3){
    background:
        linear-gradient(
            135deg,
            #fdba74,
            #f97316
        );
}

.avatar-stack span:nth-child(4){
    background:
        linear-gradient(
            135deg,
            #86efac,
            #059669
        );
}

/* =========================================================
   SPATIAL HERO OBJECT
========================================================= */

.hero-visual{
    position:relative;

    min-height:560px;

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

    transform-style:
        preserve-3d;
}

.visual-orbit{
    position:absolute;

    border:
        1px solid rgba(109,93,252,.12);

    border-radius:50%;

    pointer-events:none;
}

.orbit-one{
    width:470px;
    height:470px;

    transform:
        rotateX(65deg)
        rotateZ(20deg);
}

.orbit-two{
    width:630px;
    height:630px;

    transform:
        rotateX(65deg)
        rotateZ(-18deg);

    opacity:.6;
}

.dashboard-card{
    position:relative;
    z-index:5;

    width:min(100%,590px);

    padding:26px;

    border:
        1px solid rgba(255,255,255,.82);

    border-radius:30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.86),
            rgba(240,243,255,.54)
        );

    backdrop-filter:
        blur(30px)
        saturate(160%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(160%);

    box-shadow:
        0 45px 120px rgba(15,23,42,.14),
        inset 0 1px 0 rgba(255,255,255,.90);

    transform:
        rotateY(-7deg)
        rotateX(4deg)
        translateZ(50px);

    transform-style:
        preserve-3d;

    animation:
        spatialFloat 7s ease-in-out infinite;
}

@keyframes spatialFloat{

    0%,100%{
        transform:
            rotateY(-7deg)
            rotateX(4deg)
            translate3d(0,0,50px);
    }

    50%{
        transform:
            rotateY(-5deg)
            rotateX(2deg)
            translate3d(0,-13px,70px);
    }
}

.dashboard-card::before{
    content:"";

    position:absolute;
    inset:1px;

    border-radius:29px;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.38),
            transparent 34%,
            transparent 67%,
            rgba(109,93,252,.07)
        );

    pointer-events:none;
}

.dashboard-top{
    position:relative;
    z-index:2;

    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}

.dashboard-label{
    display:block;

    color:#64748b;

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

    letter-spacing:.02em;
}

.dashboard-top strong{
    display:block;

    margin-top:3px;

    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:37px;

    line-height:1;

    letter-spacing:-.05em;
}

.dashboard-icon{
    width:45px;
    height:45px;

    display:grid;
    place-items:center;

    border-radius:14px;

    border:
        1px solid rgba(255,255,255,.82);

    background:
        rgba(109,93,252,.10);

    color:var(--ai-primary);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.6);
}

.progress-track{
    position:relative;
    z-index:2;

    height:8px;

    margin-top:20px;

    overflow:hidden;

    border-radius:100px;

    background:
        rgba(148,163,184,.14);
}

.progress-value{
    height:100%;
    width:82%;

    border-radius:inherit;

    background:
        linear-gradient(
            90deg,
            #6d5dfc,
            #8b5cf6,
            #22d3ee
        );

    box-shadow:
        0 0 20px rgba(109,93,252,.25);
}

.progress-meta{
    position:relative;
    z-index:2;

    display:flex;
    justify-content:space-between;

    margin-top:8px;

    color:#94a3b8;

    font-size:9px;
    font-weight:700;
}

.progress-meta strong{
    color:#10b981;
}

.dashboard-chart{
    position:relative;

    height:170px;

    margin-top:22px;

    border-bottom:
        1px solid rgba(148,163,184,.15);
}

.dashboard-chart::before{
    content:"";

    position:absolute;
    inset:0;

    opacity:.36;

    background:
        linear-gradient(
            rgba(100,116,139,.10) 1px,
            transparent 1px
        );

    background-size:
        100% 34px;
}

.chart-labels{
    position:absolute;

    left:0;
    right:0;
    bottom:7px;

    display:flex;
    justify-content:space-between;

    color:#a4acbc;

    font-size:8px;

    z-index:3;
}

.chart-line{
    position:absolute;

    left:0;
    right:0;

    top:52px;

    height:85px;

    border-top:
        3px solid #6d5dfc;

    transform:
        skewY(-7deg);

    filter:
        drop-shadow(
            0 8px 15px rgba(109,93,252,.15)
        );
}

.point{
    position:absolute;

    width:9px;
    height:9px;

    margin-top:-7px;

    border:
        2px solid #fff;

    border-radius:50%;

    background:#6d5dfc;

    box-shadow:
        0 3px 13px rgba(109,93,252,.38);

    transform:
        skewY(7deg);
}

.p1{left:3%}
.p2{left:20%;margin-top:11px}
.p3{left:40%;margin-top:-5px}
.p4{left:58%;margin-top:15px}
.p5{left:77%;margin-top:-17px}
.p6{right:2%;margin-top:-35px}

.dashboard-course{
    position:relative;
    z-index:3;

    display:flex;
    align-items:center;

    gap:12px;

    margin-top:18px;

    padding:13px;

    border:
        1px solid rgba(255,255,255,.78);

    border-radius:16px;

    background:
        rgba(255,255,255,.42);

    backdrop-filter:
        blur(12px);
}

.course-mini-icon{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    flex-shrink:0;

    border-radius:13px;

    background:
        rgba(109,93,252,.10);

    color:var(--ai-primary);
}

.course-info{
    min-width:0;
    flex:1;
}

.course-info strong{
    display:block;

    color:var(--text);

    font-size:12px;
}

.course-info small{
    display:block;

    margin-top:2px;

    color:#94a3b8;

    font-size:9px;
}

.course-arrow{
    width:30px;
    height:30px;

    display:grid;
    place-items:center;

    border-radius:10px;

    background:
        rgba(255,255,255,.6);

    color:#94a3b8;

    font-size:9px;
}

.floating-card{
    position:absolute;
    z-index:10;

    display:flex;
    align-items:center;

    gap:10px;

    padding:
        12px 14px;

    border:
        1px solid rgba(255,255,255,.86);

    border-radius:17px;

    background:
        rgba(255,255,255,.67);

    backdrop-filter:
        blur(22px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(150%);

    box-shadow:
        0 25px 60px rgba(15,23,42,.13),
        inset 0 1px 0 rgba(255,255,255,.82);

    transform:
        translateZ(100px);

    animation:
        floatBadge 5s ease-in-out infinite;
}

.floating-card strong{
    display:block;

    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:15px;

    line-height:1.1;
}

.floating-card span{
    display:block;

    margin-top:3px;

    color:#94a3b8;

    font-size:8px;
    font-weight:700;
}

.floating-icon,
.certificate-icon{
    width:37px;
    height:37px;

    display:grid;
    place-items:center;

    border-radius:12px;

    color:var(--ai-primary);

    background:
        rgba(109,93,252,.10);

    border:
        1px solid rgba(255,255,255,.75);
}

.certificate-icon{
    color:#f97316;

    background:
        rgba(249,115,22,.10);
}

.floating-student{
    left:-6%;
    top:6%;
}

.floating-certificate{
    right:-6%;
    bottom:8%;

    animation-delay:
        -2s;
}

@keyframes floatBadge{

    0%,100%{
        transform:
            translate3d(0,0,100px);
    }

    50%{
        transform:
            translate3d(0,-9px,115px);
    }
}

/* AI MINI ORB */

.hero-visual::before{
    content:"AI";

    position:absolute;

    top:2%;
    right:11%;

    width:70px;
    height:70px;

    display:grid;
    place-items:center;

    border:
        1px solid rgba(255,255,255,.8);

    border-radius:24px;

    color:#fff;

    background:
        radial-gradient(
            circle at 35% 30%,
            #9a91ff,
            #6d5dfc 45%,
            #4c3dbb
        );

    box-shadow:
        0 24px 55px rgba(109,93,252,.35);

    font-family:
        "Manrope",
        sans-serif;

    font-size:17px;
    font-weight:800;

    transform:
        rotate(10deg)
        translateZ(80px);

    backdrop-filter:
        blur(14px);

    animation:
        aiOrb 6s ease-in-out infinite;
}

@keyframes aiOrb{

    0%,100%{
        transform:
            rotate(10deg)
            translateY(0)
            translateZ(80px);
    }

    50%{
        transform:
            rotate(4deg)
            translateY(-10px)
            translateZ(100px);
    }
}

/* =========================================================
   STATS
========================================================= */

.stats-section{
    margin-top:-1px;

    border-top:
        1px solid rgba(255,255,255,.65);

    border-bottom:
        1px solid rgba(255,255,255,.65);

    background:
        rgba(255,255,255,.45);

    backdrop-filter:
        blur(18px);
}

.stats-grid{
    display:grid;
    grid-template-columns:
        repeat(4,1fr);
}

.stat-item{
    position:relative;

    padding:
        27px 20px;

    text-align:center;
}

.stat-item strong{
    display:block;

    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:27px;

    letter-spacing:-.05em;
}

.stat-item span{
    display:block;

    margin-top:2px;

    color:#94a3b8;

    font-size:10px;
    font-weight:800;
}

/* =========================================================
   SECTIONS
========================================================= */

.section{
    padding:
        110px 0;
}

.section-soft{
    background:
        rgba(255,255,255,.20);
}

.section-kicker{
    display:block;

    color:var(--ai-primary);

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

    letter-spacing:.16em;
}

.section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:45px;

    margin-bottom:44px;
}

.section-heading h2,
.center-heading h2,
.journey-content h2,
.faq-intro h2{
    margin-top:10px;

    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(33px,4vw,52px);

    line-height:1.08;

    letter-spacing:-.055em;

    font-weight:800;
}

.section-heading h2 span,
.center-heading h2 span,
.journey-content h2 span{
    color:var(--ai-primary);
}

.section-heading>p{
    max-width:440px;

    color:#64748b;

    font-size:13px;

    line-height:1.8;
}

.center-heading{
    max-width:750px;

    margin:
        0 auto 48px;

    text-align:center;
}

.center-heading p{
    max-width:600px;

    margin:
        15px auto 0;

    color:#64748b;

    font-size:13px;

    line-height:1.8;
}

/* =========================================================
   LIQUID GLASS CARDS
========================================================= */

.program-card,
.feature-card,
.course-card,
.testimonial-card{
    border:
        1px solid rgba(255,255,255,.82);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.68),
            rgba(255,255,255,.36)
        );

    backdrop-filter:
        blur(20px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(140%);

    box-shadow:
        0 20px 50px rgba(15,23,42,.06),
        inset 0 1px 0 rgba(255,255,255,.84);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
}

/* =========================================================
   PROGRAM
========================================================= */

.program-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:17px;
}

.program-card{
    position:relative;

    min-height:320px;

    padding:27px;

    overflow:hidden;

    border-radius:25px;
}

.program-card:hover{
    transform:
        translateY(-10px)
        rotateX(1deg);

    box-shadow:
        0 35px 85px rgba(15,23,42,.11);
}

.program-icon{
    width:55px;
    height:55px;

    display:grid;
    place-items:center;

    margin-bottom:29px;

    border-radius:17px;

    background:
        rgba(109,93,252,.10);

    color:var(--ai-primary);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8);
}

.program-category{
    display:block;

    margin-bottom:7px;

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

    letter-spacing:.13em;
}

.program-card h3{
    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:19px;

    line-height:1.3;

    letter-spacing:-.025em;
}

.program-card p{
    margin-top:11px;

    color:#64748b;

    font-size:12px;

    line-height:1.75;
}

.program-link{
    position:absolute;

    left:27px;
    bottom:23px;

    display:inline-flex;

    align-items:center;

    gap:7px;

    color:var(--ai-primary);

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

.program-link i{
    transition:.25s ease;
}

.program-card:hover .program-link i{
    transform:
        translateX(4px);
}

.program-card.blue .program-icon{
    background:
        rgba(34,211,238,.10);

    color:#0891b2;
}

.program-card.blue .program-category{
    color:#0891b2;
}

.program-card.blue .program-link{
    color:#0891b2;
}

.program-card.cyan .program-icon{
    background:
        rgba(6,182,212,.09);

    color:#06b6d4;
}

.program-card.cyan .program-category{
    color:#0891b2;
}

.program-card.cyan .program-link{
    color:#0891b2;
}

.program-card.orange .program-icon{
    background:
        rgba(249,115,22,.10);

    color:#f97316;
}

.program-card.orange .program-category{
    color:#ea6d13;
}

.program-card.orange .program-link{
    color:#ea6d13;
}

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

.feature-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:17px;
}

.feature-card{
    position:relative;

    min-height:270px;

    padding:28px;

    border-radius:24px;
}

.feature-card:hover{
    transform:
        translateY(-9px);
}

.feature-number{
    position:absolute;

    top:20px;
    right:21px;

    color:#b7bcc9;

    font-family:
        "Manrope",
        sans-serif;

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

.feature-icon{
    width:50px;
    height:50px;

    display:grid;
    place-items:center;

    margin-bottom:28px;

    border-radius:15px;

    background:
        rgba(109,93,252,.10);

    color:var(--ai-primary);
}

.feature-card h3{
    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:17px;

    letter-spacing:-.025em;
}

.feature-card p{
    margin-top:10px;

    color:#64748b;

    font-size:12px;

    line-height:1.7;
}

.featured-feature{
    color:#fff !important;

    border-color:
        rgba(255,255,255,.10);

    background:
        linear-gradient(
            145deg,
            rgba(18,24,50,.92),
            rgba(36,44,78,.80)
        );

    box-shadow:
        0 35px 80px rgba(15,23,42,.18);
}

.featured-feature h3{
    color:#fff;
}

.featured-feature p{
    color:#aab3c8;
}

.featured-feature .feature-number{
    color:#67718c;
}

.featured-feature .feature-icon{
    color:#fff;

    background:
        rgba(109,93,252,.23);
}

/* =========================================================
   COURSES
========================================================= */

.course-grid{
    display:grid;

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

    gap:20px;
}

.course-card{
    overflow:hidden;

    border-radius:27px;
}

.course-card:hover{
    transform:
        translateY(-10px)
        rotateX(1deg);

    box-shadow:
        0 35px 85px rgba(15,23,42,.12);
}

.course-cover{
    position:relative;

    min-height:230px;

    overflow:hidden;

    padding:21px;
}

.course-cover.purple{
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255,255,255,.26),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #5044d7,
            #7c3aed
        );
}

.course-cover.blue{
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(255,255,255,.22),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #0f6db6,
            #0ea5e9
        );
}

.course-cover.cyan{
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(255,255,255,.22),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #0e7490,
            #06b6d4
        );
}

.cover-pattern{
    position:absolute;
    inset:0;

    opacity:.17;

    background-image:
        radial-gradient(
            rgba(255,255,255,.8) 1px,
            transparent 1px
        );

    background-size:
        18px 18px;
}

.course-category{
    position:relative;
    z-index:2;

    display:inline-flex;

    padding:
        7px 10px;

    border:
        1px solid rgba(255,255,255,.24);

    border-radius:100px;

    color:#fff;

    background:
        rgba(255,255,255,.10);

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

    letter-spacing:.12em;

    backdrop-filter:
        blur(10px);
}

.course-cover-icon{
    position:absolute;

    right:28px;
    bottom:20px;

    width:94px;
    height:94px;

    display:grid;
    place-items:center;

    border:
        1px solid rgba(255,255,255,.32);

    border-radius:29px;

    color:#fff;

    background:
        rgba(255,255,255,.10);

    box-shadow:
        0 20px 45px rgba(15,23,42,.18),
        inset 0 1px 0 rgba(255,255,255,.2);

    backdrop-filter:
        blur(14px);

    font-size:34px;

    transform:
        rotate(-7deg);
}

.course-body{
    padding:22px;
}

.rating{
    display:flex;
    align-items:center;

    gap:5px;

    color:#475569;

    font-size:10px;
    font-weight:800;
}

.rating span{
    color:#f59e0b;
}

.course-body h3{
    margin-top:7px;

    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:18px;

    line-height:1.3;

    letter-spacing:-.03em;
}

.course-body>p{
    margin-top:10px;

    color:#64748b;

    font-size:11px;

    line-height:1.7;
}

.course-meta{
    display:flex;
    flex-wrap:wrap;

    gap:11px;

    margin-top:16px;

    padding-bottom:16px;

    border-bottom:
        1px solid rgba(148,163,184,.15);
}

.course-meta span{
    display:inline-flex;
    align-items:center;

    gap:5px;

    color:#94a3b8;

    font-size:9px;
    font-weight:700;
}

.course-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:16px;
}

.course-footer strong{
    color:var(--text);

    font-family:
        "Manrope",
        sans-serif;

    font-size:17px;

    letter-spacing:-.03em;
}

.course-button{
    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    border-radius:12px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #7c3aed
        );

    box-shadow:
        0 8px 20px rgba(109,93,252,.2);

    transition:
        transform .25s ease;
}

.course-button:hover{
    transform:
        translateX(4px);
}

/* =========================================================
   JOURNEY
========================================================= */

.journey-section{
    position:relative;

    padding:
        120px 0;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(109,93,252,.22),
            transparent 27%
        ),
        radial-gradient(
            circle at 80% 85%,
            rgba(34,211,238,.10),
            transparent 24%
        ),
        #0a1022;

    color:#fff;
}

.journey-section::before{
    content:"";

    position:absolute;
    inset:0;

    opacity:.08;

    background-image:
        linear-gradient(
            rgba(255,255,255,.3) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.3) 1px,
            transparent 1px
        );

    background-size:
        48px 48px;
}

.journey-grid{
    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
        .86fr
        1.14fr;

    gap:100px;
}

.journey-content h2{
    color:#fff;
}

.journey-content h2 span{
    color:#9f97ff;
}

.journey-content>p{
    max-width:480px;

    margin-top:18px;

    color:#aab3c8;

    font-size:13px;

    line-height:1.85;
}

.journey-content .btn{
    margin-top:28px;
}

.journey-step{
    display:grid;

    grid-template-columns:
        58px 1fr;

    gap:20px;

    align-items:start;
}

.step-number{
    width:58px;
    height:58px;

    display:grid;
    place-items:center;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius:18px;

    color:#fff;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.03)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10);
}

.journey-step span{
    display:block;

    color:#8992ab;

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

    letter-spacing:.14em;
}

.journey-step h3{
    margin-top:5px;

    color:#fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size:18px;
}

.journey-step p{
    margin-top:6px;

    color:#98a3b9;

    font-size:11px;

    line-height:1.7;
}

.journey-line{
    width:1px;
    height:30px;

    margin-left:28px;

    background:
        linear-gradient(
            180deg,
            rgba(109,93,252,.65),
            rgba(255,255,255,.08)
        );
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section{
    background:
        rgba(255,255,255,.22);
}

.testimonial-grid{
    display:grid;

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

    gap:18px;
}

.testimonial-card{
    position:relative;

    min-height:310px;

    padding:28px;

    border-radius:26px;
}

.testimonial-card:hover{
    transform:
        translateY(-9px);
}

.quote-mark{
    color:#d8d9eb;

    font-family:Georgia,serif;

    font-size:48px;

    line-height:.8;
}

.testimonial-stars{
    margin-top:17px;

    color:#f59e0b;

    font-size:11px;

    letter-spacing:2px;
}

.testimonial-card>p{
    margin-top:15px;

    color:#475569;

    font-size:12px;

    line-height:1.8;
}

.testimonial-highlight{
    border-color:
        rgba(255,255,255,.10);

    background:
        linear-gradient(
            145deg,
            rgba(14,20,42,.92),
            rgba(36,44,78,.84)
        );

    box-shadow:
        0 35px 85px rgba(15,23,42,.18);
}

.testimonial-highlight>p{
    color:#c1c8d9;
}

.testimonial-highlight .quote-mark{
    color:#8179ed;
}

.testimonial-user{
    position:absolute;

    left:28px;
    right:28px;
    bottom:25px;

    display:flex;
    align-items:center;

    gap:10px;

    padding-top:17px;

    border-top:
        1px solid rgba(148,163,184,.15);
}

.user-avatar{
    width:39px;
    height:39px;

    display:grid;
    place-items:center;

    border-radius:50%;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #7c3aed
        );

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

.testimonial-user strong{
    display:block;

    color:var(--text);

    font-size:10px;
}

.testimonial-highlight .testimonial-user strong{
    color:#fff;
}

.testimonial-user span{
    display:block;

    margin-top:2px;

    color:#94a3b8;

    font-size:8px;
}

/* =========================================================
   FAQ
========================================================= */

.faq-section{
    background:
        rgba(255,255,255,.30);
}

.faq-grid{
    display:grid;

    grid-template-columns:
        .72fr
        1.28fr;

    gap:95px;
}

.faq-intro h2{
    max-width:430px;
}

.faq-intro>p{
    max-width:390px;

    margin-top:16px;

    color:#64748b;

    font-size:13px;

    line-height:1.8;
}

.faq-intro .btn{
    margin-top:27px;
}

.faq-list{
    border-top:
        1px solid rgba(148,163,184,.20);
}

.faq-item{
    border-bottom:
        1px solid rgba(148,163,184,.20);
}

.faq-question{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:
        22px 0;

    text-align:left;

    color:var(--text);

    font-size:13px;
    font-weight:800;
}

.faq-question i{
    width:28px;
    height:28px;

    display:grid;
    place-items:center;

    flex-shrink:0;

    border-radius:9px;

    color:#64748b;

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 6px 18px rgba(15,23,42,.05);

    transition:
        transform .25s ease,
        color .25s ease;
}

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:
        max-height .35s ease;
}

.faq-answer p{
    padding:
        0 40px 20px 0;

    color:#64748b;

    font-size:11px;

    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:180px;
}

.faq-item.active .faq-question i{
    transform:
        rotate(45deg);

    color:var(--ai-primary);
}

/* =========================================================
   CTA
========================================================= */

.cta-section{
    padding:
        0 0 110px;
}

.cta-box{
    position:relative;

    overflow:hidden;

    padding:
        82px 50px;

    border-radius:38px;

    text-align:center;

    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(255,255,255,.16),
            transparent 23%
        ),
        radial-gradient(
            circle at 84% 78%,
            rgba(34,211,238,.14),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #4f46d9,
            #6d45d9 50%,
            #7c3aed
        );

    box-shadow:
        0 40px 100px rgba(79,70,217,.24);
}

.cta-decoration{
    position:absolute;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:50%;
}

.decoration-one{
    width:440px;
    height:440px;

    left:-200px;
    top:-280px;
}

.decoration-two{
    width:350px;
    height:350px;

    right:-160px;
    bottom:-230px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-kicker{
    color:rgba(255,255,255,.70);

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

    letter-spacing:.17em;
}

.cta-content h2{
    max-width:760px;

    margin:
        12px auto 0;

    color:#fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(38px,5vw,59px);

    line-height:1.03;

    letter-spacing:-.055em;
}

.cta-content p{
    max-width:580px;

    margin:
        17px auto 0;

    color:
        rgba(255,255,255,.73);

    font-size:13px;

    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:18px;

    margin-top:30px;
}

.cta-login{
    color:
        rgba(255,255,255,.68);

    font-size:10px;
}

.cta-login strong{
    color:#fff;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    position:relative;

    background:
        #080d1b;

    color:#fff;
}

.footer::before{
    content:"";

    position:absolute;

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

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(109,93,252,.65),
            transparent
        );
}

.footer-main{
    display:grid;

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

    gap:40px;

    padding:
        70px 0 50px;
}

.footer-brand p{
    max-width:400px;

    margin-top:17px;

    color:#8993aa;

    font-size:11px;

    line-height:1.9;
}

.footer-logo .brand-text strong{
    color:#fff;
}

.footer-logo .brand-text small{
    color:#9e96ff;
}

.socials{
    display:flex;
    gap:8px;

    margin-top:21px;
}

.socials a{
    width:34px;
    height:34px;

    display:grid;
    place-items:center;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius:10px;

    color:#8f99ae;

    background:
        rgba(255,255,255,.025);

    transition:.25s ease;
}

.socials a:hover{
    color:#fff;

    border-color:
        rgba(109,93,252,.4);

    background:
        rgba(109,93,252,.14);

    transform:
        translateY(-2px);
}

.footer-column{
    display:flex;
    flex-direction:column;

    gap:11px;
}

.footer-column h4{
    margin-bottom:5px;

    color:#fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size:11px;
}

.footer-column a{
    color:#8f99ae;

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

    transition:.2s ease;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:
        21px 0 27px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color:#606b80;

    font-size:9px;
}

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

.mobile-menu-btn{
    display:none;

    width:42px;
    height:42px;

    place-items:center;

    border:
        1px solid rgba(255,255,255,.85);

    border-radius:13px;

    color:var(--text);

    background:
        rgba(255,255,255,.6);

    backdrop-filter:
        blur(14px);

    font-size:17px;
}

.mobile-menu{
    display:none;

    position:absolute;

    top:72px;
    left:16px;
    right:16px;

    padding:12px;

    border:
        1px solid rgba(255,255,255,.85);

    border-radius:20px;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 30px 70px rgba(15,23,42,.14);

    backdrop-filter:
        blur(24px)
        saturate(160%);
}

.mobile-menu a{
    display:block;

    padding:
        11px 12px;

    border-radius:10px;

    color:#475569;

    font-size:12px;
    font-weight:700;
}

.mobile-menu a:hover{
    color:var(--ai-primary);

    background:
        rgba(109,93,252,.06);
}

.mobile-menu-actions{
    display:grid;

    gap:8px;

    margin-top:8px;

    padding-top:8px;

    border-top:
        1px solid rgba(148,163,184,.15);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-grid{
        gap:35px;
    }

    .hero h1{
        font-size:
            clamp(48px,5.4vw,68px);
    }

    .program-grid,
    .feature-grid{
        grid-template-columns:
            repeat(2,1fr);
    }
}

@media(max-width:900px){

    .desktop-nav,
    .nav-actions{
        display:none;
    }

    .mobile-menu-btn{
        display:grid;
        margin-left:auto;
    }

    .hero{
        min-height:auto;

        padding:
            70px 0 75px;
    }

    .hero-grid{
        grid-template-columns:1fr;

        gap:60px;

        text-align:center;
    }

    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-trust{
        justify-content:center;
    }

    .hero-visual{
        min-height:500px;
    }

    .course-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .journey-grid{
        grid-template-columns:1fr;

        gap:60px;
    }

    .testimonial-grid{
        grid-template-columns:
            1fr;
    }

    .faq-grid{
        grid-template-columns:1fr;

        gap:50px;
    }
}

@media(max-width:650px){

    .gs-container{
        width:
            calc(100% - 32px);
    }

    .gs-navbar,
    .nav-inner{
        height:70px;
    }

    .hero{
        padding:
            54px 0 62px;
    }

    .hero h1{
        font-size:
            clamp(39px,11vw,52px);

        line-height:1;
    }

    .hero-description{
        font-size:13px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-visual{
        min-height:390px;
    }

    .dashboard-card{
        width:100%;

        padding:20px;

        border-radius:22px;

        transform:
            none;
    }

    .dashboard-top strong{
        font-size:29px;
    }

    .dashboard-chart{
        height:135px;
    }

    .floating-student{
        left:-3px;
        top:-4px;
    }

    .floating-certificate{
        right:-3px;
        bottom:-3px;
    }

    .floating-card{
        padding:
            9px 10px;

        border-radius:13px;
    }

    .floating-card strong{
        font-size:11px;
    }

    .floating-card span{
        font-size:7px;
    }

    .floating-icon,
    .certificate-icon{
        width:29px;
        height:29px;

        font-size:10px;
    }

    .stats-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .stat-item{
        padding:
            24px 15px;
    }

    .section{
        padding:
            76px 0;
    }

    .section-heading{
        flex-direction:column;
        align-items:flex-start;

        gap:15px;

        margin-bottom:32px;
    }

    .section-heading h2,
    .center-heading h2,
    .journey-content h2,
    .faq-intro h2{
        font-size:32px;
    }

    .program-grid,
    .feature-grid,
    .course-grid{
        grid-template-columns:1fr;
    }

    .journey-section{
        padding:
            80px 0;
    }

    .cta-section{
        padding-bottom:
            75px;
    }

    .cta-box{
        padding:
            58px 21px;

        border-radius:
            26px;
    }

    .cta-content h2{
        font-size:37px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-buttons .btn{
        width:100%;
    }

    .footer-main{
        grid-template-columns:1fr;

        padding:
            60px 0 42px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;

        gap:6px;
    }
}

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}


/* =========================================================
   GSMart DigiTech — SPATIAL AI UI V3
========================================================= */

.hero{
    isolation:isolate;
}

.hero-grid{
    transform-style:preserve-3d;
}

.hero-content{
    transform:translateZ(35px);
}

.hero-visual{
    transform-style:preserve-3d;
    --mx:0px;
    --my:0px;
}

/* AI ATMOSPHERE */

.hero-visual::before{
    content:"AI";

    position:absolute;

    top:2%;
    right:12%;

    width:72px;
    height:72px;

    display:grid;
    place-items:center;

    border-radius:24px;

    color:#fff;

    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(255,255,255,.58),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #8b7dff,
            #6d5dfc 45%,
            #493ac7
        );

    border:
        1px solid rgba(255,255,255,.72);

    box-shadow:
        0 25px 60px rgba(109,93,252,.34),
        inset 0 1px 0 rgba(255,255,255,.35);

    font-family:"Manrope",sans-serif;

    font-size:18px;
    font-weight:800;

    transform:
        translate3d(
            var(--mx),
            var(--my),
            100px
        )
        rotate(9deg);

    transition:
        transform .18s ease-out;
}

/* PARTICLE FIELD */

.hero-visual::after{
    content:"";

    position:absolute;

    inset:8% 2% 6% 4%;

    pointer-events:none;

    opacity:.62;

    background-image:
        radial-gradient(
            rgba(109,93,252,.42) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 0%,
            transparent 68%
        );

    transform:
        translate3d(
            calc(var(--mx) * -.25),
            calc(var(--my) * -.25),
            -60px
        );

    transition:
        transform .25s ease-out;
}

/* DASHBOARD DEPTH */

.dashboard-card{
    transform-style:preserve-3d;

    will-change:
        transform;

    box-shadow:
        0 45px 120px rgba(15,23,42,.15),
        0 15px 45px rgba(109,93,252,.10),
        inset 0 1px 0 rgba(255,255,255,.92);

    transition:
        box-shadow .35s ease;
}

.dashboard-card:hover{
    box-shadow:
        0 55px 140px rgba(15,23,42,.18),
        0 20px 55px rgba(109,93,252,.15),
        inset 0 1px 0 rgba(255,255,255,.95);
}

/* GLASS HIGHLIGHT */

.dashboard-card::after{
    content:"";

    position:absolute;

    top:-20%;
    left:-30%;

    width:70%;
    height:150%;

    pointer-events:none;

    opacity:.42;

    background:
        linear-gradient(
            105deg,
            transparent 20%,
            rgba(255,255,255,.55) 43%,
            transparent 66%
        );

    transform:
        rotate(8deg);

    animation:
        glassSweep 7s ease-in-out infinite;
}

@keyframes glassSweep{

    0%,
    50%{
        transform:
            translateX(-30%)
            rotate(8deg);
    }

    75%,
    100%{
        transform:
            translateX(145%)
            rotate(8deg);
    }
}

/* ORBITS */

.orbit-one,
.orbit-two{
    transform-style:preserve-3d;

    will-change:
        transform;
}

.orbit-one{
    animation:
        orbitSpinOne 24s linear infinite;
}

.orbit-two{
    animation:
        orbitSpinTwo 34s linear infinite;
}

@keyframes orbitSpinOne{

    from{
        transform:
            rotateX(65deg)
            rotateZ(0deg);
    }

    to{
        transform:
            rotateX(65deg)
            rotateZ(360deg);
    }
}

@keyframes orbitSpinTwo{

    from{
        transform:
            rotateX(65deg)
            rotateZ(360deg);
    }

    to{
        transform:
            rotateX(65deg)
            rotateZ(0deg);
    }
}

/* FLOATING GLASS BADGES */

.floating-student{
    transform:
        translate3d(
            calc(var(--mx) * .7),
            calc(var(--my) * .7),
            105px
        );
}

.floating-certificate{
    transform:
        translate3d(
            calc(var(--mx) * -.8),
            calc(var(--my) * -.8),
            120px
        );
}

.floating-student,
.floating-certificate{
    transition:
        transform .2s ease-out,
        box-shadow .3s ease;
}

.floating-student:hover,
.floating-certificate:hover{
    box-shadow:
        0 30px 75px rgba(15,23,42,.17),
        inset 0 1px 0 rgba(255,255,255,.95);
}

/* AI INSIGHT LOOK */

.floating-student::before{
    content:"LIVE";

    position:absolute;

    top:-8px;
    right:-7px;

    padding:
        3px 6px;

    border-radius:100px;

    color:#fff;

    background:
        #10b981;

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

    letter-spacing:.08em;

    box-shadow:
        0 5px 12px rgba(16,185,129,.25);
}

.floating-certificate::before{
    content:"AI";

    position:absolute;

    top:-8px;
    right:-7px;

    padding:
        3px 6px;

    border-radius:100px;

    color:#fff;

    background:
        #6d5dfc;

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

    letter-spacing:.08em;

    box-shadow:
        0 5px 12px rgba(109,93,252,.25);
}

/* DEPTH ON PROGRAM CARDS */

.program-grid,
.feature-grid,
.course-grid,
.testimonial-grid{
    perspective:
        1100px;
}

.program-card,
.feature-card,
.course-card,
.testimonial-card{
    transform-style:
        preserve-3d;

    will-change:
        transform;
}

.program-card:hover{
    transform:
        translateY(-10px)
        rotateX(2deg)
        rotateY(-2deg);
}

.feature-card:hover{
    transform:
        translateY(-9px)
        rotateX(2deg)
        rotateY(-1deg);
}

.course-card:hover{
    transform:
        translateY(-10px)
        rotateX(2deg)
        rotateY(-2deg);
}

/* SECTION GLASS DIVIDERS */

.stats-section{
    position:relative;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 1px 0 rgba(226,232,240,.3);
}

/* MOBILE SAFETY */

@media(max-width:900px){

    .hero-visual::after{
        opacity:.22;
    }

    .hero-visual::before{
        right:8%;
    }

    .orbit-one,
    .orbit-two{
        animation:none;
    }

    .floating-student,
    .floating-certificate{
        transform:none !important;
    }

    .dashboard-card{
        transform:none !important;
    }
}

@media(prefers-reduced-motion:reduce){

    .hero-visual::before,
    .hero-visual::after,
    .dashboard-card,
    .orbit-one,
    .orbit-two,
    .floating-student,
    .floating-certificate{
        animation:none !important;
        transition:none !important;
    }
}


/* =========================================================
   SPATIAL UI V4 — LAYOUT STABILIZATION
========================================================= */

body{
    overflow-x:hidden !important;
}

.hero{
    overflow:hidden !important;
}

.hero-grid{
    width:100%;
    max-width:1200px;

    margin-left:auto;
    margin-right:auto;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);

    gap:40px;

    align-items:center;
}

.hero-content{
    min-width:0;

    transform:none !important;

    position:relative;
    z-index:30;
}

.hero h1{
    width:auto;
    max-width:610px;

    font-size:
        clamp(47px,5.15vw,72px);

    line-height:.99;
}

.hero-description{
    max-width:540px;
}

/* HERO VISUAL */

.hero-visual{
    min-width:0;

    width:100%;

    min-height:510px;

    position:relative;

    overflow:visible;

    transform-style:preserve-3d;
}

/* DASHBOARD */

.dashboard-card{
    position:absolute;

    top:50%;
    left:50%;

    width:
        min(560px, 92%);

    margin:0;

    transform:
        translate(-45%,-50%)
        rotateY(-6deg)
        rotateX(3deg)
        translateZ(40px) !important;

    z-index:12;
}

/* AI CARD */

.ai-assistant-card{
    position:absolute;

    left:2%;
    bottom:3%;

    width:285px;

    z-index:50;

    transform:
        translateZ(130px) !important;
}

/* STUDENT CARD */

.floating-student{
    left:0;

    top:9%;

    z-index:55;

    transform:
        translateZ(150px) !important;
}

/* CERTIFICATE */

.floating-certificate{
    right:0;

    bottom:13%;

    z-index:55;

    transform:
        translateZ(150px) !important;
}

/* AI ORB */

.hero-visual::before{
    top:1%;
    right:2%;

    z-index:60;

    transform:
        translateZ(180px)
        rotate(8deg) !important;
}

/* ORBITS */

.orbit-one{
    width:480px;
    height:480px;

    left:50%;
    top:50%;

    margin:
        -240px 0 0 -240px;
}

.orbit-two{
    width:630px;
    height:630px;

    left:50%;
    top:50%;

    margin:
        -315px 0 0 -315px;
}

/* REMOVE EXCESSIVE PARTICLES BEHIND CONTENT */

.hero-visual::after{
    z-index:1;

    opacity:.30;
}

/* =========================================================
   FAQ — PREMIUM LIQUID GLASS
========================================================= */

.faq-list{
    border:0 !important;
}

.faq-item{
    margin-bottom:12px;

    overflow:hidden;

    border:
        1px solid rgba(255,255,255,.82) !important;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.72),
            rgba(248,250,255,.46)
        ) !important;

    box-shadow:
        0 12px 35px rgba(15,23,42,.055),
        inset 0 1px 0 rgba(255,255,255,.90);

    backdrop-filter:
        blur(18px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(140%);

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

.faq-item:hover{
    transform:
        translateY(-2px);

    box-shadow:
        0 20px 45px rgba(15,23,42,.08);
}

.faq-question{
    width:100%;

    min-height:72px;

    padding:
        18px 20px !important;

    display:flex;
    align-items:center;
    justify-content:space-between;

    border:0 !important;
    outline:0 !important;

    color:#172033 !important;

    background:transparent !important;

    font-family:
        "Manrope",
        sans-serif !important;

    font-size:13px !important;
    font-weight:800 !important;

    cursor:pointer;
}

.faq-question:hover,
.faq-question:focus{
    border:0 !important;
    outline:0 !important;
    background:transparent !important;
}

.faq-question i{
    width:34px;
    height:34px;

    border-radius:11px;

    color:#64748b;

    background:
        rgba(255,255,255,.72);

    border:
        1px solid rgba(255,255,255,.8);

    box-shadow:
        0 7px 18px rgba(15,23,42,.06);

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.faq-item.active .faq-question i{
    color:#fff !important;

    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #7c3aed
        );

    transform:
        rotate(45deg);
}

.faq-answer{
    max-height:0 !important;

    overflow:hidden;

    padding:0 !important;

    transition:
        max-height .35s ease;
}

.faq-item.active .faq-answer{
    max-height:180px !important;
}

.faq-answer p{
    margin:0;

    padding:
        0 60px 20px 20px !important;

    color:#64748b !important;

    font-size:11px !important;

    line-height:1.8;
}

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

@media(max-width:900px){

    .hero-grid{
        grid-template-columns:1fr;

        gap:48px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-visual{
        min-height:460px;
    }

    .dashboard-card{
        width:
            min(540px, 94%);

        left:50%;
        top:48%;

        transform:
            translate(-50%,-50%) !important;
    }

    .floating-student{
        left:0;
        top:2%;
    }

    .floating-certificate{
        right:0;
        bottom:1%;
    }

    .ai-assistant-card{
        left:50%;
        bottom:-35px;

        transform:
            translateX(-50%) !important;
    }

    .hero-visual::before{
        right:2%;
        top:-3%;
    }
}

@media(max-width:650px){

    .hero-grid{
        gap:35px;
    }

    .hero h1{
        max-width:100%;

        font-size:
            clamp(39px,11vw,51px);
    }

    .hero-visual{
        min-height:390px;
    }

    .dashboard-card{
        width:96%;

        padding:19px;

        transform:
            translate(-50%,-50%) !important;
    }

    .ai-assistant-card{
        width:
            calc(100% - 28px);

        bottom:-60px;
    }

    .floating-student{
        left:-2px;
    }

    .floating-certificate{
        right:-2px;
    }

    .faq-question{
        min-height:64px;

        padding:
            14px 15px !important;

        font-size:12px !important;
    }

    .faq-answer p{
        padding:
            0 20px 18px 15px !important;
    }

}

.ai-assistant-card{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto;

    isolation:isolate;
}

.ai-assistant-card::before{
    content:"";

    position:absolute;
    inset:0;

    z-index:-1;

    border-radius:inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.78),
            rgba(245,247,255,.60)
        );
}

/* =========================================================
   GSMart — HERO FINAL COMPOSITION
   Stabilize spatial layout
========================================================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
}

.hero{
    width:100%;
    min-height:720px;
    overflow:hidden !important;
    padding:82px 0 95px;
}

.hero-grid{
    width:100%;
    max-width:1200px;
    min-width:0;

    margin:0 auto;

    display:grid;

    grid-template-columns:
        minmax(0, .94fr)
        minmax(0, 1.06fr);

    gap:35px;

    align-items:center;
}

.hero-content{
    width:100%;
    min-width:0;
    max-width:640px;

    position:relative;
    z-index:100;

    transform:none !important;
}

.hero h1{
    width:100%;
    max-width:620px;

    margin-top:24px;

    font-size:
        clamp(46px, 5vw, 70px) !important;

    line-height:.99 !important;

    letter-spacing:-.065em !important;

    word-break:normal;
    overflow-wrap:normal;
}

.hero-description{
    width:100%;
    max-width:535px;

    font-size:15px;

    line-height:1.75;
}

/* =========================================================
   HERO VISUAL CONTAINER
========================================================= */

.hero-visual{
    position:relative;

    width:100%;
    min-width:0;

    min-height:510px;

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

    overflow:visible;

    transform:none !important;
}

/* =========================================================
   MAIN DASHBOARD
========================================================= */

.hero-visual .dashboard-card{
    position:absolute;

    top:50%;
    left:50%;

    width:min(545px, 90%);
    max-width:545px;

    min-height:0;

    margin:0;

    transform:
        translate(-47%, -50%)
        rotateY(-3deg)
        rotateX(2deg) !important;

    transform-origin:center center;

    z-index:20;

    border-radius:28px;

    overflow:hidden;
}

/* =========================================================
   AI ASSISTANT
========================================================= */

.hero-visual .ai-assistant-card{
    position:absolute;

    left:auto;
    right:0;

    bottom:2%;

    width:285px;
    max-width:285px;

    z-index:100;

    padding:15px;

    border-radius:20px;

    font-family:
        "DM Sans",
        sans-serif;

    transform:none !important;
}

/* AI text must stay compact */

.ai-assistant-head{
    display:flex !important;
    align-items:center !important;
    gap:9px !important;
}

.ai-assistant-head strong{
    color:#172033 !important;

    font-family:
        "Manrope",
        sans-serif !important;

    font-size:11px !important;

    line-height:1.2 !important;
}

.ai-label{
    font-size:7px !important;
}

.ai-status{
    font-size:7px !important;
}

.ai-message{
    margin-top:12px !important;

    padding:11px 12px !important;

    border-radius:14px !important;
}

.ai-message-label{
    font-size:7px !important;
}

.ai-message p{
    margin-top:4px !important;

    color:#526078 !important;

    font-size:9px !important;

    line-height:1.6 !important;
}

.ai-actions{
    margin-top:9px !important;
}

.ai-actions button{
    min-height:29px !important;

    padding:6px 9px !important;

    font-size:8px !important;
}

/* =========================================================
   FLOATING STUDENT
========================================================= */

.hero-visual .floating-student{
    left:1%;
    top:5%;

    z-index:110;

    transform:none !important;
}

/* =========================================================
   FLOATING CERTIFICATE
========================================================= */

.hero-visual .floating-certificate{
    right:1%;
    bottom:23%;

    z-index:110;

    transform:none !important;
}

/* =========================================================
   AI ORB
========================================================= */

.hero-visual::before{
    top:0;
    right:8%;

    z-index:120;

    transform:
        rotate(8deg) !important;
}

/* =========================================================
   ORBITS
========================================================= */

.hero-visual .orbit-one{
    width:465px;
    height:465px;

    position:absolute;

    top:50%;
    left:50%;

    margin:
        -232px 0 0 -232px;
}

.hero-visual .orbit-two{
    width:610px;
    height:610px;

    position:absolute;

    top:50%;
    left:50%;

    margin:
        -305px 0 0 -305px;
}

/* =========================================================
   PARTICLES
========================================================= */

.hero-visual::after{
    pointer-events:none;

    opacity:.18;

    z-index:1;
}

/* =========================================================
   PREVENT ANY INTERNAL ELEMENT FROM CREATING
   HORIZONTAL WIDTH
========================================================= */

.hero-visual *,
.hero-content *{
    max-width:100%;
}

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

@media(max-width:1050px){

    .hero-grid{
        grid-template-columns:
            minmax(0, .95fr)
            minmax(0, 1.05fr);

        gap:20px;
    }

    .hero h1{
        font-size:
            clamp(43px, 5vw, 62px) !important;
    }

    .hero-visual .dashboard-card{
        width:min(500px, 94%);
    }

    .hero-visual .ai-assistant-card{
        right:-5px;
        width:260px;
        max-width:260px;
    }

    .hero-visual .floating-student{
        left:-5px;
    }

    .hero-visual .floating-certificate{
        right:-5px;
    }
}

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

@media(max-width:900px){

    .hero{
        min-height:auto;
        padding:
            70px 0 110px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .hero-content{
        max-width:700px;
        margin:0 auto;

        text-align:center;
    }

    .hero h1{
        margin-left:auto;
        margin-right:auto;

        font-size:
            clamp(42px, 10vw, 58px) !important;
    }

    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-trust{
        justify-content:center;
    }

    .hero-visual{
        min-height:460px;
    }

    .hero-visual .dashboard-card{
        top:48%;
        left:50%;

        width:
            min(540px, 94%);

        transform:
            translate(-50%, -50%) !important;
    }

    .hero-visual .floating-student{
        left:1%;
        top:1%;
    }

    .hero-visual .floating-certificate{
        right:1%;
        bottom:3%;
    }

    .hero-visual .ai-assistant-card{
        left:50%;
        right:auto;

        bottom:-48px;

        width:
            min(310px, calc(100% - 28px));

        max-width:
            calc(100% - 28px);

        transform:
            translateX(-50%) !important;
    }
}

@media(max-width:600px){

    .hero{
        padding:
            55px 0 105px;
    }

    .hero h1{
        font-size:
            clamp(38px, 10.8vw, 50px) !important;
    }

    .hero-description{
        font-size:13px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-visual{
        min-height:390px;
    }

    .hero-visual .dashboard-card{
        width:96%;

        padding:19px;

        border-radius:22px;
    }

    .hero-visual .floating-student{
        left:-2px;
        top:-3px;
    }

    .hero-visual .floating-certificate{
        right:-2px;
        bottom:-2px;
    }

    .hero-visual .ai-assistant-card{
        bottom:-60px;
    }

    .hero-visual .orbit-one{
        width:350px;
        height:350px;

        margin:
            -175px 0 0 -175px;
    }

    .hero-visual .orbit-two{
        width:450px;
        height:450px;

        margin:
            -225px 0 0 -225px;
    }
}


/* =========================================================
   V5 — BENTO PROGRAM + PREMIUM COURSE UI
========================================================= */

/* SECTION BACKDROP */

#program,
#courses{
    position:relative;
    isolation:isolate;
}

#program::before,
#courses::before{
    content:"";

    position:absolute;
    inset:0;

    z-index:-2;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(109,93,252,.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(34,211,238,.06),
            transparent 25%
        );
}

#program::after,
#courses::after{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-180px;
    top:15%;

    z-index:-1;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(109,93,252,.08),
            transparent 70%
        );

    filter:blur(25px);

    pointer-events:none;
}

/* =========================================================
   PROGRAM HEADER
========================================================= */

#program .section-heading,
#courses .section-heading{
    position:relative;
}

#program .section-heading::before{
    content:"";

    position:absolute;

    left:-14px;
    top:-12px;

    width:36px;
    height:36px;

    border-radius:12px;

    border:
        1px solid rgba(109,93,252,.12);

    background:
        rgba(255,255,255,.46);

    backdrop-filter:blur(12px);

    z-index:-1;
}

/* =========================================================
   PROGRAM GRID
========================================================= */

#program .program-grid{
    grid-template-columns:
        repeat(4, minmax(0,1fr));

    perspective:
        1400px;
}

#program .program-card{
    min-height:350px;

    padding:25px;

    border:
        1px solid rgba(255,255,255,.85);

    border-radius:26px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at var(--spot-x,50%) var(--spot-y,50%),
            rgba(109,93,252,.09),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.78),
            rgba(245,247,253,.46)
        );

    box-shadow:
        0 18px 45px rgba(15,23,42,.055),
        inset 0 1px 0 rgba(255,255,255,.92);

    backdrop-filter:
        blur(22px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(145%);

    transform-style:preserve-3d;

    transition:
        transform .28s cubic-bezier(.2,.8,.2,1),
        box-shadow .28s ease,
        border-color .28s ease;
}

#program .program-card::before{
    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.34),
            transparent 35%,
            transparent 70%,
            rgba(109,93,252,.05)
        );

    pointer-events:none;
}

#program .program-card::after{
    content:"";

    position:absolute;

    width:140px;
    height:140px;

    right:-55px;
    bottom:-65px;

    border-radius:50%;

    background:
        currentColor;

    opacity:.045;

    pointer-events:none;
}

#program .program-card:hover{
    border-color:
        rgba(109,93,252,.18);

    box-shadow:
        0 30px 75px rgba(15,23,42,.10),
        0 8px 30px rgba(109,93,252,.08);

    transform:
        translateY(-9px)
        rotateX(2deg)
        rotateY(-2deg);
}

#program .program-icon{
    position:relative;
    z-index:2;

    width:58px;
    height:58px;

    margin-bottom:30px;

    border-radius:18px;

    background:
        rgba(255,255,255,.58);

    border:
        1px solid rgba(255,255,255,.82);

    box-shadow:
        0 12px 30px rgba(15,23,42,.06),
        inset 0 1px 0 rgba(255,255,255,.9);

    backdrop-filter:
        blur(14px);

    font-size:19px;
}

#program .program-card h3,
#program .program-card p,
#program .program-category,
#program .program-link{
    position:relative;
    z-index:2;
}

#program .program-card h3{
    font-size:20px;
}

#program .program-card p{
    max-width:260px;
    font-size:12px;
}

#program .program-link{
    padding:8px 10px;

    border:
        1px solid rgba(109,93,252,.10);

    border-radius:10px;

    background:
        rgba(255,255,255,.52);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 6px 18px rgba(15,23,42,.04);
}

/* =========================================================
   PROGRAM COLOR SYSTEM
========================================================= */

#program .purple{
    --card-accent:#6d5dfc;
}

#program .blue{
    --card-accent:#0ea5e9;
}

#program .cyan{
    --card-accent:#06b6d4;
}

#program .orange{
    --card-accent:#f97316;
}

#program .program-card .program-icon{
    color:var(--card-accent);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.78),
            color-mix(
                in srgb,
                var(--card-accent) 7%,
                white
            )
        );
}

/* =========================================================
   COURSE GRID
========================================================= */

#courses .course-grid{
    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:22px;

    perspective:
        1400px;
}

#courses .course-card{
    position:relative;

    border:
        1px solid rgba(255,255,255,.84);

    border-radius:28px;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.76),
            rgba(248,249,253,.44)
        );

    box-shadow:
        0 20px 50px rgba(15,23,42,.055),
        inset 0 1px 0 rgba(255,255,255,.9);

    backdrop-filter:
        blur(24px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(145%);

    transform-style:preserve-3d;

    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease;
}

#courses .course-card:hover{
    transform:
        translateY(-10px)
        rotateX(2deg)
        rotateY(-2deg);

    box-shadow:
        0 35px 80px rgba(15,23,42,.11),
        0 10px 35px rgba(109,93,252,.08);
}

/* COURSE COVER */

#courses .course-cover{
    min-height:240px;

    border-radius:0;

    overflow:hidden;
}

#courses .course-cover::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            transparent 42%,
            rgba(255,255,255,.03)
        );

    pointer-events:none;
}

#courses .course-cover::after{
    content:"";

    position:absolute;

    width:200px;
    height:200px;

    right:-90px;
    bottom:-90px;

    border-radius:50%;

    border:
        1px solid rgba(255,255,255,.18);

    box-shadow:
        0 0 0 20px rgba(255,255,255,.025),
        0 0 0 40px rgba(255,255,255,.02);
}

/* COURSE ICON DEPTH */

#courses .course-cover-icon{
    width:100px;
    height:100px;

    right:25px;
    bottom:22px;

    border-radius:30px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid rgba(255,255,255,.34);

    box-shadow:
        0 28px 55px rgba(0,0,0,.17),
        inset 0 1px 0 rgba(255,255,255,.25);

    transform:
        rotate(-8deg)
        translateZ(50px);
}

/* COURSE BODY */

#courses .course-body{
    padding:
        22px 22px 20px;
}

#courses .course-body h3{
    min-height:52px;

    font-size:19px;
}

#courses .course-body > p{
    min-height:41px;
}

#courses .course-meta{
    margin-top:18px;
}

#courses .course-footer{
    margin-top:17px;
}

/* PRICE PILL */

#courses .course-footer strong{
    padding:
        7px 10px;

    border-radius:10px;

    background:
        rgba(109,93,252,.055);

    color:#4f46d9;

    font-size:15px;
}

/* =========================================================
   SECTION LABELS
========================================================= */

#program .section-kicker,
#courses .section-kicker{
    display:inline-flex;

    align-items:center;

    min-height:28px;

    padding:
        6px 10px;

    border:
        1px solid rgba(109,93,252,.12);

    border-radius:100px;

    background:
        rgba(255,255,255,.54);

    box-shadow:
        0 8px 18px rgba(15,23,42,.03);

    backdrop-filter:
        blur(12px);

    color:
        var(--ai-primary);

    font-size:8px;
    letter-spacing:.14em;
}

/* =========================================================
   CARD REVEAL
========================================================= */

#program .program-card,
#courses .course-card{
    will-change:
        transform,
        box-shadow;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1050px){

    #program .program-grid{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    #courses .course-grid{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}

@media(max-width:650px){

    #program .program-grid,
    #courses .course-grid{
        grid-template-columns:1fr;
    }

    #program .program-card{
        min-height:315px;
    }

    #courses .course-cover{
        min-height:215px;
    }

    #courses .course-body h3{
        min-height:auto;
    }

    #courses .course-body > p{
        min-height:auto;
    }

}


/* =========================================================
   GSMart DigiTech — BLUE × EMERALD BRAND SYSTEM
========================================================= */

:root{
    --ai-primary:#0EA5E9 !important;
    --ai-primary-2:#10B981 !important;
    --ai-cyan:#22D3EE !important;
    --ai-blue:#0EA5E9 !important;
    --ai-green:#10B981 !important;

    --text:#0B172A !important;
    --muted:#64748B !important;
}

/* =========================================================
   MODERN G LOGO
========================================================= */

.brand-mark{
    position:relative;

    width:46px !important;
    height:46px !important;

    display:grid !important;
    place-items:center !important;

    overflow:hidden;

    border-radius:16px !important;

    color:#fff !important;

    background:
        radial-gradient(
            circle at 28% 20%,
            rgba(255,255,255,.62),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #10B981 0%,
            #06B6D4 48%,
            #0EA5E9 100%
        ) !important;

    border:
        1px solid rgba(255,255,255,.72);

    box-shadow:
        0 12px 30px rgba(14,165,233,.22),
        0 8px 20px rgba(16,185,129,.14),
        inset 0 1px 0 rgba(255,255,255,.70);

    color:#fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size:23px !important;
    font-weight:800 !important;

    letter-spacing:-.07em;

    transform:
        translateZ(20px);

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

.brand-mark::before{
    content:"";

    position:absolute;

    width:22px;
    height:22px;

    top:-7px;
    right:-5px;

    border-radius:50%;

    background:
        rgba(255,255,255,.24);

    filter:
        blur(4px);
}

.brand-mark::after{
    content:"";

    position:absolute;

    left:7px;
    right:7px;
    bottom:6px;

    height:1px;

    border-radius:100px;

    background:
        rgba(255,255,255,.45);

    box-shadow:
        0 0 10px rgba(255,255,255,.45);
}

.gs-brand:hover .brand-mark{
    transform:
        translateY(-2px)
        rotate(-2deg);

    box-shadow:
        0 18px 40px rgba(14,165,233,.28),
        0 10px 25px rgba(16,185,129,.20),
        inset 0 1px 0 rgba(255,255,255,.82);
}

/* =========================================================
   BRAND TEXT
========================================================= */

.brand-text strong{
    color:#0B172A !important;
}

.brand-text small{
    color:#0EA5E9 !important;

    background:
        linear-gradient(
            90deg,
            #10B981,
            #0EA5E9
        );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent !important;
}

/* =========================================================
   NAVBAR
========================================================= */

.gs-navbar{
    background:
        rgba(248,252,253,.72) !important;

    border-bottom:
        1px solid rgba(14,165,233,.08) !important;
}

.desktop-nav a:hover{
    color:#0EA5E9 !important;
}

.nav-active{
    color:#0EA5E9 !important;
}

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

.btn-primary{
    color:#fff !important;

    background:
        linear-gradient(
            135deg,
            #10B981,
            #06B6D4 48%,
            #0EA5E9
        ) !important;

    box-shadow:
        0 14px 35px rgba(14,165,233,.22),
        0 8px 20px rgba(16,185,129,.14),
        inset 0 1px 0 rgba(255,255,255,.26) !important;
}

.btn-primary:hover{
    box-shadow:
        0 20px 45px rgba(14,165,233,.28),
        0 12px 28px rgba(16,185,129,.18),
        inset 0 1px 0 rgba(255,255,255,.32) !important;
}

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

.hero{
    background:
        radial-gradient(
            circle at 15% 12%,
            rgba(16,185,129,.11),
            transparent 25%
        ),
        radial-gradient(
            circle at 82% 16%,
            rgba(14,165,233,.13),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #FAFDFF,
            #F3FAFB
        ) !important;
}

.hero::before{
    background-image:
        linear-gradient(
            rgba(14,165,233,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(16,185,129,.035) 1px,
            transparent 1px
        ) !important;
}

.hero h1 span{
    background:
        linear-gradient(
            135deg,
            #10B981 0%,
            #06B6D4 48%,
            #0EA5E9 100%
        ) !important;

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent !important;
}

.eyebrow{
    border-color:
        rgba(14,165,233,.14) !important;

    background:
        rgba(255,255,255,.64) !important;

    color:#0EA5E9 !important;
}

.eyebrow span{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        ) !important;

    box-shadow:
        0 0 0 5px rgba(16,185,129,.08) !important;
}

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

.visual-orbit{
    border-color:
        rgba(14,165,233,.10) !important;
}

.orbit-two{
    border-color:
        rgba(16,185,129,.07) !important;
}

/* =========================================================
   DASHBOARD GLASS
========================================================= */

.dashboard-card{
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.91),
            rgba(237,250,251,.58)
        ) !important;

    border-color:
        rgba(255,255,255,.88) !important;

    box-shadow:
        0 45px 120px rgba(14,165,233,.11),
        0 25px 60px rgba(16,185,129,.07),
        inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.dashboard-icon{
    color:#0EA5E9 !important;

    background:
        rgba(14,165,233,.09) !important;
}

.progress-value{
    background:
        linear-gradient(
            90deg,
            #10B981,
            #06B6D4,
            #0EA5E9
        ) !important;

    box-shadow:
        0 0 20px rgba(14,165,233,.24) !important;
}

.progress-meta strong{
    color:#10B981 !important;
}

.course-mini-icon{
    color:#0EA5E9 !important;

    background:
        linear-gradient(
            135deg,
            rgba(16,185,129,.10),
            rgba(14,165,233,.10)
        ) !important;
}

.course-arrow{
    color:#0EA5E9 !important;
}

/* =========================================================
   AI ORB
========================================================= */

.hero-visual::before{
    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(255,255,255,.65),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #10B981,
            #06B6D4 45%,
            #0EA5E9
        ) !important;

    box-shadow:
        0 25px 60px rgba(14,165,233,.26),
        0 14px 30px rgba(16,185,129,.14) !important;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-icon{
    color:#0EA5E9 !important;

    background:
        rgba(14,165,233,.09) !important;
}

.certificate-icon{
    color:#10B981 !important;

    background:
        rgba(16,185,129,.10) !important;
}

.floating-student::before{
    background:#10B981 !important;
}

.floating-certificate::before{
    background:#0EA5E9 !important;
}

/* =========================================================
   PROGRAM CARDS
========================================================= */

#program .purple{
    --card-accent:#0EA5E9 !important;
}

#program .blue{
    --card-accent:#0EA5E9 !important;
}

#program .cyan{
    --card-accent:#06B6D4 !important;
}

#program .orange{
    --card-accent:#10B981 !important;
}

#program .program-card{
    background:
        radial-gradient(
            circle at var(--spot-x,50%) var(--spot-y,50%),
            rgba(14,165,233,.08),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.80),
            rgba(239,250,251,.46)
        ) !important;
}

#program .purple .program-icon,
#program .blue .program-icon,
#program .cyan .program-icon{
    color:#0EA5E9 !important;
}

#program .orange .program-icon{
    color:#10B981 !important;
}

#program .purple .program-category,
#program .purple .program-link,
#program .blue .program-category,
#program .blue .program-link,
#program .cyan .program-category,
#program .cyan .program-link{
    color:#0EA5E9 !important;
}

#program .orange .program-category,
#program .orange .program-link{
    color:#10B981 !important;
}

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

.feature-icon{
    color:#0EA5E9 !important;

    background:
        rgba(14,165,233,.09) !important;
}

.featured-feature{
    background:
        linear-gradient(
            145deg,
            #08283a,
            #0b3442 48%,
            #0b4550
        ) !important;
}

.featured-feature .feature-icon{
    color:#6EE7B7 !important;

    background:
        rgba(16,185,129,.13) !important;
}

/* =========================================================
   COURSE COVERS
========================================================= */

.course-cover.purple{
    background:
        radial-gradient(
            circle at 75% 22%,
            rgba(255,255,255,.24),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #087F8C,
            #0EA5E9
        ) !important;
}

.course-cover.blue{
    background:
        radial-gradient(
            circle at 75% 22%,
            rgba(255,255,255,.24),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #0F766E,
            #0EA5E9
        ) !important;
}

.course-cover.cyan{
    background:
        radial-gradient(
            circle at 75% 22%,
            rgba(255,255,255,.24),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #059669,
            #06B6D4
        ) !important;
}

.course-button{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #06B6D4,
            #0EA5E9
        ) !important;

    box-shadow:
        0 9px 22px rgba(14,165,233,.19) !important;
}

.course-footer strong{
    color:#0F766E !important;

    background:
        rgba(16,185,129,.06) !important;
}

/* =========================================================
   LEARNING JOURNEY
========================================================= */

.journey-section{
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(16,185,129,.16),
            transparent 27%
        ),
        radial-gradient(
            circle at 82% 84%,
            rgba(14,165,233,.14),
            transparent 25%
        ),
        #071923 !important;
}

.journey-content .section-kicker{
    color:#34D399 !important;
}

.journey-content h2 span{
    color:#5EEAD4 !important;
}

.step-number{
    border-color:
        rgba(34,211,238,.14) !important;

    background:
        linear-gradient(
            145deg,
            rgba(16,185,129,.13),
            rgba(14,165,233,.08)
        ) !important;
}

.journey-line{
    background:
        linear-gradient(
            180deg,
            rgba(16,185,129,.70),
            rgba(14,165,233,.10)
        ) !important;
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-highlight{
    background:
        linear-gradient(
            145deg,
            #08232f,
            #0a3540
        ) !important;
}

.user-avatar{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        ) !important;
}

/* =========================================================
   FAQ
========================================================= */

.faq-question i{
    color:#0EA5E9 !important;
}

.faq-item.active .faq-question i{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        ) !important;

    color:#fff !important;
}

/* =========================================================
   CTA
========================================================= */

.cta-box{
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(255,255,255,.16),
            transparent 23%
        ),
        radial-gradient(
            circle at 84% 78%,
            rgba(16,185,129,.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #087F8C,
            #0F766E 42%,
            #0EA5E9
        ) !important;

    box-shadow:
        0 40px 100px rgba(14,165,233,.20) !important;
}

.cta-login strong{
    color:#A7F3D0 !important;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:
        #06151D !important;
}

.footer::before{
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(16,185,129,.7),
            rgba(14,165,233,.7),
            transparent
        ) !important;
}

.footer-logo .brand-text small{
    color:#5EEAD4 !important;
}

.socials a:hover{
    border-color:
        rgba(16,185,129,.40) !important;

    background:
        rgba(16,185,129,.10) !important;
}

/* =========================================================
   AI ASSISTANT
========================================================= */

.ai-orb-mini{
    background:
        radial-gradient(
            circle at 30% 22%,
            #A7F3D0,
            #10B981 42%,
            #0EA5E9 100%
        ) !important;

    box-shadow:
        0 10px 25px rgba(14,165,233,.22),
        0 5px 15px rgba(16,185,129,.15) !important;
}

.ai-label{
    color:#0F766E !important;
}

.ai-status span{
    background:#10B981 !important;
}

.ai-actions button:hover{
    color:#0F766E !important;
}

.ai-message-label{
    color:#0EA5E9 !important;
}

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

@media(max-width:650px){

    .brand-mark{
        width:40px !important;
        height:40px !important;

        border-radius:14px !important;

        font-size:20px !important;
    }

}


/* =========================================================
   GSMart DigiTech — CLEAN BLUE × EMERALD FINAL
========================================================= */

:root{
    --brand-blue:#0EA5E9 !important;
    --brand-blue-dark:#0284C7 !important;
    --brand-cyan:#06B6D4 !important;
    --brand-emerald:#10B981 !important;
    --brand-emerald-dark:#059669 !important;

    --brand-navy:#0F172A !important;
    --brand-muted:#64748B !important;
    --brand-bg:#F7FBFC !important;
}

/* =========================================================
   GLOBAL
========================================================= */

body{
    color:var(--brand-navy) !important;

    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(16,185,129,.055),
            transparent 24%
        ),
        radial-gradient(
            circle at 88% 14%,
            rgba(14,165,233,.075),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #FCFEFF 0%,
            #F7FBFC 50%,
            #F3F8FA 100%
        ) !important;
}

/* =========================================================
   NAVBAR
========================================================= */

.gs-navbar{
    background:
        rgba(255,255,255,.76) !important;

    border-bottom:
        1px solid rgba(14,165,233,.07) !important;

    box-shadow:
        0 8px 28px rgba(15,23,42,.035) !important;
}

.desktop-nav a{
    color:#475569 !important;
}

.desktop-nav a:hover,
.desktop-nav a.nav-active{
    color:var(--brand-blue) !important;
}

.login-link{
    color:var(--brand-navy) !important;
}

/* =========================================================
   LOGO
========================================================= */

.brand-mark{
    width:45px !important;
    height:45px !important;

    border-radius:15px !important;

    background:
        radial-gradient(
            circle at 28% 20%,
            rgba(255,255,255,.65),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #10B981 0%,
            #06B6D4 48%,
            #0EA5E9 100%
        ) !important;

    box-shadow:
        0 12px 28px rgba(14,165,233,.18),
        0 7px 18px rgba(16,185,129,.10),
        inset 0 1px 0 rgba(255,255,255,.80) !important;
}

.brand-text strong{
    color:#0F172A !important;
}

.brand-text small{
    background:
        linear-gradient(
            90deg,
            #10B981,
            #0EA5E9
        ) !important;

    -webkit-background-clip:text !important;
    background-clip:text !important;

    color:transparent !important;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary{
    background:
        linear-gradient(
            135deg,
            #0EA5E9,
            #06B6D4 52%,
            #10B981
        ) !important;

    box-shadow:
        0 12px 28px rgba(14,165,233,.18),
        0 7px 16px rgba(16,185,129,.08) !important;
}

.btn-primary:hover{
    box-shadow:
        0 18px 38px rgba(14,165,233,.24),
        0 10px 22px rgba(16,185,129,.12) !important;
}

.btn-outline{
    color:#0F172A !important;

    background:
        rgba(255,255,255,.70) !important;

    border:
        1px solid rgba(148,163,184,.18) !important;
}

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

.hero{
    min-height:700px !important;

    padding:
        72px 0 78px !important;

    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(16,185,129,.075),
            transparent 25%
        ),
        radial-gradient(
            circle at 87% 17%,
            rgba(14,165,233,.11),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #FBFEFF,
            #F5FAFB
        ) !important;
}

/* grid */
.hero-grid{
    grid-template-columns:
        minmax(0,.90fr)
        minmax(0,1.10fr) !important;

    gap:42px !important;
}

/* eyebrow */
.eyebrow{
    color:#0EA5E9 !important;

    border-color:
        rgba(14,165,233,.14) !important;

    background:
        rgba(255,255,255,.72) !important;
}

.eyebrow span{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        ) !important;
}

/* HEADLINE FIX */
.hero h1{
    max-width:590px !important;

    font-size:
        clamp(48px,5vw,70px) !important;

    line-height:
        1.00 !important;

    color:#0F172A !important;
}

/*
   IMPORTANT:
   Jangan gunakan background sebagai blok.
   Gradient hanya menempel pada teks.
*/
.hero h1 span{
    display:block !important;

    background-image:
        linear-gradient(
            90deg,
            #10B981 0%,
            #06B6D4 48%,
            #0EA5E9 100%
        ) !important;

    background-color:transparent !important;

    background-clip:text !important;
    -webkit-background-clip:text !important;

    -webkit-text-fill-color:transparent !important;

    color:transparent !important;

    width:max-content;

    max-width:100%;
}

/* description */
.hero-description{
    color:#64748B !important;

    max-width:550px !important;

    font-size:15px !important;

    line-height:1.75 !important;
}

/* stars */
.stars{
    color:#10B981 !important;
}

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

.hero-visual{
    min-height:500px !important;
}

.hero-visual .dashboard-card{
    width:min(525px,92%) !important;

    max-width:525px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.92),
            rgba(240,249,251,.62)
        ) !important;

    border:
        1px solid rgba(255,255,255,.90) !important;

    box-shadow:
        0 38px 85px rgba(15,23,42,.11),
        0 12px 35px rgba(14,165,233,.08),
        inset 0 1px 0 rgba(255,255,255,.96) !important;
}

/* dashboard icon */
.dashboard-icon{
    color:#0EA5E9 !important;

    background:
        rgba(14,165,233,.08) !important;
}

/* =========================================================
   CHART — HILANGKAN UNGU
========================================================= */

.chart-line{
    border-top-color:
        #0EA5E9 !important;

    filter:
        drop-shadow(
            0 8px 13px rgba(14,165,233,.14)
        ) !important;
}

.point{
    background:#10B981 !important;

    box-shadow:
        0 3px 12px rgba(16,185,129,.28) !important;
}

.progress-value{
    background:
        linear-gradient(
            90deg,
            #10B981,
            #06B6D4,
            #0EA5E9
        ) !important;
}

.progress-meta strong{
    color:#10B981 !important;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.hero-visual .floating-student{
    left:0 !important;
    top:7% !important;
}

.hero-visual .floating-certificate{
    right:0 !important;
    bottom:18% !important;
}

.floating-student{
    border-color:
        rgba(255,255,255,.88) !important;
}

.floating-icon{
    color:#0EA5E9 !important;

    background:
        rgba(14,165,233,.08) !important;
}

.certificate-icon{
    color:#10B981 !important;

    background:
        rgba(16,185,129,.09) !important;
}

/* =========================================================
   AI ORB
========================================================= */

.hero-visual::before{
    background:
        radial-gradient(
            circle at 30% 22%,
            rgba(255,255,255,.70),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #10B981,
            #06B6D4 48%,
            #0EA5E9
        ) !important;

    box-shadow:
        0 24px 55px rgba(14,165,233,.20),
        0 12px 25px rgba(16,185,129,.12) !important;
}

/* =========================================================
   AI ASSISTANT
========================================================= */

.ai-assistant-card{
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.82),
            rgba(241,250,251,.58)
        ) !important;

    border-color:
        rgba(255,255,255,.90) !important;

    box-shadow:
        0 24px 65px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.ai-orb-mini{
    background:
        radial-gradient(
            circle at 28% 22%,
            #A7F3D0,
            #10B981 42%,
            #0EA5E9 100%
        ) !important;
}

.ai-label{
    color:#0F766E !important;
}

.ai-message-label{
    color:#0EA5E9 !important;
}

/* =========================================================
   STATS
========================================================= */

.stats-section{
    background:
        rgba(255,255,255,.68) !important;

    border-color:
        rgba(14,165,233,.07) !important;
}

.stat-item strong{
    color:#0F172A !important;
}

/* =========================================================
   SECTION COLORS
========================================================= */

.section-kicker{
    color:#0EA5E9 !important;
}

.section-heading h2,
.center-heading h2,
.journey-content h2,
.faq-intro h2{
    color:#0F172A !important;
}

/* =========================================================
   PROGRAM
========================================================= */

#program .purple{
    --card-accent:#0EA5E9 !important;
}

#program .blue{
    --card-accent:#0EA5E9 !important;
}

#program .cyan{
    --card-accent:#06B6D4 !important;
}

#program .orange{
    --card-accent:#10B981 !important;
}

#program .program-card{
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.82),
            rgba(241,249,250,.50)
        ) !important;
}

#program .purple .program-category,
#program .purple .program-link,
#program .blue .program-category,
#program .blue .program-link,
#program .cyan .program-category,
#program .cyan .program-link{
    color:#0EA5E9 !important;
}

#program .orange .program-category,
#program .orange .program-link{
    color:#10B981 !important;
}

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

.feature-icon{
    color:#0EA5E9 !important;

    background:
        rgba(14,165,233,.08) !important;
}

.featured-feature{
    background:
        linear-gradient(
            145deg,
            #08242E,
            #0A3841
        ) !important;
}

.featured-feature .feature-icon{
    color:#6EE7B7 !important;

    background:
        rgba(16,185,129,.12) !important;
}

/* =========================================================
   COURSES
========================================================= */

.course-cover.purple{
    background:
        linear-gradient(
            135deg,
            #087F8C,
            #0EA5E9
        ) !important;
}

.course-cover.blue{
    background:
        linear-gradient(
            135deg,
            #0F766E,
            #0EA5E9
        ) !important;
}

.course-cover.cyan{
    background:
        linear-gradient(
            135deg,
            #059669,
            #06B6D4
        ) !important;
}

.course-button{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #06B6D4,
            #0EA5E9
        ) !important;
}

.course-footer strong{
    color:#0F766E !important;

    background:
        rgba(16,185,129,.06) !important;
}

/* =========================================================
   LEARNING JOURNEY
========================================================= */

.journey-section{
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(16,185,129,.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(14,165,233,.14),
            transparent 27%
        ),
        #081A22 !important;
}

.journey-content h2{
    color:#fff !important;
}

.journey-content h2 span{
    color:#5EEAD4 !important;
}

.journey-content .section-kicker{
    color:#34D399 !important;
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-highlight{
    background:
        linear-gradient(
            145deg,
            #08242D,
            #0A3740
        ) !important;
}

.user-avatar{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        ) !important;
}

/* =========================================================
   FAQ
========================================================= */

.faq-item{
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.76),
            rgba(245,250,251,.48)
        ) !important;

    border-color:
        rgba(255,255,255,.90) !important;
}

.faq-question{
    color:#0F172A !important;
}

.faq-question i{
    color:#0EA5E9 !important;
}

.faq-item.active .faq-question i{
    background:
        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        ) !important;

    color:#fff !important;
}

/* =========================================================
   CTA
========================================================= */

.cta-box{
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(16,185,129,.16),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #087F8C,
            #0F766E 45%,
            #0EA5E9
        ) !important;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#06161D !important;
}

.footer::before{
    background:
        linear-gradient(
            90deg,
            transparent,
            #10B981,
            #0EA5E9,
            transparent
        ) !important;
}

.footer-logo .brand-text strong{
    color:#fff !important;
}

.footer-logo .brand-text small{
    color:#5EEAD4 !important;
}

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

@media(max-width:650px){

    .hero{
        padding:
            55px 0 78px !important;
    }

    .hero h1{
        font-size:
            clamp(40px,10.5vw,52px) !important;
    }

    .hero h1 span{
        width:auto;
    }

    .hero-visual{
        min-height:400px !important;
    }

}


/* =========================================================
   DATABASE CATALOG
========================================================= */

.program-extra{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:8px;

    margin-top:12px;

    color:#94A3B8;

    font-size:8px;
    font-weight:700;
}

.program-extra span{
    display:inline-flex;
    align-items:center;

    gap:5px;
}

.program-extra i{
    color:#0EA5E9;
}

.catalog-empty{
    grid-column:1/-1;

    padding:60px 20px;

    text-align:center;

    border:
        1px dashed rgba(14,165,233,.20);

    border-radius:20px;

    color:#64748B;

    background:
        rgba(255,255,255,.45);

    font-size:11px;
}

.course-card{
    height:100%;
}

.course-body{
    display:flex;
    flex-direction:column;
}

.course-footer{
    margin-top:auto;
}

