
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
            color: #e5e7eb;
            overflow-x: hidden;
            cursor: none;
        }
        a, button, input, textarea {
            cursor: none;
        }
        #progress-bar {
          position: fixed;
          top: 0;
          left: 0;
          height: 4px;
          background: #EA580C;
          width: 0%;
          z-index: 1001;
          transition: width 0.1s ease-out;
        }
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 6px;
            height: 6px;
            background-color: white;
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
            transition: transform 0.1s ease-out;
        }
        .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9998;
            transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.2s ease-out;
        }
        .cursor-outline.grow {
            width: 50px;
            height: 50px;
            border-color: white;
        }
        .gradient-text {
            background: linear-gradient(90deg, #F97316, #EA580C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-button {
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(234, 88, 12, 0.4), 0 0 10px rgba(234, 88, 12, 0.2);
        }
        .interactive-card {
            background-color: #111111;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }
        .interactive-card:hover {
            border-color: #D97706;
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(217, 119, 6, 0.2);
        }
        
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 100%, #1a1a1a 0%, #0a0a0a 60%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }

        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            color: #EA580C;
            border-radius: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 15px rgba(234, 88, 12, 0.3), 0 0 5px rgba(234, 88, 12, 0.2) inset;
            perspective: 800px;
            overflow: hidden;
        }

        .floating-icon img {
            width: 60%;
            height: 60%;
            object-fit: contain;
            transform: translateZ(40px);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
            transition: transform 0.3s ease;
        }

        .floating-icon:hover img {
            transform: translateZ(60px) rotateY(15deg);
        }

        .floating-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent 0deg, transparent 5deg,
                rgba(234, 88, 12, 0.1) 6deg, rgba(234, 88, 12, 0.1) 7deg,
                transparent 8deg, transparent 30deg,
                rgba(234, 88, 12, 0.1) 31deg, rgba(234, 88, 12, 0.1) 32deg,
                transparent 33deg
            );
            animation: spin-rays 30s linear infinite;
            opacity: 0.7;
            transform-origin: center center;
        }

        @keyframes spin-rays {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .floating-icon:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 10%; animation-duration: 15s; }
        .floating-icon:nth-child(2) { width: 60px; height: 60px; top: 25%; left: 80%; animation-duration: 12s; animation-delay: 2s; }
        .floating-icon:nth-child(3) { width: 100px; height: 100px; top: 70%; left: 20%; animation-duration: 18s; animation-delay: 1s;}
        .floating-icon:nth-child(4) { width: 50px; height: 50px; top: 80%; left: 75%; animation-duration: 10s; animation-delay: 4s;}
        .floating-icon:nth-child(5) { width: 70px; height: 70px; top: 50%; left: 50%; animation-duration: 14s; }
        .floating-icon:nth-child(6) { display: none; } 
        .floating-icon:nth-child(7), .floating-icon:nth-child(8), .floating-icon:nth-child(9) { display: none; }


        @media (min-width: 768px) {
             .floating-icon:nth-child(6) { display: flex; width: 90px; height: 90px; top: 10%; left: 40%; animation-duration: 20s; animation-delay: 3s;}
             .floating-icon:nth-child(7) { display: flex; width: 65px; height: 65px; top: 85%; left: 5%; animation-duration: 13s; animation-delay: 5s;}
             .floating-icon:nth-child(8) { display: flex; width: 75px; height: 75px; top: 55%; left: 85%; animation-duration: 16s; animation-delay: 1.5s;}
             .floating-icon:nth-child(9) { display: flex; width: 55px; height: 55px; top: 5%; left: 65%; animation-duration: 11s; animation-delay: 6s;}
        }

        
        .main-content {
            position: relative;
            z-index: 20;
            background-color: #0a0a0a;
        }
        .h1-word {
            display: inline-block;
            overflow: hidden;
            line-height: 1.1;
        }
        .h1-word .char {
            display: inline-block;
            transform: translateY(110%);
            opacity: 0;
            animation: revealChar 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
            animation-delay: var(--delay);
        }
        @keyframes revealChar { to { transform: translateY(0); opacity: 1; } }
        
        .parallax-container {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            height: 600px;
        }
        .parallax-image {
             background-image: url('https://images.unsplash.com/photo-1622396913797-3a11c8d62b1a?q=80&w=1887&auto=format&fit=crop');
             background-attachment: fixed;
             background-position: center;
             background-repeat: no-repeat;
             background-size: cover;
             height: 100%;
             width: 100%;
        }

        #featured-video-container {
            height: 300vh;
            position: relative;
        }

        .video-pin-wrapper {
            height: 100vh;
            width: 100%;
            position: sticky;
            top: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .video-player-container {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            width: 80%;
            max-width: 1200px;
            aspect-ratio: 16 / 9;
        }

        #custom-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .custom-video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .video-player-container:hover .custom-video-controls {
            opacity: 1;
        }
        .progress-bar-container {
            flex-grow: 1;
            height: 6px;
            background-color: rgba(255,255,255,0.3);
            border-radius: 3px;
            cursor: pointer;
        }
        .progress-bar {
            width: 0;
            height: 100%;
            background-color: #EA580C;
            border-radius: 3px;
        }
        .custom-video-controls button {
            color: white;
        }
        
        .sticky-scroll-container {
            height: 300vh;
            position: relative;
        }
        .sticky-element {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-track {
            display: flex;
            align-items: center;
            position: relative;
            height: 100%;
            width: 100%;
        }
        .scroll-card {
            width: 30vw;
            height: 40vw;
            max-width: 400px;
            max-height: 550px;
            position: absolute;
            will-change: transform;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .scroll-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .chat-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .chat-options-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 0.5rem);
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 0.75rem;
            padding: 0.5rem;
            z-index: 10;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            width: 200px;
        }
        .chat-options-menu button {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            text-align: left;
            color: #d1d5db;
            border-radius: 0.5rem;
            transition: background-color 0.2s ease;
        }
        .chat-options-menu button:hover {
            background-color: #333;
        }
        .chat-options-menu i {
            margin-right: 0.75rem;
        }
        .chat-modal {
            position: fixed;
            bottom: 6.5rem;
            right: 2rem;
            width: 90%;
            max-width: 400px;
            height: 70vh;
            max-height: 600px;
            background-color: #111;
            border-radius: 1.5rem;
            border: 1px solid #333;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
            pointer-events: none;
        }
         .chat-modal-overlay.active .chat-modal {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: auto;
        }
        .chat-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }
        .chat-widget button {
            background-color: #EA580C;
            color: white;
            width: 4rem;
            height: 4rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .chat-widget button:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 0 25px rgba(234, 88, 12, 0.6);
        }
        .chat-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1010;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .chat-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .spinner {
            border: 2px solid #f3f3f3;
            border-top: 2px solid #EA580C;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .gemini-feature-card {
            background-color: #1a1a1a;
            border: 1px dashed #444;
            border-radius: 1rem;
            padding: 2rem;
        }
        .message-reactions {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .message-reactions button {
            background: none;
            border: none;
            color: #6b7280;
            transition: color 0.2s;
        }
        .message-reactions button:hover {
            color: #f97316;
        }
        .message-reactions button.reacted {
            color: #ea580c;
        }
        .chat-input-actions {
            display: flex;
            gap: 0.5rem;
            padding-right: 0.5rem;
        }
        .chat-input-actions button {
            color: #9ca3af;
            transition: color 0.2s;
        }
        .chat-input-actions button:hover {
            color: #f97316;
        }
        .form-group {
            position: relative;
        }
        .form-input {
            width: 100%;
            background-color: #111;
            border: 1px solid #444;
            border-radius: 0.5rem;
            padding: 1rem;
            color: white;
            transition: border-color 0.3s ease;
        }
        .form-input:focus {
            outline: none;
            border-color: #EA580C;
        }
        .form-label {
            position: absolute;
            left: 1rem;
            top: 1rem;
            color: #9ca3af;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        .form-input:focus ~ .form-label, .form-input:not(:placeholder-shown) ~ .form-label {
            top: -0.75rem;
            left: 0.75rem;
            font-size: 0.75rem;
            color: #EA580C;
            background-color: #1a1a1a;
            padding: 0 0.25rem;
        }
        .trusted-by-logos img {
            height: 32px;
            width: auto;
            max-width: 130px;
            transition: filter 0.3s ease;
        }

        .trusted-by-logos img:hover {
            filter: grayscale(0) opacity(1);
        }
        .animated-logo {
            animation: float-logo 3s ease-in-out infinite;
        }
        @keyframes float-logo {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
            100% { transform: translateY(0px); }
        }
        #side-ad-banner {
            position: fixed;
            left: 20px;
            top: 50%;
            z-index: 1020;
            transform: translate(-150%, -50%);
            opacity: 0;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
            max-width: 250px;
            max-height: 250px;
        }
        #side-ad-banner.visible {
             transform: translate(0, -50%);
             opacity: 1;
        }
        #side-ad-banner img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }
        .ad-close-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: black;
            color: white;
            border: 1px solid white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            line-height: 1;
            font-weight: bold;
        }

    
        :root {
            --primary-orange: #EA580C;
            --primary-orange-hover: #F97316;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
            color: #e5e7eb;
            overflow-x: hidden;
            cursor: none;
        }
        a, button, input, textarea {
            cursor: none;
        }
        #progress-bar {
          position: fixed;
          top: 0;
          left: 0;
          height: 4px;
          background: var(--primary-orange);
          width: 0%;
          z-index: 1001;
          transition: width 0.1s ease-out;
        }
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 6px;
            height: 6px;
            background-color: white;
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
        }
        .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9998;
            transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        }
        .cursor-outline.grow {
            width: 50px;
            height: 50px;
            border-color: white;
        }
        .gradient-text {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary-orange-hover), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-button {
             background-color: var(--primary-orange);
        }
        .cta-button:hover {
            background-color: var(--primary-orange-hover);
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(234, 88, 12, 0.4);
        }
        .chat-widget button {
             background-color: var(--primary-orange);
        }
         .chat-widget button:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 0 25px rgba(234, 88, 12, 0.6);
        }
        .chat-modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1010;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .chat-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .chat-modal {
            position: fixed;
            bottom: 6.5rem; right: 2rem;
            width: 90%; max-width: 400px;
            height: 70vh; max-height: 600px;
            background-color: #111;
            border-radius: 1.5rem; border: 1px solid #333;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: flex; flex-direction: column;
            overflow: hidden;
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
            pointer-events: none;
        }
        .chat-modal-overlay.active .chat-modal {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: auto;
        }
        .chat-modal-header {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-options-menu {
            position: absolute;
            bottom: calc(100% + 0.5rem);
            right: 0;
            background-color: #1f2937;
            border-radius: 0.75rem;
            padding: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            width: 200px;
            z-index: 10;
        }
        .chat-options-menu button {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            text-align: left;
            color: #d1d5db;
            border-radius: 0.5rem;
            transition: background-color 0.2s ease;
        }
        .chat-options-menu button:hover {
            background-color: #333;
        }
        .chat-options-menu i {
            margin-right: 0.75rem;
        }
        .message-reactions {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .message-reactions button {
            background: none;
            border: none;
            color: #6b7280;
            transition: color 0.2s;
        }
        .message-reactions button:hover, .message-reactions button.reacted {
            color: var(--primary-orange);
        }
        .chat-input-actions {
            display: flex;
            gap: 0.5rem;
            padding-right: 0.5rem;
        }
        .chat-input-actions button {
            color: #9ca3af;
            transition: color 0.2s;
        }
        .chat-input-actions button:hover {
            color: var(--primary-orange);
        }
        
        .logo-scroller {
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
            mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
        }
        .logo-scroller-inner {
            display: flex;
            width: fit-content;
            animation: scroll 40s linear infinite;
        }
        .logo-scroller-inner img {
            height: 135px;
            margin: 0 40px;
            filter: grayscale(1);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        .logo-scroller-inner:hover img {
            filter: grayscale(0);
            opacity: 1;
        }
        @keyframes scroll {
            to {
                transform: translateX(-50%);
            }
        }
        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid var(--primary-orange);
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
  /* --- New Automation Modal Styles --- */
        :root {
            --primary-orange: #EA580C;
            --primary-orange-hover: #F97316;
            --glow-color: rgba(234, 88, 12, 0.5);
            --bg-color: #050505;
            --border-color: rgba(255, 255, 255, 0.1);
        }
        body.modal-open {
            overflow: hidden;
        }
        input, textarea {
            cursor: text !important;
        }
        
        .stage {
            display: none;
            animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .stage.active {
            display: block;
        }
        .progress-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
        }
        .progress-step {
            display: flex;
            align-items: center;
            color: #6b7280;
            transition: color 0.4s ease;
            position: relative;
        }
        .progress-step.active {
            color: var(--primary-orange);
        }
        .progress-step .circle {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            border: 2px solid var(--border-color);
            background-color: #111827;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            transition: all 0.4s ease;
            z-index: 2;
        }
        .progress-step.active .circle {
            border-color: var(--primary-orange);
            background-color: var(--primary-orange);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 0 15px var(--glow-color);
        }
        .progress-indicator .line {
            width: 6rem;
            height: 2px;
            background-color: var(--border-color);
            transition: background-color 0.4s ease;
        }
        .progress-indicator .line.active {
            background-color: var(--primary-orange);
            box-shadow: 0 0 10px var(--glow-color);
        }
        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-left-color: var(--primary-orange);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin: 2.5rem auto;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        #automation-modal {
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }
        .automation-container {
            position: relative;
            background: rgba(10,10,10,0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 1.5rem;
            padding: 2.5rem;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .automation-container::-webkit-scrollbar {
            width: 8px;
        }
        .automation-container::-webkit-scrollbar-track {
            background: rgba(0,0,0,0.2);
        }
        .automation-container::-webkit-scrollbar-thumb {
            background-color: var(--primary-orange);
            border-radius: 4px;
        }
        
        .content-card {
            background-color: rgba(31, 31, 31, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1rem;
            transition: all 0.3s ease;
        }
        .content-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-4px);
        }
        .form-input {
            width: 100%;
            background-color: #111;
            border: 1px solid #444;
            border-radius: 0.5rem;
            padding: 1rem;
            color: white;
            transition: border-color 0.3s ease;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 10px var(--glow-color);
        }
        
        #services-pin-container {
            position: relative;
            min-height: 130vh; /* Adjust based on number of panels */
        }
        .service-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .service-panel-content {
            width: 100%;
            max-width: 1100px; /* Corresponds to container max-width */
            margin: 0 auto;
        }
