        /* ============================================
           QUANTIX - SaaS Landing Page Template
           Design: TemplateMo
           https://templatemo.com
        ============================================ */

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

        :root {
            --deep-space: #1E1E24;
            --surface-1: #26262D;
            --surface-2: #2E2E36;
            --surface-3: #36363F;
            --accent: #FF6B6B;
            --accent-light: #FF9B9B;
            --accent-glow: rgba(255, 107, 107, 0.35);
            --accent-soft: rgba(255, 107, 107, 0.08);
            --accent-border: rgba(255, 107, 107, 0.25);
            --text-primary: #EEEEF0;
            --text-secondary: #8A8B9E;
            --text-muted: #55566A;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --green: #22C55E;
            --amber: #F59E0B;
            --rose: #F43F5E;
            --radius: 16px;
            --radius-sm: 10px;
            --radius-xs: 6px;
            --radius-pill: 100px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
            background-color: var(--deep-space);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        body.preload-lock {
            overflow: hidden;
        }

        /* ===== PRELOADER ===== */
        .site-preloader {
            position: fixed;
            inset: 0;
            z-index: 12000;
            display: grid;
            place-items: center;
            background:
                radial-gradient(circle at 50% 42%, rgba(255, 107, 107, 0.12) 0%, rgba(30, 30, 36, 0.95) 56%),
                rgba(20, 20, 26, 0.98);
            opacity: 1;
            visibility: visible;
            transition: opacity 0.45s ease, visibility 0.45s ease;
        }

        .site-preloader.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-core {
            position: relative;
            width: 156px;
            height: 156px;
            display: grid;
            place-items: center;
        }

        .preloader-logo {
            position: relative;
            z-index: 2;
            width: 92px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 6px 20px rgba(255, 107, 107, 0.3));
            animation: preloaderLogoPulse 1.8s ease-in-out infinite;
        }

        .preloader-ring {
            position: absolute;
            inset: 20px;
            border-radius: 999px;
            border: 2px solid rgba(255, 255, 255, 0.12);
            border-top-color: rgba(255, 107, 107, 0.95);
            border-right-color: rgba(255, 107, 107, 0.45);
            animation: preloaderSpin 1s linear infinite;
        }

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

        @keyframes preloaderLogoPulse {
            0%, 100% { transform: scale(1); opacity: 0.95; }
            50% { transform: scale(1.04); opacity: 1; }
        }

        /* Grain overlay */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.5;
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .mono { font-family: 'JetBrains Mono', monospace; }

        /* ===== NAVBAR (modern iOS-style: glass, SF stack, hairline) ===== */
        .navbar {
            --nav-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .navbar-backdrop {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: rgba(28, 28, 30, 0.62);
            backdrop-filter: blur(22px) saturate(185%);
            -webkit-backdrop-filter: blur(22px) saturate(185%);
            transition: background 0.35s ease, backdrop-filter 0.35s ease;
        }

        .navbar.scrolled {
            border-bottom-color: rgba(255, 255, 255, 0.09);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
        }

        .navbar.scrolled .navbar-backdrop {
            background: rgba(28, 28, 30, 0.78);
        }

        .navbar-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: clamp(12px, 2vw, 20px);
            padding-top: max(10px, env(safe-area-inset-top, 0px));
            padding-bottom: 11px;
            min-height: 52px;
        }

        .nav-brand {
            font-family: var(--nav-font);
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .nav-brand-logo {
            display: block;
            height: 34px;
            width: auto;
            object-fit: contain;
            transform-origin: center;
            transition: filter 0.25s ease;
        }

        .nav-brand:hover .nav-brand-logo {
            animation: navLogoHover 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
            filter: drop-shadow(0 6px 16px rgba(255, 107, 107, 0.28));
        }

        @keyframes navLogoHover {
            0% {
                transform: translateY(0) scale(1) rotate(0deg);
            }
            45% {
                transform: translateY(-2px) scale(1.035) rotate(-1deg);
            }
            100% {
                transform: translateY(0) scale(1) rotate(0deg);
            }
        }

        .nav-links-wrap {
            flex: 0 1 auto;
            display: flex;
            justify-content: flex-start;
            min-width: 0;
            margin-left: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 769px) {
            .nav-links {
                padding: 3px 4px;
                background:
                    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 100%),
                    rgba(22, 22, 27, 0.72);
                border: 1px solid rgba(255, 255, 255, 0.14);
                border-radius: 100px;
                backdrop-filter: blur(20px) saturate(155%);
                -webkit-backdrop-filter: blur(20px) saturate(155%);
                box-shadow:
                    0 1px 0 rgba(255, 255, 255, 0.1) inset,
                    0 12px 30px rgba(0, 0, 0, 0.24);
            }

            .nav-links > li:not(.nav-mobile-actions) > a {
                font-family: var(--nav-font);
            font-size: 13.5px;
            font-weight: 500;
                letter-spacing: -0.012em;
                color: rgba(245, 245, 250, 0.76);
                padding: 7px 14px;
                min-height: 32px;
                border-radius: 100px;
                border: 1px solid transparent;
                transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                    background 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                    border-color 0.2s ease,
                    transform 0.2s ease;
            }

            .nav-links > li:not(.nav-mobile-actions) > a:hover {
                color: #fff;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
                border-color: rgba(255, 255, 255, 0.19);
                transform: translateY(-0.5px);
            }

            .nav-links > li:not(.nav-mobile-actions) > a:focus-visible {
                outline: 2px solid rgba(255, 107, 107, 0.55);
                outline-offset: 2px;
            }

            .nav-links > li:not(.nav-mobile-actions) > a.active {
                color: #fff;
                background: rgba(255, 255, 255, 0.12);
                border-color: rgba(255, 255, 255, 0.2);
            }
        }

        .nav-mobile-actions {
            display: none;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
            margin-left: 10px;
        }

        .navbar .btn-nav-ghost {
            font-family: var(--nav-font);
            font-size: 15px;
            font-weight: 400;
            letter-spacing: -0.022em;
            color: rgba(235, 235, 245, 0.82);
            padding: 8px 14px;
            border-radius: 100px;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .navbar .btn-nav-ghost:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.07);
        }

        .navbar .btn-nav-primary {
            font-family: var(--nav-font);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: -0.012em;
            min-height: 39px;
            padding: 8px 20px;
            border-radius: 100px;
            background: linear-gradient(180deg, #ff8888 0%, #ff666e 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.24) inset,
                0 10px 22px rgba(255, 102, 110, 0.28),
                0 0 0 1px rgba(255, 102, 110, 0.12);
            transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                filter 0.2s ease,
                box-shadow 0.2s ease;
        }

        .navbar .btn-nav-primary:hover {
            filter: brightness(1.05);
            transform: translateY(-0.5px);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.28) inset,
                0 12px 24px rgba(255, 102, 110, 0.32),
                0 0 0 1px rgba(255, 102, 110, 0.22);
        }

        .navbar .btn-nav-primary:active {
            transform: translateY(0);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            font-family: inherit;
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            letter-spacing: -0.01em;
        }

        .btn-ghost { background: transparent; color: var(--text-secondary); }
        .btn-ghost:hover { color: var(--text-primary); }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 24px var(--accent-glow),
                        0 1px 0 rgba(255,255,255,0.1) inset;
        }

        .btn-primary:hover {
            background: #FF8585;
            box-shadow: 0 0 36px var(--accent-glow),
                        0 1px 0 rgba(255,255,255,0.15) inset;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.05);
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.1);
        }

        .btn-lg { padding: 14px 32px; font-size: 14.5px; }

        .btn-primary .btn-arrow { transition: transform 0.3s; }
        .btn-primary:hover .btn-arrow { transform: translateX(3px); }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            padding: 10px 11px;
            margin-left: auto;
            z-index: 1001;
            transition: background 0.2s ease;
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-toggle span {
            width: 17px;
            height: 1.5px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 1px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
        }

        .nav-toggle.active span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

        @media (max-width: 960px) and (min-width: 769px) {
            .nav-brand-logo { height: 30px; }

            .nav-links > li:not(.nav-mobile-actions) > a {
                padding: 6px 10px;
                font-size: 13px;
            }

            .navbar .btn-nav-ghost {
                font-size: 14px;
                padding: 7px 10px;
            }

            .navbar .btn-nav-primary {
                font-size: 13px;
                padding: 7px 14px;
            }
        }

        /* ===== HERO ===== */

        .hero {
            position: relative;
            padding: 180px 24px 120px;
            overflow: hidden;
            background-image: url("images/bg1.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 700px;
            background: radial-gradient(circle at center,
                rgba(255, 107, 107, 0.12) 0%,
                rgba(255, 107, 107, 0.04) 35%,
                transparent 55%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(18, 18, 24, 0.64) 0%, rgba(18, 18, 24, 0.8) 66%),
                linear-gradient(180deg, rgba(18, 18, 24, 0) 56%, rgba(18, 18, 24, 0.95) 82%, rgba(18, 18, 24, 1) 100%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content { max-width: 560px; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 16px 5px 7px;
            background: var(--accent-soft);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: var(--radius-pill);
            font-size: 12.5px;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 28px;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-size: clamp(40px, 5vw, 62px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #FFD4D4 0%, var(--accent) 60%, #FF9B9B 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 16.5px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 460px;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 48px;
        }

        .trusted-row { display: flex; flex-direction: column; gap: 14px; }

        .trusted-label {
            font-size: 11.5px;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .trusted-logos {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .trusted-logo {
            opacity: 0.25;
            transition: opacity 0.3s;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trusted-logo:hover { opacity: 0.5; }

        .trusted-logo .t-icon {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            background: rgba(255,255,255,0.15);
        }

        /* Hero mockup */
        .hero-mockup { position: relative; }

        .mockup-window {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                        0 0 0 1px rgba(255,255,255,0.03) inset;
            transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }

        .mockup-window:hover {
            transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
        }

        .mockup-toolbar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-subtle);
        }

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

        .mockup-dot:nth-child(1) { background: var(--rose); opacity: 0.7; }
        .mockup-dot:nth-child(2) { background: var(--amber); opacity: 0.7; }
        .mockup-dot:nth-child(3) { background: var(--green); opacity: 0.7; }

        .mockup-body { padding: 20px; }

        .mockup-metric-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 16px;
        }

        .mockup-metric {
            background: var(--surface-2);
            border-radius: 10px;
            padding: 14px;
            border: 1px solid var(--border-subtle);
        }

        .mockup-metric .mm-label {
            font-size: 10px;
            color: var(--text-muted);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .mockup-metric .mm-value {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.04em;
        }

        .mockup-metric .mm-change {
            font-size: 10px;
            font-weight: 600;
            color: var(--green);
            margin-top: 4px;
        }

        .mockup-chart {
            background: var(--surface-2);
            border-radius: 10px;
            padding: 16px;
            border: 1px solid var(--border-subtle);
            height: 120px;
            position: relative;
            overflow: hidden;
        }

        .mockup-chart-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .chart-line {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            height: 60px;
        }

        .chart-line svg { width: 100%; height: 100%; }

        /* ===== WHO WE ARE ===== */
        .who-section {
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255, 107, 107, 0.03) 100%);
        }

        .who-inner {
            display: grid;
            gap: 28px;
        }

        .who-header {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }

        .who-header .section-desc {
            margin: 0 auto;
            max-width: 700px;
        }

        .who-video-wrap {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 8px 18px rgba(0,0,0,0.16);
            background: transparent;
        }

        .who-video {
            display: block;
            width: 100%;
            max-height: 560px;
            object-fit: cover;
            background: #0f1118;
        }

        /* ===== SECTIONS ===== */

        .section { padding: 120px 0; position: relative; }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 14px;
            font-family: 'JetBrains Mono', monospace;
        }

        .section-label::before {
            content: '';
            width: 18px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(30px, 4vw, 46px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 480px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header .section-desc { margin: 0 auto; }

        /* ===== TABBED FEATURES ===== */

        .features-section {
            border-top: none;
            background-image: url("images/bg2.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            isolation: isolate;
            margin-top: -56px;
            padding-top: 176px;
        }

        .features-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(180deg, rgba(18, 18, 24, 0.78) 0%, rgba(18, 18, 24, 0.86) 100%);
            pointer-events: none;
        }

        .features-section > .container {
            position: relative;
            z-index: 1;
        }

        .feature-tabs {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 56px;
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-pill);
            padding: 4px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-tab {
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-family: inherit;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .feature-tab:hover {
            color: var(--text-secondary);
        }

        .feature-tab.active {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .feature-panels { position: relative; }

        .feature-panel {
            display: none;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
            animation: panelIn 0.45s ease forwards;
        }

        .feature-panel.active { display: grid; }

        @keyframes panelIn {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .feature-text { max-width: 440px; }

        .feature-text .feat-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-soft);
            border: 1px solid rgba(255, 107, 107, 0.10);
            border-radius: 12px;
            display: grid;
            place-items: center;
            margin-bottom: 24px;
            color: var(--accent);
        }

        .feature-text h3 {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 14px;
            line-height: 1.15;
        }

        .feature-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .feature-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-bullets li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: var(--text-secondary);
        }

        .feature-bullets li svg { color: var(--accent); flex-shrink: 0; }

        /* Feature panel embedded UIs */
        .feature-visual {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
        }

        .fv-toolbar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 11px 16px;
            border-bottom: 1px solid var(--border-subtle);
            background: rgba(255,255,255,0.02);
        }

        .fv-dot { width: 8px; height: 8px; border-radius: 50%; }
        .fv-dot:nth-child(1) { background: var(--rose); opacity: 0.6; }
        .fv-dot:nth-child(2) { background: var(--amber); opacity: 0.6; }
        .fv-dot:nth-child(3) { background: var(--green); opacity: 0.6; }

        .fv-body { padding: 24px; }

        /* — Panel 1: Dashboard mini-UI — */
        .dash-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 16px;
        }

        .dash-metric {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 14px;
        }

        .dash-metric .dm-label {
            font-size: 9.5px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 6px;
            font-family: 'JetBrains Mono', monospace;
        }

        .dash-metric .dm-val {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 4px;
        }

        .dash-metric .dm-change {
            font-size: 10px;
            font-weight: 600;
        }

        .dm-change.up { color: var(--green); }
        .dm-change.down { color: var(--rose); }

        .dash-chart-area {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 16px;
            height: 140px;
            position: relative;
        }

        .dash-chart-area .dca-title {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 8px;
        }

        .dash-chart-area svg { width: 100%; height: 80px; }

        /* — Panel 2: Funnel visual — */
        .funnel-stages {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .funnel-stage {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 14px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xs);
        }

        .funnel-bar-wrap { flex: 1; }

        .funnel-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            margin-bottom: 5px;
        }

        .funnel-bar-label span:first-child { color: var(--text-secondary); }
        .funnel-bar-label span:last-child { font-family: 'JetBrains Mono', monospace; color: var(--text-muted); font-size: 10.5px; }

        .funnel-track {
            height: 6px;
            background: rgba(255,255,255,0.06);
            border-radius: 6px;
            overflow: hidden;
        }

        .funnel-fill {
            height: 100%;
            border-radius: 6px;
            background: var(--accent);
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .funnel-fill.green { background: var(--green); }
        .funnel-fill.amber { background: var(--amber); }

        .funnel-drop {
            font-size: 10px;
            font-weight: 600;
            color: var(--rose);
            font-family: 'JetBrains Mono', monospace;
            width: 44px;
            text-align: right;
            flex-shrink: 0;
        }

        /* — Panel 3: Code snippet — */
        .code-block {
            background: var(--deep-space);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            line-height: 1.8;
            color: var(--text-secondary);
            overflow-x: auto;
        }

        .code-block .c-key { color: var(--accent-light); }
        .code-block .c-str { color: var(--green); }
        .code-block .c-fn { color: var(--amber); }
        .code-block .c-comment { color: var(--text-muted); }
        .code-block .c-num { color: var(--rose); }

        .code-output {
            margin-top: 12px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
        }

        .code-output .co-label {
            font-size: 9.5px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 8px;
        }

        .code-output .co-result {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--green);
            font-family: 'JetBrains Mono', monospace;
        }

        .co-result .pulse-ring {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(34,197,94,0.5);
        }

        /* — Panel 4: Session replay — */
        .replay-ui {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .replay-header {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .replay-header .rh-left {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .replay-header .rh-left .live-dot {
            width: 6px;
            height: 6px;
            background: var(--rose);
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(244,63,94,0.5);
            animation: dotPulse 1.5s ease-in-out infinite;
        }

        .replay-header .rh-time {
            font-size: 10px;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }

        .replay-viewport {
            padding: 20px;
            min-height: 160px;
            position: relative;
        }

        /* Fake mini-page inside replay */
        .replay-page {
            background: #28282f;
            border-radius: 6px;
            padding: 14px;
            border: 1px solid var(--border-subtle);
        }

        .rp-nav {
            height: 6px;
            background: rgba(255,255,255,0.06);
            border-radius: 3px;
            margin-bottom: 12px;
            width: 60%;
        }

        .rp-hero-block {
            height: 10px;
            background: rgba(255,255,255,0.08);
            border-radius: 3px;
            margin-bottom: 6px;
            width: 80%;
        }

        .rp-hero-block:nth-child(3) { width: 50%; margin-bottom: 12px; }

        .rp-btn-block {
            display: inline-block;
            height: 8px;
            width: 48px;
            background: var(--accent);
            opacity: 0.6;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .rp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .rp-card {
            height: 28px;
            background: rgba(255,255,255,0.04);
            border-radius: 4px;
            border: 1px solid var(--border-subtle);
        }

        /* Cursor animation */
        .replay-cursor {
            position: absolute;
            width: 12px;
            height: 12px;
            border-left: 2px solid var(--accent);
            border-top: 2px solid var(--accent);
            transform: rotate(-45deg);
            filter: drop-shadow(0 0 6px rgba(255,107,107,0.4));
            animation: cursorMove 4s ease-in-out infinite;
        }

        @keyframes cursorMove {
            0% { top: 60px; left: 40px; }
            25% { top: 80px; left: 140px; }
            50% { top: 110px; left: 100px; }
            75% { top: 70px; left: 180px; }
            100% { top: 60px; left: 40px; }
        }

        .replay-timeline {
            padding: 10px 14px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .replay-timeline .rt-play {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .rt-track {
            flex: 1;
            height: 3px;
            background: rgba(255,255,255,0.08);
            border-radius: 3px;
            overflow: hidden;
        }

        .rt-progress {
            height: 100%;
            width: 45%;
            background: var(--accent);
            border-radius: 3px;
        }

        .replay-events {
            margin-top: 12px;
            display: flex;
            gap: 8px;
        }

        .replay-event-tag {
            padding: 4px 10px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xs);
            font-size: 10px;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .replay-event-tag .re-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

        /* — Panel 5: Privacy — */
        .privacy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .privacy-card {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 18px;
        }

        .privacy-card .pc-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.15);
            display: grid;
            place-items: center;
            margin-bottom: 12px;
            color: var(--green);
        }

        .privacy-card h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: -0.02em;
        }

        .privacy-card p {
            font-size: 11.5px;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ===== STATS ===== */

        .stats-strip {
            padding: 80px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .stats-grid {
            display: flex;
            justify-content: space-between;
        }

        .stat-item { text-align: left; flex: 1; }

        .stat-item + .stat-item {
            border-left: 1px solid var(--border-subtle);
            padding-left: 40px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ===== COMPANY SECTION ===== */
        .company-section {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 107, 107, 0.03) 100%);
            border-bottom: 1px solid var(--border-subtle);
        }

        .company-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .company-content .section-desc {
            max-width: 620px;
            margin-bottom: 18px;
        }

        .company-note {
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-secondary);
        }

        .company-note a {
            color: var(--accent-light);
            transition: color 0.25s ease;
        }

        .company-note a:hover {
            color: #fff;
        }

        .company-media {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
        }

        .company-image {
            display: block;
            width: 100%;
            height: 100%;
            max-height: 420px;
            object-fit: cover;
        }

        /* ===== PRICING ===== */

        .pricing-section {
            background: linear-gradient(180deg,
                var(--deep-space) 0%,
                rgba(255, 107, 107, 0.02) 50%,
                var(--deep-space) 100%);
        }

        .pricing-toggle-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 56px;
        }

        .pricing-toggle-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .pricing-toggle-label.active { color: var(--text-primary); }

        .pricing-toggle {
            position: relative;
            width: 48px;
            height: 26px;
            background: rgba(255,255,255,0.08);
            border-radius: 100px;
            cursor: pointer;
            border: 1px solid var(--border-subtle);
        }

        .pricing-toggle::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 18px;
            height: 18px;
            background: var(--accent);
            border-radius: 50%;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 12px var(--accent-glow);
        }

        .pricing-toggle.annual::after { transform: translateX(22px); }

        .pricing-save {
            font-size: 11px;
            font-weight: 700;
            color: var(--green);
            background: rgba(34, 197, 94, 0.1);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: center;
        }

        .pricing-card {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s;
        }

        .pricing-card:hover { border-color: rgba(255,255,255,0.08); }

        .pricing-card.featured {
            transform: scale(1.05);
            border-color: var(--accent-border);
            z-index: 2;
            box-shadow: 0 0 80px rgba(255, 107, 107, 0.06),
                        0 24px 48px rgba(0,0,0,0.4);
        }

        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .pricing-popular {
            position: absolute;
            top: -11px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .pricing-plan-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .pricing-amount {
            display: flex;
            align-items: flex-start;
            gap: 2px;
            margin-bottom: 4px;
            min-height: 56px;
        }

        .pricing-currency {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .pricing-value {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-value.free-label {
            font-size: 44px;
            letter-spacing: -0.03em;
        }

        .pricing-value.changing {
            opacity: 0;
            transform: translateY(-6px);
        }

        .pricing-period {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        .period-yearly {
            color: var(--text-primary);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: var(--text-secondary);
            padding: 7px 0;
        }

        .pricing-features li svg { flex-shrink: 0; color: var(--accent); }

        .pricing-card .btn { width: 100%; }

        .pricing-divider {
            height: 1px;
            background: var(--border-subtle);
            margin: 24px 0;
        }

        /* ===== SUBSCRIBE ===== */

        .subscribe-section {
            padding: 100px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-image: url("images/bg3.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            isolation: isolate;
        }

        .subscribe-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(180deg, rgba(18, 18, 24, 0.76) 0%, rgba(18, 18, 24, 0.88) 100%);
            pointer-events: none;
        }

        .subscribe-section::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
            pointer-events: none;
        }

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

        .subscribe-inner .section-title {
            font-size: clamp(24px, 3.5vw, 36px);
            margin-bottom: 12px;
        }

        .subscribe-inner .section-desc {
            max-width: 760px;
            margin: 0 auto 36px;
            font-size: 15px;
        }

        .workflow-steps {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 10px;
        }

        .workflow-steps::before {
            content: '';
            position: absolute;
            left: 4%;
            right: 4%;
            top: 24px;
            height: 1px;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 15%, rgba(255,255,255,0.18) 85%, rgba(255,255,255,0) 100%);
            z-index: 0;
            pointer-events: none;
        }

        .workflow-step {
            position: relative;
            z-index: 1;
            text-align: left;
            padding: 18px 16px 16px;
            background: rgba(255,255,255,0.035);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 14px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            min-height: 190px;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .workflow-step:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 107, 107, 0.35);
            background: rgba(255,255,255,0.055);
        }

        .workflow-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            margin-bottom: 14px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(180deg, #ff7f7f 0%, #ff6262 100%);
            box-shadow: 0 6px 16px rgba(255, 107, 107, 0.32);
        }

        .workflow-step h3 {
            font-size: 16px;
            line-height: 1.35;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .workflow-step p {
            font-size: 13.5px;
            line-height: 1.65;
            color: var(--text-secondary);
        }

        .workflow-cta {
            margin-top: 30px;
            min-width: 240px;
        }

        .subscribe-input-group {
            display: flex;
            gap: 0;
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 5px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .subscribe-input-group:focus-within {
            border-color: var(--accent-border);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .subscribe-input-group input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 18px;
            font-family: inherit;
            font-size: 15px;
            color: var(--text-primary);
            outline: none;
            min-width: 0;
        }

        .subscribe-input-group input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-input-group .btn {
            border-radius: 12px;
            padding: 12px 28px;
        }

        .subscribe-meta {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .subscribe-meta span {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .subscribe-meta svg {
            color: var(--accent);
            flex-shrink: 0;
        }

        /* ===== MOTIVATION SECTION ===== */
        .motivation-section {
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 107, 107, 0.04) 100%);
        }

        .motivation-grid {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 46px;
            align-items: center;
        }

        .motivation-content .section-desc {
            max-width: 640px;
            margin-bottom: 16px;
        }

        .motivation-list {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 10px;
        }

        .motivation-list li {
            position: relative;
            padding-left: 18px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        .motivation-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .motivation-media {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.03);
        }

        .motivation-image {
            display: block;
            width: 100%;
            height: 100%;
            max-height: 430px;
            object-fit: cover;
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255, 107, 107, 0.03) 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .gallery-item {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            box-shadow: 0 12px 26px rgba(0,0,0,0.25);
            aspect-ratio: 16 / 10;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .gallery-item:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 107, 107, 0.32);
            box-shadow: 0 16px 30px rgba(0,0,0,0.3);
        }

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

        .gallery-status {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--text-secondary);
            font-size: 14px;
            padding: 20px 12px;
            border: 1px dashed rgba(255,255,255,0.15);
            border-radius: 12px;
            background: rgba(255,255,255,0.02);
        }

        /* ===== PRIVACY PAGE ===== */
        .privacy-page .privacy-main {
            padding-top: 92px;
        }

        .privacy-page .privacy-hero {
            padding-bottom: 52px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
        }

        .privacy-page .privacy-hero .section-title {
            animation: privacyTitleIn 0.8s ease both;
        }

        .privacy-page .privacy-facts-row {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .privacy-page .privacy-facts-row span {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.13);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            font-size: 12px;
        }

        .privacy-page .privacy-content-section {
            padding-top: 52px;
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.02) 0%, rgba(255,255,255,0.01) 100%);
        }

        .privacy-page .privacy-layout {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .privacy-page .privacy-panel {
            padding: 22px 20px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.22);
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
        }

        .privacy-page .privacy-panel:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 107, 107, 0.28);
            background: rgba(255,255,255,0.045);
            box-shadow: 0 14px 28px rgba(0,0,0,0.25);
        }

        .privacy-page .privacy-panel:nth-child(1) { animation-delay: 40ms; }
        .privacy-page .privacy-panel:nth-child(2) { animation-delay: 90ms; }
        .privacy-page .privacy-panel:nth-child(3) { animation-delay: 140ms; }
        .privacy-page .privacy-panel:nth-child(4) { animation-delay: 190ms; }
        .privacy-page .privacy-panel:nth-child(5) { animation-delay: 240ms; }
        .privacy-page .privacy-panel:nth-child(6) { animation-delay: 290ms; }

        .privacy-page .privacy-panel.fade-up.visible {
            animation: privacyPanelIn 0.55s ease both;
        }

        .privacy-page .privacy-panel h2 {
            font-size: 20px;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .privacy-page .privacy-panel p,
        .privacy-page .privacy-panel li {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .privacy-page .privacy-panel p + p {
            margin-top: 10px;
        }

        .privacy-page .privacy-panel ul {
            list-style: none;
            margin-top: 6px;
            display: grid;
            gap: 8px;
        }

        .privacy-page .privacy-panel li {
            position: relative;
            padding-left: 16px;
        }

        .privacy-page .privacy-panel li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .privacy-page .privacy-panel a {
            color: var(--accent-light);
            transition: color 0.25s ease;
        }

        .privacy-page .privacy-panel a:hover {
            color: #fff;
        }

        /* ===== TERMS PAGE ===== */
        .terms-page .terms-main {
            padding-top: 92px;
        }

        .terms-page .terms-hero {
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.012) 0%, rgba(255,255,255,0) 100%);
        }

        .terms-page .terms-pill-row {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .terms-page .terms-pill-row span {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            font-size: 12px;
        }

        .terms-page .terms-content-section {
            padding-top: 50px;
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.015) 0%, rgba(255,255,255,0.01) 100%);
        }

        .terms-page .terms-layout {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 20px;
            align-items: start;
        }

        .terms-page .terms-side {
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.22);
            position: sticky;
            top: 104px;
        }

        .terms-page .terms-side-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .terms-page .terms-side-text,
        .terms-page .terms-side-meta {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.65;
        }

        .terms-page .terms-side-meta a {
            color: var(--accent-light);
        }

        .terms-page .terms-side-meta a:hover {
            color: #fff;
        }

        .terms-page .terms-clauses {
            display: grid;
            gap: 12px;
        }

        .terms-page .terms-clause {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            background: rgba(255,255,255,0.03);
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
            padding: 18px;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .terms-page .terms-clause:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 107, 107, 0.26);
            box-shadow: 0 12px 24px rgba(0,0,0,0.24);
        }

        .terms-page .terms-clause-id {
            display: inline-flex;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-light);
            margin-bottom: 8px;
        }

        .terms-page .terms-clause h2 {
            font-size: 20px;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        .terms-page .terms-clause p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .terms-page .terms-clause p + p {
            margin-top: 10px;
        }

        .terms-page .terms-clause ul {
            list-style: none;
            margin-top: 8px;
            display: grid;
            gap: 8px;
        }

        .terms-page .terms-clause li {
            position: relative;
            padding-left: 16px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .terms-page .terms-clause li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
        }

        /* ===== FAQ PAGE ===== */
        .faq-page .faq-main {
            padding-top: 92px;
        }

        .faq-page .faq-hero {
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
        }

        .faq-page .faq-highlight-strip {
            margin: 6px auto 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .faq-page .faq-highlight-strip span {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            font-size: 12px;
            letter-spacing: -0.01em;
        }

        .faq-page .faq-content-section {
            padding-top: 50px;
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.02) 0%, rgba(255,255,255,0.01) 100%);
        }

        .faq-page .faq-layout {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 20px;
            align-items: start;
        }

        .faq-page .faq-side-card {
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.22);
            position: sticky;
            top: 104px;
        }

        .faq-page .faq-side-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .faq-page .faq-side-text,
        .faq-page .faq-side-meta {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.65;
        }

        .faq-page .faq-side-card .btn {
            margin: 14px 0 12px;
            width: 100%;
        }

        .faq-page .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-page .faq-item {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            background: rgba(255,255,255,0.03);
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        .faq-page .faq-item[open] {
            border-color: rgba(255, 107, 107, 0.3);
            box-shadow: 0 12px 24px rgba(0,0,0,0.24);
        }

        .faq-page .faq-item:hover {
            transform: translateY(-2px);
        }

        .faq-page .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 16px 18px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            position: relative;
            padding-right: 44px;
        }

        .faq-page .faq-item summary::-webkit-details-marker { display: none; }

        .faq-page .faq-item summary::after {
            content: '';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(255,255,255,0.05);
        }

        .faq-page .faq-item summary::before {
            content: '';
            position: absolute;
            right: 27px;
            top: 50%;
            width: 12px;
            height: 12px;
            transform: translate(50%, -50%);
            z-index: 1;
            background:
                linear-gradient(var(--accent-light), var(--accent-light)) center/12px 2px no-repeat,
                linear-gradient(var(--accent-light), var(--accent-light)) center/2px 12px no-repeat;
            transition: background-size 0.2s ease;
        }

        .faq-page .faq-item[open] summary::before {
            background:
                linear-gradient(var(--accent-light), var(--accent-light)) center/12px 2px no-repeat,
                linear-gradient(var(--accent-light), var(--accent-light)) center/0 0 no-repeat;
        }

        .faq-page .faq-answer {
            padding: 0 18px 16px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-page .faq-answer a {
            color: var(--accent-light);
        }

        .faq-page .faq-answer a:hover {
            color: #fff;
        }

        /* ===== CONTACT PAGE ===== */
        .contact-page .contact-main {
            padding-top: 92px;
        }

        .contact-page .contact-hero {
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
        }

        .contact-page .contact-tags {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .contact-page .contact-tags span {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            font-size: 12px;
        }

        .contact-page .contact-content-section {
            padding-top: 50px;
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.02) 0%, rgba(255,255,255,0.01) 100%);
        }

        .contact-page .contact-map-section {
            border-top: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.02) 100%);
        }

        .contact-page .contact-layout {
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 20px;
            align-items: start;
        }

        .contact-page .contact-info {
            display: grid;
            gap: 12px;
        }

        .contact-page .contact-info-card,
        .contact-page .contact-form-card {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            background: rgba(255,255,255,0.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.22);
        }

        .contact-page .contact-info-card {
            padding: 18px;
        }

        .contact-page .contact-info-card h2,
        .contact-page .contact-form-card h2 {
            font-size: 20px;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .contact-page .contact-info-card p,
        .contact-page .contact-info-card li,
        .contact-page .contact-form-lead {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.65;
        }

        .contact-page .contact-info-card a {
            color: var(--accent-light);
            font-size: 15px;
            font-weight: 600;
        }

        .contact-page .contact-info-card a:hover {
            color: #fff;
        }

        .contact-page .contact-info-card ul {
            list-style: none;
            display: grid;
            gap: 7px;
            margin-top: 6px;
        }

        .contact-page .contact-info-card li {
            position: relative;
            padding-left: 14px;
        }

        .contact-page .contact-info-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .contact-page .contact-form-card {
            padding: 22px;
        }

        .contact-page .contact-form-lead {
            margin-bottom: 14px;
        }

        .contact-page .contact-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 12px;
        }

        .contact-page .contact-form-grid .contact-field-wide {
            grid-column: 1 / -1;
        }

        .contact-page .contact-form-card label {
            display: grid;
            gap: 6px;
        }

        .contact-page .contact-form-card label span {
            font-size: 12.5px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .contact-page .contact-form-card input,
        .contact-page .contact-form-card select,
        .contact-page .contact-form-card textarea {
            width: 100%;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px;
            background: rgba(255,255,255,0.02);
            color: var(--text-primary);
            padding: 12px 12px;
            font-family: inherit;
            font-size: 14px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-page .contact-form-card input::placeholder,
        .contact-page .contact-form-card textarea::placeholder {
            color: var(--text-muted);
        }

        .contact-page .contact-form-card input:focus,
        .contact-page .contact-form-card select:focus,
        .contact-page .contact-form-card textarea:focus {
            border-color: rgba(255, 107, 107, 0.4);
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
        }

        .contact-page .contact-message-field {
            margin-bottom: 14px;
        }

        .contact-page .contact-form-card .btn {
            width: 100%;
        }

        .contact-page .contact-map-frame {
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0,0,0,0.24);
            background: rgba(255,255,255,0.02);
        }

        .contact-page .contact-map-frame iframe {
            display: block;
            width: 100%;
            height: 420px;
            border: 0;
        }

        /* ===== ABOUT PAGE ===== */
        .about-page .about-main {
            padding-top: 92px;
        }

        .about-page .about-hero {
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
        }

        .about-page .about-hero-tags {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .about-page .about-hero-tags span {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            font-size: 12px;
        }

        .about-page .about-story-section {
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.02) 0%, rgba(255,255,255,0.01) 100%);
        }

        .about-page .about-block {
            display: grid;
            grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
            gap: 22px;
            align-items: stretch;
            margin-bottom: 22px;
        }

        .about-page .about-block:last-child {
            margin-bottom: 0;
        }

        .about-page .about-block:nth-child(even) {
            grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
        }

        .about-page .about-block:nth-child(even) .about-block-media {
            order: 2;
        }

        .about-page .about-block-media {
            border-radius: 18px;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(0,0,0,0.24);
            min-height: 280px;
            background: rgba(255,255,255,0.02);
        }

        .about-page .about-block-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.001);
            transition: transform 0.35s ease;
        }

        .about-page .about-block:hover .about-block-media img {
            transform: scale(1.03);
        }

        .about-page .about-block-content {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
            background: rgba(255,255,255,0.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.22);
            padding: 24px 22px;
        }

        .about-page .about-kicker {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-light);
            margin-bottom: 10px;
        }

        .about-page .about-block-content h2 {
            font-size: clamp(24px, 3vw, 34px);
            letter-spacing: -0.03em;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .about-page .about-block-content p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.76;
        }

        .about-page .about-block-content p + p {
            margin-top: 10px;
        }

        .about-page .about-interactive {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
            background:
                radial-gradient(120% 120% at 0% 0%, rgba(255,107,107,0.1) 0%, rgba(255,107,107,0) 45%),
                rgba(255,255,255,0.03);
            box-shadow: 0 12px 28px rgba(0,0,0,0.24);
            padding: 24px 22px;
            margin-bottom: 22px;
        }

        .about-page .about-interactive-head h2 {
            font-size: clamp(24px, 3vw, 34px);
            letter-spacing: -0.03em;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .about-page .about-interactive-head p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.72;
        }

        .about-page .about-stage-tabs {
            margin-top: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .about-page .about-stage-tab {
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(255,255,255,0.03);
            color: var(--text-secondary);
            border-radius: 999px;
            padding: 9px 14px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .about-page .about-stage-tab:hover {
            color: #fff;
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-1px);
        }

        .about-page .about-stage-tab.active {
            color: #fff;
            background: linear-gradient(180deg, rgba(255, 136, 136, 0.95) 0%, rgba(255, 102, 110, 0.95) 100%);
            border-color: rgba(255, 102, 110, 0.45);
            box-shadow: 0 8px 20px rgba(255, 102, 110, 0.28);
        }

        .about-page .about-stage-panel-wrap {
            margin-top: 14px;
            position: relative;
        }

        .about-page .about-stage-panel {
            display: none;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            background: rgba(255,255,255,0.02);
            padding: 16px 16px 14px;
            animation: panelIn 0.35s ease both;
        }

        .about-page .about-stage-panel.active {
            display: block;
        }

        .about-page .about-stage-title {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .about-page .about-stage-panel ul {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .about-page .about-stage-panel li {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.65;
            position: relative;
            padding-left: 14px;
        }

        .about-page .about-stage-panel li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 7px var(--accent-glow);
        }

        /* ===== SERVICES PAGE ===== */
        .services-page .services-main {
            padding-top: 92px;
        }

        .services-page .services-hero {
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
        }

        .services-page .services-tags {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .services-page .services-tags span {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            font-size: 12px;
        }

        .services-page .services-carousel-section {
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.02) 0%, rgba(255,255,255,0.01) 100%);
        }

        .services-page .services-carousel-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .services-page .services-carousel-head h2 {
            font-size: clamp(24px, 3.2vw, 36px);
            letter-spacing: -0.03em;
            color: var(--text-primary);
        }

        .services-page .services-carousel-controls {
            display: flex;
            gap: 8px;
        }

        .services-page .services-nav-btn {
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(255,255,255,0.04);
            color: var(--text-primary);
            border-radius: 999px;
            padding: 8px 14px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }

        .services-page .services-nav-btn:hover {
            border-color: rgba(255, 107, 107, 0.45);
            background: rgba(255, 107, 107, 0.12);
            transform: translateY(-1px);
        }

        .services-page .services-nav-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none;
        }

        .services-page .services-viewport {
            overflow: hidden;
            border-radius: 18px;
        }

        .services-page .services-track {
            display: flex;
            transition: transform 0.4s ease;
            will-change: transform;
        }

        .services-page .service-card {
            flex: 0 0 calc(100% / 3);
            min-width: 0;
            padding: 0 8px;
        }

        .services-page .service-image-wrap {
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            border-bottom: none;
            background: rgba(255,255,255,0.03);
            height: 210px;
        }

        .services-page .service-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.001);
            transition: transform 0.35s ease;
        }

        .services-page .service-card:hover .service-image-wrap img {
            transform: scale(1.03);
        }

        .services-page .service-card-body {
            border: 1px solid rgba(255,255,255,0.1);
            border-top: none;
            border-radius: 0 0 16px 16px;
            background: rgba(255,255,255,0.03);
            box-shadow: 0 10px 24px rgba(0,0,0,0.22);
            padding: 16px 16px 18px;
            height: calc(100% - 210px);
            display: flex;
            flex-direction: column;
        }

        .services-page .service-kicker {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-light);
            margin-bottom: 8px;
        }

        .services-page .service-card-body h3 {
            font-size: 20px;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .services-page .service-card-body p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.68;
            margin-bottom: 14px;
        }

        .services-page .service-card-body .btn {
            margin-top: auto;
            width: 100%;
        }

        .services-modal {
            position: fixed;
            inset: 0;
            z-index: 1160;
            display: grid;
            place-items: center;
            padding: 20px;
            background: rgba(12, 13, 18, 0.72);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .services-modal.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .services-modal-card {
            width: min(640px, 100%);
            border-radius: 18px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(30, 32, 39, 0.96);
            box-shadow: 0 18px 34px rgba(0,0,0,0.35);
            padding: 24px 22px 22px;
            position: relative;
            transform: translateY(8px) scale(0.98);
            transition: transform 0.25s ease;
        }

        .services-modal.show .services-modal-card {
            transform: translateY(0) scale(1);
        }

        .services-modal-close {
            position: absolute;
            right: 10px;
            top: 10px;
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(255,255,255,0.04);
            color: var(--text-secondary);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .services-modal-close:hover {
            color: #fff;
            border-color: rgba(255, 107, 107, 0.4);
            background: rgba(255, 107, 107, 0.12);
        }

        .services-modal-kicker {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-light);
            margin-bottom: 8px;
        }

        .services-modal-title {
            font-size: clamp(24px, 3vw, 34px);
            letter-spacing: -0.03em;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .services-modal-text {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.78;
        }

        .services-modal-list {
            list-style: none;
            margin: 14px 0 16px;
            display: grid;
            gap: 8px;
        }

        .services-modal-list li {
            color: var(--text-secondary);
            font-size: 14.5px;
            line-height: 1.72;
            position: relative;
            padding-left: 14px;
        }

        .services-modal-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .services-modal-actions .btn {
            width: 100%;
        }

        .pricing-email-form {
            margin-top: 14px;
            display: grid;
            gap: 10px;
        }

        .pricing-email-form label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .pricing-email-form input {
            width: 100%;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px;
            background: rgba(255,255,255,0.03);
            color: var(--text-primary);
            padding: 12px;
            font-family: inherit;
            font-size: 14px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .pricing-email-form input::placeholder {
            color: var(--text-muted);
        }

        .pricing-email-form input:focus {
            border-color: rgba(255, 107, 107, 0.45);
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14);
        }

        .pricing-result-modal.success .services-modal-title {
            color: #d8ffe8;
        }

        .pricing-result-modal.error .services-modal-title {
            color: #ffd7d7;
        }

        @keyframes privacyTitleIn {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes privacyPanelIn {
            from { opacity: 0; transform: translateY(16px) scale(0.985); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* ===== FOOTER ===== */

        .footer {
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 26px;
            background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 100%);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-bottom: 26px;
        }

        .footer-card {
            padding: 22px 20px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.09);
            background: rgba(255,255,255,0.03);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
        }

        .footer-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 107, 107, 0.3);
            background: rgba(255,255,255,0.05);
            box-shadow: 0 14px 30px rgba(0,0,0,0.26), 0 0 0 1px rgba(255, 107, 107, 0.08) inset;
        }

        .footer-card:nth-child(1) { transition-delay: 0ms; }
        .footer-card:nth-child(2) { transition-delay: 40ms; }
        .footer-card:nth-child(3) { transition-delay: 80ms; }

        .footer-card .footer-title,
        .footer-card .footer-text,
        .footer-card .footer-points li {
            transition: transform 0.28s ease, color 0.28s ease;
        }

        .footer-card:hover .footer-title,
        .footer-card:hover .footer-text {
            transform: translateX(2px);
        }

        .footer-card:hover .footer-points li {
            color: var(--text-primary);
        }

        .footer-logo {
            height: 30px;
            width: auto;
            object-fit: contain;
            margin-bottom: 14px;
            transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.3s ease;
        }

        .footer-card:hover .footer-logo {
            transform: scale(1.035) translateY(-1px);
            filter: drop-shadow(0 8px 18px rgba(255, 107, 107, 0.24));
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .footer-text {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .footer-text + .footer-text {
            margin-top: 8px;
        }

        .footer-label {
            color: var(--text-primary);
            font-weight: 600;
        }

        .footer-text a {
            color: var(--accent-light);
            transition: color 0.25s ease;
        }

        .footer-text a:hover {
            color: #fff;
        }

        .footer-points {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .footer-points li {
            position: relative;
            padding-left: 16px;
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        .footer-points li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .footer-copy {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .footer-copy a {
            color: var(--accent);
            transition: color 0.3s;
        }

        .footer-copy a:hover {
            color: var(--accent-light);
        }

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

        .footer-legal a {
            font-size: 12.5px;
            color: var(--text-muted);
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .footer-legal a:hover {
            color: var(--text-primary);
            transform: translateY(-1px);
        }

        .footer-legal a + a {
            position: relative;
            padding-left: 14px;
        }

        .footer-legal a + a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transform: translateY(-50%);
        }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            left: 24px;
            right: 24px;
            bottom: 24px;
            z-index: 1090;
            display: flex;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px);
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        }

        .cookie-banner.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .cookie-banner-inner {
            width: min(760px, 100%);
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 14px 14px 18px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(34, 34, 40, 0.92);
            backdrop-filter: blur(18px) saturate(165%);
            -webkit-backdrop-filter: blur(18px) saturate(165%);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
        }

        .cookie-title {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--accent-light);
            margin-bottom: 4px;
            font-family: 'JetBrains Mono', monospace;
        }

        .cookie-text {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }

        .cookie-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .cookie-btn {
            min-height: 38px;
            padding: 9px 14px;
            font-size: 12.5px;
            white-space: nowrap;
        }

        /* ===== STATUS MODAL ===== */
        .status-modal {
            position: fixed;
            inset: 0;
            z-index: 1150;
            display: grid;
            place-items: center;
            padding: 20px;
            background: rgba(12, 13, 18, 0.68);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .status-modal.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .status-modal-card {
            width: min(520px, 100%);
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(30, 32, 39, 0.96);
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
            padding: 22px 20px 18px;
            transform: translateY(8px) scale(0.98);
            transition: transform 0.25s ease;
        }

        .status-modal.show .status-modal-card {
            transform: translateY(0) scale(1);
        }

        .status-modal-title {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .status-modal-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .status-modal-list {
            margin: 12px 0 14px;
            display: grid;
            gap: 8px;
            list-style: none;
        }

        .status-modal-list li {
            font-size: 13.5px;
            line-height: 1.6;
            color: var(--text-secondary);
            position: relative;
            padding-left: 14px;
        }

        .status-modal-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .status-modal.success .status-modal-title {
            color: #d8ffe8;
        }

        .status-modal.error .status-modal-title {
            color: #ffd7d7;
        }

        .status-modal-btn {
            width: 100%;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top-btn {
            position: fixed;
            right: 26px;
            bottom: 26px;
            width: 46px;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: linear-gradient(180deg, rgba(255, 128, 128, 0.98) 0%, rgba(255, 102, 110, 0.96) 100%);
            color: #fff;
            box-shadow:
                0 1px 0 rgba(255,255,255,0.22) inset,
                0 12px 24px rgba(255, 102, 110, 0.3);
            cursor: pointer;
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.96);
            pointer-events: none;
            transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, filter 0.24s ease;
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .scroll-top-btn:hover {
            filter: brightness(1.06);
            transform: translateY(-2px);
            box-shadow:
                0 1px 0 rgba(255,255,255,0.26) inset,
                0 16px 28px rgba(255, 102, 110, 0.34);
        }

        .scroll-top-btn:active { transform: translateY(0); }

        .scroll-top-btn:focus-visible {
            outline: 2px solid rgba(255, 107, 107, 0.6);
            outline-offset: 3px;
        }

        /* ===== SCROLL ANIMATIONS ===== */

        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */

        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-mockup { max-width: 500px; margin: 0 auto; }
            .mockup-window, .mockup-window:hover { transform: none; }

            .feature-panel, .feature-panel.active {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .feature-text { max-width: none; }

            .pricing-card.featured { transform: scale(1.02); }

            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 768px) {
            .nav-links-wrap {
                flex: 0 0 auto;
                width: auto;
                min-width: 0;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(320px, 88vw);
                height: 100dvh;
                height: 100vh;
                background: rgba(34, 34, 38, 0.94);
                backdrop-filter: blur(28px) saturate(180%);
                -webkit-backdrop-filter: blur(28px) saturate(180%);
                flex-direction: column;
                align-items: stretch;
                padding: max(72px, calc(env(safe-area-inset-top, 0px) + 56px)) 24px 32px;
                gap: 0;
                border-left: 1px solid rgba(255, 255, 255, 0.08);
                transition: right 0.38s cubic-bezier(0.32, 0.72, 0, 1);
                overflow-y: auto;
                z-index: 999;
                margin: 0;
                box-shadow: none;
                border-radius: 0;
                border-top: none;
                border-right: none;
                border-bottom: none;
            }

            .nav-links.open { right: 0; }
            .nav-links li { width: 100%; }

            .nav-links > li:not(.nav-mobile-actions) > a {
                display: block;
                padding: 14px 4px;
                font-family: var(--nav-font);
                font-size: 17px;
                font-weight: 400;
                letter-spacing: -0.022em;
                color: rgba(235, 235, 245, 0.92);
                border-radius: 10px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                transition: background 0.2s ease;
            }

            .nav-links > li:not(.nav-mobile-actions) > a:hover {
                background: rgba(255, 255, 255, 0.06);
                color: #fff;
            }

            .nav-toggle { display: flex; }
            .nav-actions { display: none; }

            .nav-mobile-actions {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding-top: 24px;
                margin-top: 8px;
            }

            .nav-mobile-actions .btn {
                width: 100%;
                text-align: center;
                border-radius: var(--radius-pill);
                color: var(--text-primary);
            }

            .nav-mobile-actions .btn-primary {
                color: #fff;
            }

            .scroll-top-btn {
                right: 16px;
                bottom: 16px;
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .cookie-banner {
                left: 14px;
                right: 14px;
                bottom: 12px;
            }

            .cookie-banner-inner {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px;
            }

            .cookie-actions {
                width: 100%;
            }

            .cookie-actions .cookie-btn {
                flex: 1;
            }

            .status-modal-card {
                padding: 18px 16px 14px;
            }

            .nav-mobile-actions a {
                border-bottom: none !important;
                padding: 10px 22px !important;
                font-size: 14px !important;
            }
            .hero { padding: 140px 24px 80px; }

            .hero-cta { flex-direction: column; align-items: stretch; }

            .feature-tabs {
                overflow-x: auto;
                justify-content: flex-start;
                width: 100%;
                border-radius: var(--radius-sm);
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .feature-tabs::-webkit-scrollbar { display: none; }

            .feature-tab { padding: 10px 18px; font-size: 12.5px; }

            .dash-metrics { grid-template-columns: 1fr; }
            .privacy-grid { grid-template-columns: 1fr; }
            .company-grid { grid-template-columns: 1fr; gap: 26px; }
            .company-image { max-height: 300px; }
            .who-video { max-height: 360px; }
            .privacy-page .privacy-layout { grid-template-columns: 1fr; }
            .privacy-page .privacy-facts-row { justify-content: flex-start; }
            .faq-page .faq-layout { grid-template-columns: 1fr; }
            .faq-page .faq-side-card { position: static; top: auto; }
            .terms-page .terms-layout { grid-template-columns: 1fr; }
            .terms-page .terms-side { position: static; top: auto; }
            .contact-page .contact-layout { grid-template-columns: 1fr; }
            .contact-page .contact-form-grid { grid-template-columns: 1fr; }
            .contact-page .contact-map-frame iframe { height: 320px; }
            .about-page .about-block,
            .about-page .about-block:nth-child(even) { grid-template-columns: 1fr; }
            .about-page .about-block:nth-child(even) .about-block-media { order: 0; }
            .about-page .about-block-media { min-height: 230px; }
            .about-page .about-block-content { padding: 20px 16px; }
            .about-page .about-interactive { padding: 20px 16px; }
            .about-page .about-stage-tab { padding: 8px 12px; font-size: 12.5px; }
            .services-page .service-card { flex-basis: 50%; }
            .services-page .services-carousel-head { flex-direction: column; align-items: flex-start; }
            .services-modal-card { padding: 20px 16px 16px; }

            .stats-grid { flex-wrap: wrap; gap: 32px; }
            .stat-item { flex: 1 1 40%; min-width: 140px; }
            .stat-item + .stat-item { border-left: none; padding-left: 0; }
            .stat-number { font-size: 36px; }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card.featured { transform: scale(1); }

            .workflow-steps {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .workflow-steps::before { display: none; }
            .workflow-step { min-height: 0; }
            .workflow-cta {
                width: 100%;
                min-width: 0;
            }
            .motivation-grid { grid-template-columns: 1fr; gap: 26px; }
            .motivation-image { max-height: 300px; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }

            .footer-card { padding: 18px 16px; }

            .section { padding: 80px 0; }
        }

        @media (max-width: 480px) {
            .trusted-logos { gap: 18px; }
            .mockup-metric-row { grid-template-columns: 1fr; }
            .replay-events { flex-wrap: wrap; }
            .gallery-grid { grid-template-columns: 1fr; }
            .services-page .service-card { flex-basis: 100%; }
        }

        @media (prefers-reduced-motion: reduce) {
            .fade-up { opacity: 1; transform: none; transition: none; }
            .badge-dot { animation: none; }
            .pricing-value.changing { opacity: 1; transform: none; }
            .mockup-window { transform: none; }
            .replay-cursor { animation: none; top: 70px; left: 100px; }
            .preloader-logo, .preloader-ring { animation: none; }
            .privacy-page .privacy-hero .section-title,
            .privacy-page .privacy-panel.fade-up.visible { animation: none; }
            @keyframes panelIn { from { opacity: 1; transform: none; } }
        }
