:root {
            --t-yellow: #FFDD2D;
            --t-yellow-hover: #FFC400;
            --t-yellow-light: #FFF8D6;
            --t-yellow-soft: #FFFDF5;
            --t-dark: #1a1a1a;
            --t-gray-900: #222;
            --t-gray-800: #333;
            --t-gray-700: #555;
            --t-gray-600: #666;
            --t-gray-500: #888;
            --t-gray-400: #aaa;
            --t-gray-300: #ddd;
            --t-gray-200: #eee;
            --t-gray-150: #f0f0f0;
            --t-gray-100: #f5f5f5;
            --t-gray-50: #fafafa;
            --t-white: #fff;
            --t-green: #4CAF50;
            --t-green-light: #E8F5E9;
            --t-blue: #2962FF;
            --t-blue-light: #EEF2FF;
            --t-red: #F44336;
            --t-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --t-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --t-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
            --t-shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.10);
            --t-radius-sm: 12px;
            --t-radius: 16px;
            --t-radius-lg: 20px;
            --t-radius-xl: 24px;
            --t-radius-2xl: 28px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
        }
        body {
            font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fafafa;
            color: var(--t-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .animate-fadeInUp,
        .animate-fadeInLeft,
        .animate-fadeInRight,
        .animate-zoomIn {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1), transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.75s;
        }
        .animate-fadeInUp {
            transform: translateY(45px);
        }
        .animate-fadeInLeft {
            transform: translateX(-35px);
        }
        .animate-fadeInRight {
            transform: translateX(35px);
        }
        .animate-zoomIn {
            transform: scale(0.93);
        }
        .animate-fadeInUp.visible,
        .animate-fadeInLeft.visible,
        .animate-fadeInRight.visible,
        .animate-zoomIn.visible {
            opacity: 1;
            visibility: visible;
            transform: translate(0) scale(1);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 10px 0;
            transition: var(--transition);
            z-index: 1050;
            position: sticky;
            top: 0;
        }
        .navbar.scrolled {
            box-shadow: var(--t-shadow-sm);
            padding: 6px 0;
        }
        .logo-badge {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--t-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.85rem;
            color: var(--t-dark);
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }
        .logo-badge.sm {
            width: 32px;
            height: 32px;
            font-size: 0.7rem;
            border-radius: 8px;
        }
        .logo-name {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--t-dark);
            letter-spacing: -0.5px;
        }
        .logo-name b {
            color: var(--t-yellow);
            background: var(--t-dark);
            padding: 2px 6px;
            border-radius: 5px;
            font-weight: 800;
            margin-left: 2px;
        }
        .nav-link-b {
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--t-gray-700) !important;
            padding: 8px 14px !important;
            border-radius: 10px;
            transition: var(--transition-fast);
        }
        .nav-link-b:hover,
        .nav-link-b:focus {
            color: var(--t-dark) !important;
            background: var(--t-gray-100);
        }
        .btn-y {
            background: var(--t-yellow);
            border: none;
            color: var(--t-dark);
            font-weight: 700;
            padding: 14px 22px;
            border-radius: 12px;
            transition: var(--transition);
            font-size: 0.9rem;
            cursor: pointer;
        }
        .btn-y:hover {
            background: var(--t-yellow-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(255, 200, 0, 0.35);
            color: var(--t-dark);
        }
        .btn-outline-dark {
            border: 2px solid var(--t-gray-300);
            font-weight: 700;
            border-radius: 12px;
            transition: var(--transition);
        }
        .btn-outline-dark:hover {
            border-color: var(--t-dark);
            background: var(--t-gray-100);
        }
        .mega-menu {
            border: none;
            border-radius: var(--t-radius-xl);
            box-shadow: var(--t-shadow-xl);
            padding: 24px 20px;
            background: #fff;
            animation: dropdownFadeIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: top center;
            border: 1px solid rgba(0, 0, 0, 0.04);
            min-width: 680px;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
        }
        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-8px) scale(0.96);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(8px) scale(1);
            }
        }
        .mm-col {
            padding: 0 16px;
            border-right: 1px solid var(--t-gray-150);
        }
        .mm-col.mm-last {
            border-right: none;
        }
        .mm-head {
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--t-gray-500);
            margin-bottom: 12px;
        }
        .mm-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 10px;
            border-radius: 8px;
            color: var(--t-gray-700);
            font-weight: 500;
            font-size: 0.88rem;
            text-decoration: none;
            transition: var(--transition-fast);
        }
        .mm-link:hover {
            background: var(--t-yellow-soft);
            color: var(--t-dark);
            padding-left: 14px;
        }
        .mm-link i {
            color: var(--t-gray-400);
            font-size: 0.8rem;
            transition: var(--transition-fast);
        }
        .mm-link:hover i {
            color: var(--t-dark);
        }
        .nav-drop {
            border: none;
            border-radius: var(--t-radius);
            box-shadow: var(--t-shadow-lg);
            padding: 10px 6px;
            animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .nditem {
            padding: 9px 16px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition-fast);
            color: var(--t-gray-700);
        }
        .nditem:hover {
            background: var(--t-yellow-soft);
            color: var(--t-dark);
            padding-left: 20px;
        }
        .fw-700 {
            font-weight: 700;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff 0%, #fdfcf5 40%, #faf8f0 100%);
        }
        #heroCanvas {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero-orb.o1 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 221, 45, 0.22) 0%, transparent 70%);
            top: -60px;
            right: -40px;
            animation: floatOrb 9s ease-in-out infinite;
        }
        .hero-orb.o2 {
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(255, 200, 0, 0.16) 0%, transparent 70%);
            bottom: 8%;
            left: -30px;
            animation: floatOrb 11s ease-in-out infinite 3s;
        }
        .hero-orb.o3 {
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(180, 180, 180, 0.10) 0%, transparent 70%);
            top: 45%;
            left: 50%;
            animation: floatOrb 8s ease-in-out infinite 5s;
        }
        @keyframes floatOrb {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(25px, -25px) scale(1.07);
            }
            50% {
                transform: translate(-12px, 18px) scale(0.94);
            }
            75% {
                transform: translate(18px, 12px) scale(1.03);
            }
        }
        .hero-inner {
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-block;
            background: var(--t-yellow-light);
            color: #7a6000;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .hero-h1 {
            font-family: 'Onest', 'Inter', sans-serif;
            font-weight: 900;
            font-size: 3.2rem;
            line-height: 1.15;
            letter-spacing: -1.5px;
            color: var(--t-dark);
            margin-bottom: 18px;
        }
        .hero-h1 .hl {
            background: linear-gradient(180deg, transparent 58%, var(--t-yellow) 58%);
            padding: 0 4px;
        }
        .hero-sub {
            font-size: 1.08rem;
            color: var(--t-gray-600);
            max-width: 520px;
            margin-bottom: 28px;
            line-height: 1.7;
        }
        .hstat {
            text-align: left;
            padding: 8px 0;
        }
        .hstat b {
            display: block;
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--t-dark);
        }
        .hstat span {
            font-size: 0.8rem;
            color: var(--t-gray-500);
        }

        /* Dashboard mock */
        .dash-mock {
            background: #fff;
            border-radius: var(--t-radius-xl);
            box-shadow: var(--t-shadow-xl);
            overflow: hidden;
            width: 440px;
            max-width: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .dash-top {
            background: #f5f5f5;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: var(--t-gray-500);
            font-weight: 500;
        }
        .dash-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .dash-body {
            display: flex;
            min-height: 260px;
        }
        .dash-side {
            width: 48px;
            background: #fafafa;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 0;
            gap: 8px;
            border-right: 1px solid var(--t-gray-150);
        }
        .dsi {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--t-gray-400);
            font-size: 0.9rem;
            transition: var(--transition-fast);
        }
        .dsi.active {
            background: var(--t-yellow-light);
            color: #7a6000;
        }
        .dash-main {
            flex: 1;
            padding: 14px;
        }
        .dcard {
            flex: 1;
            padding: 10px 12px;
            border-radius: 10px;
            text-align: center;
        }
        .dcard.green {
            background: #f0fdf4;
        }
        .dcard.blue {
            background: #eff6ff;
        }
        .dcard.yellow {
            background: #fffce7;
        }
        .dcn {
            font-weight: 800;
            font-size: 1.1rem;
        }
        .dcl {
            font-size: 0.7rem;
            color: var(--t-gray-500);
        }
        .dct {
            font-size: 0.7rem;
            color: #22c55e;
            font-weight: 600;
        }
        .dash-chart {
            background: #fafafa;
            border-radius: 10px;
            padding: 12px;
        }
        .dchart-bars {
            display: flex;
            align-items: flex-end;
            gap: 5px;
            height: 50px;
        }
        .dbar {
            flex: 1;
            background: var(--t-gray-200);
            border-radius: 4px 4px 0 0;
            min-height: 6px;
        }
        .dbar.hi {
            background: var(--t-yellow);
        }
        .dchart-label {
            font-size: 0.65rem;
            color: var(--t-gray-400);
            margin-top: 6px;
            text-align: center;
        }
        .dash-leads {
            margin-top: 8px;
        }
        .dlead {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            font-size: 0.78rem;
        }
        .dav {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.7rem;
            flex-shrink: 0;
        }
        .dln {
            flex: 1;
            font-weight: 500;
        }
        .dls {
            font-size: 0.65rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }
        .dls.new {
            background: #fef3c7;
            color: #b45309;
        }
        .dls.work {
            background: #dbeafe;
            color: #1d4ed8;
        }
        .dls.win {
            background: #dcfce7;
            color: #15803d;
        }

        /* ===== SECTION COMMON ===== */
        .sec {
            padding: 80px 0;
        }
        .sec-light {
            background: #fff;
        }
        .sec-dark {
            background: #1a1a1a;
            color: #fff;
        }
        .sec-tag {
            display: inline-block;
            font-weight: 700;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--t-gray-500);
            margin-bottom: 10px;
        }
        .sec-h2 {
            font-family: 'Onest', 'Inter', sans-serif;
            font-weight: 800;
            font-size: 2.3rem;
            letter-spacing: -1px;
            color: var(--t-dark);
            margin-bottom: 14px;
            line-height: 1.2;
        }
        .sec-dark .sec-h2 {
            color: #fff;
        }
        .sec-sub {
            font-size: 1.02rem;
            color: var(--t-gray-600);
            max-width: 580px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        .sec-dark .sec-sub {
            color: rgba(241, 245, 249, 0.7);
        }

        /* ===== LOGOS ===== */
        .logos-strip {
            padding: 20px 0;
            background: #fff;
            border-top: 1px solid var(--t-gray-150);
            border-bottom: 1px solid var(--t-gray-150);
            overflow: hidden;
        }
        .logos-wrap {
            overflow: hidden;
        }
        .logos-track {
            display: flex;
            gap: 40px;
            animation: scrollLogos 28s linear infinite;
            white-space: nowrap;
            font-weight: 600;
            color: var(--t-gray-400);
            font-size: 0.95rem;
        }
        @keyframes scrollLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== SOLO / ABOUT ===== */
        .solo-wrap {
            position: relative;
            display: inline-block;
        }
        .solo-avatar {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: var(--t-yellow-light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 0 auto 30px;
        }
        .solo-av-ring {
            position: absolute;
            border-radius: 50%;
            border: 3px dashed var(--t-yellow);
            animation: spinRing 20s linear infinite;
        }
        .solo-av-ring.r1 {
            width: 210px;
            height: 210px;
        }
        .solo-av-ring.r2 {
            width: 240px;
            height: 240px;
            animation-direction: reverse;
            animation-duration: 25s;
            border-color: rgba(255, 200, 0, 0.35);
        }
        @keyframes spinRing {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        .solo-av-inner {
            font-size: 4rem;
            color: #7a6000;
        }
        .solo-online {
            position: absolute;
            bottom: 10px;
            right: 0;
            background: #fff;
            border-radius: 20px;
            padding: 4px 14px;
            font-size: 0.78rem;
            font-weight: 600;
            color: #22c55e;
            box-shadow: var(--t-shadow-sm);
            white-space: nowrap;
        }
        .solo-float {
            position: absolute;
            background: #fff;
            border-radius: 12px;
            padding: 10px 14px;
            box-shadow: var(--t-shadow);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .solo-float.sf1 {
            top: 0;
            right: -160px;
            color: #f59e0b;
        }
        .solo-float.sf2 {
            bottom: 30px;
            left: -150px;
            color: #3b82f6;
        }
        .solo-float.sf3 {
            top: 60px;
            left: -130px;
            color: #f59e0b;
        }
        .solo-float i {
            font-size: 1.4rem;
        }
        .solo-advs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .solo-adv {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .solo-ico {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .solo-adv strong {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }
        .solo-adv p {
            font-size: 0.82rem;
            color: var(--t-gray-600);
            margin: 0;
            line-height: 1.5;
        }
        .solo-compare {
            background: #fff;
            border-radius: var(--t-radius-lg);
            padding: 20px 24px;
            border: 1px solid var(--t-gray-150);
        }
        .scmp-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .scmp-vs {
            background: var(--t-yellow);
            padding: 3px 12px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 0.78rem;
        }
        .scmp-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--t-gray-100);
        }
        .scmp-bad {
            color: #ef4444;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .scmp-good {
            color: #22c55e;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
        }

        /* ===== FEATURE CARDS ===== */
        .fcard {
            background: #fff;
            border-radius: var(--t-radius-lg);
            padding: 26px 22px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--t-shadow-sm);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        .fcard:hover {
            transform: translateY(-4px);
            box-shadow: var(--t-shadow-lg);
        }
        .fci {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 14px;
        }
        .fcard h5 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 6px;
        }
        .fcard p {
            font-size: 0.85rem;
            color: var(--t-gray-600);
            margin: 0;
            line-height: 1.5;
        }
        .ftag {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 0.7rem;
            font-weight: 700;
            background: var(--t-gray-100);
            padding: 3px 10px;
            border-radius: 10px;
            color: var(--t-gray-500);
        }

        /* ===== AI ===== */
        .ai-vis {
            position: relative;
            width: 320px;
            height: 320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ai-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px dashed rgba(255, 221, 45, 0.3);
            animation: spinRing 18s linear infinite;
        }
        .ai-ring.r1 {
            width: 280px;
            height: 280px;
        }
        .ai-ring.r2 {
            width: 220px;
            height: 220px;
            animation-direction: reverse;
            animation-duration: 22s;
        }
        .ai-ring.r3 {
            width: 160px;
            height: 160px;
            animation-duration: 15s;
        }
        .ai-core {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--t-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--t-dark);
            z-index: 2;
            position: relative;
        }
        .ai-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }
        .ai-chip {
            position: absolute;
            background: #fff;
            border-radius: 20px;
            padding: 7px 14px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: var(--t-shadow);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            color: var(--t-dark);
        }
        .ai-chip.c1 {
            top: 5px;
            right: 10px;
        }
        .ai-chip.c2 {
            bottom: 15px;
            right: 5px;
        }
        .ai-chip.c3 {
            top: 5px;
            left: 10px;
        }
        .ai-chip.c4 {
            bottom: 15px;
            left: 5px;
        }
        .ai-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .ai-feat {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }
        .ai-fi {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .ai-feat strong {
            display: block;
            font-size: 0.88rem;
            color: #fff;
        }
        .ai-feat p {
            font-size: 0.78rem;
            color: rgba(241, 245, 249, 0.65);
            margin: 0;
        }
        .ai-kpi {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .ai-kpi-i {
            text-align: center;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 14px 20px;
        }
        .ai-kpi-n {
            display: block;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--t-yellow);
        }
        .ai-kpi-l {
            font-size: 0.75rem;
            color: rgba(241, 245, 249, 0.6);
        }

        /* ===== BUSINESS PROCESSES ===== */
        .bp-card {
            background: #fff;
            border-radius: var(--t-radius);
            padding: 20px 18px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--t-shadow-sm);
            transition: var(--transition);
            height: 100%;
            cursor: default;
        }
        .bp-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--t-shadow);
        }
        .bp-num {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }
        .bp-card h6 {
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        .bp-card p {
            font-size: 0.78rem;
            color: var(--t-gray-600);
            margin: 0;
            line-height: 1.5;
        }

        /* ===== WEBSITE DEV & SEO ===== */
        .wd-card {
            background: #fff;
            border-radius: var(--t-radius-xl);
            padding: 32px 28px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--t-shadow-sm);
            transition: var(--transition);
        }
        .wd-card:hover {
            box-shadow: var(--t-shadow-lg);
        }
        .wd-ico {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--t-yellow-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #7a6000;
            margin-bottom: 16px;
        }
        .wd-ico.green {
            background: #dcfce7;
            color: #15803d;
        }
        .wd-feat {
            font-size: 0.85rem;
            padding: 4px 0;
            display: flex;
            align-items: center;
        }
        .wd-prices {
            background: #fafafa;
            border-radius: 12px;
            padding: 14px;
        }
        .wdp {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--t-gray-150);
        }
        .wdp:last-child {
            border-bottom: none;
        }
        .wdpv {
            font-weight: 700;
        }
        .seo-steps {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .seo-step {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .seo-n {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--t-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .seo-badge {
            background: #fef3c7;
            padding: 10px 16px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
        }

        /* ===== IT CARDS ===== */
        .it-card {
            background: #fff;
            border-radius: var(--t-radius-xl);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--t-shadow-sm);
            transition: var(--transition);
        }
        .it-card:hover {
            box-shadow: var(--t-shadow-lg);
            transform: translateY(-3px);
        }
        .it-card.it-feat {
            border: 2px solid var(--t-yellow);
        }
        .it-head {
            padding: 24px 20px;
            color: #fff;
        }
        .it-head h4 {
            font-weight: 700;
            font-size: 1.1rem;
            margin: 10px 0 6px;
        }
        .it-head p {
            font-size: 0.82rem;
            opacity: 0.8;
            margin: 0;
        }
        .it-ico {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        .it-body {
            padding: 20px;
        }
        .it-li {
            font-size: 0.85rem;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--t-gray-700);
        }
        .it-li i {
            color: #22c55e;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .it-sla {
            display: flex;
            justify-content: space-around;
            background: #fafafa;
            border-radius: 12px;
            padding: 12px;
            margin-top: 10px;
            text-align: center;
        }
        .it-sla b {
            display: block;
            font-size: 1.1rem;
        }
        .it-sla span {
            font-size: 0.7rem;
            color: var(--t-gray-500);
        }
        .it-adv {
            background: #fff;
            border-radius: var(--t-radius);
            padding: 16px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: var(--transition);
        }
        .it-adv:hover {
            box-shadow: var(--t-shadow);
        }
        .it-adv i {
            font-size: 1.5rem;
            margin-bottom: 6px;
            color: var(--t-yellow);
            display: block;
        }
        .it-adv b {
            display: block;
            font-size: 0.88rem;
            margin-bottom: 2px;
        }
        .it-adv span {
            font-size: 0.75rem;
            color: var(--t-gray-500);
        }

        /* ===== PRODUCTS ===== */
        .prod-card {
            background: #fff;
            border-radius: var(--t-radius-xl);
            padding: 26px 22px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--t-shadow-sm);
            transition: var(--transition);
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .prod-card:hover {
            box-shadow: var(--t-shadow-lg);
            transform: translateY(-3px);
        }
        .prod-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--t-yellow);
            font-weight: 700;
            font-size: 0.72rem;
            padding: 5px 16px;
            border-radius: 14px;
            white-space: nowrap;
        }
        .prod-ico {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: var(--t-yellow-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #7a6000;
            margin-bottom: 14px;
        }
        .prod-card h5 {
            font-weight: 700;
            font-size: 1rem;
        }
        .prod-desc {
            font-size: 0.82rem;
            color: var(--t-gray-600);
            margin-bottom: 10px;
        }
        .prod-feats {
            list-style: none;
            padding: 0;
            margin: 0 0 12px;
            flex-grow: 1;
        }
        .prod-feats li {
            font-size: 0.8rem;
            padding: 3px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--t-gray-700);
        }
        .prod-feats li i {
            color: #22c55e;
            font-size: 0.75rem;
        }
        .prod-price {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        /* ===== PRICING ===== */
        .period-toggle {
            display: inline-flex;
            background: var(--t-gray-150);
            border-radius: 14px;
            padding: 5px;
            gap: 4px;
        }
        .ptb {
            padding: 10px 22px;
            border-radius: 10px;
            border: none;
            background: transparent;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-fast);
            color: var(--t-gray-600);
        }
        .ptb.active {
            background: #fff;
            color: var(--t-dark);
            box-shadow: var(--t-shadow-sm);
        }
        .save-pill {
            background: #22c55e;
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 8px;
            margin-left: 4px;
        }
        .pricing-card {
            background: #fff;
            border-radius: var(--t-radius-xl);
            padding: 32px 26px;
            border: 2px solid transparent;
            transition: var(--transition);
            box-shadow: var(--t-shadow-sm);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .pricing-card.popular {
            border-color: var(--t-yellow);
            box-shadow: var(--t-shadow-lg);
            transform: scale(1.04);
            z-index: 2;
        }
        .pricing-card:hover {
            box-shadow: var(--t-shadow-lg);
        }
        .popular-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--t-yellow);
            color: var(--t-dark);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 5px 18px;
            border-radius: 16px;
            white-space: nowrap;
        }
        .pricing-price {
            font-weight: 900;
            font-size: 2.6rem;
            letter-spacing: -1.5px;
            color: var(--t-dark);
        }
        .pricing-price .currency {
            font-size: 1.1rem;
            font-weight: 600;
            vertical-align: super;
        }
        .pricing-price .period {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--t-gray-500);
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            flex-grow: 1;
        }
        .pricing-features li {
            padding: 6px 0;
            font-size: 0.85rem;
            color: var(--t-gray-700);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .pricing-features li i {
            color: #22c55e;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .price-monthly,
        .price-yearly {
            display: none;
        }
        .price-monthly.active,
        .price-yearly.active {
            display: block;
        }

        /* ===== REVIEWS ===== */
        .rev-wrap {
            display: flex;
            overflow: hidden;
            position: relative;
        }
        .rev-slide {
            display: flex;
            gap: 16px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        .rev-card {
            background: #fff;
            border-radius: var(--t-radius-lg);
            padding: 22px 18px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--t-shadow-sm);
            min-width: 280px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .rev-card:hover {
            box-shadow: var(--t-shadow);
            transform: translateY(-2px);
        }
        .rev-stars {
            color: var(--t-yellow);
            font-size: 0.85rem;
        }
        .rev-text {
            font-size: 0.85rem;
            color: var(--t-gray-700);
            line-height: 1.6;
            margin: 8px 0;
            font-style: italic;
        }
        .rev-author {
            font-weight: 700;
            font-size: 0.82rem;
        }
        .rev-company {
            font-size: 0.73rem;
            color: var(--t-gray-500);
        }
        .rev-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--t-gray-200);
            background: #fff;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        .rev-btn:hover {
            border-color: var(--t-dark);
            background: var(--t-gray-100);
        }
        .rev-dots {
            display: flex;
            gap: 6px;
        }
        .rev-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--t-gray-300);
            cursor: pointer;
            transition: var(--transition);
        }
        .rev-dot.active {
            background: var(--t-yellow);
            width: 28px;
            border-radius: 5px;
        }

        /* ===== FAQ ===== */
        .faq-item {
            border-radius: var(--t-radius);
            margin-bottom: 8px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: var(--transition);
            background: #fff;
        }
        .faq-item:hover {
            box-shadow: var(--t-shadow-sm);
        }
        .faq-q {
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            border: none;
            background: transparent;
            text-align: left;
            color: var(--t-dark);
            transition: var(--transition-fast);
        }
        .faq-q:hover {
            background: var(--t-gray-50);
        }
        .faq-ico {
            font-size: 1.2rem;
            color: var(--t-gray-400);
            transition: var(--transition);
            flex-shrink: 0;
        }
        .faq-q:not(.collapsed) .faq-ico {
            transform: rotate(45deg);
            color: var(--t-yellow);
        }
        .faq-a {
            padding: 0 20px 16px;
            font-size: 0.88rem;
            color: var(--t-gray-600);
            line-height: 1.7;
        }
        .faq-contacts {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-ci {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
        }
        .faq-ci i {
            font-size: 1.2rem;
            color: var(--t-yellow);
        }

        /* ===== CONTACTS ===== */
        .cont-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .cont-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .cont-item i {
            color: var(--t-yellow);
            font-size: 1.1rem;
        }
        .cont-item a {
            color: var(--t-dark);
            text-decoration: none;
            font-weight: 600;
        }
        .form-card {
            background: #fff;
            border-radius: var(--t-radius-xl);
            padding: 30px;
            box-shadow: var(--t-shadow-lg);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .bi-input {
            border-radius: 10px !important;
            border: 2px solid var(--t-gray-200) !important;
            padding: 10px 14px !important;
            font-size: 0.9rem !important;
            transition: var(--transition-fast);
        }
        .bi-input:focus {
            border-color: var(--t-yellow) !important;
            box-shadow: 0 0 0 3px rgba(255, 221, 45, 0.15) !important;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #1a1a1a;
            color: #fff;
            padding: 50px 0 20px;
        }
        .ft-head {
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
            color: #fff;
        }
        .ft-links {
            list-style: none;
            padding: 0;
        }
        .ft-links li {
            margin-bottom: 6px;
        }
        .ft-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition-fast);
        }
        .ft-links a:hover {
            color: var(--t-yellow);
        }
        .ft-socials {
            display: flex;
            gap: 10px;
        }
        .ft-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
        }
        .ft-socials a:hover {
            background: var(--t-yellow);
            color: var(--t-dark);
        }
        .ft-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.8rem;
            color: #94a3b8;
        }
        .ft-bottom a {
            color: #94a3b8;
            text-decoration: none;
        }
        .ft-bottom a:hover {
            color: var(--t-yellow);
        }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(130px);
            z-index: 9999;
            max-width: 620px;
            width: calc(100% - 30px);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cookie-banner.show {
            transform: translateX(-50%) translateY(0);
        }
        .cookie-inner {
            background: #fff;
            border-radius: var(--t-radius-lg);
            padding: 18px 22px;
            box-shadow: var(--t-shadow-xl);
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
        }
        .cookie-emoji {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .cookie-text {
            flex: 1;
            min-width: 200px;
        }
        .cookie-text strong {
            display: block;
            font-size: 0.88rem;
            margin-bottom: 2px;
        }
        .cookie-text p {
            font-size: 0.78rem;
            color: var(--t-gray-600);
            margin: 0;
        }
        .cookie-text a {
            color: var(--t-dark);
            font-weight: 600;
        }
        .cookie-btns {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .ck-accept {
            background: var(--t-yellow);
            border: none;
            color: var(--t-dark);
            font-weight: 700;
            padding: 9px 18px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.82rem;
            transition: var(--transition);
        }
        .ck-accept:hover {
            background: var(--t-yellow-hover);
        }
        .ck-necessary {
            background: transparent;
            border: 2px solid var(--t-gray-200);
            color: var(--t-gray-700);
            font-weight: 600;
            padding: 9px 18px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.82rem;
            transition: var(--transition);
        }
        .ck-necessary:hover {
            border-color: var(--t-gray-400);
        }
        .ck-close {
            position: absolute;
            top: 8px;
            right: 12px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--t-gray-400);
            font-size: 0.9rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero-h1 {
                font-size: 2.2rem;
            }
            .sec-h2 {
                font-size: 1.7rem;
            }
            .pricing-card.popular {
                transform: scale(1);
            }
            .mega-menu {
                min-width: auto;
                left: 0;
                transform: translateX(0) translateY(8px);
            }
            @keyframes dropdownFadeIn {
                from {
                    opacity: 0;
                    transform: translateX(0) translateY(-8px) scale(0.96);
                }
                to {
                    opacity: 1;
                    transform: translateX(0) translateY(8px) scale(1);
                }
            }
            .solo-float {
                display: none;
            }
            .solo-advs {
                grid-template-columns: 1fr;
            }
            .ai-vis {
                width: 240px;
                height: 240px;
            }
            .ai-chip {
                font-size: 0.65rem;
                padding: 4px 8px;
            }
        }
        @media (max-width: 767px) {
            .hero-h1 {
                font-size: 1.8rem;
            }
            .sec-h2 {
                font-size: 1.5rem;
            }
            .cookie-inner {
                flex-direction: column;
                text-align: center;
            }
            .cookie-btns {
                width: 100%;
                justify-content: center;
            }
            .dash-mock {
                width: 100%;
            }
            .hero-stats .hstat b {
                font-size: 1.2rem;
            }
            .mm-col {
                border-right: none;
                border-bottom: 1px solid var(--t-gray-150);
                padding: 10px 0;
            }
            .mm-col.mm-last {
                border-bottom: none;
            }
        }
        