
        /* ── TOKENS ── */
        :root {
            /* Requested Theme */
            --bg: #0B0D10;
            --surface: #12151A;
            --border: #1E232B;
            --text: #E6EAF0;
            --muted: #9AA4B2;
            --yellow: #F5C518;
            --blue: #1FB6E8;
            --error: #ef4444;
            --success: #22c55e;
            --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
            --r-sm: 10px;
            --r-md: 14px;
            --r-lg: 18px;
            --shadow-1: 0 10px 30px rgba(0, 0, 0, .40);
            --shadow-2: 0 20px 60px rgba(0, 0, 0, .55);
            --ease: cubic-bezier(.2, .8, .2, 1);
            --header-h: 64px;
            --container: 1200px;
            color-scheme: dark;

            /* Legacy Aliases & Extraneous variables mapped to new theme */
            --y: var(--yellow);
            --yh: #D4A914;
            --b: var(--blue);
            --bh: #1799C5;
            --surface2: #181C23;
            --brd: var(--border);
            --brd2: #252B35;
            --muted2: #6B7585;
            --green: var(--success);
            --red: var(--error);
            --orange: #f97316;
            --fh: var(--font-head);
            --fb: var(--font-body);
            --mono: 'JetBrains Mono', monospace;
        }

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

        html {
            scroll-behavior: smooth;
        }

        /* ── PREMIUM SCROLLBAR ── */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
            border-left: 1px solid var(--border);
        }
        ::-webkit-scrollbar-thumb {
            background: #2D3340;
            border-radius: 8px;
            border: 2px solid var(--bg);
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4A5568;
        }

        body {
            font-family: var(--fb);
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            cursor: none;
        }

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

        button {
            border: none;
            background: none;
            font: inherit;
            cursor: none
        }

        img {
            display: block;
            max-width: 100%
        }

        /* ── CURSOR ── */
        #cur {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--y);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%)
        }

        #cur-ring {
            position: fixed;
            width: 28px;
            height: 28px;
            border: 1.5px solid rgba(245, 197, 24, .45);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%);
            transition: width .15s, height .15s, border-color .15s
        }

        body.hover-state #cur-ring {
            width: 40px;
            height: 40px;
            border-color: rgba(245, 197, 24, .8)
        }

        /* ── CELEBRATION CANVAS ── */
        #cel {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9000
        }

        /* ── NAV ── */
        #nav {
            position: sticky;
            top: 0;
            z-index: 800;
            height: 64px;
            background: rgba(11, 13, 16, .95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--brd);
            display: flex;
            align-items: center;
            padding: 0 clamp(16px, 4vw, 52px)
        }

        .nav-inner {
            width: 100%;
            max-width: 1340px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0
        }

        .nav-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-right: 40px
        }

        .nav-logo img {
            width: 120px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            flex: 1
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            padding: 7px 14px;
            border-radius: 7px;
            transition: color .15s, background .15s;
            white-space: nowrap
        }

        .nav-links a:hover,
        .nav-links a.nav-active {
            color: var(--text);
            background: rgba(255, 255, 255, .06)
        }

        .nav-links a.nav-active {
            color: var(--y);
            background: rgba(245, 197, 24, .08);
            box-shadow: inset 0 -2px 0 var(--y);
            border-radius: 7px 7px 0 0;
        }

        #nav-progress {
            position: absolute;
            bottom: -1px;
            left: 0;
            height: 2px;
            background: var(--y);
            width: 0%;
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px rgba(245, 197, 24, .5);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0
        }

        /* single-button toggles */
        .tog-btn {
            font-family: var(--mono);
            font-size: 12px;
            font-weight: 500;
            color: var(--muted);
            padding: 7px 14px;
            border-radius: 7px;
            border: 1px solid var(--brd2);
            background: var(--surface);
            transition: all .2s;
            letter-spacing: .06em;
            min-width: 52px;
            text-align: center
        }

        .tog-btn:hover {
            color: var(--text);
            border-color: rgba(245, 197, 24, .35);
            background: rgba(245, 197, 24, .06)
        }

        #lang-btn.active-sw {
            color: var(--y);
            border-color: rgba(245, 197, 24, .3);
            background: rgba(245, 197, 24, .07)
        }

        #cur-btn.active-tzs {
            color: var(--b);
            border-color: rgba(31, 182, 232, .3);
            background: rgba(31, 182, 232, .07)
        }

        .nav-sub-btn {
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            padding: 8px 16px;
            border-radius: 7px;
            border: 1px solid var(--brd2);
            transition: all .2s
        }

        .nav-sub-btn:hover {
            color: var(--text);
            background: var(--surface2)
        }

        .nav-cta {
            font-size: 13px;
            font-weight: 700;
            background: var(--y);
            color: #000;
            padding: 9px 20px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: background .15s, transform .13s, box-shadow .15s;
            font-family: var(--fb)
        }

        .nav-cta:hover {
            background: var(--yh);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(245, 197, 24, .3)
        }

        /* BURGER */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
            margin-left: 4px
        }

        .burger span {
            display: block;
            width: 20px;
            height: 1.8px;
            background: rgba(255, 255, 255, .7);
            transition: transform .25s, opacity .25s
        }

        .burger.open span:nth-child(1) {
            transform: translateY(6.8px) rotate(45deg)
        }

        .burger.open span:nth-child(2) {
            opacity: 0
        }

        .burger.open span:nth-child(3) {
            transform: translateY(-6.8px) rotate(-45deg)
        }

        /* MOB MENU */
        #mob {
            display: none;
            position: fixed;
            inset: 0;
            top: 64px;
            background: rgba(11, 13, 16, .98);
            backdrop-filter: blur(16px);
            z-index: 700;
            flex-direction: column;
            padding: 24px;
            gap: 4px;
            overflow-y: auto
        }

        #mob.open {
            display: flex
        }

        #mob a {
            font-size: 20px;
            font-weight: 600;
            color: var(--muted);
            padding: 14px 0;
            border-bottom: 1px solid var(--brd)
        }

        #mob a:hover {
            color: var(--text)
        }

        .mob-footer {
            display: flex;
            gap: 10px;
            margin-top: 24px;
            flex-wrap: wrap
        }

        .mob-footer a {
            flex: 1;
            min-width: 120px;
            text-align: center;
            padding: 14px;
            border-radius: 9px;
            font-size: 14px;
            font-weight: 700
        }

        /* ── HERO ── */
        #hero {
            background: var(--bg);
            padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 60px) 0;
            text-align: left;
            overflow: hidden;
            position: relative
        }

        /* layered glow */
        .hero-glow {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 80% 50% at 50% -2%, rgba(245, 197, 24, .16) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 85% 18%, rgba(31, 182, 232, .07) 0%, transparent 50%);
            animation: glowPulse 8s ease-in-out infinite
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .65
            }
        }

        /* animated grid */
        .hero-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(245, 197, 24, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 197, 24, .04) 1px, transparent 1px);
            background-size: 60px 60px;
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 70%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 70%);
            animation: gridDrift 25s linear infinite
        }

        @keyframes gridDrift {
            from {
                background-position: 0 0
            }

            to {
                background-position: 60px 60px
            }
        }

        /* particles */
        .hero-ptcls {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden
        }

        .ptcl {
            position: absolute;
            border-radius: 50%;
            animation: ptclFloat linear infinite;
            opacity: 0
        }

        @keyframes ptclFloat {
            0% {
                transform: translateY(100vh);
                opacity: 0
            }

            10% {
                opacity: .8
            }

            85% {
                opacity: .3
            }

            100% {
                transform: translateY(-10vh);
                opacity: 0
            }
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1340px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        @media(max-width:960px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
            }
        }

        /* badge */
        .h-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 197, 24, .07);
            border: 1px solid rgba(245, 197, 24, .22);
            border-radius: 100px;
            padding: 6px 18px 6px 10px;
            margin-bottom: 32px;
            animation: fadeUp .6s .1s var(--ease) both
        }

        .h-pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--y);
            flex-shrink: 0;
            animation: pulseDot 2.2s ease-in-out infinite
        }

        @keyframes pulseDot {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 197, 24, .7)
            }

            70% {
                box-shadow: 0 0 0 10px rgba(245, 197, 24, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(245, 197, 24, 0)
            }
        }

        .h-badge span {
            font-size: 12px;
            font-weight: 600;
            color: var(--y);
            font-family: var(--mono);
            letter-spacing: .04em
        }

        /* headline */
        .h-h1 {
            font-family: var(--fh);
            font-size: clamp(40px, 7vw, 92px);
            font-weight: 800;
            line-height: 1.02;
            letter-spacing: -.04em;
            color: var(--text);
            margin-bottom: 16px
        }

        .h-h1 .line {
            display: block;
            overflow: hidden
        }

        .h-h1 .line-inner {
            display: inline-block;
            transform: translateY(105%);
            animation: lineUp .75s var(--ease) both
        }

        .h-h1 .line:nth-child(1) .line-inner {
            animation-delay: .2s
        }

        .h-h1 .line:nth-child(2) .line-inner {
            animation-delay: .38s
        }

        @keyframes lineUp {
            to {
                transform: translateY(0)
            }
        }

        .shine-y {
            background: linear-gradient(110deg, var(--y) 20%, #ffe880 50%, var(--y) 80%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shine 3.5s 1.5s linear infinite
        }

        @keyframes shine {
            to {
                background-position: -200% center
            }
        }

        .col-b {
            color: var(--b)
        }

        /* sub — typewriter */
        .h-sub {
            font-size: clamp(15px, 2vw, 20px);
            color: var(--muted);
            margin-bottom: 36px;
            min-height: 1.8em;
            animation: fadeUp .6s .7s var(--ease) both
        }

        #tw-cursor {
            display: inline-block;
            width: 2px;
            height: .9em;
            background: var(--y);
            vertical-align: middle;
            margin-left: 1px;
            animation: blink .7s step-end infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0
            }
        }

        /* social proof */
        .h-proof {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 32px;
            animation: fadeUp .6s .85s var(--ease) both
        }

        @media(max-width:960px) {
            .h-proof {
                justify-content: center;
            }
        }

        .h-avs {
            display: flex
        }

        .h-av {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid var(--bg);
            font-size: 11px;
            font-weight: 800;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: var(--fh)
        }

        .h-av+.h-av {
            margin-left: -9px
        }

        .av1 {
            background: var(--y)
        }

        .av2 {
            background: var(--b)
        }

        .av3 {
            background: var(--green)
        }

        .av4 {
            background: var(--orange)
        }

        .av5 {
            background: #a78bfa
        }

        .h-stars {
            color: var(--y);
            font-size: 14px;
            letter-spacing: 2px;
            margin-left: 4px
        }

        .h-proof-text {
            font-size: 13px;
            color: var(--muted)
        }

        .h-proof-text strong {
            color: var(--text);
            font-weight: 600
        }

        /* ctas */
        .h-ctas {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 16px;
            animation: fadeUp .6s 1s var(--ease) both
        }

        @media(max-width:960px) {
            .h-ctas {
                justify-content: center;
            }
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--y);
            color: #000;
            font-size: 16px;
            font-weight: 700;
            padding: 15px 32px;
            border-radius: 10px;
            font-family: var(--fh);
            transition: background .15s, transform .15s, box-shadow .15s
        }

        .btn-gold:hover {
            background: var(--yh);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 197, 24, .35)
        }

        .btn-gold svg {
            transition: transform .2s
        }

        .btn-gold:hover svg {
            transform: translateX(4px)
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--muted);
            padding: 14px 26px;
            border-radius: 10px;
            border: 1.5px solid var(--brd2);
            transition: all .2s
        }

        .btn-ghost:hover {
            color: var(--text);
            border-color: rgba(31, 182, 232, .4);
            background: rgba(31, 182, 232, .06)
        }

        .h-micro {
            font-size: 12.5px;
            color: var(--muted2);
            margin-bottom: 52px;
            animation: fadeUp .6s 1.1s var(--ease) both
        }

        .h-micro a {
            color: var(--muted);
            text-decoration: underline
        }

        /* stats bar */
        .h-stats {
            display: flex;
            border-top: 1px solid var(--brd);
            max-width: 100%;
            margin: 0;
            animation: fadeUp .7s 1.2s var(--ease) both
        }

        @media(max-width:960px) {
            .h-stats {
                margin: 0 auto;
            }
        }

        .h-stat {
            flex: 1;
            padding: 22px 10px;
            text-align: center;
            border-right: 1px solid var(--brd)
        }

        .h-stat:last-child {
            border-right: none
        }

        .h-stat-n {
            font-family: var(--fh);
            font-size: clamp(20px, 3vw, 34px);
            font-weight: 800;
            color: var(--text);
            line-height: 1;
            margin-bottom: 4px
        }

        .h-stat-n em {
            font-style: normal;
            color: var(--y)
        }

        .h-stat-l {
            font-size: 11px;
            color: var(--muted2);
            text-transform: uppercase;
            letter-spacing: .6px
        }

        /* ── 3D LAPTOP ANIMATION ── */
        .laptop-container {
            perspective: 1500px;
            width: min(580px, 92vw);
            max-width: 100%;
            padding-top: 20px;
            padding-bottom: 60px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
            animation: laptopEntrance 1.5s cubic-bezier(.16, 1, .3, 1) forwards;
            overflow: visible;
        }

        @keyframes laptopEntrance {
            0% {
                transform: translateY(15vh) scale(0.9);
                opacity: 0;
            }

            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .laptop-wrapper {
            position: relative;
            width: 100%;
            transform-style: preserve-3d;
            animation: laptopFloat 14s ease-in-out infinite;
        }

        @keyframes laptopFloat {

            0%,
            10% {
                transform: rotateY(155deg) rotateX(20deg) translateZ(-40px);
            }

            18%,
            85% {
                transform: rotateY(-10deg) rotateX(6deg) translateZ(0) translateY(-8px);
            }

            92%,
            100% {
                transform: rotateY(155deg) rotateX(20deg) translateZ(-40px);
            }
        }

        .laptop-base {
            position: absolute;
            top: 100%;
            left: 2%;
            width: 96%;
            aspect-ratio: 16/10;
            background: linear-gradient(135deg, #e5e7eb, #9ca3af);
            /* light silver metal */
            transform-origin: top center;
            transform: rotateX(80deg) translateY(0);
            border-radius: 6px 6px 12px 12px;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 20px 30px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4%;
        }

        .laptop-keyboard {
            width: 92%;
            height: 60%;
            background: #9ca3af;
            border-radius: 4px;
            margin-bottom: 4%;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
            background-image: repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(0, 0, 0, 0.1) 18px, rgba(0, 0, 0, 0.1) 20px), repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(0, 0, 0, 0.1) 18px, rgba(0, 0, 0, 0.1) 20px);
        }

        .laptop-touchpad {
            width: 32%;
            height: 24%;
            background: #d1d5db;
            border-radius: 3px;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .laptop-lid {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10.5;
            background: #000;
            border-radius: 8px;
            transform-origin: bottom center;
            transform-style: preserve-3d;
            box-shadow: inset 0 0 0 1px #9ca3af, 0 0 15px rgba(31, 182, 232, 0.2);
            animation: lidOpen 14s infinite cubic-bezier(.16, 1, .3, 1);
            border: 2px solid #d1d5db;
            border-bottom: 4px solid #9ca3af;
        }

        .laptop-lid-back {
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #f3f4f6, #d1d5db);
            /* light silver metal */
            border-radius: 8px;
            transform: translateZ(-2px) rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #d1d5db;
        }

        .laptop-logo {
            width: 36px;
            height: 36px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            opacity: 0.8;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .laptop-logo div {
            background: #9ca3af;
        }

        @keyframes lidOpen {

            0%,
            10% {
                transform: rotateX(-82deg);
                box-shadow: none;
            }

            18%,
            85% {
                transform: rotateX(0deg);
                box-shadow: 0 0 30px rgba(31, 182, 232, 0.3);
            }

            92%,
            100% {
                transform: rotateX(-82deg);
                box-shadow: none;
            }
        }

        .laptop-screen {
            position: absolute;
            inset: 2%;
            /* modern thin bezel */
            background: #000;
            border-radius: 3px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .screen-loader {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #000;
            z-index: 10;
            opacity: 0;
            animation: loaderPhase 14s infinite;
        }

        .w-logo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
        }

        .w-logo div {
            background: var(--blue);
        }

        .w-dots {
            display: flex;
            gap: 6px;
        }

        .w-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #fff;
            animation: wBounce 1s infinite alternate;
        }

        .w-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .w-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        .w-dot:nth-child(4) {
            animation-delay: 0.6s;
        }

        @keyframes wBounce {
            0% {
                transform: translateY(0);
                opacity: 0.5;
            }

            100% {
                transform: translateY(-5px);
                opacity: 1;
            }
        }

        @keyframes loaderPhase {

            0%,
            26% {
                opacity: 1;
                z-index: 10;
            }

            28%,
            100% {
                opacity: 0;
                z-index: -1;
            }
        }

        .screen-browser {
            position: absolute;
            inset: 0;
            background: var(--surface);
            z-index: 9;
            opacity: 0;
            animation: browserPhase 14s infinite;
            display: flex;
            flex-direction: column;
        }

        .browser-bar {
            height: 18px;
            background: #1f2937;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            padding: 0 8px;
            gap: 4px;
        }

        .b-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

        .b-dot:nth-child(1) {
            background: #ef4444;
        }

        .b-dot:nth-child(2) {
            background: #eab308;
        }

        .b-dot:nth-child(3) {
            background: #22c55e;
        }

        .b-url {
            height: 10px;
            background: #111827;
            border-radius: 5px;
            margin-left: 6px;
            flex: 1;
        }

        .b-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: var(--surface);
            border-radius: 0 0 3px 3px;
        }

        .g-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .g-search-bar {
            width: 80%;
            height: 22px;
            border: 1px solid var(--border);
            border-radius: 11px;
            display: flex;
            align-items: center;
            padding: 0 10px;
            background: var(--bg);
        }

        .b-text {
            font-family: var(--font-body);
            font-size: 9px;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            width: 0;
            border-right: 1px solid var(--text);
            animation: typeUrl 14s infinite steps(13);
        }

        @keyframes browserPhase {

            0%,
            26% {
                opacity: 0;
                z-index: 9;
            }

            28%,
            45% {
                opacity: 1;
                z-index: 9;
            }

            48%,
            100% {
                opacity: 0;
                z-index: -1;
            }
        }

        @keyframes typeUrl {

            0%,
            30% {
                width: 0;
                border-right-color: var(--text);
            }

            38%,
            45% {
                width: 75px;
                border-right-color: transparent;
            }

            48%,
            100% {
                width: 75px;
                border-right-color: transparent;
            }
        }

        .screen-ui {
            opacity: 0;
            animation: uiReveal 14s infinite, glitchEffect 14s infinite;
            position: relative;
            z-index: 5;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: var(--surface);
            /* match root theme */
            color: var(--text);
        }

        @keyframes glitchEffect {

            0%,
            45% {
                clip-path: inset(0 0 0 0);
                transform: translate(0);
                filter: hue-rotate(0deg);
            }

            46% {
                clip-path: inset(20% 0 80% 0);
                transform: translate(-2px, 2px);
                filter: hue-rotate(90deg) drop-shadow(0 0 10px var(--error));
            }

            47% {
                clip-path: inset(60% 0 10% 0);
                transform: translate(2px, -2px);
                filter: hue-rotate(180deg);
            }

            48%,
            68% {
                clip-path: inset(0 0 0 0);
                transform: translate(0);
                filter: hue-rotate(0deg);
            }

            69% {
                clip-path: inset(40% 0 40% 0);
                transform: translate(-3px, 0);
                filter: drop-shadow(0 0 5px var(--blue));
            }

            70%,
            100% {
                clip-path: inset(0 0 0 0);
                transform: translate(0);
                filter: hue-rotate(0deg);
            }
        }

        .ui-header {
            height: 18px;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 12px;
        }

        @keyframes uiReveal {

            0%,
            45% {
                opacity: 0;
                transform: scale(1.02);
                filter: blur(4px);
            }

            48%,
            85% {
                opacity: 1;
                transform: scale(1);
                filter: blur(0);
            }

            88%,
            100% {
                opacity: 0;
                transform: scale(0.98);
            }
        }

        .ui-logo {
            width: 40px;
            height: 6px;
            background: var(--blue);
            border-radius: 2px;
        }

        .ui-links {
            display: flex;
            gap: 8px;
        }

        .ui-link {
            width: 18px;
            height: 4px;
            background: var(--muted);
            border-radius: 2px;
        }

        .ui-body {
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
        }

        .ui-hero {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .ui-hero-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .ui-h1 {
            width: 80%;
            height: 12px;
            background: var(--yellow);
            border-radius: 2px;
        }

        .ui-h2 {
            width: 100%;
            height: 6px;
            background: var(--muted);
            border-radius: 2px;
            margin-top: 4px;
        }

        .ui-h3 {
            width: 70%;
            height: 6px;
            background: var(--muted);
            border-radius: 2px;
        }

        .ui-btn {
            width: 50px;
            height: 14px;
            background: var(--blue);
            border-radius: 3px;
            margin-top: 6px;
        }

        .ui-hero-img {
            width: 80px;
            height: 60px;
            background: var(--border);
            border-radius: 6px;
        }

        .ui-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            margin-top: 8px;
        }

        .ui-card {
            height: 38px;
            background: var(--blue);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 6px 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }

        .ui-card-bar {
            height: 6px;
            background: #1f2937;
            border-radius: 2px;
        }

        .ui-card-line {
            height: 4px;
            border-radius: 2px;
        }

        /* Outer Floating Notifications */
        .floater-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            transform-style: preserve-3d;
        }

        .sn-card-outer {
            position: absolute;
            background: rgba(18, 21, 26, 0.85);
            /* surface color with opacity */
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            z-index: 10;
        }

        .sn-1 {
            top: 10%;
            right: -25%;
            transform: translateZ(60px) translateX(40px);
            animation: floatSale1 14s infinite cubic-bezier(.16, 1, .3, 1);
        }

        .sn-2 {
            top: 40%;
            right: -32%;
            transform: translateZ(90px) translateX(50px);
            animation: floatSale2 14s infinite cubic-bezier(.16, 1, .3, 1);
        }

        .sn-3 {
            bottom: 20%;
            right: -20%;
            transform: translateZ(120px) translateX(30px);
            animation: floatSale3 14s infinite cubic-bezier(.16, 1, .3, 1);
        }

        .sn-4 {
            top: 25%;
            left: -25%;
            transform: translateZ(50px) translateX(-40px);
            animation: floatSale4 14s infinite cubic-bezier(.16, 1, .3, 1);
        }

        @keyframes floatSale1 {

            0%,
            52% {
                transform: translateZ(60px) translateX(40px);
                opacity: 0;
            }

            54%,
            83% {
                transform: translateZ(60px) translateX(0);
                opacity: 1;
            }

            85%,
            100% {
                transform: translateZ(60px) translateX(40px);
                opacity: 0;
            }
        }

        @keyframes floatSale2 {

            0%,
            54% {
                transform: translateZ(90px) translateX(50px);
                opacity: 0;
            }

            56%,
            83% {
                transform: translateZ(90px) translateX(0);
                opacity: 1;
            }

            85%,
            100% {
                transform: translateZ(90px) translateX(50px);
                opacity: 0;
            }
        }

        @keyframes floatSale3 {

            0%,
            56% {
                transform: translateZ(120px) translateX(30px);
                opacity: 0;
            }

            58%,
            83% {
                transform: translateZ(120px) translateX(0);
                opacity: 1;
            }

            85%,
            100% {
                transform: translateZ(120px) translateX(30px);
                opacity: 0;
            }
        }

        @keyframes floatSale4 {

            0%,
            58% {
                transform: translateZ(50px) translateX(-40px);
                opacity: 0;
            }

            60%,
            83% {
                transform: translateZ(50px) translateX(0);
                opacity: 1;
            }

            85%,
            100% {
                transform: translateZ(50px) translateX(-40px);
                opacity: 0;
            }
        }

        .sn-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            flex-shrink: 0;
        }

        .sn-icon.green {
            background: var(--success);
        }

        .sn-icon.blue {
            background: var(--blue);
        }

        .sn-icon.yellow {
            background: var(--yellow);
        }

        .sn-icon.red {
            background: var(--error);
        }

        .sn-icon svg {
            width: 12px;
            height: 12px;
            color: #fff;
            font-weight: bold;
        }

        .sn-icon.yellow svg {
            color: #000;
        }

        .sn-col {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .sn-h {
            font-size: 11px;
            font-weight: 800;
            color: var(--text);
            font-family: var(--fh);
        }

        .sn-p {
            font-size: 9px;
            color: var(--muted);
        }

        .secure-outer {
            position: absolute;
            bottom: 5%;
            left: -15%;
            transform: translateZ(40px) translateY(20px) scale(0.9);
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.4);
            border-radius: 20px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: secureFloat 14s infinite cubic-bezier(.16, 1, .3, 1);
            backdrop-filter: blur(6px);
            box-shadow: 0 8px 15px rgba(34, 197, 94, 0.1);
        }

        @keyframes secureFloat {

            0%,
            60% {
                transform: translateZ(40px) translateY(20px) scale(0.9);
                opacity: 0;
            }

            62%,
            83% {
                transform: translateZ(40px) translateY(0) scale(1.1);
                opacity: 1;
            }

            85%,
            100% {
                transform: translateZ(40px) translateY(20px) scale(0.9);
                opacity: 0;
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        /* ── SHARED SECTION STYLES ── */
        .sec {
            padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 60px);
            position: relative;
        }

        .sec::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--blue), transparent);
            box-shadow: 0 0 15px var(--blue);
            opacity: 0.5;
            z-index: 10;
        }

        .sec-inner {
            max-width: 1340px;
            margin: 0 auto
        }

        .sec-eye {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--y);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .sec-eye::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--y);
            border-radius: 1px;
            flex-shrink: 0
        }

        .sec-h2 {
            font-family: var(--fh);
            font-size: clamp(28px, 4vw, 54px);
            font-weight: 800;
            letter-spacing: -.04em;
            line-height: 1.05;
            margin-bottom: 16px
        }

        .sec-sub {
            font-size: clamp(15px, 1.5vw, 17px);
            color: var(--muted);
            line-height: 1.7;
            max-width: 560px;
            margin-bottom: 48px
        }

        /* reveal on scroll */
        .rv {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .7s var(--ease), transform .7s var(--ease)
        }

        .rv.in {
            opacity: 1;
            transform: none
        }

        /* ── TRUST MARQUEE ── */
        #trust {
            background: var(--surface);
            border-bottom: 1px solid var(--brd);
            padding: 20px 0;
            overflow: hidden;
            position: relative;
        }

        .trust-label {
            text-align: center;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--muted2);
            margin-bottom: 14px
        }

        .trust-mq {
            display: flex;
            overflow: hidden;
            -webkit-mask: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            mask: linear-gradient(to right, transparent, black 8%, black 92%, transparent)
        }

        .t-track {
            display: flex;
            align-items: center;
            animation: marqueeRoll 30s linear infinite;
            flex-shrink: 0
        }

        .t-item {
            display: flex;
            align-items: center;
            padding: 0 26px;
            white-space: nowrap
        }

        .t-item span {
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 700;
            color: rgba(255, 255, 255, .18);
            letter-spacing: -.2px;
            transition: color .2s
        }

        .t-item:hover span {
            color: rgba(255, 255, 255, .45)
        }

        .t-sep {
            color: var(--brd2);
            font-size: 12px;
            padding: 0 2px
        }

        @keyframes marqueeRoll {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* ── SERVICES SECTION ── */
        #services {
            background: var(--surface);
            position: relative;
            padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 60px);
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 24px;
            max-width: 1340px;
            margin: 0 auto;
        }

        .svc-card {
            background: var(--surface2);
            border: 1px solid var(--brd);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all .3s var(--ease);
        }

        .svc-card:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 197, 24, .3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
            background: #161c10;
        }

        .svc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--y);
            transition: width .6s var(--ease);
        }

        .svc-card:hover::before {
            width: 100%;
        }

        .svc-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 28px;
        }

        .svc-title {
            font-family: var(--fh);
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .svc-desc {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .svc-list {
            list-style: none;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .svc-list li {
            font-size: 14px;
            color: var(--text);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .svc-list li svg {
            color: var(--y);
            flex-shrink: 0;
        }

        .svc-pricing {
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--brd);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .svc-price-box {
            display: flex;
            flex-direction: column;
        }

        .svc-price-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted2);
            margin-bottom: 2px;
        }

        .svc-price-val {
            font-family: var(--mono);
            font-size: 18px;
            font-weight: 600;
            color: var(--y);
        }

        .svc-btn {
            background: rgba(245, 197, 24, .1);
            border: 1px solid rgba(245, 197, 24, .3);
            color: var(--y);
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            transition: all .2s;
            cursor: pointer;
        }

        .svc-btn:hover {
            background: var(--y);
            color: #000;
            transform: scale(1.05);
        }

        /* SVG draw for svc icons */
        .svc-card .ico path,
        .svc-card .ico circle,
        .svc-card .ico rect,
        .svc-card .ico line {
            stroke-dasharray: var(--l, 300);
            stroke-dashoffset: var(--l, 300);
        }

        .svc-card.drawn .ico .s1 {
            animation: drw .55s 0.0s var(--ease) forwards;
        }

        .svc-card.drawn .ico .s2 {
            animation: drw .55s 0.1s var(--ease) forwards;
        }

        .svc-card.drawn .ico .s3 {
            animation: drw .55s 0.2s var(--ease) forwards;
        }

        .svc-card.drawn .ico .s4 {
            animation: drw .55s 0.3s var(--ease) forwards;
        }

        .svc-card.drawn .ico .s5 {
            animation: drw .55s 0.4s var(--ease) forwards;
        }

        .svc-card.drawn .ico .s6 {
            animation: drw .55s 0.5s var(--ease) forwards;
        }

        @keyframes drw {
            to {
                stroke-dashoffset: 0;
            }
        }

        @media(max-width: 480px) {
            .svc-grid {
                grid-template-columns: 1fr;
            }

            .svc-card {
                padding: 30px;
            }
        }

        /* ── CUSTOM DROPDOWN ── */
        .cf-select-wrapper {
            position: relative;
            cursor: pointer;
        }

        .cf-select-trigger {
            background: var(--surface);
            border: 1px solid var(--brd);
            border-radius: 12px;
            padding: 14px 18px;
            color: var(--text);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all .2s;
        }

        .cf-select-wrapper:hover .cf-select-trigger {
            border-color: var(--y);
        }

        .cf-select-wrapper.open .cf-select-trigger {
            border-color: var(--y);
            border-radius: 12px 12px 0 0;
            box-shadow: 0 0 15px rgba(245, 197, 24, .1);
        }

        .cf-select-icon {
            transition: transform .3s;
        }

        .cf-select-wrapper.open .cf-select-icon {
            transform: rotate(180deg);
        }

        .cf-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface);
            border: 1px solid var(--y);
            border-top: none;
            border-radius: 0 0 12px 12px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all .3s var(--ease);
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 15px 30px rgba(0, 0, 0, .5);
        }

        .cf-select-wrapper.open .cf-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .cf-option {
            padding: 12px 18px;
            font-size: 14px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all .2s;
        }

        .cf-option:hover {
            background: rgba(245, 197, 24, .08);
            color: var(--y);
        }

        .cf-option svg {
            color: var(--y);
            opacity: .85;
            transition: opacity .2s;
            flex-shrink: 0;
        }

        .cf-option:hover svg {
            opacity: 1;
        }

        /* ── CONTACT GRID POP ── */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 40px;
        }

        .contact-info-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ci-card {
            background: var(--surface2);
            border: 1px solid var(--brd);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            transition: all .3s;
        }

        .ci-card:hover {
            border-color: var(--y);
            transform: scale(1.02);
        }

        /* ── CONTACT FORM INPUTS ── */
        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .cf-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cf-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--muted);
            transition: color .3s;
        }

        .cf-input,
        .cf-textarea {
            background: var(--surface);
            border: 1px solid var(--brd);
            border-radius: 12px;
            padding: 14px 18px;
            color: var(--text);
            font-size: 15px;
            outline: none;
            transition: all .4s var(--ease);
            font-family: var(--fb);
        }

        .cf-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .cf-input::placeholder,
        .cf-textarea::placeholder {
            color: var(--muted2);
            transition: opacity .3s;
        }

        .cf-group:focus-within .cf-label {
            color: var(--y);
        }

        .cf-input:focus,
        .cf-textarea:focus {
            border-color: var(--y);
            background: rgba(245, 197, 24, .02);
            box-shadow: 0 0 20px rgba(245, 197, 24, .08);
            transform: translateY(-2px);
        }

        .cf-input:focus::placeholder,
        .cf-textarea:focus::placeholder {
            opacity: 0.5;
        }

        .cf-submit {
            width: 100%;
            height: 56px;
            background: var(--y);
            border: none;
            border-radius: 14px;
            color: #000;
            font-size: 16px;
            font-weight: 800;
            font-family: var(--fh);
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .cf-submit:hover {
            transform: scale(1.02);
            background: #fff;
        }

        .cf-submit:active {
            transform: scale(.98);
        }

        .cf-submit.loading {
            pointer-events: none;
            opacity: .8;
        }

        /* ── SOCIAL ICONS (high-visibility) ── */
        .cp-soc,
        .f-soc {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--surface2);
            border: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.75);
            transition: all .3s var(--ease);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .cp-soc:hover,
        .f-soc:hover {
            color: var(--y);
            background: rgba(245, 197, 24, .12);
            border-color: var(--y);
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(245, 197, 24, .15);
        }

        .cp-soc svg,
        .f-soc svg {
            width: 20px;
            height: 20px;
            transition: transform .3s;
        }

        .cp-soc:hover svg,
        .f-soc:hover svg {
            transform: scale(1.15);
        }

        /* Icons always fully visible — no hidden stroke animation */
        .soc-icon-svg path,
        .soc-icon-svg rect,
        .soc-icon-svg circle,
        .soc-icon-svg line,
        .soc-icon-svg polygon,
        .soc-icon-svg polyline {
            stroke-dasharray: none;
            stroke-dashoffset: 0;
            transition: stroke .3s, fill .3s;
        }

        .cp-soc:hover .soc-icon-svg path,
        .cp-soc:hover .soc-icon-svg polygon,
        .f-soc:hover .soc-icon-svg path,
        .f-soc:hover .soc-icon-svg polygon {
            stroke: var(--y);
        }

        @media(max-width: 600px) {
            .cf-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }


        .ci-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at top right, rgba(245, 197, 24, .05), transparent 70%);
            pointer-events: none;
        }

        /* ── FLOATING WHATSAPP ── */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 12px;
            pointer-events: none;
        }

        .wa-msg {
            background: #fff;
            color: #111;
            padding: 10px 16px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
            opacity: 0;
            transform: translateX(20px);
            transition: all .4s var(--ease);
            white-space: nowrap;
        }

        .wa-float.show .wa-msg {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        .wa-circle {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
            cursor: pointer;
            pointer-events: auto;
            position: relative;
            animation: waPulse 2s infinite;
        }

        .wa-dot {
            position: absolute;
            top: 0;
            right: 0;
            width: 14px;
            height: 14px;
            background: #ff4b4b;
            border: 2px solid #25D366;
            border-radius: 50%;
            display: none;
        }

        .wa-float.notif .wa-dot {
            display: block;
            animation: bounceIn .4s forwards;
        }

        @keyframes waPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0);
            }

            70% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        /* ── FAQ ACCORDION ── */
        .faq-sec {
            padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
            background: var(--bg);
        }

        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--brd);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color .3s;
        }

        .faq-item:hover {
            border-color: rgba(245, 197, 24, .3);
        }

        .faq-q {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-family: var(--fh);
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            user-select: none;
        }

        .faq-chevron {
            transition: transform .3s;
            color: var(--y);
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s var(--ease);
            background: rgba(255, 255, 255, .02);
        }

        .faq-item.open .faq-a {
            max-height: 200px;
        }

        .faq-a-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        @media(max-width: 800px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }
        }

        /* ── GLOBE ── */
        #globe-sec {
            background: var(--surface);
            border-top: 1px solid var(--brd);
            padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 60px);
            overflow: hidden
        }

        .globe-layout {
            max-width: 1340px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(44px, 6vw, 88px);
            align-items: center
        }

        .globe-txt .sec-h2 {
            color: var(--text)
        }

        .globe-txt .sec-sub {
            color: var(--muted)
        }

        .globe-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 32px
        }

        .g-stat-n {
            font-family: var(--fh);
            font-size: clamp(24px, 3.5vw, 42px);
            font-weight: 800;
            color: var(--text);
            line-height: 1;
            margin-bottom: 4px
        }

        .g-stat-n em {
            font-style: normal;
            color: var(--y)
        }

        .g-stat-l {
            font-size: 11px;
            color: var(--muted2);
            text-transform: uppercase;
            letter-spacing: .6px
        }

        .globe-wrap {
            position: relative;
            aspect-ratio: 1;
            max-height: 500px;
            /* overflow must be visible so the overlay cards don't get clipped */
            overflow: visible
        }

        /* The actual circular clip goes on the inner globe mount */
        #gm {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
        }

        #gfx {
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: 50%
        }

        #gtip {
            position: absolute;
            background: rgba(11, 13, 16, .92);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(245, 197, 24, .2);
            border-radius: 5px;
            padding: 4px 10px;
            font-size: 11px;
            letter-spacing: .08em;
            color: var(--y);
            pointer-events: none;
            white-space: nowrap;
            opacity: 0;
            transition: opacity .2s;
            z-index: 10;
            text-transform: uppercase;
            font-family: var(--mono)
        }

        #gtip.show {
            opacity: 1
        }

        #gloader {
            position: absolute;
            inset: 0;
            background: rgba(11, 13, 16, .9);
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            border-radius: 50%;
            transition: opacity .6s
        }

        #gloader.fade {
            opacity: 0;
            pointer-events: none
        }

        .g-spin {
            width: 28px;
            height: 28px;
            border: 2px solid rgba(245, 197, 24, .12);
            border-top-color: var(--y);
            border-radius: 50%;
            animation: spin .8s linear infinite
        }

        .g-loading-t {
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--muted2);
            text-transform: uppercase;
            font-family: var(--mono)
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        /* ── TICKER ── */
        #ticker {
            background: var(--surface2);
            border-top: 1px solid var(--brd);
            border-bottom: 1px solid var(--brd);
            padding: 14px 0;
            overflow: hidden
        }

        .ticker-outer {
            display: flex;
            overflow: hidden;
            -webkit-mask: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
            mask: linear-gradient(to right, transparent, black 6%, black 94%, transparent)
        }

        .ticker-track {
            display: flex;
            align-items: center;
            animation: marqueeRoll 36s linear infinite;
            flex-shrink: 0
        }

        .tk-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 28px;
            white-space: nowrap
        }

        .tk-badge {
            font-family: var(--mono);
            font-size: 10px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 4px;
            letter-spacing: .04em;
            flex-shrink: 0
        }

        .tk-alert {
            background: rgba(239, 68, 68, .12);
            color: var(--red);
            border: 1px solid rgba(239, 68, 68, .22)
        }

        .tk-warn {
            background: rgba(245, 197, 24, .1);
            color: var(--y);
            border: 1px solid rgba(245, 197, 24, .2)
        }

        .tk-patch {
            background: rgba(34, 197, 94, .1);
            color: var(--green);
            border: 1px solid rgba(34, 197, 94, .2)
        }

        .tk-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
            animation: pulseDot 2s ease-in-out infinite
        }

        .tk-text {
            font-family: var(--mono);
            font-size: 12px;
            color: var(--muted)
        }

        .tk-text strong {
            color: var(--y)
        }

        .tk-sep {
            color: var(--brd2);
            padding: 0 4px;
            font-size: 14px
        }

        /* ── PROOF ── */
        #proof {
            background: var(--bg)
        }

        .proof-big {
            text-align: center;
            margin-bottom: 64px
        }

        .proof-big-n {
            font-family: var(--fh);
            font-size: clamp(52px, 9vw, 120px);
            font-weight: 800;
            color: var(--text);
            line-height: 1;
            letter-spacing: -.05em;
            margin-bottom: 12px
        }

        .proof-big-n em {
            font-style: normal;
            color: var(--y)
        }

        .proof-big-sub {
            font-size: clamp(15px, 1.6vw, 19px);
            color: var(--muted);
            max-width: 440px;
            margin: 0 auto;
            line-height: 1.6
        }

        .proof-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .proof-card {
            background: var(--surface);
            border: 1px solid var(--brd);
            border-radius: 14px;
            padding: 28px 24px;
            transition: transform .2s, border-color .2s
        }

        .proof-card:hover {
            transform: translateY(-2px);
            border-color: var(--brd2)
        }

        .proof-stars {
            color: var(--y);
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 14px
        }

        .proof-q {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 18px;
            font-style: italic
        }

        .proof-author {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .proof-av {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            color: #000;
            flex-shrink: 0;
            font-family: var(--fh)
        }

        .proof-nm {
            font-family: var(--fh);
            font-size: 13px;
            font-weight: 700;
            color: var(--text)
        }

        .proof-biz {
            font-size: 12px;
            color: var(--muted2)
        }

        .proof-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .6px;
            text-transform: uppercase;
            color: var(--y);
            background: rgba(245, 197, 24, .09);
            padding: 3px 9px;
            border-radius: 20px;
            margin-top: 8px
        }

        /* ── KNOWLEDGE ── */
        #knowledge {
            background: var(--surface);
            border-top: 1px solid var(--brd)
        }

        .know-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(44px, 6vw, 80px);
            align-items: center
        }

        .know-cards {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .know-card {
            background: var(--surface2);
            border: 1px solid var(--brd);
            border-radius: 12px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: transform .2s, border-color .2s
        }

        .know-card:hover {
            transform: translateX(4px);
            border-color: var(--brd2)
        }

        .know-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 9px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .know-type {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 3px
        }

        .know-title {
            font-family: var(--fh);
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 3px;
            line-height: 1.35
        }

        .know-meta {
            font-size: 11px;
            color: var(--muted2);
            font-family: var(--mono)
        }

        .know-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 4px
        }

        /* ── PREMIUM CONTACT SECTION ── */
        .contact-layout {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .cp-card {
            background: #0B0D10;
            border: 1px solid rgba(255, 255, 255, .05);
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
            position: relative;
        }

        .cp-left {
            padding: clamp(30px, 5vw, 60px);
            display: flex;
            flex-direction: column;
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .cp-badge-row {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .cp-badge {
            background: rgba(37, 211, 102, .1);
            color: #25D366;
            padding: 5px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cp-badge-dot {
            width: 6px;
            height: 6px;
            background: #25D366;
            border-radius: 50%;
        }

        .cp-h {
            font-family: var(--fh);
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 800;
            line-height: 1.05;
            color: var(--text);
            letter-spacing: -1.5px;
        }

        .cp-sub {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.6;
            max-width: 440px;
        }

        .cp-stats {
            display: flex;
            gap: 12px;
        }

        .cp-stat {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            padding: 12px 15px;
            border-radius: 8px;
            flex: 1;
        }

        .cp-stat-lbl {
            font-size: 10px;
            color: var(--muted2);
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .cp-stat-val {
            font-weight: 700;
            font-size: 14px;
            color: var(--text);
        }

        .cp-entry {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .05);
            padding: 18px 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            transition: all .3s;
        }

        .cp-entry:hover {
            border-color: var(--y);
            background: rgba(255, 255, 255, .04);
        }

        .cp-entry-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cp-entry-icon {
            width: 36px;
            height: 36px;
            background: rgba(245, 197, 24, .1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--y);
        }

        .cp-entry-lbl {
            font-size: 11px;
            color: var(--muted2);
            margin-bottom: 2px;
        }

        .cp-entry-val {
            font-weight: 600;
            color: var(--text);
            font-size: 16px;
        }

        .cp-entry-tag {
            font-size: 10px;
            background: rgba(255, 255, 255, .05);
            padding: 4px 8px;
            border-radius: 4px;
            color: var(--muted2);
        }

        .cp-right {
            position: relative;
            background: #000;
        }

        .cp-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .85;
            display: block;
        }

        .cp-img-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(8px);
            padding: 10px 16px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cp-img-dot {
            width: 7px;
            height: 7px;
            background: var(--y);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--y);
        }

        .cp-socials {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .cp-soc {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.7);
            transition: all .25s;
            text-decoration: none;
        }

        .cp-soc svg {
            width: 22px;
            height: 22px;
        }

        .cp-soc:hover {
            border-color: var(--y);
            color: var(--y);
            background: rgba(245, 197, 24, .1);
            box-shadow: 0 4px 16px rgba(245, 197, 24, .12);
        }

        .cp-bot-strip {
            grid-column: span 2;
            padding: 18px 40px;
            background: rgba(255, 255, 255, .02);
            border-top: 1px solid rgba(255, 255, 255, .05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cp-bot-txt {
            font-size: 13px;
            color: var(--muted);
            border-left: 2px solid var(--y);
            padding-left: 15px;
            font-weight: 500;
        }

        @media(max-width: 900px) {
            .cp-card {
                grid-template-columns: 1fr;
            }

            .cp-right {
                height: 350px;
            }

            .cp-bot-strip {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        .cf-select,
        .cf-textarea {
            width: 100%;
            padding: 12px 14px;
            background: var(--surface2);
            border: 1.5px solid var(--brd2);
            border-radius: 9px;
            color: var(--text);
            font-size: 14px;
            font-family: var(--fb);
            outline: none;
            transition: border-color .2s, box-shadow .2s;
            -webkit-appearance: none;
            appearance: none
        }

        .cf-input:focus,
        .cf-select:focus,
        .cf-textarea:focus {
            border-color: var(--y);
            box-shadow: 0 0 0 3px rgba(245, 197, 24, .1)
        }

        .cf-input::placeholder,
        .cf-textarea::placeholder {
            color: var(--muted2)
        }

        .cf-textarea {
            min-height: 90px;
            resize: vertical
        }

        .cf-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%236B7585' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 13px center;
            padding-right: 38px;
            cursor: none
        }

        .cf-select option {
            background: var(--surface2);
            color: var(--text)
        }

        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .cf-group {
            margin-bottom: 14px
        }

        .cf-submit {
            width: 100%;
            padding: 14px;
            background: var(--y);
            border-radius: 10px;
            color: #000;
            font-size: 15px;
            font-weight: 700;
            font-family: var(--fh);
            margin-top: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all .2s
        }

        .cf-submit:hover {
            background: var(--yh);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(245, 197, 24, .3)
        }

        .cf-submit.loading {
            opacity: .7;
            pointer-events: none
        }

        .btn-spin {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(0, 0, 0, .2);
            border-top-color: #000;
            border-radius: 50%;
            animation: spin .7s linear infinite;
            display: none;
            flex-shrink: 0
        }

        .cf-submit.loading .btn-spin {
            display: block
        }

        .cf-submit.loading .btn-txt {
            display: none
        }

        .cf-submit.success-state {
            background: var(--green);
            pointer-events: none
        }

        .contact-info-col {
            display: flex;
            flex-direction: column;
            gap: 20px
        }

        .ci-card {
            background: var(--surface);
            border: 1px solid var(--brd);
            border-radius: 14px;
            padding: 24px;
            transition: border-color .2s
        }

        .ci-card:hover {
            border-color: rgba(245, 197, 24, .25)
        }

        .ci-icon {
            width: 40px;
            height: 40px;
            border-radius: 9px;
            background: rgba(245, 197, 24, .08);
            border: 1px solid rgba(245, 197, 24, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px
        }

        .ci-lbl {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--muted2);
            margin-bottom: 5px
        }

        .ci-val {
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 3px
        }

        .ci-hint {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 0
        }

        .wa-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 12px;
            padding: 8px 16px;
            background: #25D366;
            color: #fff;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            font-family: var(--fb);
            transition: background .15s
        }

        .wa-btn:hover {
            background: #1ebe5a
        }

        /* ── FINAL CTA ── */
        #cta-strip {
            background: var(--surface);
            border-top: 1px solid var(--brd);
            padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 60px);
            text-align: center;
            position: relative;
            overflow: hidden
        }

        #cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 65% 55% at 50% 100%, rgba(245, 197, 24, .1) 0%, transparent 65%)
        }

        .cta-inner {
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1
        }

        .cta-h {
            font-family: var(--fh);
            font-size: clamp(30px, 5.5vw, 68px);
            font-weight: 800;
            color: var(--text);
            line-height: 1.05;
            letter-spacing: -.04em;
            margin-bottom: 16px
        }

        .cta-h em {
            font-style: normal;
            color: var(--y)
        }

        .cta-sub {
            font-size: 17px;
            color: var(--muted);
            margin-bottom: 40px;
            line-height: 1.6
        }

        .cta-form {
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            max-width: 500px;
            margin: 0 auto 14px;
            box-shadow: 0 0 0 1px var(--brd2), 0 4px 20px rgba(0, 0, 0, .4);
            transition: transform .3s var(--ease);
        }

        @media(max-width: 480px) {
            .cta-form {
                flex-direction: column;
                border-radius: 14px;
                background: var(--surface2);
                gap: 0;
                box-shadow: none;
                border: 1px solid var(--brd);
            }

            .cta-input {
                width: 100%;
                border-bottom: 1px solid var(--brd);
                text-align: center;
            }

            .cta-btn {
                width: 100%;
                border-radius: 0 0 14px 14px;
            }
        }

        .cta-input {
            flex: 1;
            padding: 0 18px;
            height: 54px;
            background: var(--surface2);
            border: none;
            outline: none;
            font-size: 15px;
            color: var(--text);
            font-family: var(--fb);
            min-width: 0
        }

        .cta-input::placeholder {
            color: var(--muted2)
        }

        .cta-btn {
            padding: 0 24px;
            height: 54px;
            background: var(--y);
            color: #000;
            font-size: 14px;
            font-weight: 700;
            font-family: var(--fh);
            white-space: nowrap;
            transition: background .15s
        }

        .cta-btn:hover {
            background: var(--yh)
        }

        .cta-note {
            font-size: 12px;
            color: var(--muted2)
        }

        /* ── TOAST ── */
        #toast {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9500;
            background: var(--surface);
            border: 1px solid rgba(34, 197, 94, .3);
            border-radius: 12px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text);
            transform: translateY(80px);
            opacity: 0;
            transition: all .4s var(--ease);
            pointer-events: none;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
        }

        #toast.show {
            transform: translateY(0);
            opacity: 1
        }

        .toast-chk {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(34, 197, 94, .12);
            border: 1px solid rgba(34, 197, 94, .25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        /* ── SUBSCRIBE MODAL ── */
        #modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .7);
            backdrop-filter: blur(6px);
            z-index: 8000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s
        }

        #modal.open {
            opacity: 1;
            pointer-events: all
        }

        .modal-box {
            background: var(--surface);
            border: 1px solid var(--brd2);
            border-radius: 18px;
            padding: 44px;
            width: 460px;
            max-width: 90vw;
            position: relative;
            transform: scale(.95);
            transition: transform .3s
        }

        #modal.open .modal-box {
            transform: scale(1)
        }

        .modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 30px;
            height: 30px;
            border-radius: 7px;
            background: var(--surface2);
            border: 1px solid var(--brd);
            color: var(--muted);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s
        }

        .modal-close:hover {
            color: var(--text)
        }

        .modal-h {
            font-family: var(--fh);
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px
        }

        .modal-sub {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px
        }

        .modal-input {
            width: 100%;
            padding: 12px 14px;
            background: var(--surface2);
            border: 1.5px solid var(--brd2);
            border-radius: 9px;
            color: var(--text);
            font-size: 14px;
            font-family: var(--fb);
            outline: none;
            margin-bottom: 10px;
            transition: border-color .2s
        }

        .modal-input:focus {
            border-color: var(--y)
        }

        .modal-input::placeholder {
            color: var(--muted2)
        }

        .modal-btn {
            width: 100%;
            padding: 13px;
            background: var(--y);
            border-radius: 9px;
            color: #000;
            font-size: 15px;
            font-weight: 700;
            font-family: var(--fh);
            transition: background .15s
        }

        .modal-btn:hover {
            background: var(--yh)
        }

        /* ── FOOTER ── */
        #footer {
            background: #060809;
            border-top: 1px solid var(--brd);
            padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 60px) 28px
        }

        .footer-inner {
            max-width: 1340px;
            margin: 0 auto
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 240px repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 44px
        }

        .footer-brand img {
            width: 155px;
            margin-bottom: 14px
        }

        .footer-tagline {
            font-size: 13px;
            color: var(--muted2);
            line-height: 1.65;
            max-width: 200px;
            margin-bottom: 18px
        }

        .footer-col-h {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--muted2);
            margin-bottom: 14px
        }

        .footer-col a {
            display: block;
            font-size: 13.5px;
            color: rgba(255, 255, 255, .42);
            margin-bottom: 9px;
            transition: color .15s
        }

        .footer-col a:hover {
            color: var(--text)
        }

        .footer-bottom {
            border-top: 1px solid var(--brd);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px
        }

        .footer-copy {
            font-size: 12px;
            color: var(--muted2)
        }

        .footer-legal {
            display: flex;
            gap: 16px
        }

        .footer-legal a {
            font-size: 12px;
            color: var(--muted2);
            transition: color .15s
        }

        .footer-legal a:hover {
            color: var(--muted)
        }

        .footer-socials {
            display: flex;
            gap: 7px
        }

        .f-soc {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--surface);
            border: 1px solid rgba(255,255,255,.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.65);
            font-size: 11px;
            font-weight: 700;
            transition: all .25s
        }

        .f-soc svg {
            width: 18px;
            height: 18px;
        }

        .f-soc:hover {
            border-color: rgba(245, 197, 24, .4);
            color: var(--y);
            background: rgba(245, 197, 24, .08);
            box-shadow: 0 4px 14px rgba(245, 197, 24, .1)
        }

        /* ── RESPONSIVE ── */
        @media(max-width:960px) {

            .nav-links,
            .nav-sub-btn {
                display: none
            }

            .burger {
                display: flex
            }

            .feat-grid {
                grid-template-columns: 1fr 1fr
            }

            .globe-layout,
            .know-layout,
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 40px
            }

            .globe-wrap {
                max-height: 340px;
                max-width: 340px;
                margin: 0 auto
            }

            .proof-cards {
                grid-template-columns: 1fr
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px
            }

            .footer-brand {
                grid-column: span 2
            }

            .mk-body {
                grid-template-columns: 1fr
            }

            .mk-sb {
                display: none
            }
        }

        @media(max-width:640px) {
            .feat-grid {
                grid-template-columns: 1fr
            }

            .h-ctas {
                flex-direction: column;
                align-items: center;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto
            }

            .btn-gold,
            .btn-ghost {
                justify-content: center;
                width: 100%
            }

            .h-stats {
                flex-wrap: wrap
            }

            .h-stat {
                min-width: 50%
            }

            .h-stat:nth-child(odd) {
                border-right: 1px solid var(--brd)
            }

            .h-stat:nth-child(even) {
                border-right: none
            }

            .h-stat:nth-child(1),
            .h-stat:nth-child(2) {
                border-bottom: 1px solid var(--brd)
            }

            .cf-row {
                grid-template-columns: 1fr
            }

            .cta-form {
                flex-direction: column;
                border-radius: 10px;
                background: none;
                box-shadow: none;
                gap: 8px
            }

            .cta-input,
            .cta-btn {
                border-radius: 9px;
                height: 50px;
                box-shadow: 0 0 0 1px var(--brd2)
            }

            .footer-grid {
                grid-template-columns: 1fr
            }

            .footer-brand {
                grid-column: span 1
            }
        }

        @media (max-width: 900px) {
            .laptop-container {
                margin-top: 60px;
                transform: scale(0.85) translateY(0);
                transform-origin: top center;
                margin-bottom: 15px;
            }
            .sn-1 { right: -5%; }
            .sn-2 { right: -8%; }
            .sn-3 { right: -5%; }
            .sn-4 { left: -5%; }
        }

        /* ── EXTRA SMALL SCREENS (≤520px) ── */
        @media (max-width: 520px) {

            /* Nav: hide extras, keep only logo + burger */
            .nav-links,
            .tog-btn,
            .nav-sub-btn {
                display: none !important;
            }

            .nav-logo {
                margin-right: auto;
            }

            .nav-cta {
                font-size: 12px;
                padding: 7px 14px;
            }

            .burger {
                display: flex;
            }

            /* Hero */
            #hero {
                padding: 52px 16px 0;
            }

            .h-h1 {
                font-size: clamp(28px, 9vw, 42px);
            }

            .h-badge {
                margin-bottom: 20px;
            }

            .h-proof {
                gap: 6px;
            }

            .h-stats {
                flex-wrap: wrap;
            }

            .h-stat {
                flex: 1 1 45%;
                min-width: 100px;
                border-right: none;
            }

            .h-stat:nth-child(1),
            .h-stat:nth-child(2) {
                border-bottom: 1px solid var(--brd);
            }

            .h-stat:nth-child(3) {
                border-right: 1px solid var(--brd);
            }

            .h-ctas {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-gold,
            .btn-ghost {
                justify-content: center;
                width: 100%;
            }

            /* Laptop — scale down consistently but keep visible */
            .laptop-container {
                transform: scale(0.7) translateY(0);
                transform-origin: top center;
                margin-bottom: -10px;
            }
            .sn-1 { right: 2%; top: 5%; }
            .sn-2 { right: 0%; top: 35%; }
            .sn-3 { right: 2%; bottom: 15%; }
            .sn-4 { left: 0%; top: 20%; }
            .secure-outer { left: 5%; bottom: 0; }

            /* Sections */
            .sec {
                padding: 44px 16px;
            }

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

            .proof-cards {
                grid-template-columns: 1fr;
            }

            .know-layout {
                grid-template-columns: 1fr;
            }

            .contact-layout {
                grid-template-columns: 1fr;
            }

            .globe-layout {
                grid-template-columns: 1fr;
            }

            .glob-wrap {
                max-height: 340px;
            }

            .sol-scroll {
                grid-template-columns: 1fr;
                padding: 0 16px 28px;
            }

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

            .footer-brand {
                grid-column: span 2;
            }

            /* Contact */
            .cf-row {
                grid-template-columns: 1fr;
            }

            /* CTA strip */
            .cta-form {
                flex-direction: column;
                border-radius: 10px;
                overflow: visible;
                box-shadow: none;
            }

            .cta-input,
            .cta-btn {
                border-radius: 9px;
                height: 50px;
                width: 100%;
            }

            .cta-btn {
                padding: 0 24px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-brand {
                grid-column: span 1;
            }
        }

        @media (max-width: 420px) {
            .h-h1 {
                font-size: clamp(24px, 8vw, 36px);
            }

            .nav-cta {
                display: none;
            }

            /* Keep laptop visible but smaller — never hide it */
            .laptop-container {
                transform: scale(0.65) translateY(0);
                transform-origin: top center;
                margin-bottom: -20px;
            }
            .sn-card-outer {
                padding: 6px 10px;
                gap: 6px;
            }
            .sn-h { font-size: 10px; }
            .sn-p { font-size: 8px; }
            .sn-1 { right: 5%; }
            .sn-2 { right: 2%; }
            .sn-3 { right: 5%; }
            .sn-4 { left: 2%; }

            .globe-wrap {
                max-height: 280px;
            }

            /* Cards hide only on tiny screens where layout is too tight */
            .g-card-tr {
                right: -15%;
                top: 0;
            }

            .g-card-bl {
                left: -15%;
                bottom: 0;
            }
        }

        /* ── GLOBE OVERLAY CARDS ── */
        .g-card-tr,
        .g-card-bl {
            position: absolute;
            background: rgba(12, 15, 20, .95);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(245, 197, 24, .22);
            border-radius: 10px;
            padding: 10px 14px;
            min-width: 140px;
            opacity: 0;
            pointer-events: none;
            transition: opacity .4s, transform .4s;
            z-index: 20;
            font-family: var(--fb);
        }

        /* Sit outside the globe circle — at the corners of the bounding square */
        .g-card-tr {
            top: 8%;
            right: -48%;
            transform: translateX(12px);
        }

        .g-card-bl {
            bottom: 8%;
            left: -48%;
            transform: translateX(-12px);
        }

        .g-card-tr.show,
        .g-card-bl.show {
            opacity: 1;
            transform: translateX(0);
        }

        .g-card-title {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--y);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .g-card-title::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--y);
            animation: pulseDot 1.8s infinite;
            flex-shrink: 0;
        }

        .g-card-stat {
            margin-bottom: 6px;
        }

        .g-card-stat-n {
            font-family: var(--fh);
            font-size: 17px;
            font-weight: 800;
            color: var(--text);
            line-height: 1;
        }

        .g-card-stat-n em {
            font-style: normal;
            color: var(--y);
        }

        .g-card-stat-l {
            font-size: 9px;
            color: var(--muted2);
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .g-pause-hint {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, .75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 11px;
            color: rgba(255, 255, 255, .7);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s;
            z-index: 20;
            font-family: var(--mono);
            letter-spacing: .08em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .g-pause-hint.show {
            opacity: 1;
        }

        /* ── GLOBE TABS ── */
        .globe-tabs-wrap {
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 60px);
            border-top: 1px solid var(--brd);
        }

        .globe-tab-nav {
            display: flex;
            gap: 0;
            border-bottom: 1px solid var(--brd);
            margin-bottom: 40px;
        }

        .gtab-btn {
            padding: 14px 24px;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            border-bottom: 2px solid transparent;
            background: none;
            margin-bottom: -1px;
            transition: all .2s;
            white-space: nowrap;
        }

        .gtab-btn:hover {
            color: var(--text);
        }

        .gtab-btn.active {
            color: var(--y);
            border-bottom-color: var(--y);
        }

        .gtab-panel {
            display: none;
        }

        .gtab-panel.active {
            display: block;
        }

        /* ── LIVE THREAT ILLUSTRATION ── */
        .threat-scene {
            background: var(--bg);
            border-radius: 16px;
            border: 1px solid var(--brd);
            padding: 32px 24px;
            position: relative;
            overflow: hidden;
            min-height: 380px;
        }

        .threat-scene::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(239, 68, 68, .05) 0%, transparent 70%);
        }

        .threat-svg-wrap {
            width: 100%;
            max-height: 340px;
        }

        .threat-label {
            text-align: center;
            margin-bottom: 16px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .threat-label::before,
        .threat-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .3));
        }

        .threat-label::after {
            background: linear-gradient(90deg, rgba(239, 68, 68, .3), transparent);
        }

        /* SVG Threat Animation */
        @keyframes threatFlow {
            0% {
                stroke-dashoffset: 300;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                stroke-dashoffset: 0;
                opacity: 0;
            }
        }

        @keyframes threatFlowB {
            0% {
                stroke-dashoffset: 200;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                stroke-dashoffset: 0;
                opacity: 0;
            }
        }

        .t-path-r {
            animation: threatFlow 2.8s linear infinite;
        }

        .t-path-y {
            animation: threatFlow 3.4s .6s linear infinite;
        }

        .t-path-b {
            animation: threatFlowB 2.2s 1.2s linear infinite;
        }

        @keyframes nodeGlow {

            0%,
            100% {
                r: 8;
                opacity: .8;
            }

            50% {
                r: 12;
                opacity: 1;
            }
        }

        @keyframes targetPulse {

            0%,
            100% {
                r: 18;
                opacity: .6;
            }

            50% {
                r: 24;
                opacity: 1;
            }
        }

        .node-pulse {
            animation: nodeGlow 2s ease-in-out infinite;
        }

        .target-pulse {
            animation: targetPulse 1.5s ease-in-out infinite;
        }

        @keyframes packetMove1 {
            0% {
                transform: translate(60px, 40px);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translate(280px, 160px);
                opacity: 0;
            }
        }

        @keyframes packetMove2 {
            0% {
                transform: translate(60px, 160px);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translate(280px, 160px);
                opacity: 0;
            }
        }

        @keyframes packetMove3 {
            0% {
                transform: translate(60px, 280px);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translate(280px, 160px);
                opacity: 0;
            }
        }

        .pkt1 {
            animation: packetMove1 2.8s linear infinite;
        }

        .pkt2 {
            animation: packetMove2 3.4s .7s linear infinite;
        }

        .pkt3 {
            animation: packetMove3 2.2s 1.4s linear infinite;
        }

        @keyframes blockFlash {

            0%,
            85% {
                opacity: 0;
            }

            90% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        .block-flash {
            animation: blockFlash 2.8s linear infinite;
        }

        .block-flash2 {
            animation: blockFlash 3.4s .7s linear infinite;
        }

        .block-flash3 {
            animation: blockFlash 2.2s 1.4s linear infinite;
        }

        @keyframes shieldDraw {
            from {
                stroke-dashoffset: 200;
            }

            to {
                stroke-dashoffset: 0;
            }
        }

        /* ── ANIMATED SVG EMOTIONS (form states) ── */
        @keyframes popIn {
            0% {
                transform: scale(0) rotate(-20deg);
                opacity: 0;
            }

            60% {
                transform: scale(1.15) rotate(5deg);
            }

            80% {
                transform: scale(0.95) rotate(-2deg);
            }

            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

        @keyframes smileGrow {
            from {
                stroke-dashoffset: 60;
            }

            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes eyeBlink {

            0%,
            90%,
            100% {
                transform: scaleY(1);
            }

            95% {
                transform: scaleY(0.1);
            }
        }

        @keyframes tearDrop {
            0% {
                transform: translateY(0);
                opacity: 1;
            }

            100% {
                transform: translateY(18px);
                opacity: 0;
            }
        }

        @keyframes sadShake {

            0%,
            100% {
                transform: translateX(0);
            }

            15% {
                transform: translateX(-6px);
            }

            30% {
                transform: translateX(6px);
            }

            45% {
                transform: translateX(-4px);
            }

            60% {
                transform: translateX(4px);
            }

            75% {
                transform: translateX(-2px);
            }
        }

        .face-svg {
            animation: popIn .5s cubic-bezier(.16, 1, .3, 1) forwards;
        }

        .smile-path {
            stroke-dasharray: 60;
            stroke-dashoffset: 60;
            animation: smileGrow .5s .3s ease forwards;
        }

        .eye-left,
        .eye-right {
            animation: eyeBlink 3s 1s infinite;
            transform-origin: center;
        }

        .tear-l {
            animation: tearDrop 1s .6s ease-in infinite;
        }

        .tear-r {
            animation: tearDrop 1s 1s ease-in infinite;
        }

        .cf-submit.fail-shake {
            animation: sadShake .5s ease;
        }

        /* Form button overlay panel */
        .form-result-panel {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 24px;
            background: var(--surface2);
            border-radius: 10px;
            border: 1px solid var(--brd);
            margin-top: 10px;
            animation: fadeUp .4s var(--ease) both;
        }

        .form-result-panel.show {
            display: flex;
        }

        .form-result-panel.success {
            border-color: rgba(34, 197, 94, .25);
            background: rgba(34, 197, 94, .04);
        }

        .form-result-panel.fail {
            border-color: rgba(239, 68, 68, .35);
            background: rgba(239, 68, 68, .04);
        }

        .form-result-msg {
            font-size: 13px;
            color: var(--muted);
            text-align: center;
            line-height: 1.6;
        }

        .form-result-msg strong {
            color: var(--text);
            display: block;
            margin-bottom: 4px;
        }

        .form-error-strip {
            width: 100%;
            background: rgba(239, 68, 68, .12);
            border: 1.5px solid rgba(239, 68, 68, .4);
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 12px;
            color: #ff6b6b;
            line-height: 1.6;
            font-family: var(--fb);
            text-align: center;
        }


        .form-error-strip a {
            color: var(--y);
            text-decoration: underline;
        }



        /* ══ SKELETON PRELOADER ══ */
        #preloader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: var(--bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 0;
            transition: opacity .6s ease, visibility .6s ease;
            overflow: hidden;
        }

        #preloader.pl-done {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .skel-wrap {
            width: 100%;
            max-width: 1340px;
            padding: 0 clamp(20px, 5vw, 60px);
            margin: 0 auto;
        }

        /* Skeleton shimmer animation */
        @keyframes skelShimmer {
            0%   { background-position: -400px 0; }
            100% { background-position: 400px 0; }
        }

        .skel-bone {
            background: linear-gradient(90deg, rgba(255,255,255,.03) 25%, rgba(255,255,255,.07) 50%, rgba(255,255,255,.03) 75%);
            background-size: 400px 100%;
            animation: skelShimmer 1.4s ease infinite;
            border-radius: 8px;
        }

        /* Nav skeleton */
        .skel-nav {
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(20px, 5vw, 60px);
            border-bottom: 1px solid rgba(255,255,255,.04);
        }
        .skel-nav-logo { width: 120px; height: 28px; }
        .skel-nav-links { display: flex; gap: 24px; }
        .skel-nav-link { width: 60px; height: 14px; border-radius: 4px; }
        .skel-nav-cta { width: 130px; height: 36px; border-radius: 10px; }

        /* Hero skeleton */
        .skel-hero {
            padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .skel-hero-left { display: flex; flex-direction: column; gap: 16px; }
        .skel-badge { width: 260px; height: 28px; border-radius: 20px; }
        .skel-h1 { width: 100%; height: 52px; border-radius: 6px; }
        .skel-h1-2 { width: 70%; height: 52px; border-radius: 6px; }
        .skel-sub { width: 90%; height: 16px; border-radius: 4px; }
        .skel-sub2 { width: 75%; height: 16px; border-radius: 4px; }
        .skel-btns { display: flex; gap: 12px; margin-top: 12px; }
        .skel-btn-lg { width: 160px; height: 48px; border-radius: 12px; }
        .skel-btn-sm { width: 130px; height: 48px; border-radius: 12px; }
        .skel-hero-right { aspect-ratio: 1; border-radius: 16px; }

        /* Stats row skeleton */
        .skel-stats { display: flex; gap: 30px; margin-top: 20px; }
        .skel-stat { display: flex; flex-direction: column; gap: 6px; }
        .skel-stat-n { width: 50px; height: 26px; border-radius: 4px; }
        .skel-stat-l { width: 80px; height: 10px; border-radius: 3px; }

        /* Cards skeleton */
        .skel-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 40px 0;
        }
        .skel-card { height: 280px; border-radius: 16px; }

        /* Preloader center branding */
        .skel-brand {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            z-index: 1;
        }
        .skel-brand img {
            width: 90px;
            filter: drop-shadow(0 0 30px rgba(245,197,24,.3));
            animation: skelBrandPulse 1.6s ease-in-out infinite;
        }
        @keyframes skelBrandPulse {
            0%, 100% { opacity: .7; transform: scale(1); }
            50%      { opacity: 1;  transform: scale(1.05); }
        }
        .skel-brand-bar {
            width: 120px;
            height: 3px;
            border-radius: 3px;
            background: rgba(255,255,255,.06);
            overflow: hidden;
        }
        .skel-brand-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--y), var(--b));
            border-radius: 3px;
            animation: plFill 1.8s var(--ease) forwards;
        }
        @keyframes plFill {
            0%   { width: 0% }
            60%  { width: 75% }
            90%  { width: 92% }
            100% { width: 100% }
        }

        @media(max-width: 768px) {
            .skel-hero { grid-template-columns: 1fr; }
            .skel-hero-right { display: none; }
            .skel-nav-links { display: none; }
            .skel-cards { grid-template-columns: 1fr; }
        }

        /* ══ YOUTUBE VIDEO GRID ══ */
        .yt-section {
            margin-top: clamp(40px, 5vw, 60px);
        }

        .yt-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .yt-section-title {
            font-family: var(--fh);
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .yt-section-title svg {
            color: #ff0000;
        }

        .yt-channel-link {
            font-size: 13px;
            color: var(--y);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: opacity .2s;
        }
        .yt-channel-link:hover { opacity: .8; }

        .yt-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .yt-card {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            background: var(--surface2);
            border: 1px solid var(--brd);
            transition: all .3s var(--ease);
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }

        .yt-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 0, 0, .3);
            box-shadow: 0 12px 30px rgba(0,0,0,.4);
        }

        .yt-thumb-wrap {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #111;
        }

        .yt-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s var(--ease);
        }

        /* Animated shimmering overlay on thumbnails */
        .yt-thumb-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                115deg,
                transparent 20%,
                rgba(255,255,255,.06) 40%,
                rgba(255,255,255,.12) 50%,
                rgba(255,255,255,.06) 60%,
                transparent 80%
            );
            background-size: 200% 100%;
            animation: ytThumbShimmer 2.8s ease infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes ytThumbShimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Subtle scale animation on thumbnail */
        .yt-thumb-wrap .yt-thumb {
            animation: ytThumbFloat 6s ease-in-out infinite alternate;
        }
        .yt-card:nth-child(2) .yt-thumb { animation-delay: -1.5s; }
        .yt-card:nth-child(3) .yt-thumb { animation-delay: -3s; }
        .yt-card:nth-child(4) .yt-thumb { animation-delay: -4.5s; }

        @keyframes ytThumbFloat {
            0%   { transform: scale(1); }
            100% { transform: scale(1.06); }
        }

        .yt-card:hover .yt-thumb {
            transform: scale(1.1);
            animation: none;
        }

        /* Play button overlay */
        .yt-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(.85);
            width: 52px;
            height: 52px;
            background: rgba(255, 0, 0, .9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            transition: all .3s;
            box-shadow: 0 4px 20px rgba(255,0,0,.3);
        }

        .yt-card:hover .yt-play {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 6px 30px rgba(255,0,0,.5);
        }

        .yt-play svg {
            width: 22px;
            height: 22px;
            fill: #fff;
            margin-left: 3px;
        }

        /* Duration badge */
        .yt-dur {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0,0,0,.85);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            font-family: var(--mono);
            padding: 2px 7px;
            border-radius: 4px;
            z-index: 3;
        }

        .yt-info {
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex-grow: 1;
        }

        .yt-title {
            font-family: var(--fh);
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .yt-meta {
            font-size: 11px;
            color: var(--muted2);
            font-family: var(--mono);
        }

        @media(max-width: 960px) {
            .yt-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media(max-width: 480px) {
            .yt-grid { grid-template-columns: 1fr; }
        }

        /* ══ FOOTER SOCIAL ICONS WITH LABELS ══ */
        .footer-connect-icons {
            display: flex;
            gap: 14px;
            margin-top: 5px;
            flex-wrap: wrap;
        }

        .footer-soc-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            text-decoration: none;
        }

        .footer-soc-label {
            font-size: 9px;
            color: var(--muted2);
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            transition: color .2s;
        }

        .footer-soc-item:hover .footer-soc-label {
            color: var(--y);
        }

        /* ══ FORM INLINE ERRORS ══ */
        .cf-err {
            display: block;
            font-size: 11.5px;
            color: var(--red);
            margin-top: 4px;
            min-height: 16px;
            font-family: var(--fb);
            animation: fadeUp .2s var(--ease) both;
        }

        .cf-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 6px;
            font-family: var(--fb);
        }

        /* ══ LEGAL MODALS (Privacy / Terms) ══ */
        .legal-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9500;
            background: rgba(0,0,0,.75);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .legal-modal.open {
            display: flex;
        }

        .legal-modal-box {
            background: var(--surface);
            border: 1px solid var(--brd2);
            border-radius: var(--r-lg);
            max-width: 680px;
            width: 100%;
            max-height: 82vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: var(--shadow-2);
            position: relative;
            animation: fadeUp .3s var(--ease) both;
        }

        .legal-modal-box h2 {
            font-family: var(--fh);
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            padding: 28px 28px 4px;
            letter-spacing: -.03em;
            flex-shrink: 0;
        }

        .legal-date {
            font-size: 12px;
            color: var(--muted2);
            padding: 0 28px 16px;
            flex-shrink: 0;
            font-family: var(--mono);
        }

        .legal-body {
            overflow-y: auto;
            padding: 0 28px 28px;
            flex: 1;
            scrollbar-width: thin;
            scrollbar-color: var(--brd2) transparent;
        }

        .legal-body h3 {
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 700;
            color: var(--y);
            margin: 20px 0 6px;
            letter-spacing: .01em;
        }

        .legal-body p {
            font-size: 13.5px;
            color: var(--muted);
            line-height: 1.7;
        }

        .legal-body a {
            color: var(--b);
            text-decoration: underline;
        }

        .legal-body code {
            font-family: var(--mono);
            font-size: 12px;
            background: rgba(255,255,255,.06);
            border-radius: 4px;
            padding: 1px 5px;
        }

        /* close button reuse from modal */
        .legal-modal-box .modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
        }

        /* 6. Lead Magnet Banner */
        .audit-sec { padding: 40px 0; }
        .audit-banner {
            background: linear-gradient(135deg, var(--surface) 0%, rgba(245,197,24,0.05) 100%);
            border: 1px solid rgba(245, 197, 24, 0.2);
            border-radius: 20px;
            padding: 40px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .audit-info { flex: 1; }
        .audit-h { font-family: var(--fh); font-size: 28px; font-weight: 800; color: var(--y); margin-bottom: 12px; }
        .audit-p { color: var(--muted); font-size: 15px; max-width: 500px; line-height: 1.6; }
        .audit-form { display: flex; gap: 12px; flex: 1; justify-content: flex-end; }
        .audit-form .cf-input { width: 100%; max-width: 300px; background: #0c0f14; border-color: var(--brd); border-radius: 12px;}
        .audit-form .btn-gold { padding: 0 24px; border-radius: 12px; white-space: nowrap; font-weight: 700; height: 50px;}

        @media (max-width: 800px) {
            .audit-banner { flex-direction: column; align-items: flex-start; padding: 30px; }
            .audit-form { width: 100%; flex-direction: column; justify-content: flex-start; }
            .audit-form .cf-input { max-width: 100%; }
        }
        
        /* ══ TOUCH DEVICE — restore cursor ══ */
        @media (hover: none), (pointer: coarse) {
            body { cursor: auto; }
            button { cursor: pointer; }
            #cur, #cur-ring { display: none !important; }
        }

        /* ══ PERFORMANCE HINTS ══ */
        #trust, #globe-sec, #knowledge, #proof, .faq-sec {
            content-visibility: auto;
            contain-intrinsic-size: 0 600px;
        }

        /* ══ SKIP LINK (Accessibility) ══ */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 16px;
            background: var(--y);
            color: #000;
            font-weight: 700;
            padding: 8px 18px;
            border-radius: 0 0 8px 8px;
            z-index: 99998;
            transition: top .2s;
            font-size: 13px;
        }
        .skip-link:focus { top: 0; }

        /* ══ Contact card social links with real icons ══ */
        .cp-soc-row {
            display: flex;
            gap: 8px;
            margin-top: 14px;
        }
        .cp-soc-row a {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1px solid var(--brd2);
            background: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            transition: all .18s;
        }
        .cp-soc-row a:hover {
            border-color: rgba(245,197,24,.4);
            color: var(--y);
            background: rgba(245,197,24,.06);
        }

        /* Globe i18n-translated stat labels */
        .globe_stat1l, .globe_stat2l,
        .globe_stat3l, .globe_stat4l { display: block; }

        /* ══ PREMIUM UX/UI ENHANCEMENTS ══ */
        
        /* 1. Scroll Reveal Animations */
        .reveal-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }
        .reveal-up.in {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* 2. Trust Marquee / Client Logos */
        .trust-section {
            padding: 40px 0;
            background: var(--surface);
            border-top: 1px solid var(--brd);
            border-bottom: 1px solid var(--brd);
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .trust-lbl {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--muted);
            margin-right: 40px;
            white-space: nowrap;
            font-weight: 600;
        }
        .trust-marquee {
            flex-grow: 1;
            overflow: hidden;
            -webkit-mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            display: flex;
        }
        .trust-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: marqueeRoll 25s linear infinite;
            padding-right: 60px; /* match gap for seamless loop */
        }
        .trust-logo {
            height: 32px;
            opacity: 0.4;
            filter: grayscale(100%) contrast(120%);
            transition: all 0.3s;
            user-select: none;
        }
        .trust-logo:hover {
            opacity: 1;
            filter: grayscale(0%) contrast(100%);
        }
        /* Duplicate keyframes if they don't exist globally */
        @keyframes marqueeRoll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* 3. Magnetic Hover Button Setup */
        .magnetic-btn {
            transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
            will-change: transform;
            display: inline-block;
        }
        
        /* 4. Enhanced Input Focus Glow & Success State */
        .cf-input, .cf-textarea {
            position: relative;
        }
        .cf-group {
            position: relative;
        }
        /* Checkmark for valid inputs */
        .cf-group.valid::after {
            content: '';
            position: absolute;
            right: 18px;
            top: 42px; /* roughly centers in input */
            width: 18px;
            height: 18px;
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%2322c55e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
            background-size: cover;
            animation: bounceIn 0.4s var(--ease) forwards;
            pointer-events: none;
        }

        /* 5. Back to Top Button */
        .b2t-btn {
            position: fixed;
            bottom: 100px; /* Above WhatsApp */
            right: 30px;
            width: 44px;
            height: 44px;
            background: var(--surface2);
            border: 1px solid var(--brd);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            cursor: pointer;
            z-index: 900;
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            transition: all 0.4s var(--ease);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .b2t-btn.show {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        .b2t-btn:hover {
            background: rgba(245, 197, 24, 0.1);
            border-color: var(--y);
            color: var(--y);
            box-shadow: 0 6px 20px rgba(245, 197, 24, 0.15);
        }

/* ══ CUSTOM NOTIFICATION MODAL ══ */
#mt-notify-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#mt-notify-backdrop.show {
    opacity: 1;
    visibility: visible;
}
#mt-notify-box {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: 20px;
    padding: 40px 36px 32px;
    max-width: 420px;
    width: 92%;
    text-align: center;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
#mt-notify-backdrop.show #mt-notify-box {
    transform: translateY(0) scale(1);
}
.mt-notify-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.mt-notify-icon.error {
    background: rgba(239,68,68,0.12);
    border: 2px solid rgba(239,68,68,0.3);
}
.mt-notify-icon.success {
    background: rgba(245,197,24,0.1);
    border: 2px solid rgba(245,197,24,0.3);
}
.mt-notify-icon svg {
    width: 38px;
    height: 38px;
}
.mt-notify-icon.error svg { stroke: #ef4444; }
.mt-notify-icon.success svg { stroke: var(--y); }
/* Sad face wobble animation */
@keyframes sadWobble {
    0%   { transform: rotate(0deg); }
    15%  { transform: rotate(-8deg); }
    30%  { transform: rotate(6deg); }
    45%  { transform: rotate(-5deg); }
    60%  { transform: rotate(4deg); }
    75%  { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}
.mt-notify-icon.error svg {
    animation: sadWobble 0.9s ease 0.2s both;
}
#mt-notify-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
#mt-notify-msg {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
}
#mt-notify-close {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--brd);
    background: transparent;
    color: var(--txt);
    cursor: pointer;
    transition: all 0.25s ease;
}
#mt-notify-close:hover {
    background: rgba(245,197,24,0.08);
    border-color: var(--y);
    color: var(--y);
}
