@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #2563EB;
    --violet: #7C3AED;
    --navy: #0F172A;
    --gray: #F1F5F9;
    --white: #FFFFFF;
    --muted: #64748B;
    --border: #E2E8F0;

    --gradient:
        linear-gradient(
            135deg,
            #2563EB 0%,
            #7C3AED 100%
        );
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Plus Jakarta Sans",
        Arial,
        sans-serif;

    background: #FFFFFF;
    color: var(--navy);

    overflow-x: hidden;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;
    min-height: 78px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #FFFFFF;

    border-bottom: 1px solid var(--border);

    position: relative;
    z-index: 1000;
}

.brand-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px;
    height: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;

    padding: 29px 0;

    color: var(--navy);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--blue);
}

.desktop-nav a.active {
    color: var(--blue);
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 18px;

    height: 3px;

    border-radius: 99px;

    background: var(--gradient);
}

.mobile-menu-toggle {
    display: none;

    border: none;
    background: transparent;

    color: var(--navy);

    font-size: 24px;

    cursor: pointer;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 620px;

    padding: 70px 6vw 80px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(124, 58, 237, 0.08),
            transparent 25%
        ),

        #FFFFFF;

    position: relative;

    overflow: hidden;
}

.hero-content {
    width: min(1180px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 65px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.hero-text {
    max-width: 620px;
}

.welcome-tag {
    display: inline-flex;

    padding: 8px 14px;

    background: #EFF6FF;

    color: var(--blue);

    border: 1px solid #DBEAFE;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.hero h1 {
    margin: 20px 0;

    color: var(--navy);

    font-size:
        clamp(
            48px,
            5.3vw,
            70px
        );

    line-height: 1.08;

    letter-spacing: -3px;

    font-weight: 800;
}

.hero h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 580px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    min-height: 48px;

    padding: 13px 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.primary-btn {
    color: #FFFFFF;

    background: var(--gradient);

    border: 1px solid transparent;

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, 0.18);
}

.primary-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(124, 58, 237, 0.20);
}

.secondary-btn {
    color: var(--blue);

    background: #FFFFFF;

    border: 1px solid #BFDBFE;
}

.secondary-btn:hover {
    transform: translateY(-2px);

    color: var(--violet);

    border-color: #C4B5FD;

    background: #FAF9FF;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    min-height: 440px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;
}

.visual-card {
    width: 390px;
    height: 400px;

    position: relative;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #F8FAFF 0%,
            #FFFFFF 70%
        );

    border: 1px solid var(--border);

    box-shadow:
        0 22px 55px
        rgba(15, 23, 42, 0.10);

    overflow: hidden;
}

.visual-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -125px;
    top: -125px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.12),
            rgba(124, 58, 237, 0.13)
        );
}

.visual-card::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    left: -150px;
    bottom: -140px;

    border-radius: 50%;

    background:
        rgba(37, 99, 235, 0.07);
}


/* =========================================================
   FLOATING VISUAL CARDS
   ========================================================= */

.floating-card {
    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.09);

    font-weight: 800;
}

.floating-code {
    width: 58px;
    height: 58px;

    left: 25px;
    top: 105px;

    color: var(--violet);

    font-size: 16px;

    transform: rotate(-7deg);
}

.floating-ai {
    width: 56px;
    height: 56px;

    right: 28px;
    top: 82px;

    color: var(--blue);

    font-size: 14px;

    transform: rotate(6deg);
}

.floating-star {
    width: 48px;
    height: 48px;

    right: 38px;
    bottom: 62px;

    color: var(--violet);

    font-size: 23px;
}

.floating-project {
    width: 70px;
    height: 54px;

    left: 28px;
    bottom: 70px;

    padding: 10px;

    flex-direction: column;

    gap: 5px;
}

.floating-project span {
    width: 75%;
    height: 5px;

    border-radius: 99px;

    background: var(--gradient);
}

.floating-project span:nth-child(2) {
    width: 90%;
}

.floating-project span:nth-child(3) {
    width: 55%;
}


/* =========================================================
   STUDENT ILLUSTRATION
   ========================================================= */

.student-illustration {
    position: absolute;

    width: 150px;
    height: 235px;

    left: 121px;
    top: 35px;

    z-index: 5;
}

.student-face {
    position: absolute;

    width: 68px;
    height: 76px;

    left: 41px;
    top: 15px;

    border-radius:
        45%
        45%
        48%
        48%;

    background: #F4C7A1;

    z-index: 2;
}

.student-hair {
    position: absolute;

    width: 78px;
    height: 55px;

    left: 36px;
    top: 8px;

    border-radius:
        50%
        55%
        25%
        25%;

    background: #172554;

    z-index: 4;
}

.eye {
    position: absolute;

    width: 5px;
    height: 5px;

    top: 36px;

    border-radius: 50%;

    background: var(--navy);
}

.eye-left {
    left: 19px;
}

.eye-right {
    right: 19px;
}

.student-body {
    position: absolute;

    width: 120px;
    height: 145px;

    left: 15px;
    top: 82px;

    border-radius:
        45px
        45px
        20px
        20px;

    background: var(--gradient);

    box-shadow:
        0 14px 25px
        rgba(37, 99, 235, 0.16);
}

.hoodie-string {
    position: absolute;

    width: 2px;
    height: 35px;

    top: 20px;

    background: #FFFFFF;

    opacity: 0.75;
}

.string-left {
    left: 48px;
}

.string-right {
    right: 48px;
}

.student-arm {
    position: absolute;

    width: 28px;
    height: 92px;

    top: 120px;

    border-radius: 20px;

    background: #F4C7A1;

    z-index: 1;
}

.arm-left {
    left: 2px;

    transform: rotate(43deg);
}

.arm-right {
    right: 2px;

    transform: rotate(-43deg);
}


/* =========================================================
   LAPTOP
   ========================================================= */

.laptop {
    position: absolute;

    width: 245px;
    height: 150px;

    left: 72px;
    bottom: 47px;

    z-index: 8;
}

.laptop-screen {
    width: 245px;
    height: 140px;

    padding: 8px;

    border:
        7px solid
        var(--navy);

    border-radius:
        13px
        13px
        5px
        5px;

    background: #111827;

    box-shadow:
        0 10px 20px
        rgba(15, 23, 42, 0.16);
}

.screen-dots {
    display: flex;

    gap: 4px;

    margin-bottom: 14px;
}

.screen-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #94A3B8;
}

.code-line {
    height: 6px;

    margin: 8px 0;

    border-radius: 99px;

    background: var(--gradient);
}

.line-one {
    width: 55%;
}

.line-two {
    width: 80%;
}

.line-three {
    width: 43%;
}

.line-four {
    width: 68%;
}

.line-five {
    width: 34%;
}

.laptop-base {
    position: absolute;

    width: 275px;
    height: 12px;

    left: -15px;
    bottom: 0;

    border-radius:
        0
        0
        14px
        14px;

    background: #CBD5E1;
}


/* =========================================================
   PLANT
   ========================================================= */

.plant {
    position: absolute;

    right: 22px;
    bottom: 43px;

    width: 62px;
    height: 110px;

    z-index: 9;
}

.plant-pot {
    position: absolute;

    left: 8px;
    bottom: 0;

    width: 48px;
    height: 43px;

    border-radius:
        5px
        5px
        13px
        13px;

    background: #CBD5E1;
}

.leaf {
    position: absolute;

    width: 29px;
    height: 48px;

    border-radius:
        100%
        0
        100%
        0;

    background: var(--gradient);
}

.leaf-one {
    left: 20px;
    top: 15px;

    transform: rotate(-20deg);
}

.leaf-two {
    left: 4px;
    top: 32px;

    transform: rotate(-55deg);
}

.leaf-three {
    right: 0;
    top: 31px;

    transform: rotate(20deg);
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    width: 100%;

    padding:
        70px
        max(6vw, 22px)
        85px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    background: var(--gray);
}

.feature-card {
    min-height: 220px;

    padding: 32px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    box-shadow:
        0 7px 22px
        rgba(15, 23, 42, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color: #C4B5FD;

    box-shadow:
        0 15px 32px
        rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 8px 18px
        rgba(37, 99, 235, 0.16);
}

.feature-card h2 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;
}

.feature-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   LEARN BY DOING
   ========================================================= */

.home-about {
    position: relative;

    padding: 95px 22px;

    background: #FFFFFF;

    text-align: center;

    overflow: hidden;
}

.home-about::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(37, 99, 235, 0.07);

    border-radius: 50%;
}

.home-about-container {
    width: 900px;
    max-width: 100%;

    margin: auto;

    position: relative;

    z-index: 1;
}

.section-tag {
    display: inline-flex;

    padding: 8px 13px;

    color: var(--violet);

    background: #F5F3FF;

    border:
        1px solid
        #EDE9FE;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.home-about h2 {
    margin: 18px 0 15px;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.2;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.home-about h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.home-about p {
    max-width: 700px;

    margin:
        0
        auto
        28px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.cta-button {
    min-height: 48px;

    padding: 13px 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    background: var(--gradient);

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, 0.17);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 26px
        rgba(124, 58, 237, 0.20);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 55px 20px;

    background: var(--navy);

    text-align: center;
}

.footer-content {
    width: 850px;
    max-width: 100%;

    margin: auto;
}

.footer-logo {
    width: 115px;

    height: auto;

    margin-bottom: 12px;
}

.footer-name {
    color: #FFFFFF;

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 7px;
}

.footer-content > p:not(.footer-name):not(.copyright) {
    color: #94A3B8;

    font-size: 14px;
}

.footer-links {
    margin: 25px 0;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-links a {
    color: #CBD5E1;

    text-decoration: none;

    font-size: 13px;
}

.footer-links a:hover {
    color: #A78BFA;
}

.copyright {
    color: #64748B;

    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 25px;
    }

    .desktop-nav {
        gap: 22px;
    }

    .hero {
        padding: 65px 25px 75px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 55px;

        text-align: center;
    }

    .hero-text {
        max-width: 680px;

        margin: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .navbar {
        min-height: 70px;
    }

    .logo {
        width: 125px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        position: absolute;

        top: 70px;

        left: 15px;
        right: 15px;

        padding: 10px;

        background: #FFFFFF;

        border:
            1px solid
            var(--border);

        border-radius: 14px;

        box-shadow:
            0 15px 35px
            rgba(15, 23, 42, 0.10);
    }

    .mobile-nav.show {
        display: flex;

        flex-direction: column;
    }

    .mobile-nav a {
        padding: 14px 15px;

        color: var(--navy);

        text-decoration: none;

        border-radius: 8px;

        font-size: 14px;

        font-weight: 700;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: var(--blue);

        background: #EFF6FF;
    }

    .hero {
        padding:
            55px
            18px
            65px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 365px;
    }

    .visual-card {
        width: 320px;
        height: 335px;
    }

    .student-illustration {
        transform: scale(0.82);

        transform-origin: top left;

        left: 86px;
        top: 28px;
    }

    .laptop {
        transform: scale(0.76);

        transform-origin: bottom left;

        left: 43px;
        bottom: 34px;
    }

    .floating-code {
        left: 14px;
        top: 82px;
    }

    .floating-ai {
        right: 15px;
        top: 67px;
    }

    .floating-star {
        right: 17px;
        bottom: 43px;
    }

    .floating-project {
        left: 14px;
        bottom: 47px;
    }

    .plant {
        right: 10px;
        bottom: 30px;

        transform: scale(0.78);

        transform-origin: bottom right;
    }

    .features {
        padding:
            55px
            18px
            65px;
    }

    .feature-card {
        min-height: auto;

        padding: 28px 24px;
    }

    .home-about {
        padding: 70px 18px;
    }

    .home-about h2 {
        font-size: 34px;
    }

    .home-about p {
        font-size: 15px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 37px;
    }

    .visual-card {
        width: 295px;
        height: 315px;
    }

    .student-illustration {
        transform: scale(0.73);

        left: 73px;
        top: 23px;
    }

    .laptop {
        transform: scale(0.68);

        left: 28px;
        bottom: 25px;
    }
}
/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-hero {
    min-height: 540px;

    padding: 75px 6vw;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(124, 58, 237, 0.09),
            transparent 28%
        ),

        #FFFFFF;

    overflow: hidden;
}

.about-hero-container {
    width: min(1180px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    align-items: center;

    gap: 80px;
}

.about-hero-text {
    max-width: 620px;
}

.about-tag {
    display: inline-flex;

    padding: 8px 14px;

    color: var(--blue);

    background: #EFF6FF;

    border:
        1px solid
        #DBEAFE;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-hero h1 {
    margin: 20px 0;

    color: var(--navy);

    font-size:
        clamp(
            48px,
            5vw,
            68px
        );

    line-height: 1.08;

    letter-spacing: -3px;

    font-weight: 800;
}

.about-hero h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.about-hero p {
    max-width: 570px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   ABOUT HERO VISUAL
   ========================================================= */

.about-hero-visual {
    width: 390px;
    height: 390px;

    max-width: 100%;

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.about-hero-visual::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.09),
            rgba(124, 58, 237, 0.10)
        );
}

.about-orbit {
    position: absolute;

    border:
        1px solid
        rgba(37, 99, 235, 0.15);

    border-radius: 50%;
}

.orbit-one {
    width: 330px;
    height: 180px;

    transform: rotate(35deg);
}

.orbit-two {
    width: 330px;
    height: 180px;

    transform: rotate(-35deg);
}

.about-visual-center {
    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 5;

    border-radius: 32px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    box-shadow:
        0 20px 45px
        rgba(15, 23, 42, 0.10);
}

.about-symbol {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 21px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(37, 99, 235, 0.20);
}

.about-symbol-label {
    margin-top: 9px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* FLOATING LABELS */

.about-floating {
    position: absolute;

    z-index: 10;

    padding: 13px 16px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.08);

    font-size: 11px;

    font-weight: 800;
}

.about-float-ai {
    top: 45px;
    right: 48px;

    color: var(--blue);

    transform: rotate(6deg);
}

.about-float-iot {
    right: 25px;
    bottom: 85px;

    color: var(--violet);

    transform: rotate(-6deg);
}

.about-float-code {
    left: 28px;
    bottom: 80px;

    color: var(--blue);

    transform: rotate(6deg);
}

.about-float-create {
    left: 55px;
    top: 62px;

    color: var(--violet);

    font-size: 20px;
}


/* =========================================================
   WHO WE ARE
   ========================================================= */

.about-section {
    padding: 95px 6vw;

    background: var(--gray);
}

.about-container {
    width: min(1120px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    align-items: start;
}

.about-heading {
    position: sticky;

    top: 30px;
}

.about-heading h2 {
    margin-top: 18px;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.2;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.about-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.about-text {
    padding: 34px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.045);
}

.about-text p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;
}

.about-text p + p {
    margin-top: 22px;
}

.about-text strong {
    color: var(--navy);

    font-weight: 700;
}


/* =========================================================
   COMMITMENT
   ========================================================= */

.commitment-section {
    padding: 95px 6vw;

    background: #FFFFFF;
}

.commitment-container {
    width: min(1120px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    align-items: center;
}

.commitment-heading h2 {
    margin-top: 18px;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.2;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.commitment-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.commitment-text {
    padding-left: 28px;

    border-left:
        3px solid
        var(--blue);
}

.commitment-text p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;
}

.commitment-text p + p {
    margin-top: 22px;
}


/* =========================================================
   MISSION / VISION
   ========================================================= */

.mission-vision {
    padding: 85px 6vw;

    background: var(--gray);
}

.mv-container {
    width: min(1120px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.mv-card {
    padding: 35px;

    min-height: 300px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    box-shadow:
        0 8px 25px
        rgba(15, 23, 42, 0.045);

    position: relative;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mv-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -85px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(124, 58, 237, 0.06);
}

.mv-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px
        rgba(15, 23, 42, 0.08);
}

.mv-top {
    display: flex;

    align-items: center;

    gap: 15px;
}

.mv-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 16px;

    font-weight: 800;
}

.mv-card h2 {
    max-width: 480px;

    margin: 28px 0 13px;

    color: var(--navy);

    font-size: 27px;

    line-height: 1.25;

    letter-spacing: -0.6px;

    font-weight: 800;
}

.mv-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.courses-cta {
    padding: 100px 22px;

    background:
        linear-gradient(
            135deg,
            #EFF6FF 0%,
            #F5F3FF 100%
        );

    text-align: center;
}

.courses-cta-content {
    width: 750px;

    max-width: 100%;

    margin: auto;
}

.courses-cta .section-tag {
    color: var(--blue);

    background: #FFFFFF;

    border-color: #DBEAFE;
}

.courses-cta h2 {
    margin: 18px 0;

    color: var(--navy);

    font-size:
        clamp(
            38px,
            5vw,
            54px
        );

    line-height: 1.15;

    letter-spacing: -2px;

    font-weight: 800;
}

.courses-cta h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.courses-cta p {
    max-width: 620px;

    margin:
        0
        auto
        28px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   BRAND STATEMENT
   ========================================================= */

.brand-statement {
    padding: 95px 22px;

    background: #FFFFFF;

    text-align: center;
}

.statement-content {
    width: 700px;

    max-width: 100%;

    margin: auto;
}

.statement-content h2 {
    margin: 18px 0 12px;

    color: var(--navy);

    font-size:
        clamp(
            38px,
            5vw,
            56px
        );

    line-height: 1.1;

    letter-spacing: -2px;

    font-weight: 800;
}

.statement-content h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.statement-content p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-hero {
        padding: 65px 25px 75px;
    }

    .about-hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }

    .about-hero-text {
        max-width: 700px;

        margin: auto;
    }

    .about-hero p {
        margin: auto;
    }

    .about-container,
    .commitment-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-heading {
        position: static;
    }

    .commitment-text {
        padding-left: 22px;
    }
}


@media (max-width: 700px) {

    .about-hero {
        padding:
            55px
            18px
            65px;
    }

    .about-hero h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-hero-visual {
        width: 320px;
        height: 320px;
    }

    .about-orbit {
        transform: scale(0.82);
    }

    .about-visual-center {
        width: 125px;
        height: 125px;
    }

    .about-symbol {
        width: 60px;
        height: 60px;
    }

    .about-float-ai {
        top: 28px;
        right: 25px;
    }

    .about-float-iot {
        right: 12px;
        bottom: 62px;
    }

    .about-float-code {
        left: 10px;
        bottom: 60px;
    }

    .about-float-create {
        left: 30px;
        top: 42px;
    }

    .about-section,
    .commitment-section {
        padding:
            70px
            18px;
    }

    .about-heading h2,
    .commitment-heading h2 {
        font-size: 34px;
    }

    .about-text {
        padding: 26px 22px;
    }

    .mission-vision {
        padding:
            60px
            18px;
    }

    .mv-container {
        grid-template-columns: 1fr;
    }

    .mv-card {
        min-height: auto;

        padding: 28px 24px;
    }

    .mv-card h2 {
        font-size: 24px;
    }

    .courses-cta {
        padding:
            75px
            18px;
    }

    .brand-statement {
        padding:
            75px
            18px;
    }
}


@media (max-width: 400px) {

    .about-hero h1 {
        font-size: 37px;
    }

    .about-hero-visual {
        width: 295px;
        height: 295px;
    }

    .about-orbit {
        transform: scale(0.72);
    }
}

/* =========================================================
   COURSES PAGE
   ========================================================= */


/* =========================================================
   COURSES HERO
   ========================================================= */

.courses-hero {
    min-height: 560px;

    padding: 70px 6vw;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(124, 58, 237, 0.10),
            transparent 30%
        ),
        #FFFFFF;

    overflow: hidden;
}

.courses-hero-container {
    width: min(1160px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 70px;

    align-items: center;
}

.courses-hero-content {
    max-width: 650px;
}

.courses-tag {
    display: inline-flex;

    padding: 8px 14px;

    border: 1px solid #DBEAFE;

    border-radius: 999px;

    background: #EFF6FF;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.courses-hero h1 {
    margin: 20px 0;

    color: var(--navy);

    font-size:
        clamp(
            46px,
            5vw,
            66px
        );

    line-height: 1.08;

    letter-spacing: -3px;

    font-weight: 800;
}

.courses-hero h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.courses-hero p {
    max-width: 590px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.85;
}

.courses-hero-points {
    margin-top: 25px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.courses-hero-points span {
    padding: 9px 13px;

    border-radius: 9px;

    background: #F8FAFC;

    border: 1px solid var(--border);

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.courses-hero-visual {
    width: 390px;
    height: 390px;

    max-width: 100%;

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.courses-hero-visual::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.08),
            rgba(124, 58, 237, 0.10)
        );
}

.tech-orbit {
    position: absolute;

    border:
        1px solid
        rgba(37, 99, 235, 0.16);

    border-radius: 50%;
}

.tech-orbit-one {
    width: 330px;
    height: 180px;

    transform: rotate(35deg);
}

.tech-orbit-two {
    width: 330px;
    height: 180px;

    transform: rotate(-35deg);
}

.tech-center {
    width: 145px;
    height: 145px;

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 32px;

    box-shadow:
        0 20px 45px
        rgba(15, 23, 42, 0.10);
}

.tech-code {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 19px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 20px;

    font-weight: 800;
}

.tech-center strong {
    margin-top: 9px;

    color: var(--navy);

    font-size: 10px;

    letter-spacing: 1.5px;
}

.tech-center small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 7px;

    letter-spacing: 1.2px;
}

.tech-node {
    position: absolute;

    z-index: 10;

    padding: 12px 15px;

    border:
        1px solid
        var(--border);

    border-radius: 11px;

    background: #FFFFFF;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.08);

    font-size: 10px;

    font-weight: 800;
}

.node-ai {
    top: 40px;
    right: 42px;

    color: var(--blue);

    transform: rotate(5deg);
}

.node-code {
    left: 25px;
    bottom: 75px;

    color: var(--blue);

    transform: rotate(-5deg);
}

.node-iot {
    right: 20px;
    bottom: 70px;

    color: var(--violet);

    transform: rotate(5deg);
}

.node-electronics {
    top: 58px;
    left: 48px;

    color: var(--violet);

    font-size: 17px;
}


/* =========================================================
   LAUNCHING OFFER
   ========================================================= */

.launching-section {
    padding: 28px 6vw;

    background:
        linear-gradient(
            135deg,
            #EFF6FF,
            #F5F3FF
        );
}

.launching-container {
    width: min(1000px, 100%);

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 35px;

    text-align: center;
}

.launching-content {
    flex: 1;
}

.launching-badge {
    display: inline-flex;

    padding: 7px 12px;

    background: #FFFFFF;

    border: 1px solid #DBEAFE;

    border-radius: 999px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.launching-section h2 {
    margin: 12px 0 5px;

    color: var(--navy);

    font-size: 28px;

    letter-spacing: -0.8px;
}

.launching-section h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.launching-section p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}

.offer-arrow {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;

    color: var(--blue);

    font-weight: 800;

    box-shadow:
        0 8px 20px
        rgba(15, 23, 42, 0.06);
}


/* =========================================================
   COURSE CARDS
   ========================================================= */

.courses-section {
    padding: 85px 6vw;

    background: var(--gray);
}

.courses-container {
    width: min(1160px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.course-card {
    position: relative;

    padding: 32px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 8px 28px
        rgba(15, 23, 42, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.course-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--gradient);
}

.course-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px
        rgba(15, 23, 42, 0.09);
}

.course-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.course-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 8px 18px
        rgba(37, 99, 235, 0.18);
}

.course-badge {
    padding: 7px 10px;

    border-radius: 999px;

    background: #F8FAFC;

    border: 1px solid var(--border);

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.course-number {
    margin-top: 23px;

    color: #CBD5E1;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.course-card h2 {
    margin: 8px 0 10px;

    color: var(--navy);

    font-size: 26px;

    line-height: 1.2;

    letter-spacing: -0.7px;
}

.course-description {
    min-height: 54px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}

.course-price {
    margin-top: 23px;

    padding-top: 20px;

    border-top:
        1px solid
        var(--border);

    display: flex;

    align-items: end;

    justify-content: space-between;
}

.old-price {
    color: #94A3B8;

    font-size: 10px;
}

.course-price strong {
    color: var(--navy);

    font-size: 30px;

    line-height: 1;

    letter-spacing: -1px;
}

.course-price strong span {
    color: var(--muted);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0;
}

.course-details {
    margin-top: 20px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;
}

.course-details p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}

.course-button {
    margin-top: 25px;

    width: 100%;

    padding: 13px 17px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    text-decoration: none;

    border-radius: 10px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.course-button span {
    font-size: 17px;
}

.course-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, 0.20);
}


/* =========================================================
   DEMO SECTION
   ========================================================= */

.demo-section {
    padding: 90px 6vw;

    background: #FFFFFF;
}

.demo-container {
    width: min(1080px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 80px;

    align-items: center;
}

.demo-visual {
    width: 330px;
    height: 330px;

    max-width: 100%;

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.demo-visual::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.08),
            rgba(124, 58, 237, 0.10)
        );
}

.demo-circle {
    position: absolute;

    border:
        1px solid
        rgba(37, 99, 235, 0.16);

    border-radius: 50%;
}

.demo-circle-one {
    width: 280px;
    height: 170px;

    transform: rotate(35deg);
}

.demo-circle-two {
    width: 280px;
    height: 170px;

    transform: rotate(-35deg);
}

.demo-play {
    width: 100px;
    height: 100px;

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-left: 4px;

    border-radius: 50%;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 24px;

    box-shadow:
        0 18px 35px
        rgba(37, 99, 235, 0.22);
}

.demo-floating {
    position: absolute;

    z-index: 10;

    padding: 11px 13px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    box-shadow:
        0 10px 22px
        rgba(15, 23, 42, 0.08);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.demo-floating-one {
    top: 42px;
    right: 20px;

    color: var(--blue);

    transform: rotate(5deg);
}

.demo-floating-two {
    bottom: 45px;
    left: 15px;

    color: var(--violet);

    transform: rotate(-5deg);
}

.demo-content {
    max-width: 600px;
}

.demo-tag {
    display: inline-flex;

    padding: 8px 13px;

    border-radius: 999px;

    background: #F5F3FF;

    border: 1px solid #EDE9FE;

    color: var(--violet);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.demo-content h2 {
    margin: 18px 0;

    color: var(--navy);

    font-size:
        clamp(
            35px,
            4vw,
            48px
        );

    line-height: 1.18;

    letter-spacing: -1.5px;
}

.demo-content h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.demo-content > p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}

.demo-points {
    margin-top: 22px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.demo-points span {
    padding: 9px 12px;

    background: #F8FAFC;

    border:
        1px solid
        var(--border);

    border-radius: 8px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 700;
}

.demo-price {
    margin-top: 25px;

    display: flex;

    align-items: center;

    gap: 14px;
}

.demo-price span {
    color: var(--muted);

    font-size: 11px;

    font-weight: 700;
}

.demo-price strong {
    color: var(--navy);

    font-size: 29px;
}

.demo-button {
    margin-top: 18px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 13px 18px;

    border-radius: 10px;

    background: var(--gradient);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.demo-button span {
    font-size: 17px;
}

.demo-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(37, 99, 235, 0.20);
}


/* =========================================================
   SKILLS
   ========================================================= */

.why-section {
    padding: 90px 6vw;

    background: var(--gray);
}

.why-container {
    width: min(1120px, 100%);

    margin: auto;
}

.why-container > h2 {
    max-width: 650px;

    margin: 18px 0 45px;

    color: var(--navy);

    font-size:
        clamp(
            35px,
            4vw,
            50px
        );

    line-height: 1.15;

    letter-spacing: -1.7px;
}

.why-container > h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.skills-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;
}

.skills-grid div {
    min-height: 105px;

    padding: 18px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 13px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 750;

    line-height: 1.4;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.skills-grid div:hover {
    transform: translateY(-3px);

    border-color:
        rgba(37, 99, 235, 0.30);
}

.skills-grid span {
    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .courses-hero-container {
        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;
    }

    .courses-hero-content {
        margin: auto;
    }

    .courses-hero p {
        margin: auto;
    }

    .courses-hero-points {
        justify-content: center;
    }

    .demo-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .demo-content {
        margin: auto;

        text-align: center;
    }

    .demo-points {
        justify-content: center;
    }

    .demo-price {
        justify-content: center;
    }

    .skills-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }
}


@media (max-width: 700px) {

    .courses-hero {
        padding:
            55px
            18px
            70px;
    }

    .courses-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .courses-hero p {
        font-size: 14px;
    }

    .courses-hero-visual {
        width: 315px;
        height: 315px;
    }

    .tech-orbit {
        transform: scale(0.78);
    }

    .tech-center {
        width: 125px;
        height: 125px;
    }

    .tech-code {
        width: 58px;
        height: 58px;
    }

    .node-ai {
        top: 25px;
        right: 22px;
    }

    .node-code {
        left: 10px;
        bottom: 60px;
    }

    .node-iot {
        right: 8px;
        bottom: 55px;
    }

    .node-electronics {
        left: 25px;
        top: 45px;
    }

    .launching-section {
        padding:
            28px
            18px;
    }

    .launching-container {
        flex-direction: column;

        gap: 10px;
    }

    .offer-arrow {
        transform: rotate(0deg);
    }

    .launching-section h2 {
        font-size: 24px;
    }

    .courses-section {
        padding:
            65px
            18px;
    }

    .courses-container {
        grid-template-columns: 1fr;
    }

    .course-card {
        padding: 27px 23px;
    }

    .course-details {
        grid-template-columns: 1fr;
    }

    .demo-section {
        padding:
            70px
            18px;
    }

    .demo-visual {
        width: 290px;
        height: 290px;
    }

    .demo-circle {
        transform: scale(0.8);
    }

    .demo-content h2 {
        font-size: 34px;
    }

    .why-section {
        padding:
            70px
            18px;
    }

    .why-container > h2 {
        font-size: 34px;

        margin-bottom: 30px;
    }

    .skills-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 400px) {

    .courses-hero h1 {
        font-size: 37px;
    }

    .courses-hero-visual {
        width: 290px;
        height: 290px;
    }

    .tech-orbit {
        transform: scale(0.7);
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FAICEE PROGRAM PAGE — NEW DESIGN
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.program-hero-new {
    min-height: 590px;

    padding: 70px 6vw;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(124, 58, 237, 0.10),
            transparent 28%
        ),
        #FFFFFF;

    overflow: hidden;
}

.program-hero-container {
    width: min(1160px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 65px;

    align-items: center;
}

.program-hero-content {
    max-width: 650px;
}

.program-tag-new {
    display: inline-flex;

    padding: 8px 14px;

    border:
        1px solid
        #DBEAFE;

    border-radius: 999px;

    background: #EFF6FF;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.program-hero-new h1 {
    margin: 20px 0;

    color: var(--navy);

    font-size:
        clamp(
            46px,
            5vw,
            66px
        );

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;
}

.program-hero-new h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.program-hero-new p {
    max-width: 600px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}

.program-hero-points {
    margin-top: 25px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.program-hero-points span {
    padding: 9px 12px;

    border:
        1px solid
        var(--border);

    border-radius: 9px;

    background: #F8FAFC;

    color: var(--navy);

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.program-visual {
    width: 390px;
    height: 390px;

    max-width: 100%;

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.program-visual-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.09),
            rgba(124, 58, 237, 0.10)
        );
}

.program-orbit {
    position: absolute;

    width: 330px;
    height: 180px;

    border:
        1px solid
        rgba(37, 99, 235, 0.15);

    border-radius: 50%;
}

.orbit-one {
    transform: rotate(35deg);
}

.orbit-two {
    transform: rotate(-35deg);
}

.program-core {
    width: 145px;
    height: 145px;

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 30px;

    box-shadow:
        0 20px 45px
        rgba(15, 23, 42, 0.10);
}

.program-core-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 18px;

    font-weight: 800;
}

.program-core strong {
    margin-top: 9px;

    color: var(--navy);

    font-size: 10px;

    letter-spacing: 1.5px;
}

.program-core small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 7px;

    letter-spacing: 1.1px;
}

.program-node {
    position: absolute;

    z-index: 10;

    padding: 11px 13px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: #FFFFFF;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.08);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.8px;
}

.node-arduino {
    top: 42px;
    left: 50px;

    color: var(--blue);

    transform: rotate(-5deg);
}

.node-esp {
    top: 38px;
    right: 42px;

    color: var(--violet);

    transform: rotate(5deg);
}

.node-sensor {
    bottom: 58px;
    right: 22px;

    color: var(--blue);

    transform: rotate(5deg);
}

.node-code {
    bottom: 70px;
    left: 22px;

    color: var(--violet);

    transform: rotate(-5deg);
}


/* =========================================================
   GENERAL CONTAINER / HEADINGS
   ========================================================= */

.program-container {
    width: min(1150px, 100%);

    margin: auto;
}

.program-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.program-heading h2 {
    margin: 17px 0;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.program-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.program-heading p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   OVERVIEW
   ========================================================= */

.program-overview-new {
    padding: 90px 6vw;

    background: #FFFFFF;
}

.program-highlights-new {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.program-highlight-new {
    padding: 25px 20px;

    background: #F8FAFC;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.program-highlight-new:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px
        rgba(15, 23, 42, 0.07);
}

.highlight-number {
    color: #CBD5E1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.program-highlight-new strong {
    display: block;

    margin-top: 15px;

    color: var(--blue);

    font-size: 24px;
}

.program-highlight-new span {
    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   STRUCTURE
   ========================================================= */

.program-structure-new {
    padding: 95px 6vw;

    background: #F8FAFC;
}

.program-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.program-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #CBD5E1,
            transparent
        );

    display: none;
}

.timeline-item {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.timeline-marker {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 800;
}

.timeline-card {
    flex: 1;

    min-height: 190px;

    padding: 25px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 17px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 30px
        rgba(15, 23, 42, 0.07);
}

.timeline-days {
    display: inline-flex;

    padding: 7px 10px;

    border-radius: 999px;

    background: #EFF6FF;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.timeline-card h3 {
    margin: 15px 0 9px;

    color: var(--navy);

    font-size: 20px;
}

.timeline-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   KIT
   ========================================================= */

.program-kit-new {
    padding: 90px 6vw;

    background: #FFFFFF;
}

.program-kit-container-new {
    width: min(1100px, 100%);

    margin: auto;

    padding: 55px;

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 65px;

    align-items: center;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #EFF6FF,
            #F5F3FF
        );

    border:
        1px solid
        #E0E7FF;
}


/* VISUAL */

.kit-visual-new {
    min-height: 300px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.kit-board {
    width: 205px;
    height: 135px;

    position: relative;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #7C3AED
        );

    transform:
        perspective(500px)
        rotateX(8deg)
        rotateY(-12deg);

    box-shadow:
        0 25px 45px
        rgba(37, 99, 235, 0.22);
}

.board-chip {
    position: absolute;

    top: 42px;
    left: 68px;

    width: 70px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #FFFFFF;

    color: var(--navy);

    font-size: 9px;

    font-weight: 800;
}

.board-lines {
    position: absolute;

    height: 2px;

    background: rgba(255, 255, 255, 0.65);

    border-radius: 999px;
}

.line-a {
    width: 35px;

    left: 20px;
    top: 28px;
}

.line-b {
    width: 35px;

    right: 20px;
    top: 28px;
}

.line-c {
    width: 35px;

    left: 20px;
    bottom: 28px;
}

.board-pin {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #FFFFFF;
}

.pin-one {
    top: 20px;
    left: 48px;
}

.pin-two {
    top: 20px;
    right: 48px;
}

.pin-three {
    bottom: 20px;
    left: 48px;
}

.pin-four {
    bottom: 20px;
    right: 48px;
}

.kit-floating {
    position: absolute;

    padding: 10px 12px;

    background: #FFFFFF;

    border:
        1px solid
        #E2E8F0;

    border-radius: 10px;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.08);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.kit-floating-one {
    top: 38px;
    left: 25px;

    color: var(--blue);
}

.kit-floating-two {
    right: 18px;
    bottom: 48px;

    color: var(--violet);
}


/* KIT CONTENT */

.kit-tag-new {
    display: inline-flex;

    padding: 7px 11px;

    border-radius: 999px;

    background: #FFFFFF;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.kit-content-new h2 {
    margin: 17px 0;

    color: var(--navy);

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.kit-content-new h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.kit-content-new > p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.kit-items-new {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.kit-item-new {
    padding: 13px;

    border:
        1px solid
        #E0E7FF;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.65);

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;
}

.kit-item-new span {
    margin-right: 6px;

    color: var(--blue);
}


/* =========================================================
   SLOTS
   ========================================================= */

.program-slots-new {
    padding: 90px 6vw;

    background: #F8FAFC;
}

.slot-grid-new {
    width: min(800px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.slot-card-new {
    padding: 30px;

    background: #FFFFFF;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.slot-card-new:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px
        rgba(15, 23, 42, 0.07);
}

.slot-number {
    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.slot-time {
    margin: 13px 0 7px;

    color: var(--navy);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -0.5px;
}

.slot-card-new p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   READY
   ========================================================= */

.program-ready-new {
    padding: 80px 6vw 35px;

    background: #FFFFFF;

    text-align: center;
}

.program-ready-container-new {
    width: min(760px, 100%);

    margin: auto;
}

.program-ready-container-new h2 {
    margin: 16px 0;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            4vw,
            46px
        );

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.program-ready-container-new h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.program-ready-container-new p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   PRICING
   ========================================================= */

.program-pricing-new {
    padding: 35px 6vw 90px;

    background: #FFFFFF;
}

.pricing-card-new {
    width: min(650px, 100%);

    margin: auto;

    padding: 35px;

    background: #F8FAFC;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        0 18px 45px
        rgba(15, 23, 42, 0.07);
}

.pricing-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.pricing-label-new {
    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.pricing-card-new h2 {
    margin: 7px 0 5px;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    font-size: 48px;

    line-height: 1;
}

.pricing-card-new .pricing-top p {
    margin: 0;

    color: var(--muted);

    font-size: 10px;
}

.pricing-icon-new {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 23px;

    font-weight: 800;

    box-shadow:
        0 10px 22px
        rgba(37, 99, 235, 0.18);
}

.pricing-includes-new {
    margin-top: 25px;

    padding-top: 23px;

    border-top:
        1px solid
        var(--border);

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.pricing-includes-new div {
    color: var(--muted);

    font-size: 11px;
}

.pricing-includes-new span {
    margin-right: 7px;

    color: var(--blue);

    font-weight: 800;
}

.pricing-button-new {
    margin-top: 27px;

    min-height: 50px;

    padding: 0 17px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-radius: 10px;

    background: var(--gradient);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pricing-button-new span {
    font-size: 18px;
}

.pricing-button-new:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(37, 99, 235, 0.20);
}


/* =========================================================
   DELIVERY
   ========================================================= */

.delivery-note-new {
    padding: 75px 6vw;

    background:
        linear-gradient(
            135deg,
            #EFF6FF,
            #F5F3FF
        );

    text-align: center;
}

.delivery-note-container-new {
    width: min(750px, 100%);

    margin: auto;
}

.delivery-note-container-new h2 {
    margin: 16px 0 12px;

    color: var(--navy);

    font-size: 32px;

    letter-spacing: -1px;
}

.delivery-note-container-new p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .program-hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;
    }

    .program-hero-content {
        margin: auto;
    }

    .program-hero-new p {
        margin: auto;
    }

    .program-hero-points {
        justify-content: center;
    }

    .program-highlights-new {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .program-kit-container-new {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .kit-content-new {
        text-align: center;
    }

    .kit-items-new {
        text-align: left;
    }
}


@media (max-width: 700px) {

    .program-hero-new {
        padding:
            55px
            18px
            70px;
    }

    .program-hero-new h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .program-visual {
        width: 315px;
        height: 315px;
    }

    .program-orbit {
        transform: scale(0.78);
    }

    .program-core {
        width: 125px;
        height: 125px;
    }

    .program-core-icon {
        width: 57px;
        height: 57px;
    }

    .node-arduino {
        top: 25px;
        left: 30px;
    }

    .node-esp {
        top: 25px;
        right: 25px;
    }

    .node-sensor {
        bottom: 40px;
        right: 5px;
    }

    .node-code {
        bottom: 45px;
        left: 5px;
    }


    .program-overview-new,
    .program-structure-new,
    .program-kit-new,
    .program-slots-new {
        padding:
            70px
            18px;
    }


    .program-highlights-new {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .program-highlight-new {
        padding: 20px 14px;
    }


    .program-timeline {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .timeline-card {
        min-height: auto;

        padding: 22px;
    }


    .program-kit-container-new {
        padding: 32px 22px;
    }

    .kit-content-new h2 {
        font-size: 34px;
    }

    .kit-items-new {
        grid-template-columns: 1fr;
    }


    .slot-grid-new {
        grid-template-columns: 1fr;
    }


    .program-ready-new {
        padding:
            60px
            18px
            30px;
    }


    .program-pricing-new {
        padding:
            30px
            18px
            70px;
    }


    .pricing-card-new {
        padding: 28px 21px;
    }


    .pricing-top {
        align-items: flex-start;
    }

    .pricing-icon-new {
        width: 52px;
        height: 52px;

        font-size: 19px;
    }


    .pricing-card-new h2 {
        font-size: 41px;
    }


    .pricing-includes-new {
        grid-template-columns: 1fr;
    }


    .delivery-note-new {
        padding:
            65px
            18px;
    }

}


@media (max-width: 430px) {

    .program-hero-new h1 {
        font-size: 37px;
    }

    .program-visual {
        width: 290px;
        height: 290px;
    }

    .program-orbit {
        transform: scale(0.70);
    }

    .program-highlights-new {
        grid-template-columns: 1fr;
    }

    .program-hero-points span {
        width: 100%;
    }

}

/* =========================================================
   CONTACT PAGE — FAICEE NEW DESIGN
   ========================================================= */

.contact-container {
    width: min(1050px, 100%);
    margin: auto;
}


/* =========================================================
   CONTACT HERO
   ========================================================= */

.contact-hero-new {
    min-height: 560px;

    padding: 70px 6vw;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(124, 58, 237, 0.10),
            transparent 28%
        ),
        #FFFFFF;

    overflow: hidden;
}

.contact-hero-container {
    width: min(1150px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 60px;

    align-items: center;
}

.contact-hero-content {
    max-width: 620px;
}

.contact-tag-new {
    display: inline-flex;

    padding: 8px 14px;

    border: 1px solid #DBEAFE;

    border-radius: 999px;

    background: #EFF6FF;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.contact-hero-new h1 {
    margin: 20px 0;

    color: var(--navy);

    font-size:
        clamp(
            44px,
            5vw,
            64px
        );

    line-height: 1.06;

    letter-spacing: -3px;

    font-weight: 800;
}

.contact-hero-new h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.contact-hero-new p {
    max-width: 590px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}

.contact-hero-pills {
    margin-top: 25px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.contact-hero-pills span {
    padding: 9px 13px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: #F8FAFC;

    color: var(--navy);

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.contact-hero-visual {
    width: 370px;
    height: 370px;

    max-width: 100%;

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.contact-glow {
    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.10),
            rgba(124, 58, 237, 0.12)
        );
}

.contact-orbit {
    position: absolute;

    width: 315px;
    height: 175px;

    border: 1px solid rgba(37, 99, 235, 0.14);

    border-radius: 50%;
}

.orbit-a {
    transform: rotate(35deg);
}

.orbit-b {
    transform: rotate(-35deg);
}

.contact-core {
    width: 140px;
    height: 140px;

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: 30px;

    box-shadow:
        0 20px 45px
        rgba(15, 23, 42, 0.10);
}

.contact-core-symbol {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: var(--gradient);

    color: #FFFFFF;

    font-size: 24px;

    font-weight: 800;
}

.contact-core strong {
    margin-top: 9px;

    color: var(--navy);

    font-size: 10px;

    letter-spacing: 1.5px;
}

.contact-core small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 7px;

    letter-spacing: 1px;
}

.contact-node {
    position: absolute;

    z-index: 10;

    padding: 10px 13px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.07);

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.contact-node-one {
    top: 45px;
    left: 50px;
}

.contact-node-two {
    top: 42px;
    right: 35px;

    color: var(--violet);
}

.contact-node-three {
    bottom: 55px;
    right: 35px;

    color: var(--blue);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.contact-section-heading {
    max-width: 720px;

    margin:
        0 auto
        50px;

    text-align: center;
}

.contact-section-heading h2 {
    margin: 16px 0;

    color: var(--navy);

    font-size:
        clamp(
            33px,
            4vw,
            46px
        );

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.contact-section-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.contact-section-heading p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section-new {
    padding: 95px 6vw;

    background: #F8FAFC;
}

.faq-list-new {
    width: min(850px, 100%);

    margin: auto;
}

.faq-item {
    margin-bottom: 10px;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: 13px;

    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.faq-item.open {
    border-color: #C7D2FE;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.05);
}

.faq-question {
    width: 100%;

    min-height: 62px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: none;

    background: transparent;

    color: var(--navy);

    text-align: left;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}

.faq-icon {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #EFF6FF;

    color: var(--blue);

    font-size: 18px;

    font-weight: 400;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);

    background: #EEF2FF;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    margin: 0;

    padding:
        0
        20px
        20px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS + FORM
   ========================================================= */

.contact-page-new {
    padding: 100px 6vw;

    background: #FFFFFF;
}

.contact-page-container-new {
    width: min(1100px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 75px;

    align-items: start;
}

.contact-intro-new h2 {
    margin: 16px 0;

    color: var(--navy);

    font-size: 43px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.contact-intro-new h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.contact-intro-new > p {
    max-width: 480px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;
}

.contact-details-new {
    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-detail-new {
    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #EFF6FF,
            #F5F3FF
        );

    color: var(--blue);

    font-size: 17px;

    font-weight: 800;
}

.contact-detail-new h3 {
    margin: 0 0 4px;

    color: var(--navy);

    font-size: 12px;
}

.contact-detail-new a,
.contact-detail-new p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;

    text-decoration: none;
}

.contact-detail-new a:hover {
    color: var(--blue);
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form-new {
    padding: 35px;

    background: #F8FAFC;

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow:
        0 18px 45px
        rgba(15, 23, 42, 0.06);
}

.form-tag-new {
    display: inline-flex;

    padding: 7px 11px;

    border-radius: 999px;

    background: #EFF6FF;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-form-new h2 {
    margin: 16px 0 25px;

    color: var(--navy);

    font-size: 32px;

    letter-spacing: -1px;
}

.contact-form-new h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.form-group-new {
    margin-bottom: 18px;
}

.form-group-new label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 10px;

    font-weight: 800;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;

    box-sizing: border-box;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: #FFFFFF;

    color: var(--navy);

    font-family: inherit;

    font-size: 12px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group-new input {
    height: 46px;

    padding: 0 14px;
}

.form-group-new textarea {
    min-height: 125px;

    padding: 13px 14px;

    resize: vertical;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #94A3B8;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    border-color: #93C5FD;

    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, 0.07);
}

.contact-submit-new {
    width: 100%;

    min-height: 50px;

    padding: 0 17px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border: none;

    border-radius: 10px;

    background: var(--gradient);

    color: #FFFFFF;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-submit-new:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(37, 99, 235, 0.20);
}

.contact-submit-new span {
    font-size: 18px;
}


/* =========================================================
   SUCCESS MESSAGE
   ========================================================= */

.success-message-new {
    display: none;

    margin-top: 15px;

    padding: 13px 15px;

    border:
        1px solid
        #A7F3D0;

    border-radius: 9px;

    background: #ECFDF5;

    color: #059669;

    font-size: 11px;

    font-weight: 700;

    text-align: center;
}

.success-message-new.show {
    display: block;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .contact-hero-content {
        margin: auto;
    }

    .contact-hero-new p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-pills {
        justify-content: center;
    }

    .contact-page-container-new {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 650px) {

    .contact-hero-new {
        padding:
            55px
            18px
            70px;
    }

    .contact-hero-new h1 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .contact-hero-visual {
        width: 300px;
        height: 300px;
    }

    .contact-orbit {
        transform: scale(0.75);
    }

    .contact-core {
        width: 120px;
        height: 120px;
    }

    .contact-core-symbol {
        width: 55px;
        height: 55px;
    }

    .contact-node-one {
        top: 25px;
        left: 25px;
    }

    .contact-node-two {
        top: 25px;
        right: 15px;
    }

    .contact-node-three {
        bottom: 35px;
        right: 10px;
    }


    .faq-section-new {
        padding:
            70px
            18px;
    }


    .contact-page-new {
        padding:
            75px
            18px;
    }


    .contact-intro-new h2 {
        font-size: 35px;
    }


    .contact-form-new {
        padding: 25px 20px;
    }


    .faq-question {
        min-height: 58px;

        padding:
            0
            15px;

        font-size: 12px;
    }

    .faq-answer p {
        padding:
            0
            15px
            18px;
    }

}

/* =========================================================
   FAICEE CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero-new {
    min-height: 560px;

    padding: 70px 6vw;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(124, 58, 237, 0.10),
            transparent 30%
        ),
        #ffffff;

    overflow: hidden;
}


.contact-hero-container {
    width: min(1150px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 60px;

    align-items: center;
}


.contact-hero-content {
    max-width: 620px;
}


.contact-tag-new {
    display: inline-flex;

    padding: 8px 14px;

    border:
        1px solid
        #dbeafe;

    border-radius: 999px;

    background: #eff6ff;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.contact-hero-new h1 {
    margin: 20px 0;

    color: var(--navy);

    font-size:
        clamp(
            44px,
            5vw,
            64px
        );

    line-height: 1.06;

    letter-spacing: -3px;

    font-weight: 800;
}


.contact-hero-new h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.contact-hero-new p {
    max-width: 590px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}


.contact-hero-pills {
    margin-top: 25px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.contact-hero-pills span {
    padding: 9px 13px;

    border:
        1px solid
        var(--border);

    border-radius: 999px;

    background: #f8fafc;

    color: var(--navy);

    font-size: 10px;

    font-weight: 700;
}



/* =========================================================
   PHONE VISUAL
========================================================= */

.contact-hero-visual {
    width: 370px;
    height: 370px;

    max-width: 100%;

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}


.contact-glow {
    position: absolute;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.10),
            rgba(124, 58, 237, 0.12)
        );

    filter: blur(1px);
}


.phone-ring {
    position: absolute;

    border:
        1px solid
        rgba(37, 99, 235, 0.14);

    border-radius: 50%;
}


.phone-ring-one {
    width: 310px;
    height: 310px;
}


.phone-ring-two {
    width: 245px;
    height: 245px;

    border-color:
        rgba(124, 58, 237, 0.14);
}


/* PHONE BODY */

.phone-device {
    width: 150px;
    height: 270px;

    position: relative;

    z-index: 5;

    padding: 9px;

    box-sizing: border-box;

    border:
        2px solid
        #cbd5e1;

    border-radius: 27px;

    background: #ffffff;

    box-shadow:
        0 25px 55px
        rgba(15, 23, 42, 0.15);

    transform:
        rotate(-7deg);
}


.phone-device::before {
    content: "";

    position: absolute;

    top: 8px;
    left: 50%;

    width: 55px;
    height: 5px;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background: #e2e8f0;
}


.phone-speaker {
    position: absolute;

    top: 18px;
    left: 50%;

    width: 30px;
    height: 3px;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background: #94a3b8;
}


.phone-screen {
    width: 100%;
    height: 100%;

    box-sizing: border-box;

    padding-top: 62px;

    display: flex;

    align-items: center;

    flex-direction: column;

    border-radius: 19px;

    background:
        linear-gradient(
            160deg,
            #eff6ff,
            #f5f3ff
        );
}


.phone-screen-icon {
    width: 66px;
    height: 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 19px;

    background: var(--gradient);

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 12px 25px
        rgba(37, 99, 235, 0.20);
}


.phone-screen-line {
    width: 60px;
    height: 6px;

    margin-top: 22px;

    border-radius: 999px;

    background: #cbd5e1;
}


.phone-screen-line.short {
    width: 38px;

    margin-top: 8px;
}


.phone-home {
    position: absolute;

    bottom: 7px;
    left: 50%;

    width: 32px;
    height: 4px;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background: #cbd5e1;
}


/* FLOATING LABELS */

.phone-floating {
    position: absolute;

    z-index: 10;

    padding: 10px 13px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.08);

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.phone-floating-one {
    top: 53px;
    left: 40px;
}


.phone-floating-two {
    top: 80px;
    right: 25px;

    color: var(--violet);
}


.phone-floating-three {
    bottom: 60px;
    right: 38px;

    color: var(--blue);
}



/* =========================================================
   COMMON CONTACT CONTAINER
========================================================= */

.contact-container {
    width: min(1050px, 100%);

    margin: auto;
}



/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section-new {
    padding: 95px 6vw;

    background: #f8fafc;
}


.contact-section-heading {
    max-width: 720px;

    margin:
        0 auto
        50px;

    text-align: center;
}


.contact-section-heading h2 {
    margin: 16px 0;

    color: var(--navy);

    font-size:
        clamp(
            33px,
            4vw,
            46px
        );

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.contact-section-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.contact-section-heading p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}



/* =========================================================
   FAQ ITEMS
========================================================= */

.faq-list-new {
    width: min(850px, 100%);

    margin: auto;
}


.faq-item {
    margin-bottom: 10px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 13px;

    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.faq-item.open {
    border-color: #c7d2fe;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.05);
}


.faq-question {
    width: 100%;

    min-height: 62px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: none;

    background: transparent;

    color: var(--navy);

    text-align: left;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}


.faq-icon {
    width: 27px;
    height: 27px;

    flex:
        0 0 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eff6ff;

    color: var(--blue);

    font-size: 18px;

    font-weight: 400;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.faq-item.open .faq-icon {
    transform: rotate(45deg);

    background: #eef2ff;
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.3s ease;
}


.faq-item.open .faq-answer {
    max-height: 250px;
}


.faq-answer p {
    margin: 0;

    padding:
        0
        20px
        20px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}



/* =========================================================
   GET IN TOUCH
========================================================= */

.contact-page-new {
    padding: 100px 6vw;

    background: #ffffff;
}


.contact-page-container-new {
    width: min(1100px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 75px;

    align-items: start;
}



/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-intro-new h2 {
    margin: 16px 0;

    color: var(--navy);

    font-size: 43px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.contact-intro-new h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.contact-intro-new > p {
    max-width: 480px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;
}


.contact-details-new {
    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.contact-detail-new {
    display: flex;

    align-items: center;

    gap: 15px;
}



/* =========================================================
   CONTACT ICON BOX
========================================================= */

.contact-detail-icon {
    width: 45px;
    height: 45px;

    flex:
        0 0 45px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f5f3ff
        );

    color: var(--blue);

    font-size: 17px;

    font-weight: 800;
}



/* =========================================================
   EMAIL ICON
========================================================= */

.email-icon {
    font-size: 18px;
}



/* =========================================================
   INSTAGRAM ICON
========================================================= */

.instagram-icon-new {
    position: relative;
}


.instagram-icon-new::before {
    content: "";

    position: absolute;

    width: 19px;
    height: 19px;

    border:
        2px solid
        var(--blue);

    border-radius: 6px;
}


.instagram-icon-new::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border:
        2px solid
        var(--blue);

    border-radius: 50%;
}


.instagram-icon-new span {
    position: absolute;

    width: 4px;
    height: 4px;

    top: 11px;
    right: 11px;

    border-radius: 50%;

    background: var(--violet);
}



/* =========================================================
   LOCATION — WATER DROP / MAP PIN
========================================================= */

.location-icon-new {
    position: relative;
}


.location-icon-new::before {
    content: "";

    position: absolute;

    width: 20px;
    height: 20px;

    border:
        2.5px solid
        var(--blue);

    border-radius:
        50%
        50%
        50%
        0;

    transform:
        rotate(-45deg);

    top: 10px;
    left: 11px;
}


.location-icon-new span {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--violet);

    top: 18px;
    left: 20px;
}



/* =========================================================
   CONTACT TEXT
========================================================= */

.contact-detail-new h3 {
    margin:
        0
        0
        4px;

    color: var(--navy);

    font-size: 12px;
}


.contact-detail-new a,
.contact-detail-new p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;

    text-decoration: none;
}


.contact-detail-new a:hover {
    color: var(--blue);
}



/* =========================================================
   FORM
========================================================= */

.contact-form-new {
    padding: 35px;

    background: #f8fafc;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        0 18px 45px
        rgba(15, 23, 42, 0.06);
}


.form-tag-new {
    display: inline-flex;

    padding: 7px 11px;

    border-radius: 999px;

    background: #eff6ff;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.contact-form-new h2 {
    margin:
        16px
        0
        25px;

    color: var(--navy);

    font-size: 32px;

    letter-spacing: -1px;
}


.contact-form-new h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}



/* =========================================================
   FORM FIELDS
========================================================= */

.form-group-new {
    margin-bottom: 18px;
}


.form-group-new label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 10px;

    font-weight: 800;
}


.form-group-new input,
.form-group-new textarea {
    width: 100%;

    box-sizing: border-box;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: #ffffff;

    color: var(--navy);

    font-family: inherit;

    font-size: 12px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group-new input {
    height: 46px;

    padding:
        0
        14px;
}


.form-group-new textarea {
    min-height: 125px;

    padding:
        13px
        14px;

    resize: vertical;
}


.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #94a3b8;
}


.form-group-new input:focus,
.form-group-new textarea:focus {
    border-color: #93c5fd;

    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, 0.07);
}



/* =========================================================
   SEND BUTTON
========================================================= */

.contact-submit-new {
    width: 100%;

    min-height: 50px;

    padding:
        0
        17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    border-radius: 10px;

    background: var(--gradient);

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.contact-submit-new:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(37, 99, 235, 0.20);
}


.contact-submit-new span:last-child {
    font-size: 18px;
}



/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.success-message-new {
    display: none;

    margin-top: 15px;

    padding:
        13px
        15px;

    border:
        1px solid
        #a7f3d0;

    border-radius: 9px;

    background: #ecfdf5;

    color: #059669;

    font-size: 11px;

    font-weight: 700;

    text-align: center;
}


.success-message-new.show {
    display: block;
}



/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .contact-hero-content {
        margin: auto;
    }


    .contact-hero-new p {
        margin-left: auto;
        margin-right: auto;
    }


    .contact-hero-pills {
        justify-content: center;
    }


    .contact-page-container-new {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}



/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-hero-new {
        padding:
            55px
            18px
            70px;
    }


    .contact-hero-new h1 {
        font-size: 40px;

        letter-spacing: -2px;
    }


    .contact-hero-visual {
        width: 300px;
        height: 300px;
    }


    .phone-ring-one {
        width: 270px;
        height: 270px;
    }


    .phone-ring-two {
        width: 215px;
        height: 215px;
    }


    .phone-device {
        width: 125px;
        height: 225px;
    }


    .phone-screen {
        padding-top: 50px;
    }


    .phone-screen-icon {
        width: 55px;
        height: 55px;

        font-size: 22px;
    }


    .phone-floating-one {
        top: 35px;
        left: 15px;
    }


    .phone-floating-two {
        top: 55px;
        right: 5px;
    }


    .phone-floating-three {
        bottom: 35px;
        right: 5px;
    }


    .faq-section-new {
        padding:
            70px
            18px;
    }


    .contact-page-new {
        padding:
            75px
            18px;
    }


    .contact-intro-new h2 {
        font-size: 35px;
    }


    .contact-form-new {
        padding:
            25px
            20px;
    }


    .faq-question {
        min-height: 58px;

        padding:
            0
            15px;

        font-size: 12px;
    }


    .faq-answer p {
        padding:
            0
            15px
            18px;
    }

}

/* =========================================================
   ABOUT PAGE — NEW HERO VISUAL
========================================================= */

.about-hero-visual-new {

    width: 430px;
    height: 430px;

    max-width: 100%;

    position: relative;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* =========================================================
   SOFT BACKGROUND GLOW
========================================================= */

.about-visual-glow {

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.12),
            rgba(124, 58, 237, 0.08),
            transparent 70%
        );

    filter: blur(2px);

}


/* =========================================================
   CIRCUIT LINES
========================================================= */

.circuit-line {

    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(37, 99, 235, 0.30),
            rgba(124, 58, 237, 0.30),
            transparent
        );

}


.circuit-line-1 {

    width: 150px;

    top: 92px;
    left: 35px;

    transform: rotate(25deg);

}


.circuit-line-2 {

    width: 135px;

    top: 300px;
    right: 28px;

    transform: rotate(-25deg);

}


.circuit-line-3 {

    width: 115px;

    bottom: 85px;
    left: 35px;

    transform: rotate(-20deg);

}


.circuit-line-4 {

    width: 100px;

    top: 65px;
    right: 50px;

    transform: rotate(-25deg);

}


/* =========================================================
   CIRCUIT NODES
========================================================= */

.circuit-node {

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 0 5px rgba(37, 99, 235, 0.08),
        0 0 15px rgba(37, 99, 235, 0.18);

}


.node-1 {

    top: 83px;
    left: 28px;

}


.node-2 {

    top: 112px;
    right: 38px;

    background: var(--violet);

}


.node-3 {

    bottom: 78px;
    left: 35px;

    background: var(--violet);

}


.node-4 {

    bottom: 105px;
    right: 25px;

}



/* =========================================================
   LAPTOP
========================================================= */

.about-laptop {

    position: absolute;

    width: 285px;

    height: 205px;

    z-index: 5;

    transform:
        rotate(-3deg);

}


/* LAPTOP SCREEN */

.laptop-screen {

    width: 100%;
    height: 180px;

    box-sizing: border-box;

    padding: 10px;

    border:
        2px solid
        #cbd5e1;

    border-radius:
        15px
        15px
        8px
        8px;

    background: #ffffff;

    box-shadow:
        0 25px 45px
        rgba(15, 23, 42, 0.12);

}


/* SCREEN */

.code-window {

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #f5f3ff
        );

}


/* TOP BAR */

.code-top {

    height: 28px;

    padding:
        0
        11px;

    display: flex;

    align-items: center;

    gap: 5px;

    border-bottom:
        1px solid
        #e2e8f0;

}


.code-top span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #cbd5e1;

}


.code-top span:nth-child(2) {

    background: #d8b4fe;

}


.code-top span:nth-child(3) {

    background: #93c5fd;

}


/* CODE */

.code-lines {

    padding:
        22px
        20px;

    font-family:
        "Courier New",
        monospace;

    font-size: 11px;

    line-height: 2.1;

}


.code-lines div {

    color: #64748b;

}


.code-lines b {

    color: var(--blue);

}


.code-lines i {

    color: var(--violet);

    font-style: normal;

}


.code-lines strong {

    color: #64748b;

}


.code-lines em {

    color: #7c3aed;

    font-style: normal;

}


.code-indent {

    padding-left: 16px;

}



/* LAPTOP BASE */

.laptop-base {

    position: absolute;

    width: 320px;
    height: 13px;

    left: 50%;
    bottom: 6px;

    transform:
        translateX(-50%);

    border-radius:
        3px
        3px
        10px
        10px;

    background:
        linear-gradient(
            90deg,
            #cbd5e1,
            #f1f5f9,
            #cbd5e1
        );

    box-shadow:
        0 9px 15px
        rgba(15, 23, 42, 0.10);

}


.laptop-base::after {

    content: "";

    position: absolute;

    width: 65px;
    height: 4px;

    top: 3px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background: #94a3b8;

}



/* =========================================================
   AI CARD
========================================================= */

.about-tech-card {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 12px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 14px 30px
        rgba(15, 23, 42, 0.08);

}


.about-ai-card {

    top: 78px;
    left: 4px;

}


.tech-card-icon {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #ede9fe
        );

    color: var(--blue);

    font-size: 9px;

    font-weight: 900;

}


.about-tech-card > span {

    color: var(--navy);

    font-size: 8px;

    line-height: 1.35;

    font-weight: 800;

}



/* =========================================================
   ROBOT CARD
========================================================= */

.about-robot-card {

    right: 0;
    bottom: 90px;

}


.robot-face {

    width: 28px;
    height: 23px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    border:
        2px solid
        var(--violet);

    border-radius: 7px;

}


.robot-face::before {

    content: "";

    position: absolute;

    width: 6px;
    height: 4px;

    top: -6px;

    border-radius: 2px;

    background: var(--violet);

}


.robot-face span {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--blue);

}



/* =========================================================
   IOT CHIP
========================================================= */

.about-chip {

    position: absolute;

    z-index: 9;

    right: 35px;
    top: 68px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        2px solid
        #c4b5fd;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f3ff
        );

    box-shadow:
        0 12px 25px
        rgba(124, 58, 237, 0.10);

}


.chip-center {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--gradient);

    color: #ffffff;

    font-size: 8px;

    font-weight: 900;

}


.chip-pin {

    position: absolute;

    width: 7px;
    height: 2px;

    background: #a78bfa;

}


.chip-pin-1 {

    left: -7px;
    top: 15px;

}


.chip-pin-2 {

    left: -7px;
    bottom: 15px;

}


.chip-pin-3 {

    right: -7px;
    top: 15px;

}


.chip-pin-4 {

    right: -7px;
    bottom: 15px;

}



/* =========================================================
   BUILD LABEL
========================================================= */

.about-build-label {

    position: absolute;

    z-index: 12;

    bottom: 42px;
    left: 40px;

    padding: 9px 13px;

    display: flex;

    align-items: center;

    gap: 7px;

    border:
        1px solid
        #dbeafe;

    border-radius: 999px;

    background: #ffffff;

    color: var(--blue);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.07);

}


.about-build-label span {

    font-size: 11px;

    color: var(--violet);

}



/* =========================================================
   CREATE LABEL
========================================================= */

.about-create-label {

    position: absolute;

    z-index: 12;

    right: 25px;
    bottom: 45px;

    padding: 8px 12px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f5f3ff
        );

    color: var(--violet);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}



/* =========================================================
   ABOUT HERO RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .about-hero-visual-new {

        width: 390px;
        height: 390px;

        margin-top: 25px;

    }

}


@media (max-width: 600px) {

    .about-hero-visual-new {

        width: 320px;
        height: 320px;

        transform:
            scale(0.88);

        margin-top: 0;

        margin-bottom: -20px;

    }


    .about-laptop {

        width: 240px;
        height: 175px;

    }


    .laptop-screen {

        height: 150px;

    }


    .laptop-base {

        width: 270px;

    }


    .about-ai-card {

        left: -5px;
        top: 60px;

    }


    .about-robot-card {

        right: -5px;
        bottom: 65px;

    }


    .about-chip {

        right: 20px;
        top: 52px;

        transform:
            scale(0.85);

    }


    .about-build-label {

        left: 20px;
        bottom: 32px;

    }


    .about-create-label {

        right: 12px;
        bottom: 32px;

    }


    .circuit-line-1 {

        left: 15px;

    }


    .circuit-line-3 {

        left: 15px;

    }

}

/* =========================================================
   COURSES PAGE — LEARNING LAB HERO VISUAL
========================================================= */

.courses-learning-lab {

    width: 450px;
    height: 450px;

    max-width: 100%;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: auto;

    overflow: visible;

}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.lab-glow {

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.12),
            rgba(124, 58, 237, 0.10),
            transparent 70%
        );

    filter: blur(4px);

}


/* =========================================================
   SUBTLE GRID
========================================================= */

.lab-grid {

    position: absolute;

    width: 340px;
    height: 340px;

    opacity: 0.45;

    background-image:
        linear-gradient(
            rgba(37, 99, 235, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(124, 58, 237, 0.06) 1px,
            transparent 1px
        );

    background-size: 28px 28px;

    mask-image:
        radial-gradient(
            circle,
            black 25%,
            transparent 72%
        );

}


/* =========================================================
   TOP LABEL
========================================================= */

.lab-top-label {

    position: absolute;

    top: 28px;
    left: 50%;

    transform:
        translateX(-50%);

    padding:
        7px
        13px;

    border:
        1px solid
        #dbeafe;

    border-radius: 999px;

    background: rgba(255,255,255,0.92);

    color: #2563eb;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

    white-space: nowrap;

    box-shadow:
        0 8px 20px
        rgba(15,23,42,0.06);

}


/* =========================================================
   MAIN LEARNING BOARD
========================================================= */

.learning-board {

    position: absolute;

    width: 340px;
    min-height: 265px;

    top: 95px;
    left: 50%;

    transform:
        translateX(-50%)
        rotate(-2deg);

    padding: 16px;

    box-sizing: border-box;

    border:
        1px solid
        #dbe4f0;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 28px 55px
        rgba(15,23,42,0.11);

    z-index: 5;

}


/* BOARD HEADER */

.board-header {

    display: flex;

    align-items: center;

    gap: 7px;

    padding-bottom: 12px;

    border-bottom:
        1px solid
        #e8eef5;

}


.board-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );

}


.board-title {

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    color: #0f172a;

}


.board-status {

    margin-left: auto;

    padding:
        4px
        7px;

    border-radius: 999px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 6px;

    font-weight: 900;

}


/* =========================================================
   LEARNING PATH
========================================================= */

.learning-path {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;

    margin-top: 28px;

}


.learning-step {

    width: 64px;
    min-height: 105px;

    box-sizing: border-box;

    padding:
        8px
        6px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border:
        1px solid
        #e2e8f0;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 8px 18px
        rgba(15,23,42,0.05);

}


.step-number {

    font-size: 7px;

    color: #94a3b8;

    font-weight: 900;

    margin-bottom: 7px;

}


.step-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f5f3ff
        );

    color: #2563eb;

    font-size: 11px;

    font-weight: 900;

}


.step-content {

    margin-top: 8px;

}


.step-content strong {

    display: block;

    font-size: 7px;

    letter-spacing: 0.6px;

    color: #0f172a;

}


.step-content small {

    display: block;

    margin-top: 3px;

    font-size: 6px;

    color: #64748b;

}


.step-two .step-icon {

    color: #7c3aed;

}


.step-three .step-icon {

    color: #2563eb;

}


.step-four .step-icon {

    color: #7c3aed;

}


/* =========================================================
   CONNECTORS
========================================================= */

.path-connector {

    width: 14px;

    height: 2px;

    position: relative;

    background:
        linear-gradient(
            90deg,
            #bfdbfe,
            #c4b5fd
        );

}


.path-connector span {

    position: absolute;

    width: 5px;
    height: 5px;

    right: -1px;
    top: -2px;

    border-radius: 50%;

    background: #7c3aed;

}


/* =========================================================
   BOARD FOOTER
========================================================= */

.board-footer {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 19px;

    font-size: 6px;

    color: #94a3b8;

    font-weight: 800;

    letter-spacing: 0.6px;

}


.board-footer-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #dbeafe,
            #ddd6fe
        );

}


/* =========================================================
   IDEA BULB
========================================================= */

.idea-bulb {

    position: absolute;

    z-index: 10;

    top: 57px;
    right: 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

}


.bulb-glass {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius:
        50%
        50%
        45%
        45%;

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #ede9fe
        );

    border:
        2px solid
        #c4b5fd;

    box-shadow:
        0 10px 25px
        rgba(124,58,237,0.14);

}


.bulb-glass span {

    font-size: 18px;

    color: #7c3aed;

}


.bulb-base {

    width: 18px;
    height: 8px;

    margin-top: -1px;

    border-radius:
        0
        0
        5px
        5px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #7c3aed
        );

}


/* =========================================================
   COURSE NOTE
========================================================= */

.course-note {

    position: absolute;

    z-index: 9;

    right: 3px;
    bottom: 76px;

    width: 105px;

    padding:
        13px
        12px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        #e2e8f0;

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 15px 30px
        rgba(15,23,42,0.08);

    transform:
        rotate(4deg);

}


.note-pin {

    position: absolute;

    width: 7px;
    height: 7px;

    top: -4px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background: #7c3aed;

}


.note-number {

    color: #2563eb;

    font-size: 7px;

    font-weight: 900;

}


.course-note strong {

    margin-top: 4px;

    color: #0f172a;

    font-size: 9px;

    letter-spacing: 0.8px;

}


.course-note small {

    margin-top: 3px;

    color: #64748b;

    font-size: 7px;

}


/* =========================================================
   FLOATING TECH SYMBOLS
========================================================= */

.lab-symbol {

    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #ffffff;

    border:
        1px solid
        #dbeafe;

    box-shadow:
        0 10px 20px
        rgba(15,23,42,0.07);

    font-weight: 900;

}


.symbol-code {

    width: 39px;
    height: 39px;

    left: 26px;
    top: 124px;

    color: #2563eb;

    font-size: 10px;

    transform:
        rotate(-8deg);

}


.symbol-ai {

    width: 35px;
    height: 35px;

    left: 31px;
    bottom: 105px;

    color: #7c3aed;

    font-size: 8px;

    transform:
        rotate(-5deg);

}


.symbol-iot {

    width: 37px;
    height: 37px;

    right: 26px;
    top: 145px;

    color: #2563eb;

    font-size: 8px;

    transform:
        rotate(7deg);

}


/* =========================================================
   BOTTOM LABEL
========================================================= */

.lab-bottom-label {

    position: absolute;

    bottom: 29px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        8px
        13px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f5f3ff
        );

    color: #475569;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

    white-space: nowrap;

}


.lab-star {

    color: #7c3aed;

    font-size: 10px;

}


/* =========================================================
   COURSES HERO RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .courses-learning-lab {

        width: 400px;
        height: 400px;

        margin-top: 25px;

    }

}


@media (max-width: 600px) {

    .courses-learning-lab {

        width: 330px;
        height: 330px;

        transform:
            scale(0.88);

        margin-top: -5px;
        margin-bottom: -25px;

    }


    .learning-board {

        width: 290px;

        min-height: 230px;

        top: 75px;

        padding: 13px;

    }


    .learning-step {

        width: 52px;

        min-height: 90px;

    }


    .step-icon {

        width: 28px;
        height: 28px;

        font-size: 9px;

    }


    .step-content strong {

        font-size: 6px;

    }


    .step-content small {

        font-size: 5px;

    }


    .path-connector {

        width: 8px;

    }


    .idea-bulb {

        right: 14px;
        top: 45px;

        transform:
            scale(0.82);

    }


    .course-note {

        right: -2px;
        bottom: 63px;

        transform:
            rotate(4deg)
            scale(0.85);

    }


    .symbol-code {

        left: 4px;
        top: 108px;

    }


    .symbol-ai {

        left: 10px;
        bottom: 86px;

    }


    .symbol-iot {

        right: 5px;
        top: 125px;

    }


    .lab-top-label {

        top: 20px;

    }


    .lab-bottom-label {

        bottom: 20px;

    }

}

/* =====================================================
   PROGRAMS — 1-ON-1 LEARNING VISUAL
   ===================================================== */

.program-visual {
    position: relative;
    width: 520px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* SOFT BACKGROUND GLOW */

.one-to-one-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.18),
            rgba(124, 58, 237, 0.08),
            transparent 70%
        );
    filter: blur(8px);
}


/* 1 : 1 LABEL */

.learning-label {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);

    padding: 9px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(37, 99, 235, 0.18);

    color: #2563EB;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.12);
}


/* PEOPLE */

.learning-person {
    position: absolute;
    width: 110px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 5;
}


/* MENTOR POSITION */

.mentor {
    left: 45px;
    top: 125px;
}


/* STUDENT POSITION */

.student {
    right: 45px;
    top: 125px;
}


/* HEAD */

.person-head {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #7C3AED
        );

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.2);
}


/* BODY */

.person-body {
    position: relative;

    width: 72px;
    height: 72px;

    margin-top: 7px;

    border-radius: 35px 35px 18px 18px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.95),
            rgba(124, 58, 237, 0.95)
        );

    box-shadow:
        0 15px 30px rgba(37, 99, 235, 0.18);
}


/* BODY DETAILS */

.person-line {
    position: absolute;

    width: 22px;
    height: 3px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.7);

    left: 50%;

    transform: translateX(-50%);
}

.person-line:first-child {
    top: 27px;
}

.person-line:last-child {
    top: 38px;
}


/* LABEL BELOW PERSON */

.person-label {
    margin-top: 10px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #1E293B;
}


/* CONNECTION BETWEEN MENTOR & STUDENT */

.learning-connection {
    position: absolute;

    left: 145px;
    right: 145px;

    top: 195px;

    height: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 2;
}


/* CONNECTION LINE */

.connection-line {
    position: absolute;

    left: 10px;
    right: 10px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #2563EB,
            #7C3AED
        );
}


/* CONNECTION DOTS */

.connection-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #2563EB;

    box-shadow:
        0 0 0 6px rgba(37, 99, 235, 0.08);

    z-index: 3;
}

.dot-two {
    background: #7C3AED;
}


/* PROJECT IN THE CENTER */

.learning-project {
    position: absolute;

    left: 50%;
    top: 128px;

    transform: translateX(-50%);

    width: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 8;
}


/* LAPTOP SCREEN */

.project-screen {
    width: 125px;
    height: 82px;

    padding: 13px;

    border-radius: 10px;

    background: #0F172A;

    border: 3px solid #334155;

    box-shadow:
        0 18px 35px rgba(15, 23, 42, 0.22);
}


/* CODE LINES */

.project-code-line {
    width: 75%;
    height: 5px;

    border-radius: 5px;

    margin-bottom: 9px;

    background:
        linear-gradient(
            90deg,
            #2563EB,
            #7C3AED
        );
}

.project-code-line.short {
    width: 45%;
}

.project-code-line.medium {
    width: 62%;
}


/* LAPTOP BASE */

.project-base {
    width: 145px;
    height: 8px;

    margin-top: 3px;

    border-radius: 0 0 12px 12px;

    background: #334155;
}


/* PROJECT LABEL */

.project-label {
    margin-top: 12px;

    padding: 7px 13px;

    border-radius: 20px;

    background: #FFFFFF;

    border: 1px solid rgba(37, 99, 235, 0.15);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #2563EB;

    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.1);
}


/* FLOATING LABELS */

.learning-floating {
    position: absolute;

    padding: 8px 13px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(124, 58, 237, 0.15);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #475569;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.08);
}


.floating-guidance {
    left: 25px;
    top: 72px;
}


.floating-build {
    right: 20px;
    top: 72px;
}


.floating-execute {
    right: 5px;
    bottom: 65px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 900px) {

    .program-visual {
        width: 100%;
        max-width: 500px;
        height: 380px;
        margin: 20px auto 0;
    }

}


@media (max-width: 600px) {

    .program-visual {
        height: 330px;
        transform: scale(0.82);
        transform-origin: center;
        margin-top: -5px;
        margin-bottom: -30px;
    }

}


/* =====================================================
   1-ON-1 MENTOR + STUDENT VISUAL
   ===================================================== */

.mentor-student-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}


/* MENTOR / STUDENT CARDS */

.mentor-card,
.student-card {
    position: absolute;

    width: 190px;
    padding: 22px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(255,255,255,0.95);

    border: 1px solid rgba(37,99,235,0.15);

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(37,99,235,0.12);

    z-index: 3;
}


.mentor-card {
    top: 55px;
    left: 20px;
}


.student-card {
    top: 55px;
    right: 20px;
}


/* PERSON ICON */

.person-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );

    font-size: 27px;

    flex-shrink: 0;
}


/* PERSON TEXT */

.person-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.person-info strong {
    font-size: 13px;
    letter-spacing: 1px;
    color: #111827;
}


.person-info span {
    font-size: 12px;
    color: #64748B;
}


/* CONNECTION */

.connection-line {
    position: absolute;

    top: 105px;
    left: 50%;

    transform: translateX(-50%);

    width: 150px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 2;
}


.connection-line::before {
    content: "";

    position: absolute;

    left: 8px;
    right: 8px;

    height: 2px;

    background: linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    z-index: -1;
}


.connection-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #2563EB;

    box-shadow:
        0 0 0 5px rgba(37,99,235,0.10);
}


.connection-text {
    padding: 7px 12px;

    border-radius: 20px;

    background: white;

    border: 1px solid rgba(37,99,235,0.15);

    color: #2563EB;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* PROJECT CARD */

.project-card {
    position: absolute;

    bottom: 45px;
    left: 50%;

    transform: translateX(-50%);

    width: 270px;

    padding: 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    background: linear-gradient(
        135deg,
        #EFF6FF,
        #F5F3FF
    );

    border: 1px solid rgba(124,58,237,0.15);

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(37,99,235,0.12);

    z-index: 3;
}


.project-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );

    color: white;

    font-size: 20px;
    font-weight: 800;
}


.project-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.project-card strong {
    font-size: 14px;
    letter-spacing: 1px;
    color: #111827;
}


.project-card span {
    font-size: 11px;
    color: #64748B;
}


/* SMALL PROJECT CONNECTOR */

.project-card::before {
    content: "";

    position: absolute;

    top: -55px;
    left: 50%;

    width: 2px;
    height: 55px;

    transform: translateX(-50%);

    background: linear-gradient(
        180deg,
        #7C3AED,
        rgba(124,58,237,0.1)
    );
}


/* MOBILE */

@media (max-width: 768px) {

    .mentor-student-visual {
        min-height: 390px;
        padding: 20px;
    }

    .mentor-card,
    .student-card {
        width: 165px;
        padding: 17px;
    }

    .mentor-card {
        left: 0;
        top: 40px;
    }

    .student-card {
        right: 0;
        top: 40px;
    }

    .connection-line {
        width: 110px;
        top: 85px;
    }

    .project-card {
        bottom: 35px;
        width: 245px;
    }

}

/* =====================================================
   MOBILE FIX — ABOUT & COURSES HEADINGS
   ===================================================== */

@media (max-width: 768px) {

    /* Prevent horizontal overflow */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }


    /* =========================
       ABOUT HERO
       ========================= */

    .about-hero {
        width: 100%;
        overflow: hidden;
    }

    .about-hero-container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .about-hero-text {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-hero-text h1 {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1.05;
        letter-spacing: -1.5px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .about-hero-text p {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* =========================
       COURSES HERO
       ========================= */

    .courses-hero {
        width: 100%;
        overflow: hidden;
    }

    .courses-hero-container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .courses-hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .courses-hero-content h1 {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1.05;
        letter-spacing: -1.5px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .courses-hero-content p {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* =========================
       MOBILE HERO VISUALS
       ========================= */

    .about-hero-visual,
    .courses-hero-visual {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* =========================
       GENERAL SAFETY
       ========================= */

    .about-hero *,
    .courses-hero * {
        max-width: 100%;
        box-sizing: border-box;
    }

}

/* =====================================================
   FINAL MOBILE FIX
   ABOUT + COURSES HERO
   ===================================================== */

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }


    /* =================================================
       ABOUT HERO
    ================================================= */

    .about-hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-hero-container {
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        padding: 45px 20px 40px !important;

        margin: 0 !important;
        box-sizing: border-box;
    }

    .about-hero-text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box;
    }

    .about-hero-text h1 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 18px 0 !important;

        font-size: 42px !important;
        line-height: 1.05 !important;

        letter-spacing: -1px !important;

        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;

        box-sizing: border-box;
    }

    .about-hero-text h1 span {
        display: inline !important;
    }

    .about-hero-text p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
        line-height: 1.6 !important;

        box-sizing: border-box;
    }


    /* ABOUT VISUAL */

    .about-hero-visual {
        position: relative !important;

        width: 100% !important;
        max-width: 340px !important;
        height: 340px !important;

        min-width: 0 !important;

        margin: 35px auto 0 !important;

        transform: none !important;

        box-sizing: border-box;
    }

    .about-orbit {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* =================================================
       COURSES HERO
    ================================================= */

    .courses-hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .courses-hero-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        padding: 45px 20px 40px !important;

        margin: 0 !important;

        box-sizing: border-box;
    }

    .courses-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box;
    }

    .courses-hero-content h1 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 18px 0 !important;

        font-size: 42px !important;
        line-height: 1.05 !important;

        letter-spacing: -1px !important;

        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;

        box-sizing: border-box;
    }

    .courses-hero-content h1 span {
        display: inline !important;
    }

    .courses-hero-content p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
        line-height: 1.6 !important;

        box-sizing: border-box;
    }


    /* COURSES HERO POINTS */

    .courses-hero-points {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-wrap: wrap !important;

        gap: 8px !important;

        box-sizing: border-box;
    }

    .courses-hero-points span {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* COURSES VISUAL */

    .courses-hero-visual {
        position: relative !important;

        width: 100% !important;
        max-width: 340px !important;
        height: 340px !important;

        min-width: 0 !important;

        margin: 35px auto 0 !important;

        transform: none !important;

        box-sizing: border-box;
    }


    /* =================================================
       IMPORTANT — STOP DESKTOP FIXED WIDTHS
    ================================================= */

    .about-hero-container > *,
    .courses-hero-container > * {
        min-width: 0 !important;
    }


    /* =================================================
       SMALL PHONES
    ================================================= */

    @media screen and (max-width: 400px) {

        .about-hero-container,
        .courses-hero-container {
            padding-left: 18px !important;
            padding-right: 18px !important;
        }

        .about-hero-text h1,
        .courses-hero-content h1 {
            font-size: 38px !important;
            letter-spacing: -0.8px !important;
        }

        .about-hero-visual,
        .courses-hero-visual {
            max-width: 300px !important;
            height: 300px !important;
        }

    }

}

/* =====================================================
   MOBILE HERO — ABOUT & COURSES
   FINAL RESPONSIVE FIX
   ===================================================== */

@media screen and (max-width: 768px) {

    /* Prevent horizontal scrolling */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }


    /* =================================================
       ABOUT HERO
       ================================================= */

    .about-hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-hero-container {
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        padding: 50px 20px 40px !important;

        margin: 0 !important;
        box-sizing: border-box;
    }

    .about-hero-text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box;
    }

    .about-hero-text h1 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 18px 0 !important;

        font-size: 42px !important;
        line-height: 1.05 !important;

        letter-spacing: -1px !important;

        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;

        box-sizing: border-box;
    }

    .about-hero-text h1 span {
        display: inline !important;
    }

    .about-hero-text p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
        line-height: 1.6 !important;

        box-sizing: border-box;
    }


    /* ABOUT VISUAL */

    .about-hero-visual {
        position: relative !important;

        width: 100% !important;
        max-width: 340px !important;
        height: 340px !important;

        min-width: 0 !important;

        margin: 35px auto 0 !important;

        transform: none !important;

        box-sizing: border-box;
    }

    .about-orbit {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* =================================================
       COURSES HERO
       ================================================= */

    .courses-hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .courses-hero-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        padding: 50px 20px 40px !important;

        margin: 0 !important;

        box-sizing: border-box;
    }

    .courses-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box;
    }

    .courses-hero-content h1 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 18px 0 !important;

        font-size: 42px !important;
        line-height: 1.05 !important;

        letter-spacing: -1px !important;

        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;

        box-sizing: border-box;
    }

    .courses-hero-content h1 span {
        display: inline !important;
    }

    .courses-hero-content p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
        line-height: 1.6 !important;

        box-sizing: border-box;
    }


    /* =================================================
       COURSE HERO POINTS
       ================================================= */

    .courses-hero-points {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-wrap: wrap !important;

        gap: 8px !important;

        box-sizing: border-box;
    }

    .courses-hero-points span {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* =================================================
       COURSES VISUAL
       ================================================= */

    .courses-hero-visual {
        position: relative !important;

        width: 100% !important;
        max-width: 340px !important;
        height: 340px !important;

        min-width: 0 !important;

        margin: 35px auto 0 !important;

        transform: none !important;

        box-sizing: border-box;
    }


    /* =================================================
       STOP DESKTOP FIXED WIDTHS
       ================================================= */

    .about-hero-container > *,
    .courses-hero-container > * {
        min-width: 0 !important;
    }


    /* =================================================
       SMALL PHONES
       ================================================= */

    @media screen and (max-width: 400px) {

        .about-hero-container,
        .courses-hero-container {
            padding-left: 18px !important;
            padding-right: 18px !important;
        }

        .about-hero-text h1,
        .courses-hero-content h1 {
            font-size: 38px !important;
            letter-spacing: -0.8px !important;
        }

        .about-hero-visual,
        .courses-hero-visual {
            max-width: 300px !important;
            height: 300px !important;
        }

    }

}

/* =====================================================
   MOBILE — MOVE ABOUT & COURSES HERO UP
   ===================================================== */

@media screen and (max-width: 768px) {

    .about-hero-container,
    .courses-hero-container {
        padding-top: 30px !important;
    }

}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media screen and (max-width: 400px) {

    .about-hero-container,
    .courses-hero-container {
        padding-top: 0px !important;
    }

}

/* =========================================================
   POLICY PAGES
   Privacy Policy / Terms & Conditions / Refund & Cancellation
========================================================= */


/* =========================================================
   POLICY HERO
========================================================= */

.policy-hero {
    width: 100%;
    padding: 90px 20px 80px;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(124, 58, 237, 0.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 60%,
            rgba(37, 99, 235, 0.08),
            transparent 35%
        ),
        #ffffff;

    border-bottom: 1px solid #e5e7eb;
    box-sizing: border-box;
}


.policy-hero-content {
    width: min(1100px, 100%);
    margin: 0 auto;
    text-align: center;
}


.policy-hero .about-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 999px;

    background: #eff6ff;
    border: 1px solid #dbeafe;

    color: #2563eb;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 24px;
}


.policy-hero h1 {
    margin: 0;

    color: #0f172a;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}


.policy-hero h1 span {
    background: linear-gradient(
        90deg,
        #2563eb,
        #7c3aed
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


.policy-hero p {
    max-width: 720px;

    margin: 24px auto 0;

    color: #64748b;

    font-size: 19px;

    line-height: 1.7;
}



/* =========================================================
   POLICY MAIN SECTION
========================================================= */

.policy-section {
    width: 100%;

    padding: 70px 20px 100px;

    background: #ffffff;

    box-sizing: border-box;
}


.policy-container {
    width: min(900px, 100%);

    margin: 0 auto;

    color: #334155;

    font-size: 17px;

    line-height: 1.8;
}



/* =========================================================
   BACK BUTTON
========================================================= */

.back-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    margin-bottom: 28px;

    border: 1px solid #dbeafe;

    border-radius: 10px;

    background: #f8fbff;

    color: #2563eb;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}


.back-button:hover {
    background: #eff6ff;

    border-color: #bfdbfe;

    transform: translateY(-1px);
}



/* =========================================================
   LAST UPDATED
========================================================= */

.policy-updated {
    margin: 0 0 35px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e5e7eb;

    color: #64748b;

    font-size: 14px;

    font-weight: 600;
}



/* =========================================================
   POLICY TEXT
========================================================= */

.policy-container p {
    margin: 0 0 22px;

    color: #475569;
}


.policy-container h2 {
    margin: 55px 0 18px;

    color: #0f172a;

    font-size: 30px;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -0.5px;
}


.policy-container h3 {
    margin: 32px 0 12px;

    color: #1e293b;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 750;
}



/* =========================================================
   POLICY LISTS
========================================================= */

.policy-container ul {
    margin: 0 0 25px;

    padding-left: 28px;
}


.policy-container li {
    margin-bottom: 9px;

    padding-left: 5px;

    color: #475569;
}


.policy-container li::marker {
    color: #2563eb;
}



/* =========================================================
   POLICY LINKS
========================================================= */

.policy-container a {
    color: #2563eb;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}


.policy-container a:hover {
    color: #7c3aed;

    text-decoration: underline;
}



/* =========================================================
   SIGNATURE
========================================================= */

.policy-signature {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 4px;

    margin-top: 65px;

    padding-top: 28px;

    border-top: 1px solid #e5e7eb;
}


.policy-signature strong {
    color: #0f172a;

    font-size: 20px;

    font-weight: 800;
}


.policy-signature span {
    color: #64748b;

    font-size: 14px;
}



/* =========================================================
   REFUND TABLE
========================================================= */

.refund-table-wrapper {
    width: 100%;

    margin: 28px 0 40px;

    overflow-x: auto;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);
}


.refund-table {
    width: 100%;

    min-width: 620px;

    border-collapse: collapse;

    background: #ffffff;
}


.refund-table th {
    padding: 17px 20px;

    background: linear-gradient(
        90deg,
        #eff6ff,
        #f5f3ff
    );

    color: #0f172a;

    text-align: left;

    font-size: 15px;

    font-weight: 750;

    border-bottom: 1px solid #dbeafe;
}


.refund-table td {
    padding: 17px 20px;

    color: #475569;

    font-size: 15px;

    line-height: 1.6;

    border-bottom: 1px solid #e5e7eb;
}


.refund-table tbody tr:last-child td {
    border-bottom: none;
}


.refund-table tbody tr:hover {
    background: #fafbff;
}



/* =========================================================
   MOBILE POLICY PAGES
========================================================= */

@media (max-width: 768px) {

    .policy-hero {
        padding: 55px 18px 52px;
    }


    .policy-hero-content {
        width: 100%;
    }


    .policy-hero .about-tag {
        padding: 9px 18px;

        margin-bottom: 20px;

        font-size: 12px;

        letter-spacing: 1.8px;
    }


    .policy-hero h1 {
        font-size: 42px;

        line-height: 1.08;

        letter-spacing: -1.5px;

        word-break: normal;
    }


    .policy-hero p {
        margin-top: 20px;

        font-size: 16px;

        line-height: 1.65;
    }


    .policy-section {
        padding: 45px 18px 70px;
    }


    .policy-container {
        width: 100%;

        font-size: 16px;

        line-height: 1.75;
    }


    .back-button {
        padding: 9px 15px;

        margin-bottom: 22px;

        font-size: 14px;
    }


    .policy-updated {
        margin-bottom: 28px;

        padding-bottom: 18px;

        font-size: 13px;
    }


    .policy-container h2 {
        margin-top: 42px;

        margin-bottom: 15px;

        font-size: 25px;

        line-height: 1.25;
    }


    .policy-container h3 {
        margin-top: 27px;

        margin-bottom: 10px;

        font-size: 19px;
    }


    .policy-container p {
        margin-bottom: 19px;
    }


    .policy-container ul {
        padding-left: 23px;

        margin-bottom: 22px;
    }


    .policy-container li {
        margin-bottom: 8px;

        padding-left: 3px;
    }


    .policy-signature {
        margin-top: 50px;

        padding-top: 24px;
    }


    .refund-table-wrapper {
        margin-top: 22px;

        margin-bottom: 32px;

        border-radius: 12px;
    }


    .refund-table th,
    .refund-table td {
        padding: 14px 15px;

        font-size: 14px;
    }

}



/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .policy-hero {
        padding: 48px 16px 45px;
    }


    .policy-hero h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .policy-hero p {
        font-size: 15px;
    }


    .policy-section {
        padding: 38px 16px 60px;
    }


    .policy-container {
        font-size: 15.5px;
    }


    .policy-container h2 {
        font-size: 23px;

        margin-top: 38px;
    }


    .policy-container h3 {
        font-size: 18px;
    }


    .policy-container ul {
        padding-left: 21px;
    }

}



/* =========================================================
   POLICY NAVBAR MOBILE FIX
========================================================= */

@media (max-width: 768px) {

    .navbar {
        position: relative;
    }


    .mobile-menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;
    }


    .mobile-nav {
        z-index: 9999;
    }

}

/* =========================================================
   FAICEE COURSE REGISTRATION
   ERROR / VALIDATION UI
========================================================= */

/* -----------------------------
   GENERAL FIELD ERROR
----------------------------- */

.form-group input.invalid {
    border-color: #DC2626 !important;
    background: #FEF2F2;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.05);
}

.form-group input.valid {
    border-color: #16A34A !important;
    background: #F0FDF4;
}


/* -----------------------------
   FIELD ERROR MESSAGE
----------------------------- */

.field-message {
    display: none;
    margin-top: 6px;
    padding: 0;
    color: #DC2626;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.field-message.show {
    display: block;
}


/* -----------------------------
   FORM ERROR BOX
----------------------------- */

.form-error {
    display: none;

    margin-top: 18px;
    padding: 13px 15px;

    border: 1px solid #FECACA;
    border-radius: 10px;

    background: #FEF2F2;
    color: #B91C1C;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.form-error.show {
    display: block;
}


/* -----------------------------
   CONSENT ERROR
----------------------------- */

.consent-box.invalid {
    border-color: #DC2626;
    background: #FEF2F2;
}

.consent-error {
    display: none;

    margin-top: 8px;

    color: #DC2626;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.consent-error.show {
    display: block;
}


/* -----------------------------
   OTP MESSAGE
----------------------------- */

.otp-message {
    display: none;

    margin-top: 12px;
    padding: 11px 13px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.otp-message.show {
    display: block;
}

.otp-message.success {
    color: #15803D;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
}

.otp-message.error {
    color: #B91C1C;
    background: #FEF2F2;
    border: 1px solid #FECACA;
}


/* -----------------------------
   OTP INVALID
----------------------------- */

.otp-input.invalid {
    border-color: #DC2626 !important;
    background: #FEF2F2;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.05);
}


/* -----------------------------
   OTP VALID
----------------------------- */

.otp-input.valid {
    border-color: #16A34A !important;
    background: #F0FDF4;
}


/* -----------------------------
   VERIFIED BADGE
----------------------------- */

.verified-badge {
    display: none;

    margin-top: 15px;
    padding: 12px;

    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 9px;

    color: #15803D;

    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.verified-badge.show {
    display: block;
}


/* -----------------------------
   CHECKOUT BUTTON
----------------------------- */

.checkout-button {
    display: none;

    width: 100%;
    min-height: 54px;

    margin-top: 14px;

    border-radius: 10px;

    background: #2563EB;
    color: #FFFFFF;

    text-decoration: none;

    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;

    transition: 0.25s ease;
}

.checkout-button.show {
    display: flex;
}

.checkout-button:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}


/* -----------------------------
   BUTTON DISABLED
----------------------------- */

.register-button:disabled {
    background: #94A3B8;
    color: #FFFFFF;
    cursor: not-allowed;
    transform: none;
}

.verify-button:disabled {
    background: #94A3B8;
    color: #FFFFFF;
    cursor: not-allowed;
}

.resend-button:disabled {
    color: #94A3B8;
    cursor: not-allowed;
}


/* -----------------------------
   SMOOTH ERROR ANIMATION
----------------------------- */

.form-error.show,
.field-message.show,
.consent-error.show,
.otp-message.show {
    animation: errorAppear 0.2s ease;
}

@keyframes errorAppear {

    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* -----------------------------
   MOBILE
----------------------------- */

@media (max-width: 700px) {

    .form-error {
        font-size: 12px;
        padding: 12px 13px;
    }

    .field-message,
    .consent-error {
        font-size: 11px;
    }

    .checkout-button {
        min-height: 52px;
    }

}

/* =========================================================
   FAICEE — COURSE CHECKOUT PAGE
   Paste this at the VERY BOTTOM of style.css
========================================================= */


/* =========================================================
   CHECKOUT PAGE
========================================================= */

.checkout-page {
    min-height: 100vh;
    padding: 70px 20px 90px;
    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #0B1220 0%,
            #111C35 28%,
            #1E3A5F 45%,
            #F8FAFC 68%,
            #FFFFFF 100%
        );
}


.checkout-container {
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
}


/* =========================================================
   CHECKOUT HEADER
========================================================= */

.checkout-header {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 35px;
}


.checkout-header .tag {
    color: #06B6D4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}


.checkout-header h1 {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1.2;
}


.checkout-header h1 span {
    color: #06B6D4;
}


.checkout-header p {
    margin: 0;
    color: #CBD5E1;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CHECKOUT CARD
========================================================= */

.checkout-card {
    position: relative;
    overflow: hidden;

    background: #FFFFFF;

    border-radius: 24px;

    padding: 35px;

    box-shadow:
        0 30px 80px
        rgba(15, 23, 42, 0.25);
}


.checkout-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #2563EB,
            #06B6D4
        );
}


/* =========================================================
   LOGO
========================================================= */

.checkout-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}


.checkout-logo img {
    width: 95px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   REGISTRATION ERROR
========================================================= */

.registration-error {
    display: none;

    margin-bottom: 20px;

    padding: 18px;

    background: #FEF2F2;

    border: 1px solid #FECACA;

    border-radius: 12px;

    color: #B91C1C;

    text-align: center;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.6;
}


.registration-error.show {
    display: block;
}


/* =========================================================
   COURSE SUMMARY
========================================================= */

.course-summary {
    margin-bottom: 28px;

    padding: 22px;

    background:
        linear-gradient(
            135deg,
            #EFF6FF,
            #ECFEFF
        );

    border: 1px solid #BAE6FD;

    border-radius: 15px;
}


.course-summary-label {
    margin-bottom: 7px;

    color: #2563EB;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.course-summary-main {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.course-summary h2 {
    margin: 0 0 5px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
}


.course-summary p {
    margin: 0;

    color: #64748B;

    font-size: 13px;

    line-height: 1.5;
}


.course-summary-price {
    color: #2563EB;

    font-size: 26px;
    font-weight: 900;

    white-space: nowrap;
}


/* =========================================================
   CHECKOUT SECTIONS
========================================================= */

.checkout-section {
    margin-bottom: 28px;
}


.checkout-section:last-of-type {
    margin-bottom: 0;
}


.section-heading {
    margin-bottom: 15px;

    color: #111827;

    font-size: 16px;
    font-weight: 800;
}


/* =========================================================
   STUDENT DETAILS
========================================================= */

.details-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.detail-item {
    padding: 15px;

    background: #F8FAFC;

    border: 1px solid #E5E7EB;

    border-radius: 11px;

    box-sizing: border-box;
}


.detail-item.full {
    grid-column: 1 / -1;
}


.detail-label {
    display: block;

    margin-bottom: 5px;

    color: #6B7280;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.detail-value {
    color: #111827;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.55;

    word-break: break-word;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.order-box {
    padding: 20px;

    background: #F8FAFC;

    border: 1px solid #E5E7EB;

    border-radius: 14px;
}


.order-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

    color: #4B5563;

    font-size: 14px;
}


.order-row strong {
    color: #111827;
}


.order-row.total {
    margin-top: 10px;

    padding-top: 17px;

    border-top: 1px solid #D1D5DB;

    color: #111827;

    font-size: 17px;
    font-weight: 800;
}


.order-row.total strong {
    color: #2563EB;

    font-size: 23px;
}


/* =========================================================
   SECURE PAYMENT NOTE
========================================================= */

.secure-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 20px;

    padding: 13px;

    background: #F0FDF4;

    border: 1px solid #BBF7D0;

    border-radius: 10px;

    color: #15803D;

    font-size: 12px;
    font-weight: 700;

    text-align: center;
}


/* =========================================================
   PAYMENT BUTTON
========================================================= */

.pay-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 55px;

    margin-top: 20px;

    padding: 0 20px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #06B6D4
        );

    color: #FFFFFF;

    font-family: inherit;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    text-decoration: none;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}


.pay-button:hover:not(:disabled) {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(37, 99, 235, 0.25);
}


.pay-button:active:not(:disabled) {
    transform: translateY(0);
}


.pay-button:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


/* =========================================================
   PROCESSING MESSAGE
========================================================= */

.processing-note {
    display: none;

    margin-top: 12px;

    color: #64748B;

    font-size: 12px;

    text-align: center;
}


.processing-note.show {
    display: block;
}


/* =========================================================
   PAYMENT MESSAGE
========================================================= */

.payment-message {
    display: none;

    margin-top: 15px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.6;
}


.payment-message.show {
    display: block;
}


/* ERROR */

.payment-message.error {
    color: #B91C1C;

    background: #FEF2F2;

    border: 1px solid #FECACA;
}


/* INFO */

.payment-message.info {
    color: #1D4ED8;

    background: #EFF6FF;

    border: 1px solid #BFDBFE;
}


/* SUCCESS */

.payment-message.success {
    color: #15803D;

    background: #F0FDF4;

    border: 1px solid #BBF7D0;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.back-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 50px;

    margin-top: 12px;

    padding: 0 20px;

    border-radius: 10px;

    border: 1px solid #D1D5DB;

    background: #FFFFFF;

    color: #2563EB;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.back-button:hover {
    background: #F8FAFC;

    border-color: #2563EB;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .checkout-page {
        padding:
            45px 14px 60px;
    }


    .checkout-header {
        margin-bottom: 28px;
    }


    .checkout-header .tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }


    .checkout-header h1 {
        font-size: 30px;
    }


    .checkout-header p {
        font-size: 13px;
    }


    .checkout-card {
        padding:
            25px 17px;

        border-radius: 18px;
    }


    .checkout-logo {
        margin-bottom: 20px;
    }


    .checkout-logo img {
        width: 90px;
    }


    .course-summary {
        padding: 18px;
    }


    .course-summary-main {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .course-summary h2 {
        font-size: 20px;
    }


    .course-summary-price {
        font-size: 24px;
    }


    .details-grid {
        grid-template-columns: 1fr;
    }


    .detail-item.full {
        grid-column: auto;
    }


    .detail-item {
        padding: 14px;
    }


    .order-box {
        padding: 16px;
    }


    .order-row {
        font-size: 13px;
    }


    .order-row.total {
        font-size: 16px;
    }


    .order-row.total strong {
        font-size: 21px;
    }


    .secure-note {
        font-size: 11px;

        line-height: 1.5;
    }


    .pay-button {
        min-height: 54px;

        font-size: 14px;
    }


    .back-button {
        min-height: 48px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .checkout-page {
        padding-left: 10px;
        padding-right: 10px;
    }


    .checkout-card {
        padding:
            22px 14px;
    }


    .checkout-header h1 {
        font-size: 27px;
    }


    .course-summary h2 {
        font-size: 18px;
    }


    .course-summary-price {
        font-size: 22px;
    }

}

/* =====================================================
   FAICEE CHECKOUT — FINAL CLEAN THEME
   Paste at the VERY BOTTOM of your existing <style>
===================================================== */


/* ---------- PAGE BACKGROUND ---------- */

.checkout-page {
    background: #F8FAFC !important;
    min-height: 100vh;
}


/* ---------- CHECKOUT HEADER ---------- */

.checkout-header {
    color: #111827 !important;
}

.checkout-header .tag {
    color: #2563EB !important;
}

.checkout-header h1 {
    color: #111827 !important;
    font-weight: 800;
}

.checkout-header h1 span {
    background: linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-header p {
    color: #64748B !important;
}


/* ---------- MAIN CARD ---------- */

.checkout-card {
    background: #FFFFFF !important;

    border: 1px solid #E5E7EB !important;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08) !important;
}

.checkout-card::before {
    background: linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    ) !important;
}


/* ---------- LOGO ---------- */

.checkout-logo img {
    width: 95px;
    height: auto;
}


/* =====================================================
   COURSE SUMMARY
===================================================== */

.course-summary {
    background: linear-gradient(
        135deg,
        #EFF6FF,
        #F5F3FF
    ) !important;

    border: 1px solid #DBEAFE !important;
}

.course-summary-label {
    color: #2563EB !important;
}

.course-summary h2 {
    color: #111827 !important;
}

.course-summary-price {
    background: linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    color: #2563EB !important;
    font-weight: 800 !important;
}


/* =====================================================
   DETAIL BOXES
===================================================== */

.detail-item {
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
}

.detail-label {
    color: #64748B !important;
}

.detail-value {
    color: #111827 !important;
}


/* =====================================================
   ORDER SUMMARY
===================================================== */

.order-box {
    background: #F8FAFC !important;
    border: 1px solid #E5E7EB !important;
}

.order-row {
    color: #475569 !important;
}

.order-row strong {
    color: #111827 !important;
}

.order-row.total strong {
    background: linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =====================================================
   SECURE PAYMENT
===================================================== */

.secure-note {
    background: #F0FDF4 !important;
    border: 1px solid #BBF7D0 !important;
    color: #15803D !important;
}


/* =====================================================
   PAY BUTTON
===================================================== */

.pay-button {
    background: linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    ) !important;

    box-shadow: none !important;
}

.pay-button:hover {
    background: linear-gradient(
        90deg,
        #1D4ED8,
        #6D28D9
    ) !important;

    transform: translateY(-2px);
}


/* =====================================================
   BACK BUTTON
===================================================== */

.back-button {
    color: #2563EB !important;
    background: #FFFFFF !important;
    border-color: #DBEAFE !important;
}

.back-button:hover {
    background: #F8FAFC !important;
    border-color: #2563EB !important;
}


/* =====================================================
   ERROR BOX
===================================================== */

.registration-error {
    background: #FEF2F2 !important;
    border: 1px solid #FECACA !important;
    color: #B91C1C !important;
}


/* =====================================================
   REMOVE "FAICEE" TEXT NEXT TO LOGO
   Keeps the logo itself.
===================================================== */

.navbar > a::after {
    display: none !important;
}


/* If any text-based brand name exists beside the logo */

.navbar .brand-name,
.navbar .logo-text,
.navbar .site-name {
    display: none !important;
}


/* =====================================================
   FOOTER LOGO / BRAND TEXT CLEANUP
===================================================== */

.footer-logo {
    width: 90px;
    height: auto;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .checkout-page {
        background: #F8FAFC !important;
    }

    .checkout-header h1 {
        font-size: 32px !important;
    }

    .checkout-card {
        box-shadow:
            0 12px 35px rgba(15, 23, 42, 0.07) !important;
    }

}

/* =====================================================
   MOBILE HEADER FIX — HOME
   Only fixes navbar fitting on small screens
===================================================== */

@media (max-width: 700px) {

    .navbar {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        overflow: visible;
    }

    .brand-link {
        flex-shrink: 1;
        min-width: 0;
    }

    .navbar .logo {
        max-width: 120px;
        width: 120px;
        height: auto;
        display: block;
    }

    .mobile-menu-toggle {
        flex-shrink: 0;
        margin-left: auto;
    }

    .mobile-nav {
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
        right: 15px;
    }

}