/* ── VERITAS UNIVERSITY STYLES FOR SAHL ACADEMY ── */
    #about {
        background: #f8f9fb;
        color: #0d1b2a;
        font-family: 'Outfit', system-ui, sans-serif;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
        line-height: 1.6;
    }
    #about * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    #about a {
        text-decoration: none;
        color: inherit;
    }
    #about button {
        font-family: 'Outfit', sans-serif;
        cursor: pointer;
        border: none;
        outline: none;
    }
    #about .v-university-container {
        width: 100%;
        background: #f8f9fb;
    }
    /* ── SECTION 1 — VERTICAL EXPANDING PANELS ── */
    #about #section-vertical {
        width: 100vw;
        height: 82vh;
        min-height: 520px;
        display: flex;
        flex-direction: row;
        position: relative;
        overflow: hidden;
    }
    #about .vert-topbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 32px 0;
        pointer-events: none;
    }
    #about .vert-brand {
        font-family: 'Bodoni Moda', Georgia, serif;
        font-size: 15px;
        font-weight: 600;
        color: rgba(248, 249, 251, 0.9);
        letter-spacing: 0.02em;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    #about .vert-brand::before {
        content: 'V';
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.28);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: italic;
        font-size: 15px;
        border: 1px solid rgba(201, 168, 76, 0.4);
        flex-shrink: 0;
    }
    #about .vert-num {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(248, 249, 251, 0.32);
    }
    #about .v-panel {
        position: relative;
        flex: 1;
        height: 100%;
        overflow: hidden;
        cursor: pointer;
        outline: none;
        transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        -webkit-tap-highlight-color: transparent;
    }
    #about .v-panel:hover {
        flex: 2.8;
    }
    #about .v-panel img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s;
        filter: brightness(0.6) saturate(0.65);
        will-change: transform;
        pointer-events: none;
    }
    #about .v-panel:hover img {
        transform: scale(1.06);
        filter: brightness(0.78) saturate(0.82);
    }
    #about .vp-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.25) 52%, transparent 100%);
        pointer-events: none;
    }
    #about .v-panel::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: rgba(248, 249, 251, 0.06);
        z-index: 3;
        pointer-events: none;
    }
    #about .v-panel:last-child::before {
        display: none;
    }
    #about .vp-side {
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%) rotate(90deg);
        transform-origin: center center;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(248, 249, 251, 0.16);
        white-space: nowrap;
        z-index: 4;
        pointer-events: none;
        transition: opacity 0.35s;
    }
    #about .v-panel:hover .vp-side {
        opacity: 0;
    }
    #about .vp-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 4;
        padding: 24px 20px 28px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        pointer-events: none;
    }
    #about .vp-idx {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(201, 168, 76, 0.7);
        margin-bottom: 3px;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.04s, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
    }
    #about .v-panel:hover .vp-idx {
        opacity: 1;
        transform: translateY(0);
    }
    #about .vp-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        width: fit-content;
        border: 1px solid transparent;
    }
    #about .vp-chip.sc {
        background: rgba(30, 58, 95, 0.35);
        color: #a8ccee;
        border-color: rgba(30, 58, 95, 0.45);
    }
    #about .vp-chip.te {
        background: rgba(13, 27, 42, 0.4);
        color: #90b8d8;
        border-color: rgba(30, 58, 95, 0.4);
    }
    #about .vp-chip.la {
        background: rgba(201, 168, 76, 0.22);
        color: #f0d898;
        border-color: rgba(201, 168, 76, 0.35);
    }
    #about .vp-chip.ar {
        background: rgba(42, 79, 122, 0.3);
        color: #9ec4e8;
        border-color: rgba(42, 79, 122, 0.4);
    }
    #about .vp-chip.me {
        background: rgba(30, 48, 80, 0.35);
        color: #b0cce8;
        border-color: rgba(30, 48, 80, 0.4);
    }
    #about .vp-chip.bs {
        background: rgba(201, 168, 76, 0.18);
        color: #dbbf6a;
        border-color: rgba(201, 168, 76, 0.3);
    }
    #about .vp-title {
      
        font-size: clamp(0.9rem, 1.2vw, 1.25rem);
        font-weight: 600;
        color: #fff;
        line-height: 1.2;
        letter-spacing: -0.01em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about .v-panel:hover .vp-title {
        transform: translateY(-3px);
    }
    #about .vp-desc {
        font-size: 11.5px;
        color: rgba(248, 249, 251, 0.55);
        line-height: 1.62;
        font-weight: 300;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
    }
    #about .v-panel:hover .vp-desc {
        max-height: 64px;
        opacity: 1;
    }
    #about .vp-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }
    #about .v-panel:hover .vp-cta {
        opacity: 1;
        transform: translateY(0);
    }
    #about .vp-cta-lbl {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #dbbf6a;
        display: flex;
        align-items: center;
        gap: 7px;
    }
    #about .vp-play-circle {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.2);
        border: 1px solid rgba(201, 168, 76, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about .vp-play-circle svg {
        width: 9px;
        height: 9px;
        fill: #dbbf6a;
        margin-left: 2px;
    }
    #about .v-panel:hover .vp-play-circle {
        background: rgba(201, 168, 76, 0.35);
        transform: scale(1.08);
    }
    #about .vp-prog {
        font-size: 9.5px;
        font-weight: 600;
        color: rgba(248, 249, 251, 0.32);
    }
    #about .vert-hint {
        position: absolute;
        bottom: 22px;
        right: 30px;
        z-index: 20;
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(248, 249, 251, 0.22);
        pointer-events: none;
        animation: hintPulse 3s ease-in-out infinite;
    }
    #about .vert-hint svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
    }
    @keyframes hintPulse {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 0.9; }
    }

    /* VIDEO MODAL */
    #about #vpModal {
        position: fixed;
        inset: 0;
        z-index: 9500;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about #vpModal.open {
        opacity: 1;
        pointer-events: all;
    }
    #about #vpScrim {
        position: absolute;
        inset: 0;
        background: rgba(13, 27, 42, 0.78);
        backdrop-filter: blur(22px);
    }
    #about #vpBox {
        position: relative;
        z-index: 2;
        width: min(820px, 94vw);
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 48px 120px rgba(13, 27, 42, 0.5);
        border: 1px solid rgba(30, 58, 95, 0.12);
        transform: scale(0.88) translateY(30px);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about #vpModal.open #vpBox {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    #about .vp-modal-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 18px;
        background: #f8f9fb;
        border-bottom: 1px solid rgba(13, 27, 42, 0.1);
    }
    #about .vp-modal-bar-l {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    #about .vp-modal-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #c9a84c;
    }
    #about #vpTitle {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #0d1b2a;
    }
    #about .vp-close-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1.5px solid rgba(13, 27, 42, 0.1);
        background: #eef0f5;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        padding: 0;
    }
    #about .vp-close-btn:hover {
        background: #0d1b2a;
        border-color: #0d1b2a;
    }
    #about .vp-close-btn:hover svg {
        stroke: #ffffff;
    }
    #about .vp-close-btn svg {
        width: 11px;
        height: 11px;
        stroke: #0d1b2a;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
    }
    #about #vpFrame {
        width: 100%;
        aspect-ratio: 16/9;
    }
    #about #vpFrame iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

    /* MARQUEE */
    #about .mq-bar {
        background: #0d1b2a;
        height: 50px;
        overflow: hidden;
        display: flex;
        align-items: center;
        position: relative;
    }
    #about .mq-bar::before,
    #about .mq-bar::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
    }
    #about .mq-bar::before {
        left: 0;
        background: linear-gradient(90deg, #0d1b2a, transparent);
    }
    #about .mq-bar::after {
        right: 0;
        background: linear-gradient(-90deg, #0d1b2a, transparent);
    }
    #about .mq-inner {
        display: flex;
        white-space: nowrap;
        animation: mqRun 30s linear infinite;
    }
    #about .mq-it {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        padding-right: 16px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(248, 249, 251, 0.28);
    }
    #about .mq-dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #c9a84c;
        opacity: 0.6;
        flex-shrink: 0;
    }
    @keyframes mqRun {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    /* ── SECTION 2 — FEATURED COURSES ── */
    #about #section-grid {
        position: relative;
        overflow: hidden;
        background: #f8f9fb;
        padding-bottom: 0;
    }
    #about .sg-atm {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
    }
    #about .sg-orb {
        position: absolute;
        border-radius: 50%;
    }
    #about .sg-orb.o1 {
        width: 900px;
        height: 900px;
        top: -320px;
        right: -180px;
        background: radial-gradient(circle, rgba(30, 58, 95, 0.07) 0%, transparent 65%);
        filter: blur(50px);
    }
    #about .sg-orb.o2 {
        width: 750px;
        height: 750px;
        bottom: -200px;
        left: -160px;
        background: radial-gradient(circle, rgba(13, 27, 42, 0.08) 0%, transparent 65%);
        filter: blur(50px);
    }
    #about .sg-orb.o3 {
        width: 460px;
        height: 460px;
        top: 42%;
        left: 36%;
        background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
        filter: blur(70px);
    }
    #about .sg-atm::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(30, 58, 95, 0.06) 1px, transparent 1px);
        background-size: 36px 36px;
        pointer-events: none;
    }
    #about .sg-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 8vw 0;
        position: relative;
        z-index: 4;
    }
    #about .sg-topbar-left {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: #5a6a7e;
    }
    #about .sg-topbar-line {
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, #1e3a5f, #c9a84c);
        opacity: 0.5;
    }
    #about .sg-topbar-right {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(30, 58, 95, 0.3);
    }
    #about .sg-hdr {
        padding: 30px 8vw 0;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 40px;
        position: relative;
        z-index: 4;
    }
    #about .sg-hdr-l .eyebrow {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: #1e3a5f;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    #about .sg-hdr-l .eyebrow::after {
        content: '';
        width: 36px;
        height: 1px;
        background: linear-gradient(90deg, rgba(30, 58, 95, 0.45), transparent);
    }
    #about .sg-hdr-l h2 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: clamp(2.8rem, 5.5vw, 4.8rem);
        font-weight: 600;
        color: #0d1b2a;
        letter-spacing: -0.03em;
        line-height: 0.96;
    }
    #about .sg-hdr-l h2 i {
        font-style: italic;
        background: linear-gradient(135deg, #1e3a5f 0%, #2629d3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    #about .sg-hdr-r {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 18px;
        padding-bottom: 4px;
    }
    #about .sg-hdr-r p {
        font-size: 12px;
        color: #5a6a7e;
        line-height: 1.85;
        max-width: 200px;
        text-align: right;
        font-weight: 300;
    }
    #about .sg-controls {
        padding: 30px 8vw 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
        position: relative;
        z-index: 4;
    }
    #about .sg-filters {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }
    #about .sg-filter-btn {
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 28px;
        cursor: pointer;
        border: 1px solid rgba(30, 58, 95, 0.12);
        background: rgba(255, 255, 255, 0.75);
        color: #5a6a7e;
        transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(8px);
    }
    #about .sg-filter-btn:hover {
        border-color: rgba(30, 58, 95, 0.3);
        color: #1e3a5f;
        background: #dce6f0;
    }
    #about .sg-filter-btn.active {
        background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 18px rgba(13, 27, 42, 0.22);
    }
    #about .sg-count {
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(30, 58, 95, 0.38);
    }
    #about .sg-grid {
        display: grid;
        grid-template-columns: 1.65fr 1fr 1fr;
        grid-template-rows: auto auto;
        position: relative;
        z-index: 2;
        margin-top: 38px;
        gap: 1px;
        background: rgba(30, 58, 95, 0.09);
    }
    #about .sg-card {
        background: #ffffff;
        display: block;
        text-decoration: none;
        color: inherit;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, box-shadow 0.3s;
        will-change: transform, opacity;
    }
    #about .sg-card::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(145deg, rgba(30, 58, 95, 0), rgba(13, 27, 42, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s;
    }
    #about .sg-card:hover::before {
        opacity: 1;
    }
    #about .sg-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        width: 0;
        background: linear-gradient(90deg, #1e3a5f, #c9a84c);
        transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 3;
        pointer-events: none;
    }
    #about .sg-card:hover::after {
        width: 100%;
    }
    #about .sg-card.vis {
        opacity: 1;
        transform: translateY(0);
    }
    #about .sg-card:nth-child(2) {
        transition-delay: 0.08s;
    }
    #about .sg-card:nth-child(3) {
        transition-delay: 0.16s;
    }
    #about .sg-card:nth-child(4) {
        transition-delay: 0.06s;
    }
    #about .sg-card:nth-child(5) {
        transition-delay: 0.13s;
    }
    #about .sg-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1/3;
    }
    #about .sg-card:hover {
        background: #f3f5f9;
        box-shadow: 0 20px 60px rgba(13, 27, 42, 0.1), 0 4px 16px rgba(30, 58, 95, 0.07);
        z-index: 10;
    }
    #about .sg-img {
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }
    #about .sg-card:nth-child(1) .sg-img {
        height: 310px;
    }
    #about .sg-card:nth-child(n+2) .sg-img {
        height: 148px;
    }
    #about .sg-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s;
        filter: brightness(0.72) saturate(0.65);
        will-change: transform;
    }
    #about .sg-card:hover .sg-img img {
        transform: scale(1.09);
        filter: brightness(0.88) saturate(0.82);
    }
    #about .sg-img-ov {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to bottom, transparent 45%, rgba(255, 255, 255, 0.98) 100%), linear-gradient(to right, rgba(248, 249, 251, 0.2) 0%, transparent 55%);
    }
    #about .sg-img::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background: linear-gradient(108deg, transparent 28%, rgba(255, 255, 255, 0.15) 50%, transparent 72%);
        transform: translateX(-140%);
        transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about .sg-card:hover .sg-img::before {
        transform: translateX(140%);
    }
    #about .sg-level {
        position: absolute;
        bottom: 16px;
        left: 18px;
        z-index: 4;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(30, 58, 95, 0.2);
        color: #1e3a5f;
        backdrop-filter: blur(10px);
    }
    #about .sg-idx {
        position: absolute;
        top: 16px;
        left: 18px;
        z-index: 4;
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: rgba(30, 58, 95, 0.65);
        opacity: 0;
        transform: translateY(-5px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about .sg-card:hover .sg-idx {
        opacity: 1;
        transform: translateY(0);
    }
    #about .sg-badge {
        position: absolute;
        top: 16px;
        right: 18px;
        z-index: 4;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        padding: 4px 11px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(201, 168, 76, 0.25);
        color: #c9a84c;
        backdrop-filter: blur(12px);
        opacity: 0;
        transform: scale(0.88);
        transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    }
    #about .sg-card:hover .sg-badge {
        opacity: 1;
        transform: scale(1);
    }
    #about .sg-body {
        padding: 20px 22px 24px;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
    }
    #about .sg-tag {
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #1e3a5f;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    #about .sg-tag::before {
        content: '';
        width: 12px;
        height: 1px;
        background: linear-gradient(90deg, #1e3a5f, #c9a84c);
        flex-shrink: 0;
    }
    #about .sg-title {
        font-family: 'Bodoni Moda', Georgia, serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: #0d1b2a;
        line-height: 1.26;
        transition: color 0.28s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about .sg-card:nth-child(1) .sg-title {
        font-size: 1.6rem;
        line-height: 1.14;
    }
    #about .sg-card:hover .sg-title {
        background: linear-gradient(135deg, #1e3a5f 0%, #c9a84c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform: translateX(3px);
    }
    #about .sg-desc {
        font-size: 11px;
        color: #5a6a7e;
        line-height: 1.72;
        font-weight: 300;
        margin-top: 8px;
    }
    #about .sg-card:nth-child(n+2) .sg-desc {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.07s, margin-top 0.32s;
    }
    #about .sg-card:nth-child(n+2):hover .sg-desc {
        max-height: 72px;
        opacity: 1;
        margin-top: 8px;
    }
    #about .sg-rating {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
    }
    #about .sg-stars {
        display: flex;
        gap: 2px;
    }
    #about .sg-stars svg {
        width: 9px;
        height: 9px;
        fill: #c9a84c;
        stroke: none;
    }
    #about .sg-rating-val {
        font-size: 9.5px;
        font-weight: 700;
        color: #2c3e55;
    }
    #about .sg-rating-ct {
        font-size: 9px;
        color: #5a6a7e;
    }
    #about .sg-sep {
        height: 1px;
        background: rgba(30, 58, 95, 0.08);
        margin: 14px 0;
    }
    #about .sg-foot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }
    #about .sg-meta {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        color: #5a6a7e;
        font-weight: 400;
    }
    #about .sg-meta svg {
        width: 11px;
        height: 11px;
        stroke: #5a6a7e;
        fill: none;
        stroke-width: 2;
    }
    #about .sg-price {
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #2a4f7a;
        padding: 3px 10px;
        border-radius: 9px;
        background: #dce6f0;
        border: 1px solid rgba(30, 58, 95, 0.18);
    }
    #about .sg-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 13px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.06s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.06s;
    }
    #about .sg-card:hover .sg-cta {
        opacity: 1;
        transform: translateY(0);
    }
    #about .sg-cta-lbl {
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: linear-gradient(135deg, #1e3a5f, #c9a84c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    #about .sg-arrow {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #dce6f0;
        border: 1px solid rgba(30, 58, 95, 0.22);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }
    #about .sg-arrow svg {
        width: 10px;
        height: 10px;
        stroke: #1e3a5f;
        fill: none;
        stroke-width: 2.2;
        transition: transform 0.2s, stroke 0.2s;
    }
    #about .sg-card:hover .sg-arrow {
        background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
        border-color: transparent;
        box-shadow: 0 4px 14px rgba(13, 27, 42, 0.22);
    }
    #about .sg-card:hover .sg-arrow svg {
        transform: translateX(2px);
        stroke: #fff;
    }
    #about .sg-stats-strip {
        position: relative;
        z-index: 4;
        padding: 0 8vw;
        border-top: 1px solid rgba(30, 58, 95, 0.09);
        margin-top: 1px;
        display: grid;
        grid-template-columns: repeat(4, 1fr) auto;
        align-items: center;
        background: #ffffff;
    }
    #about .sg-stat-block {
        padding: 32px 28px 32px 0;
        border-right: 1px solid rgba(30, 58, 95, 0.09);
    }
    #about .sg-stat-block:not(:first-child) {
        padding-left: 28px;
    }
    #about .sg-stat-val {
        font-family: 'Bodoni Moda', Georgia, serif;
        font-size: 2.1rem;
        font-weight: 600;
        background: linear-gradient(135deg, #0d1b2a 0%, #2a4f7a 60%, #c9a84c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
    }
    #about .sg-stat-lbl {
        font-size: 7.5px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #5a6a7e;
        margin-top: 5px;
        display: block;
    }
    #about .sg-stat-cta {
        display: flex;
        gap: 10px;
        align-items: center;
        padding-left: 32px;
    }
    #about .sg-cta-pill {
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 12px 22px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about .sg-cta-pill.gold {
        background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
        color: #fff;
        border: none;
        box-shadow: 0 6px 20px rgba(13, 27, 42, 0.18);
    }
    #about .sg-cta-pill.gold:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(13, 27, 42, 0.28);
    }
    #about .sg-cta-pill.ghost {
        background: transparent;
        color: #5a6a7e;
        border: 1px solid rgba(30, 58, 95, 0.12);
    }
    #about .sg-cta-pill.ghost:hover {
        border-color: rgba(30, 58, 95, 0.28);
        color: #1e3a5f;
        background: #dce6f0;
    }
    #about .sg-hint {
        position: absolute;
        bottom: calc(32px + 90px);
        right: 8vw;
        z-index: 6;
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(30, 58, 95, 0.28);
        pointer-events: none;
        animation: hintPulse 3.5s ease-in-out infinite;
    }
    #about .sg-hint svg {
        width: 11px;
        height: 11px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.5;
    }

    /* COURSE DETAIL MODAL */
    #about #sgModal {
        position: fixed;
        inset: 0;
        z-index: 9400;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about #sgModal.open {
        opacity: 1;
        pointer-events: all;
    }
    #about #sgScrim {
        position: absolute;
        inset: 0;
        background: rgba(13, 27, 42, 0.6);
        backdrop-filter: blur(28px) saturate(1.4);
    }
    #about #sgBox {
        position: relative;
        z-index: 2;
        width: min(780px, 95vw);
        max-height: 92vh;
        border-radius: 24px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 60px 160px rgba(13, 27, 42, 0.18), 0 0 0 1px rgba(30, 58, 95, 0.1), 0 0 0 4px rgba(201, 168, 76, 0.05);
        transform: scale(0.84) translateY(36px);
        opacity: 0;
        transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }
    #about #sgModal.open #sgBox {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    #about .sgm-chrome {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 22px;
        background: #f8f9fb;
        border-bottom: 1px solid rgba(30, 58, 95, 0.06);
        flex-shrink: 0;
    }
    #about .sgm-chrome-l {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    #about .sgm-chrome-dots {
        display: flex;
        gap: 6px;
    }
    #about .sgm-chrome-dots span {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        display: block;
    }
    #about .sgm-chrome-dots span:nth-child(1) {
        background: #ff6058;
        opacity: 0.7;
    }
    #about .sgm-chrome-dots span:nth-child(2) {
        background: #ffbd2e;
        opacity: 0.6;
    }
    #about .sgm-chrome-dots span:nth-child(3) {
        background: #28c840;
        opacity: 0.55;
    }
    #about #sgModalLabel {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #5a6a7e;
    }
    #about .sgm-close {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(30, 58, 95, 0.12);
        background: #dce6f0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        padding: 0;
    }
    #about .sgm-close:hover {
        background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
        border-color: transparent;
    }
    #about .sgm-close:hover svg {
        stroke: #fff;
    }
    #about .sgm-close svg {
        width: 10px;
        height: 10px;
        stroke: #1e3a5f;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        transition: stroke 0.2s;
    }
    #about .sgm-scroll {
        overflow-y: auto;
        flex: 1;
        min-height: 0;
    }
    #about .sgm-scroll::-webkit-scrollbar {
        width: 3px;
    }
    #about .sgm-scroll::-webkit-scrollbar-track {
        background: #f8f9fb;
    }
    #about .sgm-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #1e3a5f, #c9a84c);
        border-radius: 2px;
    }
    #about .sgm-hero-wrap {
        position: relative;
        flex-shrink: 0;
        overflow: hidden;
    }
    #about .sgm-hero {
        width: 100%;
        height: 270px;
        object-fit: cover;
        display: block;
        filter: brightness(0.72) saturate(0.68);
        transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #about #sgModal.open .sgm-hero {
        filter: brightness(0.82) saturate(0.78);
    }
    #about .sgm-hero-grad {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(to bottom, transparent 30%, rgba(255, 255, 255, 0.98) 100%), linear-gradient(to right, rgba(248, 249, 251, 0.2), transparent 60%);
    }
    #about .sgm-hero-foot {
        position: absolute;
        bottom: 22px;
        left: 26px;
        right: 26px;
        z-index: 3;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    #about .sgm-hero-tag {
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #1e3a5f;
        display: flex;
        align-items: center;
        gap: 7px;
    }
    #about .sgm-hero-tag::before {
        content: '';
        width: 12px;
        height: 1px;
        background: linear-gradient(90deg, #1e3a5f, #c9a84c);
    }
    #about .sgm-hero-lvl {
        font-size: 7.5px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        padding: 4px 13px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(30, 58, 95, 0.2);
        color: #1e3a5f;
        backdrop-filter: blur(8px);
    }
    #about .sgm-body {
        padding: 0 26px 32px;
    }
    #about .sgm-title-block {
        padding: 22px 0 20px;
        border-bottom: 1px solid rgba(30, 58, 95, 0.08);
        margin-bottom: 20px;
    }
    #about .sgm-title {
        font-family: 'Bodoni Moda', Georgia, serif;
        font-size: 2.05rem;
        font-weight: 600;
        color: #0d1b2a;
        line-height: 1.14;
        letter-spacing: -0.028em;
        margin-bottom: 12px;
    }
    #about .sgm-sub {
        font-size: 12px;
        color: #2c3e55;
        line-height: 1.78;
        font-weight: 300;
        max-width: 560px;
    }
    #about .sgm-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 22px;
    }
    #about .sgm-chip {
        font-size: 7.5px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        padding: 5px 13px;
        border-radius: 16px;
        background: #dce6f0;
        border: 1px solid rgba(30, 58, 95, 0.16);
        color: #1e3a5f;
        transition: all 0.18s;
        cursor: default;
    }
    #about .sgm-chip:hover {
        background: #fdf6e3;
        border-color: rgba(201, 168, 76, 0.28);
        color: #c9a84c;
    }
    #about .sgm-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }
    #about .sgm-stat {
        background: #f8f9fb;
        border: 1px solid rgba(30, 58, 95, 0.12);
        border-radius: 14px;
        padding: 16px 14px;
        text-align: center;
        transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
    }
    #about .sgm-stat:hover {
        background: #dce6f0;
        border-color: rgba(30, 58, 95, 0.25);
        box-shadow: 0 4px 16px rgba(13, 27, 42, 0.08);
    }
    #about .sgm-stat-val {
        font-family: 'Bodoni Moda', Georgia, serif;
        font-size: 1.6rem;
        font-weight: 600;
        background: linear-gradient(135deg, #0d1b2a, #2a4f7a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
    }
    #about .sgm-stat-lbl {
        font-size: 7.5px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #5a6a7e;
        margin-top: 5px;
        display: block;
    }
    #about .sgm-prog-wrap {
        margin-bottom: 26px;
    }
    #about .sgm-prog-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #5a6a7e;
        margin-bottom: 8px;
    }
    #about .sgm-prog-track {
        height: 3px;
        background: #dce6f0;
        border-radius: 2px;
        overflow: hidden;
    }
    #about .sgm-prog-fill {
        height: 100%;
        background: linear-gradient(90deg, #1e3a5f, #c9a84c);
        border-radius: 2px;
        width: 0;
        transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
        box-shadow: 0 0 8px rgba(30, 58, 95, 0.3);
    }
    #about .sgm-instructor {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: #f8f9fb;
        border: 1px solid rgba(30, 58, 95, 0.12);
        border-radius: 14px;
        margin-bottom: 22px;
    }
    #about .sgm-inst-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0d1b2a, #2a4f7a);
        border: 2px solid rgba(30, 58, 95, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Bodoni Moda', Georgia, serif;
        font-size: 14px;
        color: #fff;
        flex-shrink: 0;
    }
    #about .sgm-inst-name {
        font-size: 11px;
        font-weight: 600;
        color: #0d1b2a;
        display: block;
    }
    #about .sgm-inst-role {
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #5a6a7e;
        margin-top: 1px;
        display: block;
    }
    #about .sgm-cta-row {
        display: flex;
        gap: 10px;
        align-items: stretch;
    }
    #about .sgm-btn-pri {
        flex: 1;
        padding: 15px 20px;
        border-radius: 13px;
        background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
        color: #fff;
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        cursor: pointer;
        border: none;
        text-decoration: none;
        transition: opacity 0.22s, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s;
        box-shadow: 0 6px 20px rgba(13, 27, 42, 0.18);
    }
    #about .sgm-btn-pri:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(13, 27, 42, 0.28);
    }
    #about .sgm-btn-pri svg {
        width: 12px;
        height: 12px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        flex-shrink: 0;
    }
    #about .sgm-btn-sec {
        padding: 15px 18px;
        border-radius: 13px;
        border: 1px solid rgba(30, 58, 95, 0.12);
        background: #dce6f0;
        color: #1e3a5f;
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.2s;
    }
    #about .sgm-btn-sec:hover {
        border-color: rgba(201, 168, 76, 0.3);
        background: #fdf6e3;
        color: #c9a84c;
    }

    /* Responsive */
    @media(max-width:1100px) {
        #about .sg-grid {
            grid-template-columns: 1fr 1fr;
        }
        #about .sg-card:nth-child(1) {
            grid-column: 1/3;
            grid-row: 1;
        }
        #about .sg-card:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }
        #about .sg-card:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }
        #about .sg-card:nth-child(4) {
            grid-column: 1;
            grid-row: 3;
        }
        #about .sg-card:nth-child(5) {
            grid-column: 2;
            grid-row: 3;
        }
        #about .sg-hdr {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        #about .sg-hdr-r {
            align-items: flex-start;
        }
        #about .sg-hdr-r p {
            text-align: left;
        }
        #about .sg-stats-strip {
            grid-template-columns: repeat(2, 1fr) auto;
        }
        #about .sg-stat-block:nth-child(3),
        #about .sg-stat-block:nth-child(4) {
            display: none;
        }
    }
    @media(max-width:720px) {
        #about #section-vertical {
            flex-direction: row;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            height: 75vh;
            min-height: 420px;
        }
        #about #section-vertical::-webkit-scrollbar {
            display: none;
        }
        #about .v-panel {
            flex: 0 0 80vw;
            height: 100%;
            scroll-snap-align: center;
            transition: none;
        }
        #about .v-panel:hover {
            flex: 0 0 80vw;
        }
        #about .vp-side {
            display: none;
        }
        #about .vert-hint {
            bottom: 16px;
            right: 16px;
        }
        #about .vert-topbar {
            padding: 16px 16px 0;
        }
        #about .sg-hdr {
            padding: 24px 6vw 0;
        }
        #about .sg-hdr-l h2 {
            font-size: 2.4rem;
        }
        #about .sg-controls {
            padding: 22px 6vw 0;
        }
        #about .sg-topbar {
            padding: 28px 6vw 0;
        }
        #about .sg-grid {
            grid-template-columns: 1fr;
        }
        #about .sg-card:nth-child(n) {
            grid-column: 1;
            grid-row: auto;
        }
        #about .sg-card:nth-child(1) .sg-img {
            height: 240px;
        }
        #about .sg-card:nth-child(n+2) .sg-img {
            height: 180px;
        }
        #about .sg-stats-strip {
            grid-template-columns: 1fr 1fr;
            padding: 0 6vw;
        }
        #about .sg-stat-block:nth-child(3),
        #about .sg-stat-block:nth-child(4) {
            display: none;
        }
        #about .sg-stat-cta {
            display: none;
        }
        #about .sgm-stats {
            grid-template-columns: repeat(2, 1fr);
        }
        #about .sgm-title {
            font-size: 1.6rem;
        }
    }
    @media(max-width:480px) {
        #about .v-panel {
            flex: 0 0 88vw;
        }
        #about .v-panel:hover {
            flex: 0 0 88vw;
        }
        #about #vpBox {
            border-radius: 14px;
        }
        #about .sg-stats-strip {
            grid-template-columns: 1fr;
            padding: 0 6vw;
        }
        #about .sg-stat-block {
            border-right: none;
            border-bottom: 1px solid rgba(30, 58, 95, 0.09);
            padding: 20px 0;
        }
        #about .sg-stat-block:last-child {
            border-bottom: none;
        }
    }