
        /* ══ TOKENS ══ */
        :root {
            --or: #f4620a; /* primary orange */
            --or2: #ff8c38;
            --or3: #ffb470;
            --or-lt: #fff3ea;
            --bl: #0f4cdb;
            --bl2: #2d6ef5;
            --bl3: #0a35a0;
            --bl-lt: #eaf0ff;
            --dk: #050d1e;
            --dk2: #0d1e3a;
            --wh: #ffffff;
            --bg: #f6f8ff;
            --tx: #0d1a35;
            --tx2: #3d5280;
            --tx3: #7a90c0;
            --sh: 0 8px 40px rgba(15, 76, 219, .13);
            --sh2: 0 24px 70px rgba(15, 76, 219, .2);
            --or-sh: 0 8px 40px rgba(244, 98, 10, .3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--wh);
            color: var(--tx);
            font-family: 'Oswald', sans-serif;
            overflow-x: hidden;
            /* cursor: none; */
        }

        /* ── INTRO ANIMATION ── */
        
        #intro-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; display: none; }

        #intro-overlay {
            position: fixed;
            inset: 0;
            z-index: 20000;
            background: #ffffff; /* White */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), visibility 0.8s;
            perspective: 1200px;
        }

        .intro-logo {
            position: relative;
            z-index: 2;
            width: 95%;
            max-width: 850px;
            text-align: center;
            opacity: 0;
            transform: scale(0.9);
            animation: introLogoReveal 4s forwards ease-out 0.1s;
        }

        .it-1, .it-2 {
            display: block;
            color: var(--dk);
            font-family: 'Oswald', sans-serif;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .it-1 { font-size: clamp(3rem, 10vw, 6rem); }
        .it-2 { font-size: clamp(2.5rem, 8vw, 5rem); color: var(--or); }

        .intro-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        @keyframes introLogoReveal {
            0% { opacity: 0; transform: scale(0.8); }
            25% { opacity: 1; transform: scale(1); }
            85% { opacity: 1; transform: scale(1.02); }
            100% { opacity: 0; transform: scale(1.05); }
        }


        .intro-skater-depth {
            position: absolute;
            width: 35vw;
            max-width: 350px;
            opacity: 0;
            filter: drop-shadow(0 0 20px rgba(15, 76, 219, 0.4));
            animation: skateLeftToRight 4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            z-index: 3;
        }

        .intro-skater-depth img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        @keyframes skateLeftToRight {
            0% {
                left: -40%;
                top: 50%;
                transform: translateY(-50%) scale(0.8);
                opacity: 0;
            }
            15% {
                opacity: 1;
            }
            85% {
                opacity: 1;
            }
            100% {
                left: 120%;
                top: 50%;
                transform: translateY(-50%) scale(1.1);
                opacity: 0;
            }
        }

        

        

        



        /* ── CANVAS BG ── */
        #bgc {
            position: fixed;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            opacity: .5;
        }

        /* ── ANN BAR ── */
        .ann {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 600;
            background: var(--dk);
            padding: .42rem 0;
            overflow: hidden;
        }

        .ann-track {
            display: flex;
            width: max-content;
            animation: marquee 26s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        .ann-track span {
            padding: 0 3rem;
            font-size: .8rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: #fff;
            white-space: nowrap;
            font-weight: 700;
        }


        /* ── NAV ── */
        nav {
            position: fixed;
            top: 1.8rem;
            left: 0;
            right: 0;
            z-index: 1000;
            pointer-events: auto !important;
            padding: .7rem 5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            background: var(--bl);
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            box-shadow: 0 2px 24px rgba(15, 76, 219, .05);
            transition: padding .4s, box-shadow .4s, background .4s;
            will-change: padding, box-shadow, background;
        }

        nav.scrolled {
            background: var(--bl3);
            box-shadow: 0 4px 40px rgba(0, 0, 0, .3);
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: .65rem;
            /* cursor: none; */
        }

        .logo-box {
            width: 36px;
            height: 36px;
            background: var(--or);
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
        }

        .logo-box svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: #fff;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .logo-words {
            line-height: 1;
        }

        .logo-main {
            font-family: 'Oswald', sans-serif;
            font-size: 1.55rem;
            letter-spacing: .1em;
            color: var(--dk);
        }

        .logo-main span {
            color: var(--or);
        }

        .logo-tag {
            font-size: .46rem;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--tx3);
            display: block;
            margin-top: .08rem;
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 1.6rem;
        }

        nav .nl {
            text-decoration: none;
            color: rgba(255, 255, 255, .8);
            font-size: .68rem;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            /* cursor: none; */
            transition: color .3s;
            position: relative;
            padding-bottom: 2px;
        }

        nav .nl::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--or);
            transition: width .3s;
        }

        nav .nl:hover {
            color: var(--or);
        }

        nav .nl:hover::after {
            width: 100%;
        }

        nav .nl.active {
            color: var(--or);
        }

        nav .nl.active::after {
            width: 100%;
        }

        .nav-in {
            padding: .38rem 1.1rem;
            border: 1.5px solid rgba(15, 76, 219, .18);
            color: #fff !important;
            background: rgba(255, 255, 255, .1);
            font-weight: 700 !important;
            letter-spacing: .1em !important;
            transition: all .3s !important;
        }

        .nav-in:hover {
            background: var(--bl-lt) !important;
            border-color: var(--bl) !important;
        }

        .nav-in::after {
            display: none !important;
        }

        .nav-reg {
            padding: .5rem 1.6rem;
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff !important;
            font-weight: 700 !important;
            letter-spacing: .12em !important;
            box-shadow: var(--or-sh);
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
            transition: all .3s !important;
        }

        .nav-reg:hover {
            background: linear-gradient(135deg, var(--bl), var(--bl2)) !important;
            box-shadow: var(--sh2) !important;
            transform: translateY(-2px);
        }

        .nav-reg::after {
            display: none !important;
        }

        .hmb {
            display: none;
            background: none;
            border: none;
            pointer-events: auto !important;
            flex-direction: column;
            gap: 5px;
            padding: .4rem;
        }

        .hmb span {
            width: 26px;
            height: 2px;
            background: #fff;
            display: block;
            transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: center;
        }

        nav.mob-open .hmb span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        nav.mob-open .hmb span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        nav.mob-open .hmb span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ══ PAGE SYSTEM ══ */
        .page {
            display: none;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        /* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 8rem;
            padding-bottom: 4rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: #000;
        }

        .hero-bg .bg-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-bg .bg-slide.active {
            opacity: 1;
        }

        .bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(150deg, rgba(5, 13, 30, 0.1) 0%, rgba(15, 76, 219, 0.05) 40%, rgba(244, 98, 10, 0.02) 70%, rgba(5, 13, 30, 0.15) 100%);
            /* backdrop-filter removed because blurring a dynamic video murders GPU performance, causing freezing/lag */
            z-index: 1;
        }

        /* noise texture to hide pixelation */
        .bg-overlay::before {
            display: none;
        }

        /* ice texture */
        .bg-overlay::after {
            display: none;
        }

        /* gradient orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            will-change: transform;
        }

        .orb1 {
            width: 650px;
            height: 650px;
            top: -120px;
            right: -80px;
            background: radial-gradient(circle, rgba(15, 76, 219, .07), transparent 68%);
            animation: orbFloat 14s ease-in-out infinite;
        }

        .orb2 {
            width: 480px;
            height: 480px;
            bottom: -80px;
            left: -60px;
            background: radial-gradient(circle, rgba(244, 98, 10, .05), transparent 68%);
            animation: orbFloat 18s ease-in-out infinite reverse;
        }

        .orb3 {
            width: 300px;
            height: 300px;
            top: 35%;
            left: 38%;
            background: radial-gradient(circle, rgba(15, 76, 219, .04), transparent 68%);
            animation: orbFloat 10s ease-in-out infinite 2s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: scale(1) rotate(0deg)
            }

            50% {
                transform: scale(1.15) rotate(12deg)
            }
        }

        /* ring decorations */
        .ring {
            position: absolute;
            border-radius: 50%;
            border: 1px dashed;
            pointer-events: none;
            animation: spin linear infinite;
        }

        .ring1 {
            width: 440px;
            height: 440px;
            top: 4%;
            right: 0;
            border-color: rgba(15, 76, 219, .06);
            animation-duration: 45s;
        }

        .ring2 {
            width: 290px;
            height: 290px;
            top: 17%;
            right: 9%;
            border-color: rgba(244, 98, 10, .08);
            animation-duration: 28s;
            animation-direction: reverse;
        }

        .ring3 {
            width: 160px;
            height: 160px;
            top: 29%;
            right: 18%;
            border-color: rgba(15, 76, 219, .1);
            animation-duration: 20s;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg)
            }

            to {
                transform: rotate(360deg)
            }
        }

        .ring-dot {
            position: absolute;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .ring1 .ring-dot {
            background: var(--bl);
            box-shadow: 0 0 10px rgba(15, 76, 219, .6);
        }

        .ring2 .ring-dot {
            background: var(--or);
            box-shadow: 0 0 10px rgba(244, 98, 10, .6);
        }

        .ring3 .ring-dot {
            background: var(--bl2);
        }

        .hero-in {
            position: relative;
            z-index: 2;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* Left */
        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            background: linear-gradient(90deg, var(--bl-lt), var(--or-lt));
            border: 1px solid rgba(15, 76, 219, .14);
            padding: .48rem 1.2rem;
            margin-bottom: 1.8rem;
            font-size: .58rem;
            font-weight: 700;
            letter-spacing: .24em;
            text-transform: uppercase;
            color: var(--bl);
            opacity: 0;
            animation: fadeUp .7s .1s forwards;
        }

        .pill-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--or);
            animation: pulseDot 1.8s infinite;
        }

        @keyframes pulseDot {

            0%,
            100% {
                transform: scale(1);
                opacity: 1
            }

            50% {
                transform: scale(1.7);
                opacity: .3
            }
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(3.8rem, 6.5vw, 7.2rem);
            line-height: .88;
            letter-spacing: .03em;
            color: var(--dk);
            -webkit-text-stroke: 1.5px #000;
            text-stroke: 1.5px #000;
            opacity: 0;
            animation: fadeUp .8s .25s forwards;
        }

        .h1-em {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-style: italic;
            font-size: clamp(3rem, 5.5vw, 6rem);
            color: var(--bl);
            -webkit-text-stroke: 1.2px #000;
            text-stroke: 1.2px #000;
            letter-spacing: -.01em;
            margin-top: .08em;
        }

        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #000;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            max-width: 500px;
            margin: 1.8rem 0;
            opacity: 0;
            animation: fadeUp .8s .4s forwards;
            /* text-shadow removed */
        }

        .hero-steps {
            margin-bottom: 2.2rem;
            display: flex;
            flex-direction: column;
            gap: .9rem;
            opacity: 0;
            animation: fadeUp .8s .55s forwards;
        }

        .hs {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hs-n {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(244, 98, 10, 0.3);
        }

        .hs span {
            font-size: 1.25rem;
            color: var(--bl);
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
        }

        .hero-ctas {
            display: flex;
            gap: .9rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp .8s .7s forwards;
        }

        .btn-fire {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: 1rem 2.8rem;
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff;
            text-decoration: none;
            font-size: .76rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .2em;
            text-transform: uppercase;
            /* cursor: none; */
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            box-shadow: var(--or-sh);
            position: relative;
            overflow: hidden;
            transition: all .4s;
        }

        .btn-fire::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            opacity: 0;
            transition: opacity .35s;
        }

        .btn-fire:hover::before {
            opacity: 1;
        }

        .btn-fire:hover {
            transform: translateY(-4px);
            box-shadow: var(--sh2);
        }

        .btn-fire span {
            position: relative;
            z-index: 1;
        }

        .btn-out {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: 1rem 2.3rem;
            border: 2px solid var(--bl);
            color: var(--bl);
            text-decoration: none;
            font-size: .74rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            /* cursor: none; */
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            transition: all .35s;
        }

        .btn-out:hover {
            background: var(--bl-lt);
            transform: translateY(-3px);
        }

        .hero-trust {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(15, 76, 219, .1);
            opacity: 0;
            animation: fadeUp .8s .9s forwards;
        }

        .ht {
            display: flex;
            align-items: center;
            gap: .5rem;
            font-size: .74rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            color: var(--tx2);
        }

        .ht-ic {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(15, 76, 219, .15);
        }

        .ht-or {
            background: linear-gradient(135deg, #ff8c38, #ffb470);
            box-shadow: 0 4px 12px rgba(244, 98, 10, .25);
        }

        .ht-bl {
            background: linear-gradient(135deg, #2d6ef5, #7a90c0);
            box-shadow: 0 4px 12px rgba(15, 76, 219, .25);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        /* Right */
        .hero-right {
            opacity: 0;
            animation: fadeRight .9s .35s forwards;
            position: relative;
        }

        @keyframes fadeRight {
            from {
                opacity: 0;
                transform: translateX(48px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .hero-frame {
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
        }

        .hero-frame img {
            width: 100%;
            height: 560px;
            object-fit: cover;
            display: block;
            filter: saturate(.88);
            transition: filter .5s, transform .7s;
        }

        .hero-frame:hover img {
            filter: saturate(1.15);
            transform: scale(1.02);
        }

        .hero-frame::before {
            content: '';
            position: absolute;
            top: -12px;
            right: -12px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--bl);
            opacity: .25;
            pointer-events: none;
            clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
            z-index: 1;
        }

        .hero-frame::after {
            content: '';
            position: absolute;
            top: -22px;
            right: -22px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--or);
            opacity: .18;
            pointer-events: none;
            clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
            z-index: 0;
        }

        .hf-tag {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 14%;
            z-index: 2;
            background: linear-gradient(90deg, var(--bl), var(--bl2));
            padding: .85rem 1.5rem;
            color: #fff;
            font-size: .62rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .hstat {
            position: absolute;
            z-index: 3;
            background: #fff;
            padding: .9rem 1.3rem;
            box-shadow: var(--sh2);
            transition: transform .3s;
            border-top: 3px solid;
        }

        .hstat:hover {
            transform: scale(1.06);
        }

        .hs1 {
            bottom: 3.5rem;
            left: -2rem;
            border-color: var(--or);
        }

        .hs2 {
            top: 2rem;
            right: -1.5rem;
            border-color: var(--bl);
        }

        .hstat-num {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            line-height: 1;
            letter-spacing: .05em;
        }

        .ls-addr {
            font-size: 0.75rem;
            color: var(--tx3);
            margin-bottom: 0.8rem;
            font-weight: 500;
            opacity: 0.8;
            line-height: 1.4;
        }

        .hs1 .hstat-num {
            color: var(--or);
        }

        .hs2 .hstat-num {
            color: var(--bl);
        }

        .hstat-lbl {
            font-size: .56rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--tx3);
            margin-top: .2rem;
        }

        .scroll-hint {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .45rem;
            opacity: 0;
            animation: fadeIn 1s 2.2s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1
            }
        }

        .scroll-hint p {
            font-size: .52rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: var(--tx3);
        }

        .scroll-mouse {
            width: 20px;
            height: 32px;
            border: 2px solid rgba(15, 76, 219, .3);
            border-radius: 10px;
            position: relative;
        }

        .scroll-wh {
            width: 3px;
            height: 7px;
            background: var(--or);
            border-radius: 2px;
            position: absolute;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWh 2s ease-in-out infinite;
        }

        @keyframes scrollWh {
            0% {
                top: 4px;
                opacity: 1
            }

            100% {
                top: 18px;
                opacity: 0
            }
        }

        /* ── PHOTO STRIP ── */
        .strip-wrap {
            overflow: hidden;
            background: var(--dk);
            padding: 3px 0;
        }

        .strip-track {
            display: flex;
            gap: 3px;
            width: max-content;
            animation: stripRun 34s linear infinite;
        }

        .strip-track:hover {
            animation-play-state: paused;
        }

        @keyframes stripRun {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        .sc {
            width: 280px;
            height: 185px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            /* cursor: none; */
        }

        .sc img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(.72) saturate(.8);
            transition: transform .6s, filter .4s;
        }

        .sc:hover img {
            transform: scale(1.1);
            filter: brightness(1.02) saturate(1.2);
        }

        .bg-single-video {
            filter: contrast(1.05) brightness(0.85) blur(2.5px); /* ~8.5% blur feel */
            transform: scale(1.05) translateZ(0);
            will-change: transform, filter;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        /* Clarity Enhancement Overlay for Large Screens */
        .bg-overlay::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.04;
            pointer-events: none;
        }

        .sc-cap {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: .6rem 1rem;
            background: linear-gradient(to top, rgba(5, 13, 30, .82), transparent);
            font-size: .55rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: #fff;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            transform: translateY(100%);
            transition: transform .35s;
        }

        .sc:hover .sc-cap {
            transform: translateY(0);
        }

        /* ── IMMERSIVE GSAP SCROLL REVEAL ENGINE ── */
        .rv {
            will-change: opacity, transform;
            backface-visibility: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ── STATS BAR ── */
        .stats-bar {
            padding: 3.2rem 0;
            background: linear-gradient(135deg, var(--dk), var(--dk2) 50%, var(--bl3));
            position: relative;
            overflow: hidden;
        }

        .stats-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 40.5V38H0v5h5v5H0v5h40v-2.5h40V40.5H40z' fill='%23ffffff' fill-opacity='.02'/%3E%3C/svg%3E");
        }

        .stats-in {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .stat-c {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-n {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            letter-spacing: .06em;
            line-height: 1;
            background: linear-gradient(135deg, var(--or), var(--or2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-l {
            font-size: .6rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .24em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .45);
            margin-top: .45rem;
            font-weight: 500;
        }

        /* ── HOW IT WORKS ── */
        .section {
            padding: 8rem 0;
        }

        .section.tinted {
            background: linear-gradient(180deg, #eef3ff, #f5f8ff);
        }

        .section.dark {
            background: linear-gradient(150deg, var(--dk), #081540 50%, #1a0800);
            position: relative;
            overflow: hidden;
        }

        .section.dark::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -100px;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(15, 76, 219, .14), transparent 66%);
        }

        .section.dark::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -80px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 98, 10, .09), transparent 66%);
        }

        .sw {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5rem;
        }

        .sec-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            font-size: .58rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .3em;
            text-transform: uppercase;
            margin-bottom: .9rem;
        }

        .sec-eyebrow.or {
            color: var(--or);
        }

        .sec-eyebrow.or::before {
            content: '';
            width: 26px;
            height: 2px;
            background: linear-gradient(to right, var(--or), var(--or2));
        }

        .sec-eyebrow.bl {
            color: var(--bl);
        }

        .sec-eyebrow.bl::before {
            content: '';
            width: 26px;
            height: 2px;
            background: linear-gradient(to right, var(--bl), var(--bl2));
        }

        .sec-eyebrow.wh {
            color: rgba(255, 255, 255, .6);
        }

        .sec-eyebrow.wh::before {
            content: '';
            width: 26px;
            height: 2px;
            background: rgba(255, 255, 255, .4);
        }

        .sec-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.4rem, 4.5vw, 4rem);
            color: var(--dk);
            line-height: .92;
            letter-spacing: .04em;
        }

        .sec-title.wh {
            color: #fff;
        }

        .sec-sub {
            font-size: .92rem;
            color: var(--tx2);
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            line-height: 1.85;
            margin-top: .8rem;
            max-width: 560px;
        }

        .sec-sub.wh {
            color: rgba(255, 255, 255, .65);
        }

        .sep {
            height: 1px;
            max-width: 1320px;
            margin: 0 auto;
            background: linear-gradient(to right, transparent, rgba(15, 76, 219, .1), rgba(244, 98, 10, .07), transparent);
        }

        /* How cards */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.6rem;
            margin-top: 3.5rem;
        }

        .hc {
            padding: 2.8rem 2.5rem;
            background: #eef3ff;
            border-radius: 24px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: box-shadow .4s, background .4s;
            box-shadow: 8px 8px 20px rgba(15, 76, 219, .08), -8px -8px 20px #fff, inset 5px 5px 12px rgba(15, 76, 219, .04), inset -5px -5px 12px #fff;
        }

        .hc::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--bl), var(--or));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .5s;
        }

        .hc:hover {
            transform: translateY(-8px);
            transition: transform .4s, box-shadow .4s;
            box-shadow: 12px 12px 24px rgba(15, 76, 219, .12), -12px -12px 24px #fff, inset 5px 5px 12px rgba(15, 76, 219, .02), inset -5px -5px 12px #fff;
        }

        .hc-n {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 1.7rem;
            letter-spacing: .05em;
            margin-bottom: 1.8rem;
            box-shadow: 0 8px 22px rgba(15, 76, 219, .28);
            transition: background .4s;
        }

        .hc:hover .hc-n {
            background: linear-gradient(135deg, var(--or), var(--or2));
            box-shadow: var(--or-sh);
        }

        .hc h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.45rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .7rem;
        }

        .hc p {
            font-size: .86rem;
            color: var(--tx2);
            line-height: 1.82;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
        }

        .pills {
            display: flex;
            flex-wrap: wrap;
            gap: .7rem;
            margin-top: 2rem;
        }

        .pill {
            padding: .5rem 1.2rem;
            font-size: .74rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            border: 1.5px solid;
            transition: all .3s;
            cursor: default;
        }

        .pill.or {
            color: var(--or);
            border-color: rgba(244, 98, 10, .25);
            background: var(--or-lt);
        }

        .pill.or:hover {
            background: var(--or);
            color: #fff;
            border-color: var(--or);
        }

        .pill.bl {
            color: var(--bl);
            border-color: rgba(15, 76, 219, .22);
            background: var(--bl-lt);
        }

        .pill.bl:hover {
            background: var(--bl);
            color: #fff;
        }

        /* Classes */
        .cls-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.6rem;
            margin-top: 3rem;
        }

        .cc {
            background: #eef3ff;
            border-radius: 24px;
            border: none;
            overflow: hidden;
            transition: box-shadow .4s;
            /* cursor: none; */
            box-shadow: 8px 8px 20px rgba(15, 76, 219, .08), -8px -8px 20px #fff, inset 5px 5px 12px rgba(15, 76, 219, .04), inset -5px -5px 12px #fff;
            position: relative;
        }

        .cc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--or), var(--bl));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .45s;
            z-index: 2;
        }

        .cc:hover {
            transform: translateY(-8px);
            transition: transform .4s, box-shadow .4s;
            box-shadow: 12px 12px 24px rgba(15, 76, 219, .12), -12px -12px 24px #fff, inset 5px 5px 12px rgba(15, 76, 219, .02), inset -5px -5px 12px #fff;
        }

        .cc:hover::before {
            transform: scaleX(1);
        }

        .cc-img {
            height: 235px;
            overflow: hidden;
            position: relative;
        }

        .cc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(.78);
            transition: transform .7s, filter .5s;
        }

        .cc:hover .cc-img img {
            transform: scale(1.1);
            filter: saturate(1.15);
        }

        .cc-img-ov {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 53, 160, .55), transparent 55%);
        }

        .cc-body {
            padding: 2rem 2rem 2.4rem;
        }

        .cc-badge {
            display: inline-block;
            padding: .28rem .8rem;
            font-size: .56rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .2em;
            text-transform: uppercase;
            font-weight: 700;
            border: 1.5px solid;
            margin-bottom: .9rem;
        }

        .b-or {
            background: var(--or-lt);
            border-color: rgba(244, 98, 10, .3);
            color: var(--or);
        }

        .b-rd {
            background: #fff0f0;
            border-color: rgba(200, 40, 40, .25);
            color: #c82828;
        }

        .b-gn {
            background: #f0fef4;
            border-color: rgba(20, 140, 60, .25);
            color: #148c3c;
        }

        .cc h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.45rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .6rem;
        }

        .cc p {
            font-size: .83rem;
            color: var(--tx2);
            line-height: 1.82;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            margin-bottom: 1.4rem;
        }

        .btn-sm {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .65rem 1.5rem;
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            color: #fff;
            font-size: .68rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            text-decoration: none;
            /* cursor: none; */
            transition: all .3s;
            clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
        }

        .btn-sm:hover {
            background: linear-gradient(135deg, var(--or), var(--or2));
            box-shadow: var(--or-sh);
        }

        .btn-sm svg {
            width: 11px;
            height: 11px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            transition: transform .3s;
        }

        .btn-sm:hover svg {
            transform: translateX(4px);
        }

        /* CTA Banner */
        .cta-band {
            padding: 2.5rem 3rem;
            margin: 3rem 0 0;
            background: linear-gradient(135deg, var(--dk), var(--dk2) 40%, var(--bl3));
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-band::after {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 240px;
            height: 240px;
            background: rgba(244, 98, 10, .08);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-band h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.9rem;
            letter-spacing: .05em;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .cta-band p {
            font-size: .82rem;
            color: rgba(255, 255, 255, .7);
            margin-top: .3rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .btn-wh {
            padding: 1rem 2.5rem;
            background: #fff;
            color: var(--bl);
            font-size: .76rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            text-decoration: none;
            /* cursor: none; */
            transition: all .35s;
            white-space: nowrap;
            clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
            position: relative;
            z-index: 1;
        }

        .btn-wh:hover {
            background: var(--or-lt);
            color: var(--or);
            transform: translateY(-3px);
        }

        /* Gallery Redesign */
        .gallery-grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 2.8rem;
        }

        .gallery-row-v {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }

        .gallery-row-h {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }

        .mi {
            position: relative;
            overflow: hidden;
            transition: all .3s ease;
            /* cursor: none; */
            border: 2px solid transparent;
        }

        .mi.v-item { height: 560px; }
        .mi.h-item { height: 280px; }

        .mi img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: none;
            transition: transform .7s;
        }

        .mi:hover {
            border-color: var(--or);
            box-shadow: var(--or-sh);
        }

        .mi:hover img {
            transform: scale(1.08);
            filter: none;
        }

        .mi-cap {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            padding: 1.4rem;
            background: linear-gradient(to top, rgba(5, 13, 30, .82), transparent 52%);
            opacity: 0;
            transition: opacity .4s;
        }

        .mi:hover .mi-cap {
            opacity: 1;
        }

        .mi-cap span {
            font-size: .6rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #fff;
            font-weight: 600;
        }

        /* Videos */
        .vid-grid {
            display: grid;
            grid-template-columns: 1.65fr 1fr;
            gap: 1.2rem;
            margin-top: 2.8rem;
        }

        .vc {
            background: #eef3ff;
            border-radius: 24px;
            border: none;
            overflow: hidden;
            transition: all .3s ease;
            box-shadow: 8px 8px 20px rgba(15, 76, 219, .08), -8px -8px 20px #fff, inset 5px 5px 12px rgba(15, 76, 219, .04), inset -5px -5px 12px #fff;
        }

        .vc:hover {
            transform: translateY(-6px);
            box-shadow: 12px 12px 24px rgba(15, 76, 219, .12), -12px -12px 24px #fff, inset 5px 5px 12px rgba(15, 76, 219, .02), inset -5px -5px 12px #fff;
        }

        .vw {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .vw iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .vw-shorts {
            position: relative;
            padding-bottom: 177.78%; /* 9:16 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .vw-shorts iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .v-lbl {
            padding: .85rem 1.2rem;
            font-size: .65rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--tx3);
            border-top: 1px solid rgba(15, 76, 219, .07);
            font-weight: 500;
        }

        .vs-col {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        /* Reviews */
        .r-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 600px) {
            .r-grid {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                scroll-snap-type: x mandatory !important;
                gap: 1.2rem !important;
                padding-bottom: 2rem !important;
                padding-left: 1.5rem !important;
                padding-right: 1.5rem !important;
                margin-left: -1.5rem !important;
                margin-right: -1.5rem !important;
                scrollbar-width: none;
            }
            .r-grid::-webkit-scrollbar {
                display: none;
            }
            .rc {
                flex: 0 0 88% !important;
                scroll-snap-align: center !important;
                padding: 1.8rem !important;
                margin-bottom: 0 !important;
            }
            .rc::before {
                font-size: 6rem !important;
                top: -0.5rem !important;
            }
        }

        .rc {
            padding: 2.8rem;
            background: #111520;
            /* Solid dark elegant background to replace laggy blur */
            border: 1px solid rgba(255, 255, 255, .1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), background-color 0.3s, border-color 0.3s;
            will-change: transform;
            border-radius: 12px;
        }

        .rc::before {
            content: '\201C';
            position: absolute;
            top: -1.5rem;
            left: 1.4rem;
            font-family: 'Oswald', sans-serif;
            font-size: 11rem;
            color: rgba(15, 76, 219, .1);
            line-height: 1;
            pointer-events: none;
        }

        .rc:hover {
            background: #161c2a;
            border-color: rgba(15, 76, 219, .45);
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .rc.feat {
            background: linear-gradient(135deg, #161c2a, #1a1614);
            border-color: rgba(15, 76, 219, .35);
            grid-column: span 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .rc.feat {
                grid-column: span 1 !important;
            }
            .r-grid {
                grid-template-columns: 1fr !important;
            }
        }

        .stars {
            font-size: .95rem;
            letter-spacing: .1em;
            margin-bottom: 1.2rem;
        }

        .stars.or {
            color: var(--or2);
        }

        .stars.bl {
            color: #6abcff;
        }

        .rc p {
            font-size: .86rem;
            color: rgba(255, 255, 255, .7);
            line-height: 1.92;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .rc-auth {
            font-size: .6rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .rc-auth.or {
            color: var(--or2);
        }

        .rc-auth.bl {
            color: #6abcff;
        }

        /* Contact section */
        .cnt-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4.5rem;
            margin-top: 3.5rem;
        }

        .fbox {
            background: #eef3ff;
            border-radius: 24px;
            border: none;
            border-top: 5px solid var(--or);
            padding: 3.2rem;
            box-shadow: 8px 8px 20px rgba(15, 76, 219, .08), -8px -8px 20px #fff, inset 5px 5px 12px rgba(15, 76, 219, .04), inset -5px -5px 12px #fff;
        }

        .fbox h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.75rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .3rem;
        }

        .fbox-sub {
            font-size: .78rem;
            color: var(--tx3);
            margin-bottom: 2rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            letter-spacing: .06em;
        }

        .f2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.1rem;
            margin-bottom: 1.1rem;
        }

        .fg {
            display: flex;
            flex-direction: column;
            gap: .44rem;
            margin-bottom: 1.1rem;
        }

        .f2 .fg {
            margin-bottom: 0;
        }

        label {
            font-size: .56rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--tx3);
            font-weight: 700;
        }

        input,
        select,
        textarea {
            background: #f6f8ff;
            border: 1.5px solid rgba(15, 76, 219, .11);
            color: var(--tx);
            font-family: 'Oswald', sans-serif;
            font-size: .88rem;
            padding: .85rem 1rem;
            outline: none;
            width: 100%;
            resize: vertical;
            transition: border-color .3s, box-shadow .3s;
            appearance: none;
        }

        input::placeholder,
        textarea::placeholder {
            color: var(--tx3);
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--bl);
            box-shadow: 0 0 0 3px rgba(15, 76, 219, .08);
            background: #fff;
        }

        .btn-sub {
            width: 100%;
            padding: 1rem;
            margin-top: .4rem;
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff;
            border: none;
            font-family: 'Oswald', sans-serif;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            /* cursor: none; */
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            transition: all .4s;
        }

        .btn-sub:hover {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            transform: translateY(-2px);
            box-shadow: var(--sh2);
        }

        .form-ok {
            margin-top: 1.1rem;
            padding: .9rem 1.3rem;
            background: rgba(15, 76, 219, .07);
            border: 1.5px solid rgba(15, 76, 219, .22);
            color: var(--bl);
            font-size: .82rem;
            text-align: center;
            display: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }

        .ic-col {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .icd {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: #eef3ff;
            border-radius: 20px;
            border: none;
            box-shadow: 6px 6px 16px rgba(15, 76, 219, .08), -6px -6px 16px #fff, inset 4px 4px 10px rgba(15, 76, 219, .04), inset -4px -4px 10px #fff;
            transition: all .4s;
        }

        .icd:hover {
            transform: translateX(5px);
            box-shadow: 8px 8px 20px rgba(15, 76, 219, .12), -8px -8px 20px #fff, inset 4px 4px 10px rgba(15, 76, 219, .02), inset -4px -4px 10px #fff;
        }

        .ic-i {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .ic-lbl {
            font-size: .56rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .24em;
            text-transform: uppercase;
            color: var(--bl);
            margin-bottom: .35rem;
            font-weight: 700;
        }

        .ic-val {
            font-size: .88rem;
            color: var(--tx2);
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            line-height: 1.6;
        }

        .ic-val a {
            color: var(--or);
            text-decoration: none;
            font-weight: 600;
        }

        .ic-val a:hover {
            color: var(--bl);
        }

        /* Footer */
        .sub-band {
            background: linear-gradient(135deg, var(--dk), var(--bl3) 45%, #280e00);
            padding: 3.2rem 0;
            position: relative;
            overflow: hidden;
        }

        .sub-band::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(244, 98, 10, .07);
        }

        .sub-in {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .sub-band h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.9rem;
            letter-spacing: .06em;
            color: #fff;
        }

        .sub-band p {
            font-size: .82rem;
            color: rgba(255, 255, 255, .6);
            margin-top: .3rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
        }

        .sub-form {
            display: flex;
            gap: .7rem;
            flex-shrink: 0;
        }

        .sub-form input {
            width: 240px;
            background: rgba(255, 255, 255, .1);
            border: 1.5px solid rgba(255, 255, 255, .22);
            color: #fff;
            padding: .85rem 1rem;
        }

        .sub-form input::placeholder {
            color: rgba(255, 255, 255, .4);
        }

        .sub-form input:focus {
            background: rgba(255, 255, 255, .18);
            border-color: rgba(255, 255, 255, .55);
            box-shadow: none;
        }

        .sub-form button {
            padding: .85rem 2rem;
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff;
            border: none;
            font-family: 'Oswald', sans-serif;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            /* cursor: none; */
            transition: all .3s;
        }

        .sub-form button:hover {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
        }

        footer {
            background: var(--dk);
            color: rgba(255, 255, 255, .35);
        }

        .ft-in {
            max-width: 1320px;
            margin: 0 auto;
            padding: 4.5rem 5rem 2.2rem;
        }

        .ft-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 3rem;
            margin-bottom: 3.5rem;
        }

        footer h4 {
            font-size: .56rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: var(--bl2);
            margin-bottom: 1.3rem;
        }

        footer ul {
            list-style: none;
        }

        footer li {
            margin-bottom: .65rem;
        }

        footer .fl {
            text-decoration: none;
            color: rgba(255, 255, 255, .3);
            font-size: .83rem;
            font-family: 'Oswald', sans-serif;
            transition: color .3s;
            /* cursor: none; */
        }

        footer .fl:hover {
            color: var(--or2);
        }

        .ft-bot {
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .ft-bot p {
            font-size: .62rem;
            color: rgba(255, 255, 255, .16);
            font-family: 'Oswald', sans-serif;
            letter-spacing: .06em;
        }

        .ft-links {
            display: flex;
            gap: 1.4rem;
        }

        /* ══════════════════════════════════════
   OTHER PAGES
══════════════════════════════════════ */

        /* Page hero */
        .pg-hero {
            position: relative;
            min-height: 44vh;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            padding-top: 8rem;
            padding-bottom: 3.5rem;
            background: linear-gradient(150deg, var(--dk), var(--dk2) 55%, var(--bl3));
        }

        .pg-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/svg%3E");
        }

        .pg-hero-in {
            position: relative;
            z-index: 1;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5rem;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: .5rem;
            font-size: .62rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            margin-bottom: 1.3rem;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, .4);
            text-decoration: none;
            /* cursor: none; */
            transition: color .3s;
        }

        .breadcrumb a:hover,
        .breadcrumb span {
            color: var(--or);
        }

        .pg-hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(3rem, 6vw, 5.5rem);
            letter-spacing: .05em;
            color: #fff;
            line-height: .88;
        }

        .pg-hero h1 em {
            color: var(--or);
            font-style: normal;
        }

        .pg-hero p {
            color: rgba(255, 255, 255, .6);
            font-size: .95rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            margin-top: .9rem;
            max-width: 540px;
            line-height: 1.7;
        }

        /* Search Bar */
        .search-wrap {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .search-in {
            width: 100%;
            max-width: 600px;
            position: relative;
            background: #fff;
            border: 2px solid rgba(15, 76, 219, .1);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 10px 30px rgba(15, 76, 219, .05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .search-in:focus-within {
            border-color: var(--bl);
            box-shadow: 0 15px 40px rgba(15, 76, 219, .12);
            transform: translateY(-2px);
        }

        .search-ic {
            width: 22px;
            height: 22px;
            color: var(--bl);
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .search-in:focus-within .search-ic {
            color: var(--or);
            transform: rotate(90deg) scale(1.1);
        }

        #locSearch {
            border: none;
            background: none;
            padding: 0.8rem 0;
            font-size: 1rem;
            color: var(--dk);
            font-family: 'Oswald', sans-serif;
            font-weight: 400;
            width: 100%;
            outline: none;
            box-shadow: none !important;
        }

        #locSearch::placeholder {
            color: var(--tx3);
            font-weight: 300;
        }

        .search-btn {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            color: #fff;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            /* cursor: none; */
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .search-btn:hover {
            background: linear-gradient(135deg, var(--or), var(--or2));
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(244, 98, 10, .2);
        }

        /* Locations */
        .loc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.6rem;
            margin-top: 3.5rem;
        }

        .lc {
            background: #fff;
            border: 1px solid rgba(15, 76, 219, .1);
            padding: 2.6rem 2.4rem;
            position: relative;
            border-radius: 16px;
            transition: box-shadow .4s, border-color .4s;
            box-shadow: 0 6px 30px rgba(0, 0, 0, .05);
            display: flex;
            flex-direction: column;
        }
        .lc-img {
            height: 200px;
            width: calc(100% + 4.8rem);
            margin: -2.6rem -2.4rem 1.8rem -2.4rem;
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            position: relative;
        }
        .lc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .lc:hover .lc-img img {
            transform: scale(1.08);
        }

        .lc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--or), var(--bl));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .5s;
        }

        .lc:hover {
            transform: translateY(-10px);
            transition: transform .4s, box-shadow .4s, border-color .4s;
            box-shadow: var(--sh2);
            border-color: rgba(15, 76, 219, .18);
        }

        .lc:hover::before {
            transform: scaleX(1);
        }

        .lc-icon {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--bl-lt), var(--or-lt));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.4rem;
            transition: all .4s;
        }

        .lc:hover .lc-icon {
            background: linear-gradient(135deg, var(--or), var(--or2));
            transform: scale(1.1);
        }

        .lc h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .4rem;
        }

        .lc .venue {
            font-size: .72rem;
            color: var(--bl);
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: .9rem;
        }

        .lc p {
            font-size: .83rem;
            color: var(--tx2);
            line-height: 1.8;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            margin-bottom: 1.3rem;
        }

        .loc-sess {
            display: flex;
            flex-direction: column;
            gap: .5rem;
            margin-bottom: 1.4rem;
        }

        .ls {
            background: var(--bl-lt);
            border-left: 3px solid var(--bl);
            padding: .65rem .9rem;
            font-size: .78rem;
            color: var(--tx2);
            line-height: 1.5;
        }

        .ls strong {
            color: var(--bl);
            display: block;
            margin-bottom: .2rem;
            font-size: .75rem;
        }

        .loc-prices {
            display: flex;
            gap: .6rem;
            flex-wrap: wrap;
            margin-bottom: 1.4rem;
        }

        .pt {
            padding: .3rem .8rem;
            font-size: .68rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            border: 1.5px solid;
        }

        .pt.or {
            color: var(--or);
            border-color: rgba(244, 98, 10, .3);
            background: var(--or-lt);
        }

        .pt.bl {
            color: var(--bl);
            border-color: rgba(15, 76, 219, .24);
            background: var(--bl-lt);
        }

        .btn-loc {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .7rem 1.7rem;
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff;
            font-size: .7rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            text-decoration: none;
            /* cursor: none; */
            transition: all .35s;
            clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
        }

        .btn-loc:hover {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            transform: translateY(-2px);
        }

        .note-box {
            margin-top: 3rem;
            padding: 2.3rem;
            background: linear-gradient(135deg, var(--bl-lt), var(--or-lt));
            border-left: 4px solid var(--bl);
        }

        .note-box h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .7rem;
        }

        .note-box p {
            font-size: .86rem;
            color: var(--tx2);
            line-height: 1.82;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
        }

        .note-box a {
            color: var(--or);
            font-weight: 700;
            text-decoration: none;
            /* cursor: none; */
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 4rem;
        }

        .about-img-wrap {
            position: relative;
        }

        .about-img-wrap img {
            width: 100%;
            height: 510px;
            object-fit: cover;
            clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
        }

        .about-img-wrap::before {
            content: '';
            position: absolute;
            top: -12px;
            left: -12px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--or);
            opacity: .28;
            clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
            pointer-events: none;
        }

        .avals {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.1rem;
            margin-top: 2.3rem;
        }

        .av {
            padding: 1.7rem;
            background: #fff;
            border: 1px solid rgba(15, 76, 219, .1);
            border-left: 3px solid;
            transition: all .4s;
        }

        .av.or {
            border-left-color: var(--or);
        }

        .av.bl {
            border-left-color: var(--bl);
        }

        .av:hover {
            box-shadow: var(--sh);
            transform: translateX(4px);
        }

        .av h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            letter-spacing: .04em;
            color: var(--dk);
            margin-bottom: .45rem;
        }

        .av p {
            font-size: .8rem;
            color: var(--tx2);
            line-height: 1.78;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
        }

        /* FAQ */
        .faq-list {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            gap: .9rem;
        }

        .faq-item {
            background: #fff;
            border: 1px solid rgba(15, 76, 219, .1);
            overflow: hidden;
            transition: all .4s;
        }

        .faq-item.open {
            border-color: rgba(15, 76, 219, .35);
            box-shadow: var(--sh);
        }

        .faq-q {
            padding: 1.5rem 1.8rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* cursor: none; */
            gap: 1rem;
        }

        .faq-q h4 {
            font-size: .93rem;
            font-weight: 600;
            color: var(--dk);
            flex: 1;
            line-height: 1.4;
        }

        .faq-arrow {
            width: 28px;
            height: 28px;
            border: 1.5px solid rgba(15, 76, 219, .2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all .35s;
            color: var(--bl);
            font-size: .9rem;
        }

        .faq-item.open .faq-arrow {
            background: var(--or);
            border-color: var(--or);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .4s ease;
        }

        .faq-item.open .faq-a {
            max-height: 320px;
        }

        .faq-a p {
            padding: 0 1.8rem 1.5rem;
            font-size: .86rem;
            color: var(--tx2);
            line-height: 1.88;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            border-top: 1px solid rgba(15, 76, 219, .07);
            padding-top: 1.1rem;
        }

        .faq-a a {
            color: var(--or);
            text-decoration: none;
            font-weight: 600;
        }

        /* Skating Guide */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
            margin-top: 3rem;
        }

        .gc {
            padding: 2.4rem;
            background: #fff;
            border: 1px solid rgba(15, 76, 219, .1);
            transition: box-shadow .4s;
            position: relative;
            overflow: hidden;
        }

        .gc::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--bl), var(--or));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .45s;
        }

        .gc:hover {
            box-shadow: var(--sh);
            transform: translateY(-6px);
            transition: transform .4s, box-shadow .4s;
        }

        .gc:hover::after {
            transform: scaleX(1);
        }

        .gc-icon {
            font-size: 2rem;
            margin-bottom: 1.1rem;
        }

        .gc h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .6rem;
        }

        .gc p {
            font-size: .83rem;
            color: var(--tx2);
            line-height: 1.85;
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
        }

        .gc ul {
            margin-top: .8rem;
            display: flex;
            flex-direction: column;
            gap: .3rem;
        }

        .gc li {
            font-size: .83rem;
            color: var(--tx2);
            padding-left: 1.1rem;
            position: relative;
            line-height: 1.7;
        }

        .gc li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--or);
            font-weight: 700;
        }

        .gear-tbl {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.3rem;
        }

        .gear-tbl th {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            color: #fff;
            padding: .85rem 1.1rem;
            text-align: left;
            font-size: .64rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .gear-tbl td {
            padding: .85rem 1.1rem;
            font-size: .83rem;
            color: var(--tx2);
            border-bottom: 1px solid rgba(15, 76, 219, .07);
        }

        .gear-tbl tr:hover td {
            background: var(--bl-lt);
        }

        .req {
            color: var(--or) !important;
            font-weight: 700 !important;
        }

        /* ══════════════
   MODAL
══════════════ */
        .modal-bg {
            position: fixed;
            inset: 0;
            background: rgba(5, 13, 30, .9);
            backdrop-filter: blur(16px);
            z-index: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity .4s;
        }

        .modal-bg.open {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: #fff;
            border-top: 4px solid var(--bl);
            width: 100%;
            max-width: 600px;
            max-height: 92vh;
            overflow-y: auto;
            padding: 3.2rem;
            position: relative;
            box-shadow: 0 40px 100px rgba(15, 76, 219, .35);
            scrollbar-width: thin;
            scrollbar-color: rgba(15, 76, 219, .2) transparent;
        }

        .mclose {
            position: absolute;
            top: 1.2rem;
            right: 1.4rem;
            background: none;
            border: none;
            color: var(--tx3);
            font-size: 1.5rem;
            /* cursor: none; */
            transition: color .3s;
            line-height: 1;
        }

        .mclose:hover {
            color: var(--or);
        }

        .modal h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            letter-spacing: .05em;
            color: var(--dk);
            margin-bottom: .3rem;
        }

        /* ══════════════
   COOKIE
══════════════ */
        .cookie {
            position: fixed;
            bottom: 1.4rem;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-top: 3px solid var(--bl);
            border: 1px solid rgba(15, 76, 219, .14);
            padding: 1.2rem 2rem;
            display: flex;
            align-items: center;
            gap: 1.6rem;
            flex-wrap: wrap;
            z-index: 800;
            max-width: 700px;
            width: calc(100% - 2.8rem);
            box-shadow: var(--sh2);
            animation: fadeUp .7s 2.5s both;
        }

        .cookie p {
            font-size: .78rem;
            color: var(--tx2);
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            flex: 1;
            min-width: 180px;
        }

        .ck-btn {
            padding: .5rem 1.4rem;
            font-family: 'Oswald', sans-serif;
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            /* cursor: none; */
            transition: all .3s;
        }

        .ck-ok {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            color: #fff;
            border: none;
        }

        .ck-ok:hover {
            background: linear-gradient(135deg, var(--or), var(--or2));
        }

        .ck-no {
            border: 1.5px solid rgba(15, 76, 219, .22);
            color: var(--tx3);
            background: none;
        }

        .ck-no:hover {
            border-color: var(--bl);
            color: var(--bl);
        }

        /* ══════════════
   CHATBOT
══════════════ */
        .chat-launcher {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            pointer-events: auto !important;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: .6rem;
        }

        .chat-help-label {
            display: flex;
            align-items: center;
            gap: .5rem;
            background: #fff;
            border: 1.5px solid rgba(15, 76, 219, .2);
            border-radius: 18px 18px 4px 18px;
            padding: .55rem 1.1rem .55rem 1.2rem;
            box-shadow: 0 8px 32px rgba(15, 76, 219, .16), 0 2px 10px rgba(0, 0, 0, .06);
            max-width: 235px;
            position: relative;
            margin-bottom: 5px;
            animation: hlabelIn .6s cubic-bezier(.34, 1.56, .64, 1) 1.2s both, hlabelFloat 2.4s ease-in-out 2s infinite;
            transform-origin: bottom right;
        }

        .chat-help-label::after {
            content: '';
            position: absolute;
            bottom: -9px;
            right: 22px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 4px solid transparent;
            border-top: 10px solid #fff;
        }

        @keyframes hlabelIn {
            from {
                opacity: 0;
                transform: translateY(14px) scale(.85);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        @keyframes hlabelFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .chat-help-label.hidden {
            display: none !important;
        }

        .chat-help-label span {
            font-family: 'Oswald', sans-serif;
            font-size: .73rem;
            font-weight: 600;
            color: var(--tx);
            line-height: 1.3;
            flex: 1;
        }

        .chat-help-close {
            background: none;
            border: none;
            color: var(--tx3);
            font-size: .8rem;
            /* cursor: none; */
            padding: 0;
            line-height: 1;
            flex-shrink: 0;
            transition: color .2s;
        }

        .chat-help-close:hover {
            color: var(--or);
        }

        .chat-btn {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 3px solid transparent;
            background: transparent;
            /* cursor: none; */
            z-index: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(15, 76, 219, 0.2), 0 0 15px rgba(244, 98, 10, 0.1);
            animation: chatGlow 2.8s ease-in-out infinite;
            transition: all .3s;
            overflow: visible; /* Changed to visible to avoid clipping if centered differently */
            padding: 0;
        }

        @keyframes chatGlow {

            0%,
            100% {
                box-shadow: 0 0 28px rgba(15, 76, 219, .55)
            }

            50% {
                box-shadow: 0 0 55px rgba(15, 76, 219, .9), 0 0 22px rgba(244, 98, 10, .3)
            }
        }

        .chat-btn:hover {
            transform: scale(1.12);
            background: linear-gradient(135deg, var(--or), var(--or2));
        }

        .chat-btn img.ico-chat {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            margin: auto;
        }

        .chat-btn.open .ico-chat {
            display: none !important;
        }

        .chat-btn.open .ico-x {
            display: block !important;
        }

        .chat-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 18px;
            height: 18px;
            background: var(--or);
            border-radius: 50%;
            color: #fff;
            font-size: .55rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
        }

        .chat-win {
            position: fixed;
            bottom: 5.5rem;
            right: 2rem;
            width: 380px;
            max-height: 600px;
            background: #fff;
            border-top: 3px solid var(--bl);
            border: 1px solid rgba(15, 76, 219, .16);
            box-shadow: var(--sh2);
            z-index: 10000; /* Extremely high z-index for Android compatibility */
            display: flex;
            flex-direction: column;
            transform: translateY(18px) scale(.94);
            opacity: 0;
            pointer-events: none;
            transition: all .36s cubic-bezier(.34, 1.56, .64, 1);
            overflow: hidden;
        }

        .chat-win.open {
            transform: none;
            opacity: 1;
            pointer-events: all;
        }

        .ch-head {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
            padding: .85rem 1.2rem;
            display: flex;
            align-items: center;
            gap: .8rem;
            flex-direction: row-reverse;
            justify-content: space-between;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .ch-head::after {
            content: '';
            position: absolute;
            right: -20px;
            top: -20px;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, .07);
            border-radius: 50%;
        }

        .ch-logo {
            width: 44px;
            height: 44px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            border-radius: 50%;
            overflow: visible;
            border: none;
        }

        .ch-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            margin: auto;
        }

        .ch-logo svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        .ch-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .ch-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.05rem;
            letter-spacing: .06em;
            color: #fff;
        }

        .ch-status {
            font-size: .58rem;
            color: rgba(255, 255, 255, .72);
            margin-top: .12rem;
            display: flex;
            align-items: center;
            gap: .35rem;
        }

        .ch-dot {
            width: 6px;
            height: 6px;
            background: #2ecc71;
            border-radius: 50%;
            animation: pulseDot 2s infinite;
        }

        .ch-x {
            background: none;
            border: none;
            color: rgba(255, 255, 255, .6);
            font-size: 1.2rem;
            cursor: pointer;
            transition: color .3s;
            z-index: 1;
            flex-shrink: 0;
            line-height: 1;
            padding: 5px;
            margin-right: -5px;
        }

        .ch-x:hover {
            color: #fff;
        }

        .conn-bar {
            background: #fff8e6;
            border-bottom: 1px solid rgba(244, 98, 10, .2);
            padding: .6rem 1rem;
            font-size: .72rem;
            color: var(--or);
            display: flex;
            align-items: center;
            gap: .55rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .conn-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--or);
            animation: connBlink .8s ease-in-out infinite;
        }

        @keyframes connBlink {

            0%,
            100% {
                transform: scale(1);
                opacity: 1
            }

            50% {
                transform: scale(1.6);
                opacity: .3
            }
        }

        .agent-bar {
            background: linear-gradient(90deg, rgba(15, 76, 219, .06), rgba(244, 98, 10, .03));
            border-bottom: 1px solid rgba(15, 76, 219, .09);
            padding: .65rem 1rem;
            display: flex;
            align-items: center;
            gap: .75rem;
            flex-shrink: 0;
        }

        .ag-av {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--or), var(--or2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: .9rem;
            color: #fff;
            flex-shrink: 0;
        }

        .ag-name {
            font-size: .8rem;
            font-weight: 700;
            color: var(--dk);
        }

        .ag-status {
            font-size: .6rem;
            color: var(--tx3);
            display: flex;
            align-items: center;
            gap: .3rem;
            margin-top: .1rem;
        }

        .ag-dot {
            width: 5px;
            height: 5px;
            background: #2ecc71;
            border-radius: 50%;
        }

        .ch-msgs {
            flex: 1;
            overflow-y: auto;
            padding: .9rem;
            display: flex;
            flex-direction: column;
            gap: .75rem;
            scrollbar-width: thin;
            scrollbar-color: rgba(15, 76, 219, .1) transparent;
        }

        .ch-msgs::-webkit-scrollbar {
            width: 3px;
        }

        .ch-msgs::-webkit-scrollbar-thumb {
            background: rgba(15, 76, 219, .14);
        }

        .cmsg {
            display: flex;
            gap: .5rem;
            align-items: flex-end;
            animation: msgIn .28s ease;
        }

        @keyframes msgIn {
            from {
                opacity: 0;
                transform: translateY(8px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .cmsg.u {
            flex-direction: row-reverse;
        }

        .bub {
            max-width: 85%;
            padding: .7rem .95rem;
            font-size: .81rem;
            line-height: 1.6;
        }

        .cmsg.b .bub {
            background: #eef3ff;
            border: 1.5px solid rgba(15, 76, 219, .1);
            border-radius: 0 13px 13px 13px;
            color: var(--tx);
        }

        .cmsg.u .bub {
            background: linear-gradient(135deg, var(--or), var(--or2));
            color: #fff;
            border-radius: 13px 0 13px 13px;
        }

        .cav {
            width: 26px;
            height: 26px;
            background: var(--or);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: .75rem;
            color: #fff;
            flex-shrink: 0;
        }

        .typ-ind {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: .65rem .9rem;
            background: #eef3ff;
            border: 1.5px solid rgba(15, 76, 219, .1);
            width: fit-content;
            border-radius: 0 13px 13px 13px;
        }

        .typ-ind span {
            width: 5px;
            height: 5px;
            background: rgba(15, 76, 219, .4);
            border-radius: 50%;
            animation: typBounce 1.2s ease-in-out infinite;
        }

        .typ-ind span:nth-child(2) {
            animation-delay: .22s;
        }

        .typ-ind span:nth-child(3) {
            animation-delay: .44s;
        }

        @keyframes typBounce {

            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: .35
            }

            30% {
                transform: translateY(-6px);
                opacity: 1
            }
        }

        .qr-row {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            padding: .8rem 1rem;
            background: #f8faff;
            border-top: 1px solid rgba(15, 76, 219, .07);
            flex-shrink: 0;
            position: relative;
            z-index: 100;
            touch-action: pan-y;
        }

        .qb {
            padding: .5rem .8rem;
            background: #fff;
            border: 1.5px solid rgba(15, 76, 219, .18);
            color: var(--bl);
            font-family: 'Oswald', sans-serif;
            font-size: .8rem;
            font-weight: 600;
            cursor: pointer !important;
            transition: all .2s;
            pointer-events: auto !important;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            border-radius: 6px;
            touch-action: manipulation !important; /* Critical for Android touch speed */
        }

        .qb:hover {
            border-color: var(--or);
            color: var(--or);
            background: var(--or-lt);
        }

        .ch-inp-row {
            border-top: 1.5px solid rgba(15, 76, 219, .08);
            padding: .75rem .9rem;
            display: flex;
            gap: .5rem;
            align-items: center;
            flex-shrink: 0;
            background: #fff;
        }

        .ch-inp {
            flex: 1;
            background: #f6f8ff;
            border: 1.5px solid rgba(15, 76, 219, .1);
            color: var(--tx);
            font-family: 'Oswald', sans-serif;
            font-size: .81rem;
            padding: .55rem .85rem;
            outline: none;
            transition: border-color .3s;
        }

        .ch-inp::placeholder {
            color: var(--tx3);
        }

        .ch-inp:focus {
            border-color: var(--bl);
        }

        .ch-send {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--or), var(--or2));
            border: none;
            /* cursor: none; */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s;
            flex-shrink: 0;
        }

        .ch-send:hover {
            background: linear-gradient(135deg, var(--bl), var(--bl2));
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(3.8rem, 6.5vw, 7.2rem);
            line-height: .88;
            letter-spacing: .03em;
            color: var(--dk);
            -webkit-text-stroke: 1.5px #000;
            text-stroke: 1.5px #000;
            opacity: 0;
            animation: fadeUp .8s .25s forwards;
        }

        .hero-sub-text {
            color: var(--or);
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1rem;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            opacity: 0;
            animation: fadeUp .8s .45s forwards;
        }

        /* ── GALLERY ── */
        .gallery-grid {
            margin-top: 4rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .gallery-row-v {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .gallery-row-h {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .mi {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--sh);
            background: var(--dk);
        }

        .mi img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s cubic-bezier(0.2, 1, 0.3, 1), filter .5s;
        }

        .v-item { height: 580px; }
        .h-item { height: 380px; }

        .mi:hover img {
            transform: scale(1.08);
            filter: saturate(1.1);
        }

        .mi-cap {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 13, 30, 0.8) 0%, transparent 60%);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .mi:hover .mi-cap { opacity: 1; }

        .mi-cap span {
            color: #fff;
            font-family: 'Oswald', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
            transform: translateY(15px);
            transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .mi:hover .mi-cap span { transform: translateY(0); }

        /* ══════════════════════════════════════
           RESPONSIVE DESIGN (TABLETS & MOBILE)
        ══════════════════════════════════════ */

        /* --- TABLETS / IPAD (1024px) --- */
        @media (max-width: 1024px) {
            nav { padding: 0.7rem 2.5rem !important; }
            .sw, .pg-hero-in, .stats-in, .sub-in, .ft-in, .hero-in {
                padding-left: 2.5rem !important;
                padding-right: 2.5rem !important;
            }

            .hero-in {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero-right { display: none; }

            .how-grid, .cls-grid, .loc-grid, .vid-grid, .masonry, .ft-grid, .stats-in, .gallery-row-v, .gallery-row-h {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .r-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .cnt-grid, .about-grid, .guide-grid {
                grid-template-columns: 1fr !important;
            }

            .hero h1 { font-size: 3.8rem !important; }
            .h1-em { font-size: 2.8rem !important; }

            .mi.tall { min-height: 280px !important; }
            .mi.wide { grid-column: span 2 !important; }
        }

        /* --- MOBILE / SMALL TABLET (768px) --- */
        @media (max-width: 768px) {
            nav { padding: 0.7rem 1.5rem !important; background: transparent !important; box-shadow: none !important; border: none !important; }
            nav.scrolled, nav.mob-open { background: var(--bl3) !important; box-shadow: 0 4px 40px rgba(0, 0, 0, .3) !important; }

            nav .hmb { display: flex !important; }
            nav #nav-ul { 
                display: none; 
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 76, 219, 0.98);
                padding: 1.8rem 1.5rem;
                gap: 1.2rem;
                box-shadow: 0 10px 40px rgba(0,0,0,0.3);
                max-height: 80vh;
                overflow-y: auto;
            }
            nav.mob-open #nav-ul { display: flex !important; }
            .hide-m { display: none; }
            nav.mob-open .hide-m { display: block !important; }

            .sw, .pg-hero-in, .stats-in, .sub-in, .ft-in, .hero-in {
                padding-left: 1.5rem !important;
                padding-right: 1.5rem !important;
            }

            .hero { padding-top: 5rem !important; padding-bottom: 3rem !important; }
            .hero h1 { font-size: 2.8rem !important; line-height: 1.1 !important; }
            .h1-em { font-size: 2rem !important; }
            .hero-sub-text { font-size: 0.88rem !important; margin-top: 0.8rem !important; }

            .gallery-row-v, .gallery-row-h {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            .v-item, .h-item { height: 350px !important; }
            .hero-center-box { max-width: 100% !important; }
            .hero-trust { display: none !important; }
            .hero-ctas { 
                flex-direction: column; 
                width: 100%; 
                gap: 1rem !important; 
                margin-top: 2rem !important;
            }
            .hero-ctas a { width: 100%; text-align: center; padding: 1rem !important; }

            .how-grid, .cls-grid, .loc-grid, .vid-grid, .masonry, .ft-grid, .stats-in, .f2 {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }

            .sec-title { font-size: 2.4rem !important; }
            .section { padding: 3.5rem 0 !important; }
            .pg-hero h1 { font-size: 2.8rem !important; }
            .stat-n { font-size: 2.6rem !important; }

            .cta-band, .sub-in { flex-direction: column; text-align: center; gap: 1.5rem !important; }
            .sub-form { width: 100%; }

            #cur, #cur-ring { display: none !important; }
            body { cursor: auto !important; }

            .chat-win {
                width: calc(100vw - 2rem) !important;
                height: 70vh !important;
                bottom: 5.5rem !important;
                right: 1rem !important;
                border-radius: 12px !important;
            }
            .chat-launcher {
                transform: scale(0.8);
                transform-origin: bottom right;
            }
        }

        /* --- SMALL MOBILE (480px) --- */
        @media (max-width: 480px) {
            nav { padding: 0.7rem 1rem !important; }
            .sw, .pg-hero-in, .stats-in, .sub-in, .ft-in, .hero-in {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            .hero h1 { font-size: 2.4rem !important; }
            .h1-em { font-size: 1.8rem !important; }
            .sec-title { font-size: 2.1rem !important; }
            .pg-hero h1 { font-size: 2.4rem !important; }
        }

        .pg-back-btn {
            position: absolute;
            top: 2rem;
            left: 5rem;
            z-index: 100;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 0.6rem 1.2rem;
            font-family: 'Oswald', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .pg-back-btn:hover {
            background: var(--or);
            border-color: var(--or);
        }

        /* ══════════════════════════════════════
           ADMIN & LOGIN RESPONSIVE
        ══════════════════════════════════════ */
        @media (max-width: 768px) {
            .admin-container, .admin-wrap { margin-top: 80px !important; padding: 1.5rem !important; }
            .glass-panel { padding: 1.5rem !important; border-radius: 16px !important; }
            .header-flex { flex-direction: column !important; align-items: stretch !important; gap: 1.5rem !important; }
            .admin-title { font-size: 2.5rem !important; }
            .class-card { flex-direction: column !important; align-items: flex-start !important; gap: 1.2rem !important; }
            .card-actions { width: 100% !important; justify-content: flex-end !important; }
            
            .pg-back-btn {
                top: 6rem;
                left: 1.5rem;
                font-size: 0.7rem;
                padding: 0.5rem 1rem;
            }
            .chat-win {
                width: 90% !important;
                right: 5% !important;
                bottom: 5rem !important;
                max-height: 70vh !important;
            }
            .qr-row {
                max-height: 180px !important;
                overflow-y: auto !important;
                gap: 0.6rem !important;
                padding: 1.2rem !important;
            }
            .qb {
                font-size: 0.9rem !important;
                padding: 0.7rem 1.3rem !important;
                cursor: pointer !important;
                min-width: 80px;
                text-align: center;
            }
            
            .login-wrap { padding: 2.5rem 1.5rem !important; width: 95% !important; }
            .login-wrap h1 { font-size: 2.5rem !important; }
            
            .form-grid { grid-template-columns: 1fr !important; }
            .form-group.full { grid-column: span 1 !important; }
        }

        /* Term Styles */
        .term-sec h3 {
            font-size: 1.4rem;
            color: var(--tx);
            margin: 2rem 0 1rem;
            border-bottom: 2px solid rgba(15, 76, 219, 0.1);
            padding-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .term-sec h4 {
            font-size: 1.1rem;
            color: var(--bl);
            margin: 1.5rem 0 0.5rem;
            font-weight: 700;
        }
        .term-sec p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: var(--tx2);
            line-height: 1.7;
        }
        .term-sec ul {
            list-style: disc;
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--tx2);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .term-sec li { margin-bottom: 0.5rem; }


        @media (max-width: 480px) {
            nav { padding: .7rem 1.2rem; }
            .sw, .pg-hero-in, .stats-in, .sub-in, .ft-in, .hero-in {
                padding-left: 1.2rem !important;
                padding-right: 1.2rem !important;
            }
            .hero h1 { font-size: 2.5rem !important; }
            .h1-em { font-size: 1.8rem !important; }
            .stats-in { grid-template-columns: 1fr !important; }
            .pg-hero h1 { font-size: 2.8rem !important; }
            .stat-n { font-size: 2.8rem !important; }
            .sec-title { font-size: 2.1rem !important; }
        }

        /* ══════════════════════════════════════
           ADMIN PAGES RESPONSIVE DESIGN
        ══════════════════════════════════════ */
        @media (max-width: 768px) {
            .admin-wrap {
                margin: 100px 15px 40px !important;
                padding: 1.5rem !important;
            }
            .admin-title {
                font-size: 2.5rem !important;
            }
            .chat-container {
                height: 70vh !important;
            }
            .chat-header {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
            .chat-input-area {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem !important;
            }
            .chat-input-area button {
                padding: 0.8rem !important;
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            #cur, #cur-ring { display: none !important; }
            body { cursor: auto !important; }
            .hero-center-box { max-width: 100% !important; }
        }


        /* ══════════════════════════════════════════════
           FLOATING WHATSAPP
        ══════════════════════════════════════════════ */
        .float-wa {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
        }

        .float-wa:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        }

        @media (max-width: 768px) {
            .float-wa {
                bottom: 1.5rem;
                left: 1.5rem;
                width: 50px;
                height: 50px;
            }
            .float-wa svg {
                width: 24px !important;
                height: 24px !important;
            }
        }

        /* Chat Tooltip */
        .chat-tooltip {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: #fff;
            color: var(--dk);
            padding: 10px 18px;
            border-radius: 20px 20px 0 20px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            pointer-events: none;
            animation: floatTooltip 3s infinite ease-in-out;
            opacity: 1;
            transition: opacity 0.3s;
            border: 1px solid rgba(15,76,219,0.1);
        }
        .chat-tooltip::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 15px;
            width: 12px;
            height: 12px;
            background: #fff;
            transform: rotate(45deg);
            border-bottom: 1px solid rgba(15,76,219,0.1);
            border-right: 1px solid rgba(15,76,219,0.1);
        }
        @keyframes floatTooltip {
            0% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0); }
        }
        .chat-btn.open .chat-tooltip {
            opacity: 0;
            display: none;
        }


        /* -- LOCATION BADGE -- */
        .lc { position: relative; overflow: hidden; }
        .lc-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #ff4d00;
            color: #fff;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4);
            pointer-events: none;
            animation: badgePulse 2s infinite;
        }
        @keyframes badgePulse {
            0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(255, 77, 0, 0.6); }
            100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4); }
        }
        /* -- CONTACT WIDGET -- */
        .contact-widget {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .float-contact {
            width: 60px;
            height: 60px;
            background: var(--bl);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(15, 76, 219, 0.4);
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1001;
        }

        .float-contact:hover {
            transform: scale(1.1) rotate(5deg);
            background: var(--bl2);
        }

        .float-contact svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        .contact-menu {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .contact-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            background: #fff;
            border-radius: 50px;
            text-decoration: none;
            color: var(--dk);
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 1px solid rgba(15, 76, 219, 0.1);
            width: max-content;
        }

        .contact-item:hover {
            transform: translateX(10px);
            background: var(--bl-lt);
            color: var(--bl);
            border-color: var(--bl);
        }

        .contact-item i {
            font-size: 1.1rem;
        }

        .contact-item.wa { background: #25D366; color: #fff; border: none; }
        .contact-item.ph { background: var(--or); color: #fff; border: none; }
        .contact-item.ms { background: var(--bl); color: #fff; border: none; }

        .contact-item.wa:hover { background: #20b858; color: #fff; }
        .contact-item.ph:hover { background: #d95708; color: #fff; }
        .contact-item.ms:hover { background: var(--bl3); color: #fff; }

        @media (max-width: 768px) {
            .contact-widget {
                bottom: 20px;
                left: 20px;
            }
            .float-contact {
                width: 50px;
                height: 50px;
            }
            .contact-item {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }

        /* ── PROGRAM OVERVIEW TABLE ── */
        .prog-table-container {
            width: 100%;
            overflow-x: auto;
            background: #fff;
            border-radius: 20px;
            box-shadow: var(--sh);
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .prog-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        .prog-table th {
            text-align: left;
            padding: 1.2rem;
            background: var(--bl-lt);
            color: var(--bl);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-bottom: 2px solid var(--bl-lt);
        }

        .prog-table td {
            padding: 1.5rem 1.2rem;
            border-bottom: 1px solid var(--bl-lt);
            vertical-align: middle;
            font-size: 0.95rem;
            color: var(--tx2);
            line-height: 1.6;
            font-family: 'Inter', sans-serif; /* Cleaner for table data */
        }

        .prog-table tr:last-child td {
            border-bottom: none;
        }


        .grp-cell {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .grp-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
        }
        
        .grp-cell div {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .prog-table-container {
                padding: 0.8rem;
                border-radius: 12px;
            }
            .prog-table td, .prog-table th {
                padding: 1rem 0.8rem;
                font-size: 0.85rem;
            }
        }
