        :root {
            --primary: #1f2f63;
            --primary-light: #2d4a8c;
            --primary-dark: #0f1a3a;
            --accent: #00B4D8;
            --accent-dark: #0096B7;
            --accent-light: #E0F7FD;
            --bg-white: #ffffff;
            --bg-light: #F4F8FF;
            --bg-section: #EEF4FF;
            --text-dark: #0D1117;
            --text-body: #374151;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --border-light: #E5ECF7;
            --border-mid: #C8DAF0;
            --shadow-sm: 0 2px 12px rgba(31, 47, 99, 0.07);
            --shadow-md: 0 8px 30px rgba(31, 47, 99, 0.1);
            --shadow-lg: 0 20px 60px rgba(31, 47, 99, 0.12);
            --gradient-primary: linear-gradient(135deg, #1f2f63 0%, #2d4a8c 100%);
            --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0096B7 100%);
            --gradient-hero: linear-gradient(160deg, #ffffff 0%, #EBF4FF 45%, #D6EEFF 100%);
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        @media(max-width:768px) {
            html {
                font-size: 14px
            }
        }

        @media(max-width:480px) {
            html {
                font-size: 13px
            }
        }

        body {
            font-family: var(--font-body);
            line-height: 1.65;
            color: rgba(255, 255, 255, .75);
            background: #05050a;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased
        }

        ::-webkit-scrollbar {
            width: 5px
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, .03)
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px
        }

        /* ═══ NAVBAR ═══ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 5, 9, 0.92);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            box-shadow: 0 1px 30px rgba(0, 0, 0, .4);
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            transition: all 0.3s
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .4), transparent);
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0.8rem 5%
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none
        }

        .logo img {
            height: 38px;
            width: auto
        }

        .logo-mobile {
            display: none
        }

        @media (max-width: 250px) {
            .logo-desktop {
                display: none
            }

            .logo-mobile {
                display: block
            }
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em
        }

        .logo-text span {
            color: var(--accent)
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, .62);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
            position: relative
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.25s ease;
            transform-origin: left;
            border-radius: 2px
        }

        .nav-links a:hover {
            color: #00d4ff
        }

        .nav-links a:hover::after {
            transform: scaleX(1)
        }

        .nav-cta {
            background: linear-gradient(135deg, #00d4ff, #0096b7) !important;
            color: white !important;
            padding: 0.65rem 1.5rem !important;
            border-radius: var(--radius-sm) !important;
            font-weight: 700 !important;
            font-size: 0.88rem !important;
            box-shadow: 0 4px 20px rgba(0, 212, 255, .25) !important;
            transition: all 0.25s !important
        }

        .nav-cta::after {
            display: none !important
        }

        .nav-cta:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(31, 47, 99, 0.3) !important
        }

        .mobile-menu {
            display: none;
            font-size: 1.4rem;
            cursor: pointer;
            color: rgba(255, 255, 255, .75)
        }

        /* ═══ LANGUAGE SWITCHER ═══ */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-left: 1.5rem;
        }

        .lang-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: rgba(255, 255, 255, .6);
            font-size: 1.2rem;
            transition: all 0.25s;
            padding: 4px 8px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lang-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, .08);
        }

        .lang-btn.active {
            color: var(--accent);
            background: rgba(0, 212, 255, .1);
        }

        .lang-text {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, .5);
        }

        .lang-btn.active .lang-text {
            color: var(--accent);
        }

        @media (max-width: 900px) {
            .lang-switcher {
                margin-left: 1rem;
            }

            .lang-btn {
                font-size: 1rem;
                padding: 2px 4px;
            }

            .lang-text {
                font-size: 0.65rem;
            }
        }

        /* ═══ TOUR START BUTTON ═══ */
        .tour-start-btn {
            position: fixed;
            top: 72px;
            left: 0;
            background: var(--gradient-accent);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0.7rem 1.4rem 0.7rem 1rem;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            z-index: 998;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            box-shadow: 4px 4px 20px rgba(0, 180, 216, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: tour-slide-pulse 3.5s ease-in-out infinite
        }

        .tour-start-btn:hover {
            transform: translateX(4px) scale(1.02);
            box-shadow: 6px 6px 28px rgba(0, 180, 216, 0.55)
        }

        .tour-btn-wave {
            display: flex;
            align-items: center;
            gap: 2px;
            height: 16px
        }

        .tour-btn-wave span {
            display: block;
            width: 3px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 2px;
            animation: wave-bar 1s ease-in-out infinite
        }

        .tour-btn-wave span:nth-child(1) {
            height: 6px;
            animation-delay: 0s
        }

        .tour-btn-wave span:nth-child(2) {
            height: 12px;
            animation-delay: 0.15s
        }

        .tour-btn-wave span:nth-child(3) {
            height: 16px;
            animation-delay: 0.3s
        }

        .tour-btn-wave span:nth-child(4) {
            height: 10px;
            animation-delay: 0.45s
        }

        .tour-btn-wave span:nth-child(5) {
            height: 6px;
            animation-delay: 0.6s
        }

        @keyframes wave-bar {

            0%,
            100% {
                transform: scaleY(0.5);
                opacity: 0.6
            }

            50% {
                transform: scaleY(1);
                opacity: 1
            }
        }

        @keyframes tour-slide-pulse {

            0%,
            100% {
                box-shadow: 4px 4px 20px rgba(0, 180, 216, 0.4), 0 0 0 0 rgba(0, 180, 216, 0.25)
            }

            60% {
                box-shadow: 4px 4px 20px rgba(0, 180, 216, 0.4), 4px 0 0 10px rgba(0, 180, 216, 0)
            }
        }

        /* ═══ TOUR OVERLAY ═══ */
        .tour-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
            display: none
        }

        .tour-overlay.active {
            display: block
        }

        .tour-backdrop {
            position: absolute;
            inset: 0;
            background: transparent;
            pointer-events: all
        }

        .tour-cutout {
            position: absolute;
            border-radius: 12px;
            border: 3px solid rgba(0, 180, 216, 0.9);
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10001;
            background: transparent;
            box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12), 0 0 30px rgba(0, 180, 216, 0.15);
        }

        .tour-bubble {
            position: fixed;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%) translateY(30px);
            background: #0e0e1c;
            border-radius: 22px;
            padding: 0;
            width: calc(100vw - 32px);
            max-width: 480px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 180, 216, 0.2);
            z-index: 10010;
            pointer-events: all;
            transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            overflow: hidden;
            display: none;
            flex-direction: column;
        }

        .tour-bubble.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            display: flex;
        }

        .bubble-sticky-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.2rem 0.85rem;
            background: var(--gradient-primary);
            flex-shrink: 0;
            position: relative
        }

        .bubble-avatar {
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.15rem;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s
        }

        .bubble-avatar.speaking {
            background: rgba(0, 180, 216, 0.35);
            border-color: var(--accent);
            animation: avatar-speak 0.6s ease-in-out infinite alternate
        }

        @keyframes avatar-speak {
            from {
                box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5)
            }

            to {
                box-shadow: 0 0 0 10px rgba(0, 180, 216, 0)
            }
        }

        .bubble-meta {
            flex: 1;
            min-width: 0
        }

        .bubble-name {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: white;
            white-space: nowrap
        }

        .bubble-role {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.75);
            white-space: nowrap
        }

        .bubble-step-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 0.67rem;
            font-weight: 700;
            padding: 0.22rem 0.65rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            white-space: nowrap;
            flex-shrink: 0
        }

        .bubble-close-x {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.2s;
            margin-left: 0.3rem
        }

        .bubble-close-x:hover {
            background: rgba(239, 68, 68, 0.6);
            border-color: transparent
        }

        .bubble-body {
            padding: 1rem 1.2rem;
            flex: 1;
            overflow-y: auto;
            max-height: 52vh
        }

        .bubble-voice-title {
            font-family: var(--font-display);
            font-size: 0.92rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .88);
            margin-bottom: 0.25rem
        }

        .bubble-voice-subtitle {
            font-size: 0.73rem;
            color: rgba(255, 255, 255, .42);
            margin-bottom: 0.8rem;
            line-height: 1.45
        }

        .voice-text-display {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 10px;
            padding: 0.75rem 0.9rem;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, .72);
            line-height: 1.65;
            margin-bottom: 0.85rem;
            max-height: 110px;
            overflow-y: auto
        }

        .no-speech-notice {
            display: none;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            padding: 0.5rem 0.75rem;
            font-size: 0.72rem;
            color: #92400e;
            margin-bottom: 0.8rem;
            align-items: center;
            gap: 0.4rem
        }

        .no-speech-notice.show {
            display: flex
        }

        .voice-lang-info {
            display: none;
            background: rgba(0, 180, 216, 0.08);
            border: 1px solid rgba(0, 180, 216, 0.2);
            border-radius: 8px;
            padding: 0.4rem 0.75rem;
            font-size: 0.7rem;
            color: var(--accent-dark);
            margin-bottom: 0.7rem;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600
        }

        .voice-lang-info.show {
            display: flex
        }

        .voice-visualizer {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 3px;
            height: 32px;
            background: rgba(0, 212, 255, .06);
            border-radius: 10px;
            border: 1px solid rgba(0, 212, 255, .15);
            margin-bottom: 0.75rem;
            padding: 0 1rem
        }

        .voice-visualizer.active {
            display: flex
        }

        .voice-bar {
            width: 3px;
            background: var(--accent);
            border-radius: 2px;
            animation: voice-wave 0.8s ease-in-out infinite
        }

        .voice-bar:nth-child(1) {
            height: 8px;
            animation-delay: 0s
        }

        .voice-bar:nth-child(2) {
            height: 16px;
            animation-delay: 0.1s
        }

        .voice-bar:nth-child(3) {
            height: 24px;
            animation-delay: 0.2s
        }

        .voice-bar:nth-child(4) {
            height: 18px;
            animation-delay: 0.3s
        }

        .voice-bar:nth-child(5) {
            height: 28px;
            animation-delay: 0.4s
        }

        .voice-bar:nth-child(6) {
            height: 20px;
            animation-delay: 0.5s
        }

        .voice-bar:nth-child(7) {
            height: 12px;
            animation-delay: 0.6s
        }

        .voice-bar:nth-child(8) {
            height: 22px;
            animation-delay: 0.7s
        }

        .voice-bar:nth-child(9) {
            height: 14px;
            animation-delay: 0.8s
        }

        .voice-bar:nth-child(10) {
            height: 8px;
            animation-delay: 0.9s
        }

        @keyframes voice-wave {

            0%,
            100% {
                transform: scaleY(0.3);
                opacity: 0.5
            }

            50% {
                transform: scaleY(1);
                opacity: 1
            }
        }

        .voice-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem
        }

        .vc-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.2s;
            font-family: var(--font-body)
        }

        .vc-play {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 4px 14px rgba(0, 180, 216, 0.35);
            width: 42px;
            height: 42px;
            font-size: 1rem
        }

        .vc-play:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5)
        }

        .vc-stop {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444
        }

        .vc-stop:hover {
            background: rgba(239, 68, 68, 0.2)
        }

        .vc-replay {
            background: rgba(0, 212, 255, .08);
            color: #00d4ff;
            border: 1px solid rgba(255, 255, 255, .08)
        }

        .vc-replay:hover {
            background: rgba(255, 255, 255, .06)
        }

        .vc-status {
            flex: 1;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, .38);
            font-weight: 500
        }

        .vc-status.speaking {
            color: var(--accent-dark);
            font-weight: 600
        }

        .speed-controls {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            margin-bottom: 0.75rem
        }

        .speed-label {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, .38);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-right: 0.2rem
        }

        .speed-btn {
            padding: 0.2rem 0.55rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .06);
            font-size: 0.67rem;
            font-weight: 700;
            cursor: pointer;
            color: rgba(255, 255, 255, .45);
            transition: all 0.2s;
            font-family: var(--font-body)
        }

        .speed-btn.active {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent
        }

        .voice-progress-bar {
            height: 3px;
            background: rgba(255, 255, 255, .1);
            border-radius: 3px;
            margin-bottom: 0.75rem;
            overflow: hidden
        }

        .voice-progress-fill {
            height: 100%;
            background: var(--gradient-accent);
            border-radius: 3px;
            width: 0%;
            transition: width 0.3s linear
        }

        .bubble-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.8rem 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, .07);
            background: rgba(255, 255, 255, .03);
            flex-shrink: 0
        }

        .bubble-progress {
            display: flex;
            gap: 4px;
            align-items: center
        }

        .prog-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .15);
            transition: all 0.3s
        }

        .prog-dot.active {
            background: var(--accent);
            transform: scale(1.3)
        }

        .prog-dot.done {
            background: var(--primary-light)
        }

        .bubble-btns {
            display: flex;
            gap: 0.5rem
        }

        .bubble-btn {
            padding: 0.5rem 1.1rem;
            border-radius: var(--radius-sm);
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            transition: all 0.22s;
            display: flex;
            align-items: center;
            gap: 0.35rem
        }

        .bubble-btn-next {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 14px rgba(31, 47, 99, 0.25)
        }

        .bubble-btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(31, 47, 99, 0.32)
        }

        .bubble-btn-finish {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3)
        }

        .bubble-btn-finish:hover {
            transform: translateY(-2px)
        }

        body.tour-active section:not(.tour-spotlight),
        body.tour-active footer {
            filter: blur(1.5px) brightness(0.65);
            transition: filter 0.6s ease;
            pointer-events: none;
        }

        body.tour-active .navbar,
        body.tour-active .whatsapp-float {
            filter: brightness(0.55);
            transition: filter 0.6s ease;
            pointer-events: none;
        }

        body.tour-active section.tour-spotlight {
            filter: none !important;
            opacity: 1 !important;
            z-index: 9990 !important;
            position: relative;
            pointer-events: all !important;
            transition: filter 0.5s ease, box-shadow 0.5s ease;
            outline: 3px solid rgba(0, 180, 216, 0.55);
            outline-offset: 6px;
            border-radius: 4px;
        }

        body.tour-active section.tour-spotlight::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 8px;
            border: 2px solid rgba(0, 180, 216, 0.4);
            animation: spot-pulse 2.5s ease-in-out infinite;
            pointer-events: none;
            z-index: 9991;
        }

        @keyframes spot-pulse {

            0%,
            100% {
                opacity: 0.4;
                box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.2);
            }

            50% {
                opacity: 1;
                box-shadow: 0 0 30px 8px rgba(0, 180, 216, 0.15);
            }
        }

        body:not(.tour-active) section,
        body:not(.tour-active) .navbar,
        body:not(.tour-active) footer {
            filter: none !important;
            opacity: 1 !important;
            outline: none !important;
            pointer-events: all;
            transition: filter 0.4s ease;
        }

        body:not(.tour-active) section::after {
            display: none !important;
        }

        .screenshot-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 5000;
            background: rgba(8, 15, 35, 0.92);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .screenshot-modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .screenshot-modal {
            position: relative;
            background: #0e0e1c;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 24px;
            width: 100%;
            max-width: 650px;
            max-height: 85vh;
            padding: 2.5rem 2rem 2rem 2rem;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .7), 0 0 0 1px rgba(0, 212, 255, .08) inset;
            transform: translateY(40px) scale(0.92);
            opacity: 0;
            transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
            overflow: hidden;
        }

        .screenshot-modal-overlay.open .screenshot-modal {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .screenshot-modal img {
            width: 100%;
            max-height: 320px;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 1.5rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.06);
            backdrop-filter: blur(4px);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: #111;
            transform: rotate(90deg);
        }

        .modal-close span {
            font-size: 18px;
            font-weight: 600;
            color: #111;
            transition: 0.3s ease;
        }

        .modal-close:hover span {
            color: #fff;
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .9)
        }

        .modal-img {
            width: 100%;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, .08);
            margin-bottom: 1.25rem;
            display: block
        }

        .modal-description {
            background: rgba(255, 255, 255, .05);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            border: 1px solid rgba(255, 255, 255, .09)
        }

        .modal-desc-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--gradient-accent);
            color: white;
            padding: 0.3rem 0.85rem;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            margin-bottom: 0.75rem
        }

        .modal-desc-text {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, .52)
        }

        .modal-desc-text strong {
            color: rgba(255, 255, 255, .82)
        }

        /* ═══ BUTTONS ═══ */
        .btn {
            padding: 0.9rem 1.75rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.92rem;
            text-decoration: none;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            letter-spacing: 0.01em
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 6px 20px rgba(31, 47, 99, 0.25)
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(31, 47, 99, 0.32)
        }

        .btn-secondary {
            background: rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .82);
            border: 1.5px solid rgba(255, 255, 255, .18)
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm)
        }

        .btn-accent {
            background: var(--gradient-accent);
            color: white;
            font-weight: 700;
            box-shadow: 0 8px 30px rgba(0, 180, 216, 0.25)
        }

        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0, 180, 216, 0.38)
        }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 160px 5% 80px;
            position: relative;
            overflow: hidden
        }

        /* ── Background Slider ── */
        .hero-slides {
            position: absolute;
            inset: 0;
            z-index: 0
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.4s ease-in-out;
            will-change: opacity
        }

        .hero-slide.active {
            opacity: 1
        }

        .hero-slide:nth-child(1) {
            background-image: url('slider/2151908129.jpg')
        }

        .hero-slide:nth-child(2) {
            background-image: url('slider/2151966720.jpg')
        }

        .hero-slide:nth-child(3) {
            background-image: url('slider/2151983329.jpg')
        }

        /* ── Dark + Colour Overlay ── */
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(160deg,
                    rgba(5, 10, 30, 0.72) 0%,
                    rgba(15, 26, 58, 0.65) 50%,
                    rgba(0, 80, 120, 0.45) 100%)
        }

        /* dot-grid stays as ::before on the content wrapper */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(31, 47, 99, 0.055) 1px, transparent 1px);
            background-size: 32px 32px;
            mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 40%, transparent 100%);
            z-index: 2;
            pointer-events: none
        }

        .hero::after {
            content: '';
            position: absolute;
            right: -120px;
            top: -80px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 2
        }

        .hero-shape {
            position: absolute;
            bottom: -60px;
            left: -80px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(31, 47, 99, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: 2
        }

        .hero-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 3;
            width: 100%
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 180, 216, 0.1);
            border: 1.5px solid rgba(0, 180, 216, 0.25);
            padding: 0.45rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent-dark);
            margin-bottom: 1.6rem;
            letter-spacing: 0.04em
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            background: var(--accent);
            border-radius: 50%;
            animation: blink 1.8s ease-in-out infinite;
            flex-shrink: 0
        }

        .hero-text h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 3vw, 3.8rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            color: #ffffff;
            letter-spacing: -0.03em;
            max-width: 950px;
        }

        .h1-gradient-line {
            display: block;
            font-size: clamp(2.5rem, 4.5vw, 4.3rem);
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.04em;
            margin-top: 0.05em;
            line-height: 1.05
        }

        .rotating-word {
            display: inline-block;
            min-width: 4px
        }

        .cursor-blink {
            -webkit-text-fill-color: var(--accent);
            color: var(--accent);
            animation: cur-blink 0.85s step-end infinite;
            font-weight: 300;
            margin-left: 3px
        }

        @keyframes cur-blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0
            }
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            max-width: 480px
        }

        .hero-subtitle strong {
            color: #ffffff;
            font-weight: 700
        }

        .hero-checklist {
            list-style: none;
            margin-bottom: 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem
        }

        .hero-checklist li {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500
        }

        .hero-checklist li i {
            color: var(--accent);
            font-size: 0.85rem;
            flex-shrink: 0
        }

        .hero-buttons {
            display: flex;
            gap: 0.85rem;
            flex-wrap: wrap;
            margin-bottom: 1.8rem
        }

        .hero-social-proof {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 0
        }

        .proof-avatars {
            display: flex;
            align-items: center
        }

        .proof-av {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2.5px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 800;
            margin-left: -8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)
        }

        .proof-avatars .proof-av:first-child {
            margin-left: 0
        }

        .proof-av-more {
            background: var(--gradient-primary) !important;
            color: white !important;
            font-size: 0.62rem
        }

        .proof-text {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.4
        }

        .proof-text strong {
            color: #ffffff;
            display: block
        }

        .proof-stars {
            color: #f59e0b;
            font-size: 0.72rem;
            margin-top: 0.1rem
        }

        .proof-stars span {
            color: rgba(255, 255, 255, .38);
            margin-left: 3px
        }

        .hero-visual {
            position: relative
        }

        .dashboard-mockup {
            background: #0c0c18;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: var(--radius-xl);
            padding: 0.6rem 1rem;
            position: relative;
            box-shadow:
                0 0 0 1px rgba(0, 212, 255, .06),
                0 25px 80px rgba(0, 0, 0, .6),
                0 0 40px rgba(0, 212, 255, .04);
            overflow-y: auto;
            width: fit-content;
            max-width: 340px;
            max-height: 660px;
            margin-left: auto;
            padding-right: 4px;
            scroll-behavior: smooth;
        }

        .dashboard-mockup::-webkit-scrollbar {
            width: 2px;
        }

        .dashboard-mockup::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.03);
            border-radius: 2px;
        }

        .dashboard-mockup::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
        }

        .dashboard-mockup::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.15);
        }

        .dashboard-mockup {
            scrollbar-width: thin;
            scrollbar-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.03);
        }

        .dash-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, .07)
        }

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

        .dash-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .dash-dot:nth-child(1) {
            background: #ff5f57
        }

        .dash-dot:nth-child(2) {
            background: #febc2e
        }

        .dash-dot:nth-child(3) {
            background: #28c840
        }

        .dash-title {
            font-family: var(--font-display);
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .4);
            letter-spacing: 0.08em;
            text-transform: uppercase
        }

        .dash-live {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.68rem;
            color: #00a854;
            font-weight: 700
        }

        .dash-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #00a854;
            border-radius: 50%;
            animation: blink 1.5s infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.2
            }
        }

        .dash-tabs {
            display: flex;
            background: rgba(255, 255, 255, .05);
            border-radius: 10px;
            padding: 3px;
            margin-bottom: 1rem;
            gap: 2px;
            position: relative
        }

        .dash-tabs-hint {
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            font-size: 0.62rem;
            font-weight: 400;
            padding: 0.22rem 0.7rem;
            border-radius: 20px;
            white-space: nowrap;
            letter-spacing: 0.03em;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            box-shadow: 0 3px 10px rgba(31, 47, 99, 0.25);
            animation: hint-bob 2s ease-in-out infinite
        }

        .dash-tabs-hint::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid var(--primary)
        }

        @keyframes hint-bob {

            0%,
            100% {
                transform: translateX(-50%) translateY(0)
            }

            50% {
                transform: translateX(-50%) translateY(-3px)
            }
        }

        .dash-tab {
            flex: 1;
            text-align: center;
            font-size: 0.68rem;
            font-weight: 400;
            padding: 0.35rem 0;
            border-radius: 8px;
            color: rgba(255, 255, 255, .35);
            cursor: pointer;
            transition: all 0.22s ease;
            user-select: none;
            font-family: var(--font-body)
        }

        .dash-tab.active {
            background: rgba(0, 212, 255, .15);
            color: #00d4ff;
            box-shadow: 0 0 12px rgba(0, 212, 255, .15)
        }

        .dash-tab:hover:not(.active) {
            color: rgba(255, 255, 255, .6);
            background: rgba(255, 255, 255, .05)
        }

        .dash-4grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem;
            margin-bottom: 1rem
        }

        .dash-kpi {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 12px;
            padding: 0.75rem;
            position: relative;
            transition: all 0.2s;
        }

        .dash-kpi:hover {
            background: rgba(0, 212, 255, .06);
            border-color: rgba(0, 212, 255, .18);
            transform: translateY(-1px)
        }

        .kpi-icon-wrap {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem
        }

        .green-bg {
            background: rgba(0, 168, 84, 0.1)
        }

        .red-bg {
            background: rgba(239, 68, 68, 0.1)
        }

        .blue-bg {
            background: rgba(59, 130, 246, 0.1)
        }

        .purple-bg {
            background: rgba(139, 92, 246, 0.1)
        }

        .kpi-arrow {
            position: absolute;
            top: 0.65rem;
            right: 0.7rem;
            font-size: 0.75rem;
            font-weight: 700
        }

        .kpi-arrow.up {
            color: #00a854
        }

        .kpi-arrow.dn {
            color: #ef4444
        }

        .kpi-arrow.neutral {
            color: #9ca3af
        }

        .kpi-label {
            font-size: 0.63rem;
            color: rgba(255, 255, 255, .38);
            margin-bottom: 0.18rem;
            font-weight: 500
        }

        .kpi-val {
            font-size: 0.96rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .88);
            letter-spacing: -0.02em;
            line-height: 1.2;
            transition: opacity 0.25s, transform 0.25s
        }

        .kpi-sub {
            font-size: 0.58rem;
            color: rgba(255, 255, 255, .25);
            margin-top: 0.15rem
        }

        .dash-bilanci {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            padding: 0.85rem;
            margin-bottom: 0.85rem
        }

        .bilanci-hdr {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.6rem
        }

        .bilanci-title {
            font-size: 0.78rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .78);
            font-family: var(--font-display)
        }

        .bilanci-legend {
            display: flex;
            align-items: center;
            gap: 4px
        }

        .leg-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            display: inline-block
        }

        .leg-lbl {
            font-size: 0.58rem;
            color: rgba(255, 255, 255, .35);
            font-weight: 300
        }

        .chart-wrap {
            width: 100%;
            position: relative
        }

        .line-chart-svg {
            width: 100%;
            height: 88px;
            display: block;
            transition: opacity 0.2s ease
        }

        .dash-detajet {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            padding: 0.85rem
        }

        .detaje-title {
            font-size: 0.76rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .78);
            margin-bottom: 0.6rem;
            font-family: var(--font-display)
        }

        .detaje-row {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.42rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .detaje-row:last-child {
            border-bottom: none
        }

        .detaje-icon {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .detaje-lbl {
            flex: 1;
            font-size: 0.66rem;
            color: rgba(255, 255, 255, .52);
            font-weight: 500
        }

        .detaje-val {
            font-size: 0.7rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .82);
            letter-spacing: -0.01em;
            transition: opacity 0.25s, transform 0.25s
        }

        .float-badge {
            position: absolute;
            background: rgba(10, 10, 20, .85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--radius-md);
            padding: 0.6rem 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .85);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
            z-index: 10;
            white-space: nowrap
        }

        .fb-top {
            top: -16px;
            right: 28px;
            color: var(--accent-dark);
            animation: float-up 4s ease-in-out infinite
        }

        .fb-bot {
            bottom: -16px;
            left: 18px;
            color: #00a854;
            animation: float-dn 5s ease-in-out infinite
        }

        @keyframes float-up {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        @keyframes float-dn {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(8px)
            }
        }

        /* ═══ STATS ═══ */
        .stats {
            padding: 70px 5%;
            background: #06060a;
            border-bottom: 1px solid rgba(255, 255, 255, .05)
        }

        .stats-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius-lg);
            overflow: hidden
        }

        .stat-item {
            text-align: center;
            padding: 2.5rem 1rem;
            background: #0a0a12;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .stat-item:hover {
            background: rgba(0, 212, 255, .05)
        }

        .stat-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
            transform: translateX(-50%);
            transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item.counted::after {
            width: 65%;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 600;
            color: var(--primary);
            line-height: 1;
            letter-spacing: -0.04em;
            display: inline-block;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
        }

        .stat-number.counting {
            color: var(--accent-dark);
            transform: scale(1.06);
        }

        .stat-number.done {
            color: var(--primary);
            transform: scale(1);
        }

        @keyframes stat-pop {
            0% {
                transform: scale(1.18);
                filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 180, 216, 0.45));
            }

            60% {
                transform: scale(0.97);
            }

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

        .stat-number.pop {
            animation: stat-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, .38);
            margin-top: 0.5rem;
            font-weight: 500
        }

        /* ═══ SECTION HEADER ═══ */
        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 3.5rem
        }

        .section-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.08);
            color: #00d4ff;
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 0.38rem 1rem;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.75rem;
            margin-bottom: 1rem;
            letter-spacing: 0.06em;
            text-transform: uppercase
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: #fff;
            letter-spacing: -0.04em
        }

        .section-header p {
            color: rgba(255, 255, 255, .38);
            font-size: 1rem
        }

        /* ═══════════════════════════════════════════════
           AI SECTION — FUTURISTIC BLACK
        ═══════════════════════════════════════════════ */
        .ai-section {
            padding: 110px 5%;
            background: #07070e;
            color: white;
            position: relative;
            overflow: hidden
        }

        /* grid lines */
        .ai-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 212, 255, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, .03) 1px, transparent 1px);
            background-size: 52px 52px;
            pointer-events: none
        }

        /* central glow orb */
        .ai-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, .05) 0%, transparent 65%);
            pointer-events: none
        }

        .ai-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1
        }

        .ai-header {
            text-align: center;
            margin-bottom: 4.5rem
        }

        .ai-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 212, 255, .07);
            border: 1px solid rgba(0, 212, 255, .18);
            color: #00d4ff;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            padding: .45rem 1.1rem;
            border-radius: 50px;
            margin-bottom: 1.4rem
        }

        .ai-eyebrow::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #00d4ff;
            border-radius: 50%;
            box-shadow: 0 0 8px #00d4ff;
            animation: ai-pulse 2s ease-in-out infinite
        }

        @keyframes ai-pulse {

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

            50% {
                opacity: .4;
                transform: scale(.65)
            }
        }

        .ai-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.8vw, 3.1rem);
            font-weight: 800;
            letter-spacing: -.05em;
            line-height: 1.12;
            color: #fff;
            margin-bottom: 1rem
        }

        .ai-header h2 em {
            font-style: normal;
            background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .ai-header p {
            color: rgba(255, 255, 255, .48);
            font-size: 1.05rem;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.75
        }

        .ai-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem
        }

        .ai-card {
            background: rgba(255, 255, 255, .025);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 18px;
            padding: 2.4rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all .4s cubic-bezier(.23, 1, .32, 1)
        }

        /* top shimmer line */
        .ai-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            opacity: 0;
            transition: opacity .4s;
            background: linear-gradient(90deg, transparent, #00d4ff 50%, transparent)
        }

        /* inner glow */
        .ai-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            opacity: 0;
            transition: opacity .4s;
            background: radial-gradient(ellipse at 30% 0%, rgba(0, 212, 255, .07) 0%, transparent 60%)
        }

        .ai-card:hover {
            transform: translateY(-9px);
            border-color: rgba(0, 212, 255, .22);
            box-shadow: 0 28px 70px rgba(0, 0, 0, .55), 0 0 50px rgba(0, 212, 255, .06)
        }

        .ai-card:hover::before,
        .ai-card:hover::after {
            opacity: 1
        }

        .ai-card-icon {
            width: 58px;
            height: 58px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.45rem;
            margin-bottom: 1.4rem;
            position: relative;
            z-index: 1
        }

        .ai-card:nth-child(1) .ai-card-icon {
            background: rgba(0, 212, 255, .1);
            color: #00d4ff;
            box-shadow: 0 0 22px rgba(0, 212, 255, .18)
        }

        .ai-card:nth-child(2) .ai-card-icon {
            background: rgba(168, 85, 247, .1);
            color: #a855f7;
            box-shadow: 0 0 22px rgba(168, 85, 247, .18)
        }

        .ai-card:nth-child(3) .ai-card-icon {
            background: rgba(0, 255, 136, .08);
            color: #00ff88;
            box-shadow: 0 0 22px rgba(0, 255, 136, .12)
        }

        .ai-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: .65rem;
            color: rgba(255, 255, 255, .92);
            letter-spacing: -.02em;
            position: relative;
            z-index: 1
        }

        .ai-card p {
            color: rgba(255, 255, 255, .42);
            font-size: .9rem;
            line-height: 1.72;
            position: relative;
            z-index: 1
        }

        /* ═══════════════════════════════════════════════
           MODULES — FUTURISTIC BLACK GRID
        ═══════════════════════════════════════════════ */
        .modules {
            padding: 110px 5%;
            background: #050509;
            position: relative;
            overflow: hidden
        }

        /* subtle dot pattern */
        .modules::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(168, 85, 247, .022) 1px, transparent 1px);
            background-size: 38px 38px;
            pointer-events: none
        }

        /* purple glow bottom-right */
        .modules::after {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(168, 85, 247, .06) 0%, transparent 70%);
            pointer-events: none
        }

        .modules .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
            z-index: 1
        }

        .modules .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(168, 85, 247, .08);
            border: 1px solid rgba(168, 85, 247, .22);
            color: #a855f7;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: .13em;
            text-transform: uppercase;
            padding: .42rem 1.1rem;
            border-radius: 50px;
            margin-bottom: 1.25rem
        }

        .modules .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.2vw, 2.7rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.05em;
            margin-bottom: .7rem
        }

        .modules .section-header p {
            color: rgba(255, 255, 255, .38);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            max-width: 1300px;
            margin: 0 auto;
            background: rgba(255, 255, 255, .055);
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .06);
            position: relative;
            z-index: 1
        }

        .module-card {
            background: #0a0a13;
            padding: 1.65rem;
            position: relative;
            overflow: hidden;
            transition: background .3s ease
        }

        /* hover glow — color per icon type */
        .module-card::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .35s ease;
            pointer-events: none
        }

        .module-card:has(.module-icon.blue)::after {
            background: radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, .09) 0%, transparent 65%)
        }

        .module-card:has(.module-icon.green)::after {
            background: radial-gradient(ellipse at 20% 0%, rgba(0, 255, 136, .08) 0%, transparent 65%)
        }

        .module-card:has(.module-icon.purple)::after {
            background: radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, .09) 0%, transparent 65%)
        }

        .module-card:has(.module-icon.orange)::after {
            background: radial-gradient(ellipse at 20% 0%, rgba(251, 146, 60, .08) 0%, transparent 65%)
        }

        .module-card:has(.module-icon.red)::after {
            background: radial-gradient(ellipse at 20% 0%, rgba(248, 113, 113, .08) 0%, transparent 65%)
        }

        .module-card:has(.module-icon.cyan)::after {
            background: radial-gradient(ellipse at 20% 0%, rgba(34, 211, 238, .09) 0%, transparent 65%)
        }

        .module-card:hover {
            background: #0e0e1c;
            z-index: 2
        }

        .module-card:hover::after {
            opacity: 1
        }

        .module-icon {
            width: 44px;
            height: 44px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            transition: transform .3s, box-shadow .3s
        }

        .module-card:hover .module-icon {
            transform: scale(1.08)
        }

        .module-icon.blue {
            background: rgba(0, 212, 255, .1);
            color: #00d4ff
        }

        .module-icon.green {
            background: rgba(0, 255, 136, .1);
            color: #00ff88
        }

        .module-icon.orange {
            background: rgba(251, 146, 60, .1);
            color: #fb923c
        }

        .module-icon.purple {
            background: rgba(168, 85, 247, .1);
            color: #a855f7
        }

        .module-icon.red {
            background: rgba(248, 113, 113, .1);
            color: #f87171
        }

        .module-icon.cyan {
            background: rgba(34, 211, 238, .1);
            color: #22d3ee
        }

        .module-card h3 {
            font-family: var(--font-display);
            font-size: .93rem;
            font-weight: 700;
            margin-bottom: .38rem;
            color: rgba(255, 255, 255, .88);
            letter-spacing: -.01em
        }

        .module-card p {
            color: rgba(255, 255, 255, .32);
            font-size: .78rem;
            line-height: 1.62
        }

        .module-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #00d4ff, #a855f7);
            color: white;
            padding: .16rem .52rem;
            border-radius: 5px;
            font-size: .6rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase
        }

        @media (max-width: 1100px) {
            .modules-grid {
                grid-template-columns: repeat(3, 1fr)
            }

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

        @media (max-width: 680px) {
            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
                border-radius: 14px
            }

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

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

        /* ═══ PRODUCTION SECTION ═══ */
        .production {
            padding: 100px 5%;
            background: #07070e;
            position: relative;
            overflow: hidden;
        }

        .production::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(248, 113, 113, .022) 1px, transparent 1px);
            background-size: 34px 34px;
            pointer-events: none;
        }

        .production::after {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(248, 113, 113, .04) 0%, transparent 65%);
            pointer-events: none;
        }

        .production-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .prod-hero-card {
            grid-column: 1 / -1;
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            padding: 2.5rem 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(31, 47, 99, 0.2);
        }

        .prod-hero-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

        .prod-hero-card::after {
            content: '';
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .prod-hero-left {
            position: relative;
            z-index: 1;
        }

        .prod-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: white;
            padding: 0.38rem 1rem;
            border-radius: 100px;
            font-size: 0.72rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .prod-hero-left h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.03em;
            margin-bottom: 0.85rem;
            line-height: 1.15;
        }

        .prod-hero-left h3 span {
            color: var(--accent);
        }

        .prod-hero-left p {
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .prod-hero-stats {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .prod-stat {
            text-align: center;
        }

        .prod-stat-num {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: -0.04em;
            line-height: 1;
        }

        .prod-stat-lbl {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.65);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.2rem;
        }

        .prod-hero-right {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .prod-feature-pill {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-md);
            padding: 0.85rem 1.1rem;
            transition: all 0.25s;
        }

        .prod-feature-pill:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateX(4px);
        }

        .prod-pill-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient-accent);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .prod-pill-text strong {
            display: block;
            color: white;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 0.08rem;
        }

        .prod-pill-text span {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.71rem;
        }

        .prod-card {
            background: rgba(255, 255, 255, .028);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 16px;
            padding: 1.75rem;
            transition: all .35s cubic-bezier(.23, 1, .32, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .prod-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #f87171, transparent);
            opacity: 0;
            transition: opacity .35s;
        }

        .prod-card:hover {
            transform: translateY(-7px);
            background: rgba(248, 113, 113, .05);
            border-color: rgba(248, 113, 113, .22);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
        }

        .prod-card:hover::before {
            opacity: 1;
        }

        .prod-card-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .prod-card-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .prod-card-icon.red {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .prod-card-icon.orange {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
        }

        .prod-card-icon.blue {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
        }

        .prod-card-icon.purple {
            background: rgba(139, 92, 246, 0.1);
            color: #7c3aed;
        }

        .prod-card-icon.green {
            background: rgba(0, 168, 84, 0.1);
            color: #00a854;
        }

        .prod-card-icon.cyan {
            background: rgba(0, 180, 216, 0.1);
            color: var(--accent-dark);
        }

        .prod-card-title-wrap {
            flex: 1;
        }

        .prod-card-title-wrap h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .88);
            letter-spacing: -0.01em;
            margin-bottom: 0.25rem;
        }

        .prod-card-title-wrap .prod-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            color: rgba(255, 255, 255, .42);
            font-size: 0.63rem;
            font-weight: 700;
            padding: 0.15rem 0.55rem;
            border-radius: 20px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .prod-card p {
            color: rgba(255, 255, 255, .4);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        .prod-card-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-top: 0.25rem;
        }

        .prod-card-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, .55);
        }

        .prod-card-features li i {
            color: #00d4ff;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .prod-flow {
            grid-column: 1 / -1;
            background: rgba(255, 255, 255, .025);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 18px;
            padding: 2rem 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .prod-flow-title {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 1.5rem;
            text-align: center;
            letter-spacing: -0.01em;
        }

        .prod-flow-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 0.5rem;
        }

        .prod-flow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            min-width: 100px;
            text-align: center;
            flex: 1;
        }

        .prod-flow-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, .55);
            transition: all 0.3s;
            position: relative;
        }

        .prod-flow-step:hover .prod-flow-circle {
            background: rgba(0, 212, 255, .12);
            color: #00d4ff;
            border-color: rgba(0, 212, 255, .3);
            transform: scale(1.1);
            box-shadow: 0 0 24px rgba(0, 212, 255, .15);
        }

        .prod-flow-num {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #00d4ff, #a855f7);
            color: white;
            border-radius: 50%;
            font-size: 0.6rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #07070e;
        }

        .prod-flow-label {
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .7);
            line-height: 1.35;
        }

        .prod-flow-sublabel {
            font-size: 0.62rem;
            color: rgba(255, 255, 255, .3);
            line-height: 1.3;
            margin-top: -0.3rem;
        }

        .prod-flow-arrow {
            color: rgba(255, 255, 255, .15);
            font-size: 1.1rem;
            flex-shrink: 0;
            padding: 0 0.25rem;
            margin-top: -1.5rem;
        }

        /* ═══ SCREENSHOTS ═══ */
        .screenshots {
            padding: 90px 5%;
            background: #050509;
        }

        .screenshots-container {
            max-width: 1200px;
            margin: 0 auto
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem
        }

        .screenshot-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .07);
            transition: all 0.35s cubic-bezier(.23, 1, .32, 1);
            cursor: pointer;
        }

        .screenshot-item:hover {
            transform: translateY(-7px) scale(1.03);
            border-color: rgba(0, 212, 255, .3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .6), 0 0 30px rgba(0, 212, 255, .07);
        }

        .screenshot-item img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block
        }

        .screenshot-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(15, 26, 58, 0.88));
            color: white;
            padding: 2rem 0.75rem 0.6rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: 0.03em
        }

        .screenshot-click-hint {
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--accent);
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: 20px;
            letter-spacing: 0.03em
        }

        /* ═══ FEATURES ═══ */
        .features {
            padding: 100px 5%;
            background: #07070e;
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(168, 85, 247, .025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 85, 247, .025) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            background: rgba(255, 255, 255, .027);
            padding: 2.2rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            transition: all .4s cubic-bezier(.23, 1, .32, 1);
            border: 1px solid rgba(255, 255, 255, .07);
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #a855f7, transparent);
            opacity: 0;
            transition: opacity .4s;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            background: rgba(168, 85, 247, .06);
            border-color: rgba(168, 85, 247, .22);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
        }

        .feature-item:hover::before {
            opacity: 1
        }

        .feature-icon {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: rgba(168, 85, 247, .12);
            border: 1px solid rgba(168, 85, 247, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.3rem;
            color: #a855f7;
            box-shadow: 0 0 24px rgba(168, 85, 247, .15);
            transition: transform .4s;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(-5deg)
        }

        .feature-item h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, .88);
        }

        .feature-item p {
            color: rgba(255, 255, 255, .38);
            font-size: 0.83rem;
            line-height: 1.65;
        }

        /* ═══ CTA ═══ */
        .cta {
            padding: 120px 5%;
            background: #060609;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, .05);
            border-bottom: 1px solid rgba(255, 255, 255, .05);
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0, 212, 255, .02) 1px, transparent 1px);
            background-size: 36px 36px;
            pointer-events: none;
        }

        .cta::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(ellipse, rgba(0, 212, 255, .06) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.1rem;
            letter-spacing: -0.05em;
            color: #fff;
            position: relative;
            z-index: 1;
            line-height: 1.12;
        }

        .cta p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, .45);
            margin-bottom: 2.5rem;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .cta .btn-primary {
            position: relative;
            z-index: 1;
            font-size: 1rem;
            padding: 1rem 2.25rem;
        }

        /* ═══ CONTACT ═══ */
        .contact {
            padding: 100px 5%;
            background: #050509;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0, 212, 255, .018) 1px, transparent 1px);
            background-size: 38px 38px;
            pointer-events: none;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3.5rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-info h2 {
            font-family: var(--font-display);
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #fff;
            letter-spacing: -0.04em;
        }

        .contact-info>p {
            color: rgba(255, 255, 255, .42);
            margin-bottom: 2rem;
            font-size: 0.97rem;
            line-height: 1.7;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item i {
            width: 48px;
            height: 48px;
            background: rgba(0, 212, 255, .08);
            color: #00d4ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            border: 1px solid rgba(0, 212, 255, .18);
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .contact-item:hover i {
            background: rgba(0, 212, 255, .16);
            border-color: rgba(0, 212, 255, .35);
            box-shadow: 0 0 18px rgba(0, 212, 255, .15);
            transform: scale(1.08);
        }

        .contact-item div strong {
            display: block;
            color: rgba(255, 255, 255, .82);
            font-weight: 700;
            font-size: 0.88rem;
        }

        .contact-item div p {
            color: rgba(255, 255, 255, .38);
            margin: 0;
            font-size: 0.88rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, .03);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, .08);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: rgba(255, 255, 255, .62);
            font-size: 0.82rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(255, 255, 255, .04);
            border: 1.5px solid rgba(255, 255, 255, .1);
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: var(--font-body);
            color: rgba(255, 255, 255, .85);
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, .22);
        }

        .form-group select option {
            background: #0e0e1a;
            color: rgba(255, 255, 255, .85);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: rgba(0, 212, 255, .4);
            background: rgba(0, 212, 255, .04);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, .08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 85px;
        }

        .footer {
            background: #02020a;
            border-top: 1px solid rgba(255, 255, 255, .06);
            color: white;
            padding: 60px 5% 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem
        }

        .footer-brand .logo-text {
            color: white;
            margin-bottom: 1rem;
            display: block;
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.7
        }

        .social-links {
            display: flex;
            gap: 0.6rem
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.25s;
            text-decoration: none
        }

        .social-links a:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: translateY(-2px)
        }

        .footer-links h4 {
            font-family: var(--font-display);
            font-size: 0.8rem;
            margin-bottom: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase
        }

        .footer-links ul {
            list-style: none
        }

        .footer-links li {
            margin-bottom: 0.55rem
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.25s
        }

        .footer-links a:hover {
            color: var(--accent)
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.82rem;
            max-width: 1200px;
            margin: 0 auto
        }

        /* ═══ WHATSAPP ═══ */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 55px;
            height: 55px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
            animation: wa-pulse 3s ease-in-out infinite
        }

        @keyframes wa-pulse {

            0%,
            100% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.25)
            }

            50% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0)
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.12)
        }

        /* ═══ RESPONSIVE ═══ */
        @media(max-width:1200px) {
            .modules-grid {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        @media(max-width:1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center
            }

            .hero-subtitle,
            .hero-checklist {
                margin-left: auto;
                margin-right: auto;
                max-width: 520px
            }

            .hero-buttons {
                justify-content: center
            }

            .hero-social-proof {
                justify-content: center
            }

            .hero-visual {
                max-width: 480px;
                margin: 2rem auto 0
            }

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

            .modules-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .contact-container {
                grid-template-columns: 1fr
            }

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

            .screenshots-grid {
                grid-template-columns: repeat(4, 1fr)
            }

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

            .prod-hero-card {
                grid-template-columns: 1fr
            }

            .prod-hero-right {
                display: grid;
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(5, 5, 9, .97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 0.75rem 1rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
                gap: 0;
                border-bottom: 1px solid rgba(255, 255, 255, .07);
            }

            .nav-links.active {
                display: flex
            }

            .nav-links li {
                padding: 0.6rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, .06)
            }

            .mobile-menu {
                display: block
            }

            .hero {
                padding: 140px 5% 50px;
                min-height: auto
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 0.38rem 0.9rem;
                margin-bottom: 1rem
            }

            .hero-text h1 {
                font-size: 1.75rem;
                margin-bottom: 0.85rem;
                letter-spacing: -0.02em
            }

            .h1-gradient-line {
                font-size: 2rem
            }

            .hero-subtitle {
                font-size: 0.88rem;
                margin-bottom: 1rem;
                max-width: 440px;
                margin-left: auto;
                margin-right: auto
            }

            .hero-checklist {
                gap: 0.5rem;
                margin-bottom: 1.3rem;
                max-width: 360px;
                margin-left: auto;
                margin-right: auto
            }

            .hero-checklist li {
                font-size: 0.82rem;
                justify-content: flex-start;
                text-align: left
            }

            .hero-buttons {
                justify-content: center;
                gap: 0.75rem;
                margin-bottom: 1.3rem
            }

            .hero-buttons .btn {
                font-size: 0.82rem;
                padding: 0.75rem 1.25rem
            }

            .hero-social-proof {
                justify-content: center;
                gap: 0.75rem;
                margin-bottom: 0
            }

            .proof-av {
                width: 30px;
                height: 30px;
                font-size: 0.65rem
            }

            .proof-text {
                font-size: 0.78rem
            }

            .proof-stars {
                font-size: 0.72rem
            }



            .dashboard-mockup {
                width: 100%;
                margin-left: 0;
                padding: 0.75rem 0.9rem;
                border-radius: 16px
            }

            .dash-topbar {
                margin-bottom: 0.75rem;
                padding-bottom: 0.65rem
            }

            .dash-dot {
                width: 8px;
                height: 8px
            }

            .dash-title {
                font-size: 0.6rem
            }

            .dash-tabs {
                margin-bottom: 0.75rem
            }

            .dash-tab {
                font-size: 0.62rem;
                padding: 0.3rem 0
            }

            .dash-4grid {
                gap: 0.5rem;
                margin-bottom: 0.75rem
            }

            .dash-kpi {
                padding: 0.6rem
            }

            .kpi-icon-wrap {
                width: 24px;
                height: 24px;
                margin-bottom: 0.35rem
            }

            .kpi-label {
                font-size: 0.56rem
            }

            .kpi-val {
                font-size: 0.8rem
            }

            .kpi-sub {
                font-size: 0.5rem
            }

            .kpi-arrow {
                font-size: 0.65rem;
                top: 0.5rem;
                right: 0.5rem
            }

            .dash-bilanci {
                padding: 0.65rem;
                margin-bottom: 0.65rem
            }

            .bilanci-title {
                font-size: 0.65rem
            }

            .leg-lbl {
                font-size: 0.52rem
            }

            .line-chart-svg {
                height: 70px
            }

            .dash-detajet {
                padding: 0.65rem
            }

            .detaje-title {
                font-size: 0.62rem;
                margin-bottom: 0.45rem
            }

            .detaje-row {
                padding: 0.32rem 0;
                gap: 0.45rem
            }

            .detaje-icon {
                width: 22px;
                height: 22px;
                border-radius: 5px
            }

            .detaje-lbl {
                font-size: 0.56rem
            }

            .detaje-val {
                font-size: 0.6rem
            }

            .ai-section,
            .modules,
            .screenshots,
            .features,
            .contact,
            .production {
                padding: 55px 5%
            }

            #stats-section {
                padding: 45px 5%
            }

            .cta {
                padding: 60px 5%
            }

            .section-header {
                margin-bottom: 2.2rem
            }

            .section-header h2 {
                font-size: 1.6rem
            }

            .section-header p {
                font-size: 0.88rem
            }

            .section-badge {
                font-size: 0.68rem
            }

            #stats-section h2 {
                font-size: 1.6rem
            }

            #stats-section .subtitle {
                font-size: 0.88rem;
                margin-bottom: 1.8rem
            }

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

            .ai-header h2 {
                font-size: 1.65rem
            }

            .ai-header p {
                font-size: 0.88rem
            }

            .ai-card {
                padding: 1.5rem
            }

            .ai-card h3 {
                font-size: 1rem
            }

            .ai-card p {
                font-size: 0.83rem
            }

            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.85rem
            }

            .module-card {
                padding: 1.1rem
            }

            .module-card h3 {
                font-size: 0.85rem
            }

            .module-card p {
                font-size: 0.72rem
            }

            .screenshots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem
            }

            .screenshot-item img {
                height: 100px
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.85rem
            }

            .feature-item {
                padding: 1.4rem 1.1rem
            }

            .feature-item h3 {
                font-size: 0.88rem
            }

            .feature-item p {
                font-size: 0.76rem
            }

            .cta h2 {
                font-size: 1.65rem
            }

            .cta p {
                font-size: 0.88rem;
                margin-bottom: 1.8rem
            }

            .contact-container {
                grid-template-columns: 1fr
            }

            .contact-info h2 {
                font-size: 1.5rem
            }

            .contact-form {
                padding: 1.75rem 1.25rem
            }

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

            .footer {
                padding: 36px 5% 20px
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                margin-bottom: 1.75rem
            }

            .footer-brand {
                grid-column: 1 / -1;
                text-align: center
            }

            .footer-brand .footer-logo {
                display: block;
                margin: 0 auto 12px
            }

            .footer-brand p {
                font-size: 0.82rem;
                max-width: 300px;
                margin: 0 auto 1.1rem
            }

            .social-links {
                justify-content: center
            }

            .footer-links h4 {
                font-size: 0.72rem
            }

            .footer-links a {
                font-size: 0.78rem
            }

            .footer-bottom {
                font-size: 0.72rem
            }

            .tour-start-btn .btn-label {
                display: none
            }

            .tour-start-btn {
                padding: 0.7rem;
                border-radius: 50%;
                width: 48px;
                height: 48px;
                justify-content: center
            }

            .tour-bubble {
                bottom: 8px;
                width: calc(100vw - 16px)
            }

            .bubble-body {
                max-height: 42vh
            }

            /* Production responsive */
            .production-grid {
                grid-template-columns: 1fr
            }

            .prod-hero-card {
                padding: 1.75rem 1.5rem
            }

            .prod-hero-left h3 {
                font-size: 1.5rem
            }

            .prod-hero-right {
                grid-template-columns: 1fr
            }

            .prod-flow {
                padding: 1.5rem 1rem
            }

            .prod-flow-steps {
                justify-content: flex-start
            }

            .prod-flow-step {
                min-width: 80px
            }

            .prod-flow-circle {
                width: 44px;
                height: 44px;
                font-size: 0.9rem
            }

            .prod-flow-label {
                font-size: 0.62rem
            }

            .prod-flow-sublabel {
                display: none
            }
        }

        @media(max-width:480px) {
            .hero {
                padding: 120px 4% 40px
            }

            .hero-text h1 {
                font-size: 1.5rem
            }

            .h1-gradient-line {
                font-size: 1.7rem
            }

            .hero-subtitle {
                font-size: 0.82rem
            }

            .hero-checklist li {
                font-size: 0.78rem
            }

            .hero-buttons .btn {
                font-size: 0.78rem;
                padding: 0.68rem 1rem
            }



            .dashboard-mockup {
                border-radius: 12px;
                padding: 0.6rem 0.75rem
            }

            .kpi-val {
                font-size: 0.72rem
            }

            .line-chart-svg {
                height: 58px
            }

            .detaje-lbl {
                font-size: 0.52rem
            }

            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.65rem
            }

            .module-card {
                padding: 0.9rem 0.8rem
            }

            .module-card h3 {
                font-size: 0.78rem
            }

            .module-card p {
                font-size: 0.65rem
            }

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

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.65rem
            }

            .feature-item {
                padding: 1.1rem 0.85rem
            }

            .feature-icon {
                width: 44px;
                height: 44px;
                font-size: 1rem
            }

            .feature-item h3 {
                font-size: 0.8rem
            }

            .feature-item p {
                font-size: 0.7rem
            }

            .section-header h2 {
                font-size: 1.35rem
            }

            .cta h2 {
                font-size: 1.35rem
            }

            .contact-info h2 {
                font-size: 1.3rem
            }

            .ai-header h2 {
                font-size: 1.35rem
            }

            #stats-section h2 {
                font-size: 1.35rem
            }

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

            .footer-brand {
                grid-column: auto
            }

            .footer-links {
                text-align: center
            }

            .footer-links ul {
                display: flex;
                flex-wrap: wrap;
                gap: 0.3rem 1rem;
                justify-content: center
            }

            .footer-links li {
                margin-bottom: 0
            }

            /* Production */
            .prod-hero-stats {
                gap: 1rem
            }

            .prod-stat-num {
                font-size: 1.3rem
            }

            .prod-card {
                padding: 1.25rem
            }

            .prod-card-icon {
                width: 42px;
                height: 42px;
                font-size: 1rem
            }

        }

        /* ═══ STATS / PLATFORM SECTION — FUTURISTIC BLACK ═══ */
        #stats-section {
            padding: 80px 5%;
            background: #060609;
            border-top: 1px solid rgba(255, 255, 255, .05);
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            overflow: hidden;
            position: relative;
        }

        #stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 212, 255, .025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, .025) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        #stats-section h2 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 2.8vw, 2.1rem);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 0.5rem;
            letter-spacing: -0.04em;
            position: relative;
            z-index: 1;
        }

        #stats-section .subtitle {
            color: rgba(255, 255, 255, .38);
            font-size: 0.95rem;
            text-align: center;
            margin-bottom: 2.8rem;
            position: relative;
            z-index: 1;
        }

        .stats-carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .stats-track {
            display: flex;
            gap: 1rem;
            width: max-content;
            animation: infiniteScroll 30s linear infinite;
        }

        .stats-track:hover {
            animation-play-state: paused;
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0)
            }

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

        .stats-track .stat-item {
            flex: 0 0 200px;
            text-align: center;
            padding: 2rem 1.2rem 1.6rem;
            background: rgba(255, 255, 255, .028);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 16px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all .35s cubic-bezier(.23, 1, .32, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }

        .stats-track .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
            opacity: 0;
            transition: opacity .35s;
        }

        .stats-track .stat-item:hover {
            transform: translateY(-8px);
            background: rgba(0, 212, 255, .06);
            border-color: rgba(0, 212, 255, .25);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 30px rgba(0, 212, 255, .07);
        }

        .stats-track .stat-item:hover::before {
            opacity: 1
        }

        .stats-track .stat-icon-wrap {
            width: 62px;
            height: 62px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all .35s ease;
            flex-shrink: 0;
        }

        .stats-track .stat-item:hover .stat-icon-wrap {
            background: rgba(0, 212, 255, .12);
            border-color: rgba(0, 212, 255, .3);
            transform: scale(1.1) rotate(-5deg);
        }

        .stats-track .stat-item img {
            width: 30px;
            height: 30px;
            object-fit: contain;
            filter: brightness(0) invert(.7);
            transition: filter .35s ease;
        }

        .stats-track .stat-item:hover img {
            filter: brightness(0) invert(1);
        }

        .stats-track .stat-label {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .8);
            margin-bottom: 0.3rem;
            transition: color .3s;
        }

        .stats-track .stat-item:hover .stat-label {
            color: #00d4ff;
        }

        .stats-track .stat-desc {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, .32);
            line-height: 1.55;
        }

        .stats-fade-left,
        .stats-fade-right {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 10;
            pointer-events: none;
        }

        .stats-fade-left {
            left: 0;
            background: linear-gradient(to right, #060609 0%, transparent 100%);
        }

        .stats-fade-right {
            right: 0;
            background: linear-gradient(to left, #060609 0%, transparent 100%);
        }
