
        /* ===== ROOT VARIABLES ===== */
        :root {
            --primary: #8CF665;
            --primary-dark: #036A3A;
            --bg-dark: #070E0A;
            --bg-card: #0F1B15;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A9A0;
            --border-color: rgba(140, 246, 101, 0.1);
            --shadow-sm: 0 4px 15px rgba(140, 246, 101, 0.05);
            --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* ===== GLOBAL STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

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

        /* ===== CURSOR FOLLOWER ===== */
        .cursor-follower {
            position: fixed;
            width: 30px;
            height: 30px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            transform: translate(-50%, -50%);
        }

        body:hover .cursor-follower {
            opacity: 1;
        }
        @media (pointer: coarse), (max-width: 768px) {
            .cursor-follower {
                display: none !important;
            }
            body {
                cursor: auto;
            }
        }

        /* ===== NOISE OVERLAY ===== */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' seed='1'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3Csvg%3E");
            pointer-events: none;
            opacity: 0.4;
            z-index: 1;
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(7, 14, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            padding: 1rem 0;
        }

        .navbar.scrolled {
            background: rgba(7, 14, 10, 0.95);
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -2px;
            cursor: pointer;
        }

        .logo-text {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-dot {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

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

        .nav-cta {
            color: var(--text-primary) !important;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            color: var(--bg-dark);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(140, 246, 101, 0.3);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(140, 246, 101, 0.1);
            transform: translateY(-2px);
        }

        .btn-glow {
            position: relative;
            overflow: hidden;
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(140, 246, 101, 0.3), transparent);
            transition: var(--transition);
        }

        .btn-glow:hover::before {
            left: 100%;
        }

        .btn-large {
            padding: 16px 48px;
            font-size: 1.1rem;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 60px;
        }

        #canvas3d {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 40px 20px;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(140, 246, 101, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 2rem;
            animation: slideDown 0.8s ease-out 0.2s both;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .word {
            display: inline-block;
            animation: titleWave 0.8s ease-out backwards;
        }

        .word:nth-child(1) { animation-delay: 0.3s; }
        .word:nth-child(2) { animation-delay: 0.5s; }

        @keyframes titleWave {
            from {
                opacity: 0;
                transform: translateY(20px) rotateX(90deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .hero-stats {
            display: flex;
            gap: 4rem;
            justify-content: center;
            padding-top: 3rem;
            border-top: 1px solid var(--border-color);
            animation: fadeInUp 1s ease-out 1s both;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* ===== FLOATING SERVICES ===== */
        .floating-services {
            position: relative;
            padding: 60px 0;
            background: linear-gradient(180deg, rgba(140, 246, 101, 0.03), transparent);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            padding: 0 20px;
        }

        .service-float {
            background: rgba(140, 246, 101, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem 1rem;
            text-align: center;
            animation: float 6s ease-in-out infinite;
        }

        .service-float:nth-child(1) { animation-delay: 0s; }
        .service-float:nth-child(2) { animation-delay: 0.1s; }
        .service-float:nth-child(3) { animation-delay: 0.2s; }
        .service-float:nth-child(4) { animation-delay: 0.3s; }
        .service-float:nth-child(5) { animation-delay: 0.4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .service-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ===== SECTION HEADERS ===== */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 100px 0;
            position: relative;
            z-index: 10;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* ===== GLASSMORPHISM CARDS ===== */
        .glass-effect {
            background: rgba(15, 27, 21, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        .glass-effect::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(140, 246, 101, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
            pointer-events: none !important;
        }

        .glass-effect:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-10px);
        }

        .glass-effect:hover::before {
            opacity: 1;
        }

        .card-gradient {
            position: absolute;
            top: -100%;
            left: -100%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, rgba(140, 246, 101, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
            pointer-events: none !important;
        }

        .glass-effect:hover .card-gradient {
            opacity: 1;
        }

        .service-card {
            position: relative;
            z-index: 2;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .card-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .card-features li {
            color: var(--text-secondary);
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }

        .card-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
            margin-right: 0.8rem;
        }

        .card-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .card-link:hover {
            gap: 1rem;
        }

        /* ===== CASE SHOWCASE ===== */
        .case-showcase {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(140, 246, 101, 0.02), transparent);
        }

        .cases-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .case-item {
            background: rgba(15, 27, 21, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
            transition: var(--transition);
        }

        .case-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .case-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .case-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .case-item p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .case-cta {
            text-align: center;
        }

        /* ===== TOOLS SECTION ===== */
        .tools-section {
            padding: 100px 0;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .tool-card {
            background: rgba(15, 27, 21, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
        }

        .tool-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
        }

        .tool-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .tool-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .tool-card p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(140, 246, 101, 0.02), transparent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            background: rgba(15, 27, 21, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .feature-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ===== CTA FINAL ===== */
        .cta-final {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(140, 246, 101, 0.1), rgba(3, 106, 58, 0.05));
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: rgba(15, 27, 21, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 20px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4,
        .footer-col h5 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-col p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            gap: 6px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: rgba(7, 14, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 999;
            flex-direction: column;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-menu.active {
            max-height: 400px;
        }

        .mobile-links {
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
            gap: 1rem;
        }

        .mobile-links a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.8rem;
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
        }

        .mobile-links a:hover {
            background: rgba(140, 246, 101, 0.1);
            color: var(--primary);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero {
                margin-top: 80px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cases-showcase-grid {
                grid-template-columns: 1fr;
            }

            .tools-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .cta-actions {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
                text-align: center;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            /* --- GLOBAL MOBILE FIXES --- */
            html, body {
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
                -webkit-overflow-scrolling: touch;
            }

            /* Prevent horizontal overflow on containers */
            .container, section, div, img {
                max-width: 100vw;
            }

            /* Reduce massive section paddings for mobile */
            .services, .case-showcase, .tools-section, .features-section, .cta-final {
                padding: 50px 0;
            }
            .page-header {
                padding-top: 90px;
                padding-bottom: 40px;
            }

            /* Improve readability and spacing */
            .section-header {
                margin-bottom: 2.5rem;
            }
            .section-header h2 {
                font-size: 2.2rem;
            }

            /* Touch-friendly buttons and forms */
            input, select, textarea, .btn {
                font-size: 16px; /* Prevents iOS auto-zoom */
            }

            /* Fix footer layout */
            .footer-grid {
                gap: 2rem;
            }
            .footer {
                padding: 40px 0 20px;
            }
        }

        /* Prevent sticky hovers on touch devices */
        @media (hover: none) {
            .glass-effect:hover, .service-card:hover, .tool-card:hover, .feature-item:hover, .case-item:hover, .btn:hover {
                transform: none;
                box-shadow: none;
            }
            .btn:hover {
                transform: translateY(-2px); /* Only a tiny bump for touch */
            }
        }

        /* ===== SCROLLBAR STYLING ===== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #4ADE80;
        }

        /* ===== SOCIAL PROOF BAR ===== */
        .social-proof-bar {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 12px;
            pointer-events: none;
        }

        .proof-toast {
            background: rgba(12, 22, 17, 0.95);
            border: 1px solid rgba(140, 246, 101, 0.4);
            border-radius: 16px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            backdrop-filter: blur(12px);
            animation: toastSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            max-width: 320px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(140,246,101,0.08);
            pointer-events: auto;
            cursor: pointer;
            transform-origin: bottom left;
        }
        .proof-toast:hover {
            border-color: rgba(140, 246, 101, 0.7);
            transform: scale(1.02);
            transition: all 0.2s ease;
        }

        .proof-toast.leaving {
            animation: toastSlideDown 0.5s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
        }

        .proof-toast .toast-icon { font-size: 1.6rem; color: var(--primary); }
        .proof-toast strong { color: var(--text-primary); font-weight: 700; }
        .proof-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; animation: pulseDot 1.5s infinite; flex-shrink: 0; box-shadow: 0 0 10px var(--primary); }

        @keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.8)} }
        @keyframes toastSlideUp { from{opacity:0;transform:translateY(40px) scale(0.9)} to{opacity:1;transform:translateY(0) scale(1)} }
        @keyframes toastSlideDown { from{opacity:1;transform:translateY(0) scale(1)} to{opacity:0;transform:translateY(40px) scale(0.9)} }

        @media (max-width: 600px) {
            .social-proof-bar {
                bottom: 20px;
                left: 20px;
                right: 20px;
            }
            .proof-toast {
                max-width: 100%;
                font-size: 0.8rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(140, 246, 101, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(140, 246, 101, 0.6);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* ===== PAGE SECTIONS ===== */
        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
        }

        .page-header {
            padding-top: 120px;
            padding-bottom: 80px;
        }

        /* ===== PRICING & SERVICES PAGE ===== */
        .services-grid-detailed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-module {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 450px;
        }

        .module-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-module h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-module > p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .module-list {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .module-list li {
            color: var(--text-secondary);
            padding: 0.6rem 0;
            display: flex;
            align-items: center;
        }

        .module-list li::before {
            content: '→';
            color: var(--primary);
            font-weight: 700;
            margin-right: 0.8rem;
        }

        .module-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .price {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== PRICING GRID ===== */
        .pricing-grid-premium {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card-premium {
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .pricing-card-premium.featured {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .plan-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: var(--bg-dark);
            padding: 5px 40px;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 1px;
        }

        .plan-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .plan-subtitle {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin: 2rem 0 2rem 0;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            color: var(--text-secondary);
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
            position: relative;
            text-align: center;
        }

        .step-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .process-step p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== CALCULATOR STYLES ===== */
        .calculator-container {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .calc-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }

        .calc-tab {
            background: none;
            border: none;
            color: var(--text-secondary);
            padding: 1rem 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }

        .calc-tab::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .calc-tab.active {
            color: var(--primary);
        }

        .calc-tab.active::after {
            width: 100%;
        }

        .calc-inputs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
        }

        .input-group label {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .input-group input,
        .input-group select {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .input-group input:focus,
        .input-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(140, 246, 101, 0.05);
        }

        .calculate-btn {
            width: 100%;
            padding: 1rem;
        }

        .calc-results {
            margin-top: 2rem;
            padding: 2rem;
            background: rgba(140, 246, 101, 0.05);
            border: 1px solid rgba(140, 246, 101, 0.2);
            border-radius: 15px;
        }

        /* ===== PREVIEW SECTION ===== */
        .prompt-area {
            margin-bottom: 2rem;
        }

        .prompt-area textarea {
            width: 100%;
            min-height: 120px;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: 'Segoe UI', sans-serif;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }

        .prompt-area textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(140, 246, 101, 0.05);
        }

        .prompt-area textarea::placeholder {
            color: var(--text-secondary);
        }

        .preview-status {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(140, 246, 101, 0.05);
            border-radius: 8px;
            color: var(--primary);
            text-align: center;
            font-weight: 600;
            min-height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .preview-window {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            margin-top: 2rem;
        }

        .window-header {
            background: rgba(0, 0, 0, 0.2);
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

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

        .dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(140, 246, 101, 0.3);
        }

        .url-bar {
            color: var(--text-secondary);
            font-size: 0.9rem;
            flex: 1;
        }

        .window-body {
            height: 500px;
            overflow: hidden;
        }

        #previewIframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== ABOUT PAGE ===== */
        .founder-card {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            align-items: start;
            padding: 2rem;
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            margin-bottom: 3rem;
        }

        .founder-img {
            width: 300px;
            height: 300px;
            border-radius: 15px;
        }

        .founder-info h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .founder-info p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .team-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .team-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .team-exp {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .philosophy-box {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
        }

        .philosophy-box h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .philosophy-box ul {
            list-style: none;
        }

        .philosophy-box li {
            color: var(--text-secondary);
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
        }

        .philosophy-box li::before {
            content: '•';
            color: var(--primary);
            font-weight: 700;
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-item {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
            transition: var(--transition);
        }

        .value-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .value-num {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
            display: block;
        }

        .value-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .value-item p {
            color: var(--text-secondary);
        }

        .dark-bg {
            background: linear-gradient(180deg, rgba(140, 246, 101, 0.02), transparent);
        }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== CASE STUDIES PAGE ===== */
        .cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 2rem 0 1rem 0;
            border-top: 2px solid var(--border-color);
            margin-top: 3rem;
        }

        .cat-icon {
            font-size: 2rem;
        }

        .cat-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }

        .cat-line {
            flex: 1;
            height: 1px;
            background: var(--border-color);
        }

        .case-card {
            background: rgba(15, 27, 21, 0.5);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 15px;
            transition: var(--transition);
        }

        .case-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .case-num {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary);
            text-transform: uppercase;
        }

        .case-title {
            font-size: 1.3rem;
            margin: 0.5rem 0;
        }

        .case-focus {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .case-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .tag {
            background: rgba(140, 246, 101, 0.1);
            border: 0.5px solid rgba(140, 246, 101, 0.3);
            color: var(--primary);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .case-result {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(140, 246, 101, 0.1), rgba(3, 106, 58, 0.05));
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .cta-card {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-card h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-card p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Reveal animation trigger */
        .section {
            padding: 100px 0;
        }
    

/* ===== HERO SECTION - PREMIUM ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(140,246,101,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140,246,101,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridSlide 20s linear infinite;
    z-index: 1;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

@keyframes gridSlide {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(140,246,101,0.18) 0%, transparent 70%);
    top: -100px; left: -150px;
    animation-duration: 10s;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(3,106,58,0.22) 0%, transparent 70%);
    bottom: -80px; right: -100px;
    animation-duration: 13s;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 7s;
    animation-delay: -2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.05); }
    66%       { transform: translate(-20px, 25px) scale(0.96); }
}

.hero-float-card {
    position: absolute;
    background: rgba(15,27,21,0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(140,246,101,0.2);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(140,246,101,0.06);
    animation: cardBob 6s ease-in-out infinite;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-float-card:hover {
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow: 0 16px 48px rgba(140,246,101,0.15), 0 0 0 1px rgba(140,246,101,0.2);
}

.hero-float-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

.fc-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.fc-lbl {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-left-1  { top: 22%; left: 5%; animation-delay: 0s; }
.card-left-2  { top: 55%; left: 3%; animation-delay: -2s; }
.card-right-1 { top: 22%; right: 5%; animation-delay: -1s; }
.card-right-2 { top: 55%; right: 3%; animation-delay: -3s; }

@keyframes cardBob {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(140,246,101,0.08);
    border: 1px solid rgba(140,246,101,0.25);
    border-radius: 50px;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out 0.2s both;
    box-shadow: 0 0 20px rgba(140,246,101,0.08);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.word {
    display: inline-block;
    animation: titleWave 0.8s ease-out backwards;
}

.word:nth-child(1) { animation-delay: 0.3s; }
.word:nth-child(2) { animation-delay: 0.5s; }

@keyframes titleWave {
    from { opacity: 0; transform: translateY(20px) rotateX(90deg); }
    to   { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #4ADE80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animated-gradient {
    background: linear-gradient(270deg, #8CF665, #4ADE80, #036A3A, #8CF665);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-btn-wa {
    position: relative;
    overflow: hidden;
}

.hero-btn-wa::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(140,246,101,0.3);
    animation: btnPulse 2.5s ease-out infinite;
}

@keyframes btnPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(140,246,101,0.1);
    animation: fadeInUp 1s ease-out 1s both;
}

.stat { text-align: center; }

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-scroll-hint span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(140,246,101,0.4);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 1024px) {
    .card-left-1, .card-left-2, .card-right-1, .card-right-2 { display: none; }
}

@media (max-width: 768px) {
    .hero-stats { gap: 2rem; }
    .hero-scroll-hint { display: none; }
}


/* ===== LOGO - SIMPLE TEXT WHITE ===== */
.logo-text-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF !important;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}
.logo-text-brand:hover {
    opacity: 0.8;
}


/* ===== FOUNDER PREMIUM SECTION ===== */
.founder-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(15, 27, 21, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.founder-img-wrapper {
    position: relative;
    width: 450px;
    height: 550px;
    flex-shrink: 0;
    border-radius: 20px;
}

.founder-glow-ring {
    position: absolute;
    inset: -15px;
    border-radius: 30px;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent);
    filter: blur(25px);
    opacity: 0.5;
    animation: spinGlow 8s linear infinite;
    z-index: 0;
}

@keyframes spinGlow {
    100% { transform: rotate(360deg); }
}

.founder-carousel {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.f-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 6s ease-out;
}

.f-img.active {
    opacity: 1;
    transform: scale(1);
}

.f-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.f-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.f-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

.founder-live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.f-chip {
    position: absolute;
    background: rgba(15,27,21,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: floatChip 4s ease-in-out infinite;
}

.f-chip i {
    font-size: 1.5rem;
    color: var(--primary);
}

.f-chip span {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1;
}

.f-chip small {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chip-1 {
    top: 40px;
    right: -30px;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 60px;
    right: -40px;
    animation-delay: -2s;
}

@keyframes floatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .founder-card { flex-direction: column; text-align: center; padding: 2rem; }
    .founder-img-wrapper { width: 100%; max-width: 400px; height: 450px; }
    .chip-1 { right: 10px; }
    .chip-2 { right: 10px; }
}

/* ═══════════════════════════════════════════════════
   PARTNERS / BRANDS MARQUEE SECTION
═══════════════════════════════════════════════════ */

.partners-section {
    padding: 90px 0 60px;
    background: linear-gradient(180deg, rgba(140,246,101,0.04) 0%, transparent 60%);
    overflow: hidden;
    position: relative;
}

.partners-section::before,
.partners-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.partners-section::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(140,246,101,0.08), transparent 70%);
    top: -80px; left: -100px;
}
.partners-section::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,200,150,0.06), transparent 70%);
    bottom: -60px; right: -80px;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.partners-header h2 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    margin: 0.6rem 0 0.8rem;
}

.partners-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Partner filters ─── */
.partners-filters {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.6rem;
    padding: 0.4rem;
    background: rgba(15, 27, 21, 0.6);
    border: 1px solid rgba(140, 246, 101, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.45rem 1.1rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.filter-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
    color: #0f1b15;
    background: var(--primary);
    box-shadow: 0 0 15px rgba(140, 246, 101, 0.35);
}

/* ─── Marquee wrapper (edge fade mask) ─── */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    z-index: 2;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

/* ─── Marquee track ─── */
.marquee-track {
    display: flex;
    width: max-content;
    padding: 0.75rem 0;
}

.marquee-inner {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
    flex-shrink: 0;
}

.track-left  { animation: scrollLeft  38s linear infinite; }
.track-right { animation: scrollRight 42s linear infinite; }

.marquee-wrapper:hover .track-left,
.marquee-wrapper:hover .track-right { animation-play-state: paused; }

@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ─── Brand cards ─── */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 190px;
    padding: 1.1rem 1.4rem;
    background: radial-gradient(130px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(140, 246, 101, 0.12), transparent 80%), rgba(15, 27, 21, 0.6);
    border: 1px solid rgba(140, 246, 101, 0.12);
    border-radius: 16px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(0px) scale(1);
    transition: transform 0.15s ease-out, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.4s ease, filter 0.4s ease;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(140,246,101,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
    z-index: 1;
}

/* Vercel-style boundary border glow tracking */
.brand-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(130px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(140, 246, 101, 0.65), transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}

.brand-card:hover {
    border-color: rgba(140, 246, 101, 0.5);
    transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(140, 246, 101, 0.2), 0 0 20px rgba(140, 246, 101, 0.1) inset;
}

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

.brand-card.accent-teal { 
    background: radial-gradient(130px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(0, 200, 150, 0.12), transparent 80%), rgba(15, 27, 21, 0.6);
    border-color: rgba(0, 200, 150, 0.12); 
}

.brand-card.accent-teal::after {
    background: radial-gradient(130px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(0, 200, 150, 0.65), transparent 80%);
}

.brand-card.accent-teal:hover {
    border-color: rgba(0, 200, 150, 0.55);
    box-shadow: 0 15px 40px rgba(0, 200, 150, 0.2), 0 0 20px rgba(0, 200, 150, 0.1) inset;
}

.brand-card.accent-teal::before {
    background: linear-gradient(135deg, rgba(0,200,150,0.07) 0%, transparent 60%);
}

/* Cyberpunk Scanner Laser line */
.partners-laser-scanner {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(140, 246, 101, 0.9), #ffffff, rgba(140, 246, 101, 0.9), transparent);
    box-shadow: 0 0 15px rgba(140, 246, 101, 0.9), 0 0 30px rgba(140, 246, 101, 0.6);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    top: 0;
}

@keyframes scan-sweep {
    0% { top: 0%; opacity: 1; }
    40% { opacity: 1; }
    80% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

.partners-laser-scanner.active {
    animation: scan-sweep 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Dynamic highlighting & dimming states for country filters */
@keyframes radar-glow {
    0% { box-shadow: 0 0 0 0 rgba(140, 246, 101, 0.6), 0 0 25px rgba(140, 246, 101, 0.3) !important; border-color: rgba(140, 246, 101, 1) !important; }
    70% { box-shadow: 0 0 0 12px rgba(140, 246, 101, 0), 0 0 25px rgba(140, 246, 101, 0.3) !important; border-color: rgba(140, 246, 101, 1) !important; }
    100% { box-shadow: 0 0 0 0 rgba(140, 246, 101, 0), 0 0 25px rgba(140, 246, 101, 0.3) !important; border-color: rgba(140, 246, 101, 1) !important; }
}

@keyframes radar-glow-teal {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.6), 0 0 25px rgba(0, 200, 150, 0.3) !important; border-color: rgba(0, 200, 150, 1) !important; }
    70% { box-shadow: 0 0 0 12px rgba(0, 200, 150, 0), 0 0 25px rgba(0, 200, 150, 0.3) !important; border-color: rgba(0, 200, 150, 1) !important; }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0), 0 0 25px rgba(0, 200, 150, 0.3) !important; border-color: rgba(0, 200, 150, 1) !important; }
}

.brand-card.highlighted {
    background: rgba(15, 27, 21, 0.85) !important;
    animation: radar-glow 1.6s infinite ease-out !important;
    transform: translateY(-5px) scale(1.05) !important;
}

.brand-card.accent-teal.highlighted {
    background: rgba(15, 27, 21, 0.85) !important;
    animation: radar-glow-teal 1.6s infinite ease-out !important;
    transform: translateY(-5px) scale(1.05) !important;
}

.brand-card.dimmed {
    opacity: 0.18;
    filter: blur(1.5px) grayscale(50%);
    pointer-events: none;
}

.brand-flag {
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.brand-cat {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
}

/* ─── Stats strip ─── */
.partners-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.8rem;
    padding: 1.6rem 2rem;
    background: rgba(15, 27, 21, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.pstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pstat-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), #4ADE80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pstat-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Continuous running droplet in vertical dividers */
.pstat-div {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(140, 246, 101, 0.25), transparent);
    position: relative;
    overflow: hidden;
}

.pstat-div::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 16px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pstatDrop 2.5s infinite linear;
}

@keyframes pstatDrop {
    0% { top: -16px; }
    100% { top: 40px; }
}

/* Pulsing radar dot for Global Reach node */
.live-radar-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    vertical-align: middle;
}

.live-radar-dot::before,
.live-radar-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: radarDotRipple 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    pointer-events: none;
}

.live-radar-dot::after {
    animation-delay: 1.1s;
}

@keyframes radarDotRipple {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 768px) {
    .marquee-wrapper::before,
    .marquee-wrapper::after { width: 60px; }
    .brand-card { min-width: 160px; padding: 0.9rem 1.1rem; }
    .partners-stats-strip { gap: 1.2rem; padding: 1.2rem 1rem; flex-wrap: wrap; }
    .pstat-div { display: none; }
}

/* ═══════════════════════════════════════════════════
   VIDEO TESTIMONIALS SECTION
═══════════════════════════════════════════════════ */

.video-testimonials {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(140, 246, 101, 0.02) 50%, transparent);
    overflow: hidden;
}

.video-slider-container {
    position: relative;
    margin-top: 3rem;
}

.video-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 1rem 0;
}

.video-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/* Vertical 9:16 Reel Cards */
.video-card {
    flex: 0 0 320px;
    height: 568px; /* 9:16 ratio */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition), border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(140, 246, 101, 0.4);
    box-shadow: 0 20px 40px rgba(140, 246, 101, 0.15);
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-card:hover video {
    transform: scale(1.05);
}

/* Card Overlays */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 14, 10, 0.9) 0%, rgba(7, 14, 10, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Play state overlays */
.video-card.playing .video-overlay {
    background: linear-gradient(to top, rgba(7, 14, 10, 0.9) 0%, rgba(7, 14, 10, 0) 40%, transparent 100%);
}

.video-card.playing .play-btn-circle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.video-card.playing:hover .play-btn-circle {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
}

/* Custom Play Icon */
.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(140, 246, 101, 0.9);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 32px rgba(140, 246, 101, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    pointer-events: none;
}

.video-card:hover .play-btn-circle {
    background: var(--text-primary);
    color: var(--bg-dark);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
}

/* Mute Control Button */
.mute-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(7, 14, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    z-index: 4;
    transition: var(--transition);
}

.mute-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Meta description inside vertical video cards */
.video-meta {
    margin-top: auto;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.video-card:hover .video-meta {
    transform: translateY(0);
}

.client-rating {
    display: block;
    margin-bottom: 0.5rem;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.client-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.client-achievement {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Testimonial slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 27, 21, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(140, 246, 101, 0.3);
}

.slider-progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 16.66%; /* 1 out of 6 cards start */
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .video-card {
        flex: 0 0 270px;
        height: 480px;
    }
}

/* ═══════════════════════════════════════════════════
   GET QUOTE INTERACTIVE MODAL
═══════════════════════════════════════════════════ */

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 999999 !important; /* Sit on top of all canvas elements, cursor followers, and other widgets */
    background: rgba(7, 14, 10, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.quote-modal.active {
    opacity: 1;
    pointer-events: auto !important;
}

.quote-modal-content {
    background: rgba(15, 27, 21, 0.98);
    border: 1px solid rgba(140, 246, 101, 0.18);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 24px 80px rgba(7, 14, 10, 0.8), 0 0 40px rgba(140, 246, 101, 0.05);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default !important; /* Prevent pointer cursor inheritance from glass-effect */
}

/* Custom premium scrollbar for modal content */
.quote-modal-content::-webkit-scrollbar {
    width: 6px;
}
.quote-modal-content::-webkit-scrollbar-track {
    background: rgba(7, 14, 10, 0.4);
    border-radius: 10px;
}
.quote-modal-content::-webkit-scrollbar-thumb {
    background: rgba(140, 246, 101, 0.2);
    border-radius: 10px;
}
.quote-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(140, 246, 101, 0.5);
}

.quote-modal.active .quote-modal-content {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.quote-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.quote-modal-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.quote-modal-header p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.quote-form .form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.quote-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    background: rgba(7, 14, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.quote-form select {
    appearance: none;
    cursor: pointer;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(140, 246, 101, 0.2);
    background: rgba(15, 27, 21, 0.8);
}

.quote-form select option {
    background: #0f1b15;
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Responsive Modal for Mobile Viewports & Virtual Keyboards */
@media (max-width: 480px) {
    .quote-modal {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 0.5rem !important;
        -webkit-overflow-scrolling: touch;
    }
    .quote-modal-content {
        max-height: none !important;
        margin: 2rem auto !important;
        border-radius: 16px !important;
        padding: 1.25rem !important;
    }
}

/* ═══════════════════════════════════════════════════
   PREMIUM LEAD GENERATION POPUP (SMART GROWTH TOAST)
   ═══════════════════════════════════════════════════ */

.lead-toast {
    position: fixed;
    bottom: 110px;
    right: 28px;
    width: 360px;
    max-width: calc(100vw - 4rem);
    background: rgba(15, 27, 21, 0.96);
    border: 1px solid rgba(140, 246, 101, 0.22);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(7, 14, 10, 0.9), 0 0 35px rgba(140, 246, 101, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999999 !important; /* Stand above everything else, including standard elements */
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    font-family: inherit;
}

.lead-toast.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto !important;
}

/* 60s Progress Bar Countdown Visual */
.lead-toast-progress-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.03);
    z-index: 10;
}

.lead-toast-progress {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #8CF665, #5cd632);
    transform-origin: left;
    transition: width 60s linear;
    position: relative;
}

.lead-toast-progress::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3.5px;
    bottom: -3.5px;
    width: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px #8CF665, 0 0 20px #8CF665, 0 0 30px #ffffff;
    border-radius: 50%;
    animation: laserSparkle 0.8s ease-in-out infinite alternate;
}

@keyframes laserSparkle {
    0% { transform: scale(0.9); opacity: 0.85; }
    100% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 15px #8CF665, 0 0 28px #8CF665, 0 0 40px #ffffff; }
}

.lead-toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 0.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.lead-toast-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lead-toast-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.lead-toast-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.lead-toast-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), color 0.3s ease;
    padding: 0.25rem;
}

.lead-toast-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lead-toast-body {
    padding: 1.25rem;
}

.lead-toast-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lead-toast-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.lead-toast-form label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lead-toast-form input,
.lead-toast-form select {
    background: rgba(7, 14, 10, 0.5);
    border: 1px solid rgba(140, 246, 101, 0.12);
    border-radius: 8px;
    padding: 0.55rem 0.8rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.82rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.lead-toast-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238CF665' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2rem;
}

.lead-toast-form input:focus,
.lead-toast-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(140, 246, 101, 0.15);
    background: rgba(15, 27, 21, 0.75);
}

.lead-toast-form select option {
    background: #0f1b15;
    color: var(--text-primary);
}

/* Dynamic field entry animation */
.lead-toast-dynamic-field {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.lead-toast-dynamic-field.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-lead-submit {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

/* Responsive constraints for virtual keyboard spacing & mobile layouts */
@media (max-width: 480px) {
    .lead-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
        box-shadow: 0 10px 30px rgba(7, 14, 10, 0.9);
        border-radius: 12px;
    }
    .lead-toast-header {
        padding: 1rem 1rem 0.4rem 1rem;
    }
    .lead-toast-body {
        padding: 1rem;
    }
    .lead-toast-form {
        gap: 0.65rem;
    }
}

/* Minimized Floating Action Button (FAB) */
.lead-fab {
    position: fixed;
    bottom: 110px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: rgba(15, 27, 21, 0.95);
    border: 1px solid rgba(140, 246, 101, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(7, 14, 10, 0.8), 0 0 20px rgba(140, 246, 101, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999998 !important;
    opacity: 0;
    transform: scale(0.7) translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lead-fab.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.lead-fab i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.lead-fab:hover i {
    transform: scale(1.15) rotate(15deg);
}

/* Double glowing ripple rings */
.lead-fab::before,
.lead-fab::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(140, 246, 101, 0.4);
    pointer-events: none;
    z-index: -1;
    animation: fabRipple 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.lead-fab::after {
    animation-delay: 1.5s;
}

@keyframes fabRipple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 480px) {
    .lead-fab {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
}




