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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background:
                radial-gradient(120% 120% at 50% 0%, #1d2338 0%, #0f1423 44%, #090d18 100%);
            color: #ffffff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::selection {
            background: #f29f01;
            color: #050508;
        }

        /* ============ SCROLL PROGRESS ============ */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            z-index: 9999;
            background: linear-gradient(90deg, #f29f01, #ff6b35);
            width: 0;
            transition: width 0.1s linear;
        }

        /* ============ NAV ============ */
        .nav-glass {
            background: rgba(5, 5, 8, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(242, 159, 1, 0.08);
        }

        .nav-link {
            position: relative;
            transition: color .3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f29f01;
            transition: width .3s ease;
        }

        .nav-link:hover {
            color: #f29f01;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* ============ HERO ============ */
        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 72% 48% at 50% 42%, rgba(242, 159, 1, 0.34) 0%, rgba(242, 159, 1, 0.14) 42%, transparent 76%),
                radial-gradient(circle at 50% 46%, rgba(255, 214, 120, 0.28) 0%, transparent 32%),
                radial-gradient(ellipse 70% 50% at 80% 18%, rgba(79, 172, 254, 0.12) 0%, transparent 62%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%);
        }

        .hero-banner {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            will-change: auto;
        }

        .hero-big-title {
            font-family: 'Montserrat', 'Outfit', sans-serif;
            font-size: clamp(3.2rem, 9.8vw, 8rem);
            line-height: 0.86;
            letter-spacing: 0.01em;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 56px;
            text-align: center;
        }

        .hero-line {
            display: block;
            background: linear-gradient(180deg, #fbfbfb 0%, #d4d8de 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
        }

        .hero-line.accent {
            background: linear-gradient(180deg, #fbfbfb 0%, #d4d8de 100%);
            -webkit-background-clip: text;
            margin-block: 25px;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 56px rgba(242, 159, 1, 0.58);
        }

        .hero-stat-card {
            background: linear-gradient(160deg, #1f2330 0%, #151a26 100%);
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition: transform .3s, box-shadow .3s;
        }

        .hero-stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45), 0 0 24px rgba(242, 159, 1, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        /* ============ BUTTONS ============ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            background: linear-gradient(135deg, #f29f01, #e08e00);
            color: #050508;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform .25s, box-shadow .25s;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity .3s;
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 0 30px rgba(242, 159, 1, 0.4);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary:active {
            transform: scale(0.97);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            background: linear-gradient(160deg, #22293a 0%, #161d2b 100%);
            color: #ffffff;
            border: 0;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            transition: transform .3s, box-shadow .3s, color .3s;
        }

        .btn-outline:hover {
            color: #f29f01;
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45), 0 0 22px rgba(242, 159, 1, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
        }

        /* ============ SECTIONS ============ */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 12px;
            background: linear-gradient(145deg, #f3af2f 0%, #d88400 100%);
            color: #18130a;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            box-shadow: 0 12px 26px rgba(242, 159, 1, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
        }

        .glass-card {
            background: linear-gradient(160deg, #1b2130 0%, #131925 100%);
            border: 0;
            border-radius: 20px;
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s;
        }

        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 58px rgba(0, 0, 0, 0.48), 0 0 28px rgba(242, 159, 1, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.14);
        }

        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(242, 159, 1, 0.15), transparent);
        }

        /* ============ PORTFOLIO ============ */
        .portfolio-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            min-height: 300px;
            cursor: pointer;
        }

        .portfolio-card .card-bg {
            position: absolute;
            inset: 0;
            transition: transform .8s cubic-bezier(.23, 1, .32, 1), filter .4s;
            background-size: cover;
            background-position: center;
        }

        .portfolio-card:hover .card-bg {
            transform: scale(1.08) rotate(0.8deg);
            filter: saturate(1.15);
        }

        .portfolio-card .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 5, 8, 0.9) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            transition: background .4s;
        }

        .portfolio-card:hover .card-overlay {
            background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.4) 60%);
        }

        .projects-mosaic {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            grid-auto-flow: row;
        }

        .projects-mosaic .portfolio-card {
            grid-column: auto;
            grid-row: auto;
            min-height: 350px;
        }

        /* ============ TIMELINE ============ */
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(242, 159, 1, 0.15);
            transform: translateX(-50%);
        }

        .timeline-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #f29f01;
            border: 3px solid #050508;
            box-shadow: 0 0 20px rgba(242, 159, 1, 0.4);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 20px;
            }

            .timeline-dot {
                left: 20px;
            }
        }

        /* ============ PRICING ============ */
        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            padding: 40px 32px;
            transition: transform .4s cubic-bezier(.23, 1, .32, 1), border-color .4s, box-shadow .4s;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border-color: rgba(242, 159, 1, 0.3);
            background: rgba(242, 159, 1, 0.04);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(242, 159, 1, 0.1);
            border-color: rgba(242, 159, 1, 0.35);
        }

        .pricing-badge {
            position: absolute;
            top: 0;
            right: 32px;
            background: linear-gradient(135deg, #f29f01, #ff6b35);
            color: #050508;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 6px 16px;
            border-radius: 0 0 12px 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ============ DASHBOARD ============ */
        .kpi-card {
            background: linear-gradient(165deg, #1d2432 0%, #131a27 100%);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition: transform .3s, box-shadow .3s;
        }

        .kpi-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 22px rgba(242, 159, 1, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .kpi-trend-up {
            color: #43e97b;
        }

        .kpi-trend-down {
            color: #43e97b;
        }

        .filter-btn {
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 0;
            background: linear-gradient(165deg, #202738 0%, #151b2a 100%);
            color: rgba(255, 255, 255, 0.75);
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: transform .3s, box-shadow .3s, color .3s, background .3s;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: linear-gradient(165deg, #f3af2f 0%, #d88400 100%);
            color: #18130a;
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(242, 159, 1, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.35);
        }

        .chart-container {
            background: linear-gradient(160deg, #1c2333 0%, #131a27 100%);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            transition: transform .3s, box-shadow .3s;
        }

        .chart-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 52px rgba(0, 0, 0, 0.46), 0 0 20px rgba(242, 159, 1, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
        }

        .chart-container canvas {
            background: transparent !important;
        }

        /* ============ REVIEWS ============ */
        .review-card {
            background: linear-gradient(155deg, #1d2434 0%, #131a28 100%);
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: transform .3s, box-shadow .3s;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45), 0 0 20px rgba(242, 159, 1, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.14);
        }

        /* ============ FAQ ============ */
        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color .3s;
        }

        .faq-item.open {
            border-color: rgba(242, 159, 1, 0.2);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
            background: linear-gradient(160deg, #1e2534 0%, #141b29 100%);
            transition: background .3s;
        }

        .faq-question:hover {
            background: linear-gradient(160deg, #252d40 0%, #1a2231 100%);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .4s;
            padding: 0 24px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .faq-chevron {
            transition: transform .3s;
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: #f29f01;
        }

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

        /* ============ FORM ============ */
        .form-input {
            width: 100%;
            padding: 14px 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: border-color .3s, box-shadow .3s;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .form-input:focus {
            border-color: #f29f01;
            box-shadow: 0 0 0 3px rgba(242, 159, 1, 0.15);
        }

        .form-input.error {
            border-color: #f5576c;
        }

        /* ============ BACK TO TOP ============ */
        #back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 999;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(242, 159, 1, 0.15);
            border: 1px solid rgba(242, 159, 1, 0.3);
            backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .3s, transform .3s, background .3s;
        }

        #back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        #back-to-top:hover {
            background: rgba(242, 159, 1, 0.3);
        }

        /* ============ PARTICLE CANVAS ============ */
        #particle-canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.45;
        }

        /* ============ ANIMATIONS ============ */
        @keyframes float {

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

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

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(242, 159, 1, 0.15)
            }

            50% {
                box-shadow: 0 0 40px rgba(242, 159, 1, 0.3)
            }
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* Mobile adjustments */
        @media (max-width: 640px) {
            .pricing-card {
                padding: 28px 20px;
            }

            .projects-mosaic {
                grid-template-columns: 1fr;
            }

            .hero-banner {
                opacity: 0.2;
            }

            .hero-banner img {
                filter: none;
            }

            #particle-canvas {
                display: none;
            }

            .animate-float {
                animation: none;
            }
        }
