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

        :root {
            --primary: #27AE5F;
            --secondary: #1E8E4F;
            --accent: #34D399;
            --dark: #0F172A;
            --darker: #020617;
            --light: #F8FAFC;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --opengraphy-green: #27AE5F;
            --opengraphy-dark: #4A5568;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            position: relative;
            padding-bottom: 100px; /* Space for footer and cookie notice */
    
        }

        /* Animated Background */
        .bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -10;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            filter: blur(2px);
            opacity: 0;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { 
                opacity: 0;
                transform: translateY(100vh) translateX(0);
            }
            10% { opacity: 0.4; }
            90% { opacity: 0.4; }
            100% { 
                transform: translateY(-100vh) translateX(100px);
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 10000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 5%;
            background: rgba(15, 23, 42, 0.95);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo-animation {
            width: 45px;
            height: 45px;
            position: relative;
        }

        .logo-svg {
            width: 100%;
            height: 100%;
        }

        .logo-node {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo-node-fill {
            transition: all 0.4s ease;
        }

        .logo-connection {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: drawConnection 2s ease infinite;
        }

        @keyframes drawConnection {
            0%, 100% { stroke-dashoffset: 100; opacity: 0.3; }
            50% { stroke-dashoffset: 0; opacity: 1; }
        }

        .logo-animation:hover .logo-node {
            transform-origin: center;
        }

        .logo-animation:hover .node-1 {
            animation: nodeFloat1 3s ease-in-out infinite;
        }

        .logo-animation:hover .node-2 {
            animation: nodeFloat2 3s ease-in-out infinite 0.2s;
        }

        .logo-animation:hover .node-3 {
            animation: nodeFloat3 3s ease-in-out infinite 0.4s;
        }

        .logo-animation:hover .node-4 {
            animation: nodeFloat4 3s ease-in-out infinite 0.6s;
        }

        @keyframes nodeFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(-2px, -2px) scale(1.1); }
            75% { transform: translate(2px, 1px) scale(0.95); }
        }

        @keyframes nodeFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(2px, -2px) scale(1.05); }
            75% { transform: translate(-1px, 2px) scale(0.98); }
        }

        @keyframes nodeFloat3 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(-1px, 2px) scale(1.08); }
            75% { transform: translate(2px, -2px) scale(0.96); }
        }

        @keyframes nodeFloat4 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(1px, 1px) scale(1.06); }
            75% { transform: translate(-2px, -1px) scale(0.97); }
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-link:hover {
            transform: scale(1.02);
        }

        .logo-main {
            background: linear-gradient(135deg, var(--opengraphy-green), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            font-size: 24px;
            font-weight: bold;
        }

        .logo-sub {
            color: var(--light);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 2px;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .logo:hover .logo-main {
            background: linear-gradient(135deg, var(--accent), var(--opengraphy-green));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo:hover .logo-sub {
            opacity: 1;
            color: var(--light);
        }

        .logo::before {
            display: none;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

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

        .cta-button {
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(39, 174, 95, 0.4);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: var(--light);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
            background: var(--primary);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
            background: var(--primary);
        }

        /* Logo Responsive Styles */
        @media (max-width: 900px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                border-top: 1px solid var(--glass-border);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 30px;
                padding: 50px 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
            }

            .nav-links.mobile-open {
                transform: translateX(0);
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 15px 0;
                text-align: center;
                width: 100%;
                max-width: 300px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background: rgba(39, 174, 95, 0.1);
                color: var(--primary);
                border-radius: 10px;
                border-bottom-color: var(--primary);
            }

            .nav-links .cta-button {
                margin-top: 20px;
                width: 100%;
                max-width: 300px;
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .nav-container {
                justify-content: space-between;
            }
            
            .logo-link {
                gap: 12px;
            }
            
            .logo-main {
                font-size: 20px;
            }
            
            .logo-sub {
                font-size: 13px;
                letter-spacing: 1.5px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 5%;
            }

            nav.scrolled {
                padding: 12px 5%;
            }

            .nav-links {
                top: 70px;
                height: calc(100vh - 70px);
                padding: 40px 20px;
                gap: 25px;
            }

            .nav-links a {
                font-size: 1.1rem;
                padding: 12px 0;
            }

            .nav-links .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .logo-link {
                gap: 10px;
            }
            
            .logo-main {
                font-size: 18px;
            }
            
            .logo-sub {
                font-size: 12px;
                letter-spacing: 1px;
            }
            
            .hamburger-line {
                width: 22px;
                height: 2px;
                margin: 2px 0;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 12px 4%;
            }

            .nav-links {
                top: 65px;
                height: calc(100vh - 65px);
                padding: 30px 15px;
                gap: 20px;
            }

            .nav-links a {
                font-size: 1rem;
                padding: 10px 0;
                max-width: 250px;
            }

            .nav-links .cta-button {
                padding: 10px 20px;
                font-size: 0.95rem;
                max-width: 250px;
            }
            
            .logo-main {
                font-size: 16px;
            }
            
            .logo-sub {
                font-size: 11px;
                letter-spacing: 0.5px;
            }
            
            .logo-link {
                gap: 8px;
            }

            .hamburger-line {
                width: 20px;
            }

            .mobile-menu-toggle {
                padding: 8px;
            }
        }

        /* Logo Responsive Styles */
        @media (max-width: 900px) {
            .logo-link {
                gap: 12px;
            }
            
            .logo-main {
                font-size: 20px;
            }
            
            .logo-sub {
                font-size: 13px;
                letter-spacing: 1.5px;
            }
            
            .nav-links {
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .logo-link {
                gap: 10px;
            }
            
            .logo-main {
                font-size: 18px;
            }
            
            .logo-sub {
                font-size: 12px;
                letter-spacing: 1px;
            }
            
            .logo-sub {
                font-size: 10px;
                letter-spacing: 0.5px;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 20px;
                padding: 15px 5%;
            }
        }

        @media (max-width: 480px) {
            .logo-main {
                font-size: 16px;
            }
            
            .logo-sub {
                font-size: 11px;
                letter-spacing: 0.5px;
            }
            
            .logo-link {
                gap: 8px;
            }
        }

        /* Hero Section Enhanced */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Gradient Background */
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 80%, rgba(39, 174, 95, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(30, 142, 79, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
            animation: heroGradient 15s ease infinite;
        }

        @keyframes heroGradient {
            0%, 100% { transform: rotate(0deg) scale(1); }
            33% { transform: rotate(120deg) scale(1.1); }
            66% { transform: rotate(240deg) scale(0.9); }
        }

        /* Floating Orbs */
        .hero-orbs {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.5;
            animation: floatOrb 20s infinite;
        }

        .orb1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--primary), transparent);
            top: 10%;
            left: 10%;
            animation-duration: 25s;
        }

        .orb2 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--accent), transparent);
            bottom: 20%;
            right: 10%;
            animation-duration: 20s;
            animation-delay: 5s;
        }

        .orb3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, var(--secondary), transparent);
            top: 50%;
            left: 50%;
            animation-duration: 30s;
            animation-delay: 10s;
        }

        @keyframes floatOrb {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Grid Background Pattern */
        .hero-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(39, 174, 95, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(39, 174, 95, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 10s linear infinite;
            opacity: 0.3;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Animated Title */
        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            position: relative;
        }

        .hero-text h1 span {
            display: inline-block;
            background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
            background-size: 200% 200%;
        }

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

        /* Typing Effect for Words */
        .typing-text {
            display: inline-block;
            position: relative;
        }

        .typing-text::after {
            content: '|';
            position: absolute;
            right: -10px;
            color: var(--primary);
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Glitch Effect on Hover */
        .glitch {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .glitch:hover {
            animation: glitch 0.3s infinite;
        }

        .glitch:hover::before,
        .glitch:hover::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glitch:hover::before {
            animation: glitch-1 0.3s infinite;
            color: var(--primary);
            z-index: -1;
        }

        .glitch:hover::after {
            animation: glitch-2 0.3s infinite;
            color: var(--accent);
            z-index: -2;
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
        }

        @keyframes glitch-1 {
            0%, 100% { clip: rect(0, 900px, 0, 0); }
            25% { clip: rect(0, 900px, 20px, 0); }
            50% { clip: rect(20px, 900px, 40px, 0); }
            75% { clip: rect(40px, 900px, 60px, 0); }
        }

        @keyframes glitch-2 {
            0%, 100% { clip: rect(0, 900px, 0, 0); }
            25% { clip: rect(60px, 900px, 80px, 0); }
            50% { clip: rect(40px, 900px, 60px, 0); }
            75% { clip: rect(20px, 900px, 40px, 0); }
        }

        .hero-text .subtitle {
            font-size: 1.3rem;
            color: #94A3B8;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        /* Enhanced Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
        }

        .primary-btn {
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(39, 174, 95, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(39, 174, 95, 0); }
            100% { box-shadow: 0 0 0 0 rgba(39, 174, 95, 0); }
        }

        .primary-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .primary-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .primary-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(39, 174, 95, 0.4);
        }

        .secondary-btn {
            padding: 15px 40px;
            background: transparent;
            border: 2px solid var(--glass-border);
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .secondary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(39, 174, 95, 0.4), transparent);
            transition: left 0.5s;
        }

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

        .secondary-btn:hover {
            background: var(--glass);
            border-color: var(--primary);
            transform: translateY(-2px);
            color: var(--primary);
        }

        /* Enhanced Trust Badges */
        .trust-badges {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .badge::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: badgeScan 3s infinite;
            animation-delay: var(--delay, 0s);
        }

        .badge:nth-child(1) { --delay: 0s; }
        .badge:nth-child(2) { --delay: 1s; }
        .badge:nth-child(3) { --delay: 2s; }

        @keyframes badgeScan {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* 3D Voice Demo Widget */
        .voice-demo {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: float3D 6s ease-in-out infinite;
        }

        @keyframes float3D {
            0%, 100% { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
            25% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); }
            75% { transform: perspective(1000px) rotateY(5deg) rotateX(-5deg); }
        }

        /* Particle System */
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .hero-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 10s infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) scale(1);
                opacity: 0;
            }
        }

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

        .demo-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .demo-title {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Shine effect on hero text - REMOVED
        .hero-text h1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        */

        /* Enhanced live indicator */
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 20px;
            animation: livePulse 2s infinite;
        }

        @keyframes livePulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
            }
            50% {
                box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.2);
            }
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #EF4444;
            border-radius: 50%;
            animation: liveDotBlink 2s infinite;
            box-shadow: 0 0 10px #EF4444;
        }

        @keyframes liveDotBlink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(0.8); }
        }

        /* Demo input glow effect */
        .demo-input {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .demo-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 
                inset 0 2px 4px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(39, 174, 95, 0.3);
        }

        /* Voice waveform enhanced */
        .waveform {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            margin-top: 20px;
            filter: drop-shadow(0 0 10px rgba(39, 174, 95, 0.5));
        }

        .wave-bar {
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
        }

        /* Responsive adjustments for Hero */
        /* Responsive Design for Hero Section */
        @media (max-width: 1200px) {
            .hero {
                padding: 100px 4% 60px;
            }

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

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .floating-icons {
                opacity: 0.6;
            }
        }

        @media (max-width: 992px) {
            .hero {
                padding: 80px 4% 50px;
            }

            .hero-content {
                gap: 50px;
            }

            .hero-text h1 {
                font-size: 2.4rem;
                line-height: 1.2;
            }

            .voice-demo {
                padding: 25px;
            }

            .demo-controls {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 100vh;
                padding: 70px 5% 40px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hero-text h1 br {
                display: none;
            }

            .subtitle {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .primary-btn, .secondary-btn {
                width: 100%;
                padding: 15px 20px;
                font-size: 1rem;
            }

            .trust-badges {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .voice-demo {
                padding: 20px;
            }

            .demo-input {
                min-height: 80px;
                font-size: 14px;
            }

            .speak-button {
                padding: 12px;
                font-size: 1rem;
            }

            .hero-orbs {
                display: none;
            }

            .hero-grid {
                opacity: 0.1;
            }

            .floating-icons {
                opacity: 0.3;
            }

            .floating-icon {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 4% 30px;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .ai-power-indicator {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .voice-visualization {
                flex-direction: column;
                gap: 15px;
            }

            .voice-circle {
                width: 80px;
                height: 80px;
            }

            .voice-icon {
                font-size: 1.5rem;
            }

            .trust-badges .badge {
                padding: 10px 12px;
                font-size: 0.8rem;
            }

            .voice-demo {
                padding: 15px;
            }

            .demo-header h3 {
                font-size: 1.2rem;
            }

            .live-indicator {
                font-size: 0.7rem;
            }

            .demo-input {
                min-height: 70px;
                padding: 12px;
                font-size: 13px;
            }

            .demo-controls {
                gap: 10px;
            }

            .demo-select {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

            .speak-button {
                padding: 12px;
                font-size: 0.95rem;
                gap: 8px;
            }

            .waveform {
                height: 50px;
            }

            .wave-bar {
                width: 3px !important;
            }
        }

        @media (max-width: 360px) {
            .hero {
                padding: 50px 3% 20px;
            }

            .hero-text h1 {
                font-size: 1.6rem;
            }

            .voice-circle {
                width: 70px;
                height: 70px;
            }

            .voice-icon {
                font-size: 1.3rem;
            }

            .demo-select {
                padding: 8px 10px;
                font-size: 0.85rem;
            }

            .speak-button {
                padding: 10px;
                font-size: 0.9rem;
            }
        }

        .demo-controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .control-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .control-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--light);
            opacity: 0.9;
        }

        .demo-select {
            padding: 12px 15px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 40px;
        }

        .demo-select:hover {
            border-color: var(--primary);
            background-color: rgba(0, 0, 0, 0.5);
        }

        .demo-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(39, 174, 95, 0.1);
        }

        .demo-select option {
            background: #1a1a1a;
            color: white;
            padding: 10px;
        }

        .speak-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .speak-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(39, 174, 95, 0.4);
        }

        .waveform {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            margin-top: 20px;
        }

        .wave-bar {
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
        }

        .wave-bar:nth-child(2) { animation-delay: 0.1s; }
        .wave-bar:nth-child(3) { animation-delay: 0.2s; }
        .wave-bar:nth-child(4) { animation-delay: 0.3s; }
        .wave-bar:nth-child(5) { animation-delay: 0.4s; }

        @keyframes wave {
            0%, 100% { height: 20px; }
            50% { height: 40px; }
        }

        /* Value Props Section */
        .value-props {
            padding: 100px 5%;
            background: linear-gradient(180deg, transparent, rgba(39, 174, 95, 0.05), transparent);
        }

        .value-props-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #94A3B8;
        }

        .props-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .prop-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .prop-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .prop-card:hover::before {
            transform: translateX(0);
        }

        .prop-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            background: rgba(39, 174, 95, 0.05);
        }

        .prop-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .prop-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .prop-metric {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .prop-description {
            color: #94A3B8;
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            padding: 100px 5%;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.1), rgba(39, 174, 95, 0.05));
            opacity: 0;
            transition: all 0.5s ease;
            border-radius: 20px;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            transform: scale(1.05) translateY(-10px);
            border-color: var(--primary);
            background: rgba(39, 174, 95, 0.05);
            box-shadow: 0 20px 40px rgba(39, 174, 95, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-description {
            color: #94A3B8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 8px 0;
            color: #CBD5E1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
        }

        /* Success Story Section */
        .success-story {
            padding: 100px 5%;
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.05), rgba(30, 142, 79, 0.05));
        }

        .story-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            padding: 60px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .story-container::before {
            content: '"';
            position: absolute;
            top: -50px;
            left: 30px;
            font-size: 200px;
            color: var(--primary);
            opacity: 0.1;
        }

        .story-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .story-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .story-badge {
            padding: 10px 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50px;
            font-weight: 600;
        }

        .story-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .metric {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .metric:hover {
            transform: translateY(-5px);
            background: rgba(39, 174, 95, 0.1);
        }

        .metric-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .metric-label {
            color: #94A3B8;
            margin-top: 10px;
        }

        /* Industry Solutions Section */
        .industry-solutions {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--darker) 0%, #1a1f2e 50%, var(--darker) 100%);
            position: relative;
            overflow: hidden;
        }

        .industry-solutions::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(39, 174, 95, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .industry-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .industry-card {
            background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .industry-card:hover::before {
            transform: scaleX(1);
        }

        .industry-card:hover {
            transform: translateY(-10px);
            border-color: rgba(39, 174, 95, 0.3);
            box-shadow: 0 25px 80px rgba(39, 174, 95, 0.2);
        }

        .industry-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 35px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .industry-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translate(-50%, -50%) rotate(45deg);
            animation: shine 3s ease-in-out infinite;
        }

        .industry-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 15px;
        }

        .industry-card h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .industry-card h3 a:hover {
            color: var(--primary);
        }

        .industry-card p {
            color: #94A3B8;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .industry-features {
            list-style: none;
            padding: 0;
            margin: 25px 0;
            text-align: left;
        }

        .industry-features li {
            color: #CBD5E1;
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }

        .industry-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .industry-cta {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .industry-cta-top {
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
            border: 1px solid rgba(39, 174, 95, 0.3);
            border-radius: 20px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .industry-cta-top .cta-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 10px;
        }

        .industry-cta-top .cta-content p {
            color: #94A3B8;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .cta-button-primary {
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button-primary:hover::before {
            left: 100%;
        }

        .cta-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(39, 174, 95, 0.4);
        }

        /* Industry-Specific CTA Section */
        .industry-specific-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.05) 0%, 
                rgba(52, 211, 153, 0.05) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .industry-cta-content h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .industry-cta-content p {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-buttons-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .cta-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .pricing-note {
            color: var(--light);
            font-size: 14px;
        }

        .pricing-note a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .pricing-note a:hover {
            text-decoration: underline;
        }

        .demo-note {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--light);
            font-size: 14px;
            opacity: 0.8;
        }

        .demo-note i {
            color: var(--primary);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .industry-specific-cta {
                padding: 60px 0;
            }

            .industry-cta-content h3 {
                font-size: 2rem;
            }

            .cta-buttons-group {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons-group .cta-primary-button,
            .cta-buttons-group .cta-secondary-button {
                width: 100%;
                max-width: 300px;
            }

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

        /* Performance optimizations */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Reduce animations on mobile for better performance */
        @media (max-width: 768px) {
            .floating-shape {
                animation-duration: 40s;
            }
            
            .feature-item:hover {
                transform: none;
            }
            
            .cta-primary-button:hover {
                transform: translateY(-1px);
            }
            
            .industry-hero-stats .stat-item:hover {
                transform: none;
            }
            
            .industry-hero-features {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .feature-item {
                padding: 14px 16px;
                font-size: 14px;
            }
        }

        /* New Industry Hero Section */
        .industry-hero {
            min-height: 100vh;
            padding: 120px 5% 80px;
            background: linear-gradient(135deg, var(--darker) 0%, rgba(30, 41, 59, 0.95) 50%, var(--darker) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .industry-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(39, 174, 95, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .industry-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Left Side: Content */
        .industry-hero-content .breadcrumb {
            margin-bottom: 30px;
        }

        .industry-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.2), rgba(52, 211, 153, 0.1));
            border: 1px solid rgba(39, 174, 95, 0.3);
            padding: 8px 16px;
            border-radius: 20px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .industry-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--light);
            margin-bottom: 25px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .highlight-text {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .highlight-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            opacity: 0.6;
        }

        .industry-hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #94A3B8;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .industry-hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 30px 0 40px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--light);
            font-weight: 500;
            font-size: 15px;
            line-height: 1.4;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .feature-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(39, 174, 95, 0.3);
            color: #ffffff;
        }

        .feature-item i {
            color: var(--primary);
            font-size: 16px;
            min-width: 16px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover i {
            color: var(--secondary);
            transform: scale(1.1);
        }

        .feature-item span {
            flex: 1;
        }

        .industry-hero-stats {
            display: flex;
            gap: 25px;
            margin-top: 30px;
        }

        .industry-hero-stats .stat-item {
            text-align: left;
            position: relative;
            padding: 20px 15px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .industry-hero-stats .stat-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.08);
        }

        .industry-hero-stats .stat-number {
            display: block;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(39, 174, 95, 0.3);
            transition: all 0.3s ease;
        }

        .industry-hero-stats .stat-item:hover .stat-number {
            color: var(--accent);
            transform: scale(1.05);
            text-shadow: 0 4px 8px rgba(52, 211, 153, 0.4);
        }

        .industry-hero-stats .stat-label {
            font-size: 0.95rem;
            color: #94A3B8;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .industry-hero-stats .stat-item:hover .stat-label {
            color: #CBD5E1;
        }

        /* Right Side: CTA Card */
        .industry-hero-cta {
            position: relative;
        }

        .cta-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .cta-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(39, 174, 95, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            box-shadow: 0 2px 8px rgba(39, 174, 95, 0.4);
        }

        .cta-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(39, 174, 95, 0.03) 0%, transparent 70%);
            animation: subtle-pulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes subtle-pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }

        .cta-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 10px;
        }

        .cta-card-header p {
            color: #94A3B8;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .cta-benefits {
            margin-bottom: 30px;
        }

        .benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--light);
            font-size: 14px;
        }

        .benefit i {
            color: var(--primary);
            font-size: 16px;
            width: 16px;
        }

        .cta-form {
            margin-bottom: 30px;
        }

        .pricing-info {
            text-align: center;
            margin-bottom: 25px;
        }

        .pricing-info .price {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .pricing-info .price-detail {
            font-size: 0.9rem;
            color: #94A3B8;
        }

        .cta-primary-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 18px 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 4px 15px rgba(39, 174, 95, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            will-change: transform, box-shadow;
        }

        .cta-primary-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .cta-primary-button:hover::before {
            left: 100%;
        }

        .cta-primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 25px rgba(39, 174, 95, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .cta-primary-button i {
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cta-primary-button:hover i {
            transform: rotate(15deg);
        }

        .cta-secondary-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 12px 24px;
            background: transparent;
            color: var(--primary);
            text-decoration: none;
            border: 2px solid var(--primary);
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-secondary-button:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-1px);
        }

        .trust-indicators {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 0.8rem;
            color: #94A3B8;
        }

        .trust-item i {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 5px;
        }

        /* Background Decoration */
        .industry-hero-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.08), rgba(52, 211, 153, 0.04));
            border-radius: 50%;
            animation: float-shape 25s ease-in-out infinite;
            will-change: transform;
        }

        .shape-1 {
            width: 250px;
            height: 250px;
            top: 15%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 180px;
            height: 180px;
            bottom: 25%;
            left: 8%;
            animation-delay: -8s;
        }

        .shape-3 {
            width: 120px;
            height: 120px;
            top: 65%;
            right: 65%;
            animation-delay: -16s;
        }

        @keyframes float-shape {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .industry-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            
            .industry-hero-cta {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .industry-hero {
                padding: 100px 5% 60px;
                min-height: auto;
            }

            .industry-hero-title {
                font-size: 2.5rem;
            }

            .industry-hero-subtitle {
                font-size: 1.1rem;
            }

            .industry-hero-stats {
                justify-content: center;
                gap: 30px;
            }

            .cta-card {
                padding: 30px 25px;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 15px;
            }

            .trust-item {
                flex-direction: row;
                justify-content: center;
                gap: 8px;
            }
        }

        /* Explore Industries Section */
        .explore-industries {
            padding: 80px 5%;
            background: linear-gradient(180deg, transparent, rgba(39, 174, 95, 0.02), transparent);
            position: relative;
            overflow: hidden;
        }

        .explore-industries::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(39, 174, 95, 0.03) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .explore-industries .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .explore-industries .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .explore-industries .section-subtitle {
            text-align: center;
            color: #94A3B8;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .industry-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(39, 174, 95, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .industry-card:hover::before {
            left: 100%;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            border-color: rgba(39, 174, 95, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .industry-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .industry-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 15px;
        }

        .industry-card p {
            color: #94A3B8;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .industry-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 30px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .industry-stats .stat {
            text-align: center;
        }

        .industry-stats .number {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .industry-stats .label {
            font-size: 0.9rem;
            color: #94A3B8;
        }

        .industry-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            padding: 12px 25px;
            border: 2px solid var(--primary);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .industry-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .view-all-industries {
            text-align: center;
        }

        .view-all-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 15px 35px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .view-all-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(39, 174, 95, 0.4);
        }

        @media (max-width: 768px) {
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .industry-card {
                padding: 30px 20px;
            }

            .explore-industries .section-title {
                font-size: 2rem;
            }

            .industry-stats {
                flex-direction: column;
                gap: 15px;
            }
        }

        .success-rate {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
        }

        .industry-bottom-cta {
            text-align: center;
            margin-top: 80px;
            padding: 50px;
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(39, 174, 95, 0.2);
        }

        .industry-bottom-cta h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 15px;
        }

        .industry-bottom-cta p {
            color: #94A3B8;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @keyframes shine {
            0%, 100% { transform: translate(-50%, -50%) rotate(45deg) translateX(-100%); }
            50% { transform: translate(-50%, -50%) rotate(45deg) translateX(100%); }
        }

        /* Partners Section */
        .partners {
            padding: 100px 5%;
            background: linear-gradient(180deg, transparent, rgba(39, 174, 95, 0.02), transparent);
            position: relative;
            overflow: hidden;
        }

        .partners::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, rgba(39, 174, 95, 0.05) 0%, transparent 60%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

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

        .partners-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .partners-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .partners-subtitle {
            font-size: 1.3rem;
            color: #94A3B8;
        }

        /* Premium Partner Badges */
        .premium-partners {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .premium-partners .partner-card:first-child {
            grid-column: 1 / -1; /* Explicit: spans from column 1 to column 4 (all 3 columns) */
            grid-row: 1;
            height: 280px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
        }

        .premium-partners .partner-card:not(:first-child) {
            grid-row: 2;
        }

        .partner-card {
            height: 250px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
            border: 2px solid transparent;
            background-clip: padding-box;
            border-radius: 30px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .partner-card:hover::before {
            opacity: 1;
        }

        .partner-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.7s ease;
        }

        .partner-card:hover::after {
            top: -100%;
            left: -100%;
        }

        .partner-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 30px 60px rgba(99, 102, 241, 0.4);
        }

        .premium-partners .partner-card:first-child .partner-logo {
            width: 100px;
            height: 100px;
            font-size: 4rem;
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            z-index: 2;
        }

        .premium-partners .partner-card:first-child .partner-name {
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .partner-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }

        .premium-partners .partner-card:first-child .partner-status {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 600;
        }

        .partner-status {
            font-size: 0.9rem;
            color: #94A3B8;
            position: relative;
            z-index: 2;
        }

        .partner-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Stats Counter */
        .partner-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 80px;
            padding: 50px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.6));
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .partner-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            animation: shimmer 3s linear infinite;
        }

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

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            color: #CBD5E1;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Logo Particles Effect */
        .logo-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .particle-bubble {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            animation: floatBubble 4s ease-in-out infinite;
        }

        .particle-bubble:nth-child(1) {
            width: 4px;
            height: 4px;
            background: var(--opengraphy-green);
            left: 20%;
            animation-delay: 0s;
        }

        .particle-bubble:nth-child(2) {
            width: 3px;
            height: 3px;
            background: var(--opengraphy-dark);
            left: 50%;
            animation-delay: 1s;
        }

        .particle-bubble:nth-child(3) {
            width: 5px;
            height: 5px;
            background: var(--opengraphy-green);
            left: 80%;
            animation-delay: 2s;
            opacity: 0.6;
        }

        .particle-bubble:nth-child(4) {
            width: 3px;
            height: 3px;
            background: var(--opengraphy-dark);
            left: 35%;
            animation-delay: 3s;
            opacity: 0.8;
        }

        @keyframes floatBubble {
            0% {
                transform: translateY(100%) scale(0);
                opacity: 0;
            }
            20% {
                transform: translateY(80%) scale(1);
                opacity: 0.8;
            }
            80% {
                transform: translateY(20%) scale(1);
                opacity: 0.8;
            }
            100% {
                transform: translateY(0%) scale(0);
                opacity: 0;
            }
        }

        .logo:hover .particle-bubble {
            animation-duration: 2s;
        }

        /* Enhanced logo pulse on page load */
        @keyframes logoIntro {
            0% {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.1) rotate(10deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        .logo-animation {
            animation: logoIntro 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            filter: drop-shadow(0 0 10px rgba(39, 174, 95, 0.3));
            transition: filter 0.3s ease;
        }

        .logo-animation:hover {
            filter: drop-shadow(0 0 20px rgba(39, 174, 95, 0.5));
        }

        /* Industry Solutions Responsive Styles */
        @media (max-width: 1200px) {
            .industries-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
            }
            
            .industry-container {
                padding: 0 30px;
            }
        }

        @media (max-width: 900px) {
            .industry-solutions {
                padding: 80px 0;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 60px;
            }
            
            .industry-container {
                padding: 0 20px;
            }
            
            .industry-card {
                padding: 30px 25px;
            }
            
            .industry-icon {
                width: 70px;
                height: 70px;
                font-size: 30px;
                margin-bottom: 20px;
            }
            
            .industry-card h3 {
                font-size: 20px;
            }
            
            .industry-bottom-cta {
                margin-top: 60px;
                padding: 40px 25px;
            }
            
            .industry-bottom-cta h3 {
                font-size: 26px;
            }
            
            .industry-bottom-cta p {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .industry-solutions {
                padding: 60px 0;
            }
            
            .industries-grid {
                margin-top: 40px;
            }
            
            .industry-card {
                padding: 25px 20px;
            }
            
            .industry-icon {
                width: 60px;
                height: 60px;
                font-size: 25px;
            }
            
            .industry-bottom-cta {
                margin-top: 50px;
                padding: 30px 20px;
            }
            
            .industry-bottom-cta h3 {
                font-size: 22px;
            }
            
            .industry-bottom-cta p {
                font-size: 15px;
            }
        }

        /* DCroch Section */
        .dcroch-section {
            padding: 100px 5%;
            background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
            display: block !important; /* Force display */
            visibility: visible !important; /* Force visibility */
        }

        .dcroch-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .dcroch-visual {
            position: relative;
        }

        .phone-mockup {
            width: 320px;
            height: 640px;
            background: linear-gradient(135deg, #1E293B, #0F172A);
            border: 3px solid var(--glass-border);
            border-radius: 40px;
            padding: 20px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .call-animation {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            animation: pulse 2s infinite;
        }

        .call-animation::before,
        .call-animation::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary);
            animation: ripple 2s infinite;
        }

        .call-animation::after {
            animation-delay: 0.5s;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .phone-status {
            margin-top: 30px;
            text-align: center;
        }

        .status-text {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 10px;
        }

        .status-subtitle {
            color: #94A3B8;
        }

        .tech-badges {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            pointer-events: none;
        }

        .tech-badge {
            position: absolute;
            padding: 10px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: float-badge 15s infinite;
        }

        .tech-badge:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .tech-badge:nth-child(2) {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 5s;
        }

        .tech-badge:nth-child(3) {
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            animation-delay: 10s;
        }

        .tech-badge:nth-child(4) {
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            animation-delay: 7.5s;
        }

        @keyframes float-badge {
            0%, 100% {
                opacity: 0;
                transform: scale(0.8) translateY(10px);
            }
            50% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .dcroch-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dcroch-subtitle {
            font-size: 1.3rem;
            color: #94A3B8;
            margin-bottom: 40px;
        }

        .tech-stack {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .tech-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .tech-logo {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 5px;
        }

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

        .features-list li {
            padding: 15px 0;
            color: #CBD5E1;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .features-list li::before {
            content: '✓';
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .dcroch-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .dcroch-metric {
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .dcroch-metric:hover {
            transform: translateY(-5px);
            background: rgba(39, 174, 95, 0.1);
            border-color: var(--primary);
        }

        .dcroch-metric-value {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dcroch-metric-label {
            color: #94A3B8;
            margin-top: 5px;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--darker), #000);
            padding: 80px 5% 40px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: #94A3B8;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .partner-badges {
            display: flex;
            gap: 15px;
        }

        .partner-badge {
            padding: 8px 16px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            color: #CBD5E1;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .partner-badge:hover {
            background: rgba(39, 174, 95, 0.1);
            border-color: var(--primary);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--light);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

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

        .footer-copy {
            color: #64748B;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94A3B8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Contact Form Section */
        .contact-section {
            padding: 100px 5%;
            background: linear-gradient(180deg, transparent, rgba(39, 174, 95, 0.03), transparent);
            position: relative;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-info {
            padding: 40px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(39, 174, 95, 0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
        }

        .contact-info p {
            color: #94A3B8;
            line-height: 1.8;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .contact-details {
            position: relative;
            z-index: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(39, 174, 95, 0.1);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            color: var(--light);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-text p {
            color: #CBD5E1;
            margin: 0;
        }

        .contact-text a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--accent);
        }

        .contact-form {
            padding: 40px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
            border: 2px solid transparent;
            background-clip: padding-box;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--light);
            position: relative;
            z-index: 1;
        }

        .form-grid {
            display: grid;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-label {
            color: #94A3B8;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-input,
        .form-select,
        .form-textarea {
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
            width: 100%;
            box-sizing: border-box;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(39, 174, 95, 0.2);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #64748B;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 9L2 5h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        .form-select option {
            background: var(--dark);
            color: white;
        }

        .form-submit {
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
            width: 100%;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .form-submit:hover::before {
            width: 400px;
            height: 400px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(39, 174, 95, 0.4);
        }

        .form-disclaimer {
            margin-top: 20px;
            color: #64748B;
            font-size: 0.85rem;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        .form-disclaimer a {
            color: var(--primary);
            text-decoration: none;
        }

        .form-disclaimer a:hover {
            text-decoration: underline;
        }

        /* Mobile responsive for contact form */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 5%;
            }

            .contact-info {
                padding: 30px 20px;
            }

            .contact-info h2 {
                font-size: 1.8rem;
            }

            .contact-item {
                padding: 15px;
                gap: 15px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .contact-text h4 {
                font-size: 1rem;
            }

            .contact-text p {
                font-size: 0.9rem;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .form-input,
            .form-select,
            .form-textarea {
                padding: 12px;
                font-size: 16px; /* Prevents zoom on iOS */
            }

            .form-submit {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .form-disclaimer {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .contact-info h2 {
                font-size: 1.5rem;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .form-title {
                font-size: 1.3rem;
            }
        }

        /* Footer CTA */
        .footer-cta {
            padding: 100px 5%;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: #94A3B8;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

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

            .story-container {
                padding: 30px;
            }

            .dcroch-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dcroch-visual {
                order: 2;
            }

            .dcroch-content {
                order: 1;
            }

            .phone-mockup {
                width: 280px;
                height: 560px;
            }

            .tech-badges {
                display: none;
            }

            .dcroch-metrics {
                grid-template-columns: 1fr;
            }

            .premium-partners {
                grid-template-columns: 1fr;
            }

            .premium-partners .partner-card:first-child {
                grid-column: 1;
            }

            .premium-partners .partner-card:not(:first-child) {
                grid-row: auto;
            }

            .partner-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 30px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-info {
                padding: 30px;
            }

            .contact-form {
                padding: 30px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .tech-stack {
                flex-wrap: wrap;
            }
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
            animation: autoHideLoader 4s forwards; /* Auto-hide fallback */
        }

        @keyframes autoHideLoader {
            0%, 80% { 
                opacity: 1; 
                visibility: visible;
            }
            90%, 100% { 
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 100px;
            height: 100px;
            position: relative;
            margin: 0 auto 30px;
        }

        .loader-logo-svg {
            width: 100%;
            height: 100%;
            animation: rotate 3s linear infinite;
        }

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

        .loader-text {
            font-size: 1.2rem;
            color: #94A3B8;
            animation: fadeInOut 2s ease infinite;
        }

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

        /* ========================================
           WOW EFFECTS & VOICE WAVE ANIMATIONS
        ======================================== */

        /* Voice Wave Background */
        .voice-wave-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.1;
            z-index: 1;
            overflow: hidden;
        }

        .wave-container {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 200px;
            transform: scale(2);
        }

        .wave-bar {
            width: 6px;
            background: linear-gradient(to top, var(--primary), var(--accent));
            border-radius: 3px;
            animation: waveAnimation 2s ease-in-out infinite;
            animation-delay: var(--delay);
            height: var(--height);
            min-height: 20px;
            box-shadow: 0 0 10px rgba(39, 174, 95, 0.5);
        }

        @keyframes waveAnimation {
            0%, 100% { 
                transform: scaleY(0.3);
                opacity: 0.7;
            }
            50% { 
                transform: scaleY(1);
                opacity: 1;
            }
        }

        /* Floating Icons */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            left: var(--x);
            top: var(--y);
            animation: floatIcon 6s ease-in-out infinite;
            animation-delay: var(--delay);
            opacity: 0.6;
            color: var(--primary);
            filter: drop-shadow(0 0 10px rgba(39, 174, 95, 0.5));
            transition: all 0.3s ease;
        }

        .floating-icon i {
            display: block;
            transition: transform 0.3s ease;
        }

        .floating-icon:hover {
            opacity: 1;
            transform: scale(1.2);
            color: var(--accent);
            filter: drop-shadow(0 0 20px rgba(39, 174, 95, 0.8));
        }

        .floating-icon:hover i {
            transform: rotate(15deg);
        }

        @keyframes floatIcon {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 0.6;
            }
            25% { 
                transform: translateY(-20px) rotate(5deg);
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-10px) rotate(-5deg);
                opacity: 1;
            }
            75% { 
                transform: translateY(-30px) rotate(3deg);
                opacity: 0.7;
            }
        }

        /* AI Power Indicator */
        .ai-power-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 8px 16px;
            background: rgba(39, 174, 95, 0.1);
            border: 1px solid rgba(39, 174, 95, 0.3);
            border-radius: 25px;
            width: fit-content;
            backdrop-filter: blur(10px);
        }

        .power-pulse {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: powerPulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 10px var(--primary);
        }

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

        @keyframes powerPulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 1;
            }
            50% { 
                transform: scale(1.5);
                opacity: 0.7;
            }
        }

        /* Enhanced Text Effects */
        .wow-text {
            display: inline-block;
            animation: textWowIn 1s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .wow-text:nth-child(2) {
            animation-delay: 0.3s;
        }

        .highlight-text {
            position: relative;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textWowIn {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes textGlow {
            0% {
                filter: drop-shadow(0 0 5px rgba(39, 174, 95, 0.5));
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(39, 174, 95, 0.8));
            }
        }

        /* Voice Visualization */
        .voice-visualization {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 20px 0;
            padding: 15px;
            background: rgba(39, 174, 95, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(39, 174, 95, 0.2);
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        .voice-circle {
            position: relative;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .voice-circle.active .voice-ripple {
            animation: voiceRipple 2s ease-out infinite;
        }

        .voice-ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .voice-ripple:nth-child(2) {
            animation-delay: 0.7s;
        }

        .voice-ripple:nth-child(3) {
            animation-delay: 1.4s;
        }

        @keyframes voiceRipple {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }

        .voice-icon {
            position: relative;
            z-index: 2;
            font-size: 1.5rem;
            color: white;
            animation: voiceIconBounce 1.5s ease-in-out infinite;
        }

        .voice-icon i {
            display: block;
        }

        @keyframes voiceIconBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .voice-status {
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: statusBlink 1s ease-in-out infinite;
            flex-shrink: 0;
            margin-top: 1px; /* Fine adjustment for perfect alignment */
        }

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

        .status-text {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
            display: flex;
            align-items: center;
        }

        /* Fade up animation for subtitle */
        .wow-fade-up {
            animation: fadeUpWow 1s ease-out 0.8s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

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

        /* Enhanced button hover effects */
        .hero-buttons .primary-btn,
        .hero-buttons .secondary-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .hero-buttons .primary-btn::before,
        .hero-buttons .secondary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .hero-buttons .primary-btn:hover::before,
        .hero-buttons .secondary-btn:hover::before {
            left: 100%;
        }

        .hero-buttons .primary-btn:hover,
        .hero-buttons .secondary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(39, 174, 95, 0.3);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .wave-container {
                transform: scale(1);
                height: 150px;
            }
            
            .floating-icon {
                font-size: 1.5rem;
            }
            
            .voice-visualization {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .ai-power-indicator {
                margin: 0 auto 15px;
            }
        }

        /* ========================================
           PREMIUM BADGES & CERTIFICATIONS
        ======================================== */

        /* Premium Partner Badges */
        .partner-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 30px 0;
        }

        .premium-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: linear-gradient(135deg, rgba(39, 174, 95, 0.1), rgba(52, 211, 153, 0.05));
            border: 1px solid rgba(39, 174, 95, 0.2);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .premium-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .premium-badge:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(39, 174, 95, 0.2);
        }

        .premium-badge:hover::before {
            left: 100%;
        }

        .badge-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .badge-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .badge-title {
            font-weight: 700;
            color: var(--light);
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

        .badge-subtitle {
            font-size: 0.8rem;
            color: rgba(248, 250, 252, 0.7);
            font-weight: 500;
        }

        .badge-status {
            color: var(--primary);
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Certifications Section */
        .certifications-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(39, 174, 95, 0.2);
        }

        .cert-title {
            color: var(--light);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        .cert-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 1px;
        }

        .certification-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cert-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .cert-badge:hover {
            background: rgba(39, 174, 95, 0.08);
            border-color: rgba(39, 174, 95, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(39, 174, 95, 0.15);
        }

        .cert-badge:hover::before {
            transform: scaleY(1);
        }

        .cert-logo {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .cert-text {
            display: flex;
            flex-direction: column;
        }

        .cert-text span {
            font-weight: 600;
            color: var(--light);
            font-size: 0.9rem;
            line-height: 1.3;
        }

        .cert-text small {
            font-size: 0.75rem;
            color: rgba(248, 250, 252, 0.6);
            font-weight: 500;
            margin-top: 2px;
        }

        /* Animation for badges on scroll */
        .premium-badge,
        .cert-badge {
            opacity: 0;
            transform: translateY(20px);
            animation: badgeSlideIn 0.6s ease-out forwards;
        }

        .premium-badge:nth-child(1) { animation-delay: 0.1s; }
        .premium-badge:nth-child(2) { animation-delay: 0.2s; }
        .premium-badge:nth-child(3) { animation-delay: 0.3s; }
        .premium-badge:nth-child(4) { animation-delay: 0.4s; }
        .premium-badge:nth-child(5) { animation-delay: 0.5s; }
        .premium-badge:nth-child(6) { animation-delay: 0.6s; }

        .cert-badge:nth-child(1) { animation-delay: 0.7s; }
        .cert-badge:nth-child(2) { animation-delay: 0.8s; }
        .cert-badge:nth-child(3) { animation-delay: 0.9s; }
        .cert-badge:nth-child(4) { animation-delay: 1.0s; }
        .cert-badge:nth-child(5) { animation-delay: 1.1s; }

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

        /* Mobile responsiveness for badges */
        @media (max-width: 768px) {
            .partner-badges {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .certification-badges {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                max-width: 100%;
            }
            
            .premium-badge {
                padding: 12px 15px;
            }
            
            .cert-badge {
                padding: 14px 16px;
            }
            
            .badge-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .cert-logo {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .partner-badges {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .certification-badges {
                grid-template-columns: repeat(3, 1fr);
                max-width: 700px;
            }
        }

        @media (max-width: 480px) {
            .partner-badges {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .certification-badges {
                grid-template-columns: 1fr;
            }
            
            .cert-badge {
                padding: 12px 14px;
            }
            
            .cert-text span {
                font-size: 0.85rem;
            }
            
            .cert-text small {
                font-size: 0.7rem;
            }
        }

        /* Voicebot Test Section */
        .voicebot-test {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--darker) 0%, #1a202c  50%, var(--darker) 100%);
            position: relative;
            overflow: hidden;
        }

        .voicebot-test .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .voicebot-test::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(39, 174, 95, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .voicebot-demo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        /* Voicebot Test Responsive Styles */
        @media (max-width: 1200px) {
            .voicebot-demo {
                gap: 60px;
            }
            
            .voicebot-test .container {
                padding: 0 30px;
            }
            
            .avatar-circle {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                font-size: 80px;
            }
            
            .pulse-ring {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 900px) {
            .voicebot-test {
                padding: 80px 0;
            }
            
            .voicebot-demo {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            
            .demo-visual {
                order: 1;
            }
            
            .demo-controls {
                order: 2;
                padding: 40px 30px;
            }
            
            .avatar-circle {
                width: 180px;
                height: 180px;
                border-radius: 50%;
                font-size: 70px;
            }
            
            .pulse-ring {
                width: 180px;
                height: 180px;
            }
            
            .demo-features {
                margin-top: 30px;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .voicebot-test {
                padding: 60px 0;
            }
            
            .voicebot-test .container {
                padding: 0 20px;
            }
            
            .voicebot-demo {
                gap: 40px;
                margin-top: 40px;
            }
            
            .demo-controls {
                padding: 30px 20px;
            }
            
            .avatar-circle {
                width: 150px;
                height: 150px;
                border-radius: 50%;
                font-size: 60px;
            }
            
            .pulse-ring {
                width: 150px;
                height: 150px;
            }
            
            .agent-info h3 {
                font-size: 1.5rem;
            }
            
            .agent-info p {
                font-size: 1rem;
            }
            
            .button-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .demo-btn {
                width: 100%;
                min-width: auto;
                padding: 15px 20px;
                font-size: 16px;
            }
            
            .agent-select {
                padding: 15px 20px;
                font-size: 16px;
            }
            
            .status-display {
                padding: 15px 20px;
                font-size: 14px;
            }
            
            .demo-instructions {
                padding: 15px;
            }
            
            .demo-benefits h3 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .benefit-item {
                padding: 25px 15px;
            }
            
            .benefit-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin: 0 auto 15px;
            }
        }

        @media (max-width: 480px) {
            .voicebot-test .container {
                padding: 0 15px;
            }
            
            .demo-controls {
                padding: 25px 15px;
            }
            
            .avatar-circle {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                font-size: 50px;
            }
            
            .pulse-ring {
                width: 120px;
                height: 120px;
            }
            
            .agent-info h3 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            
            .agent-info p {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }
            
            .demo-instructions h4 {
                font-size: 1rem;
            }
            
            .demo-instructions li {
                font-size: 0.9rem;
            }
            
            .demo-benefits h3 {
                font-size: 1.5rem;
            }
            
            .benefit-item h4 {
                font-size: 1rem;
            }
            
            .benefit-item p {
                font-size: 0.85rem;
            }
        }

        .demo-visual {
            text-align: center;
            position: relative;
        }

        .voice-avatar {
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
        }

        .avatar-circle {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: white;
            position: relative;
            box-shadow: 0 25px 80px rgba(39, 174, 95, 0.4);
            animation: avatarPulse 3s ease-in-out infinite;
            /* Force perfect circle */
            aspect-ratio: 1 / 1;
            flex-shrink: 0;
            overflow: hidden;
        }

        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            opacity: 0;
            animation: pulseRing 2s ease-out infinite;
        }

        .pulse-ring.delay-1 {
            animation-delay: 0.5s;
        }

        .pulse-ring.delay-2 {
            animation-delay: 1s;
        }

        .voice-waves {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .wave {
            width: 4px;
            height: 40px;
            background: var(--primary);
            border-radius: 2px;
            animation: waveAnimation 1.5s ease-in-out infinite;
        }

        .wave:nth-child(2) { animation-delay: 0.2s; }
        .wave:nth-child(3) { animation-delay: 0.4s; }
        .wave:nth-child(4) { animation-delay: 0.6s; }

        .demo-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .feature-item i {
            color: var(--primary);
            font-size: 20px;
            width: 24px;
            text-align: center;
        }

        .demo-controls {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
        }

        .agent-info h3 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .agent-info p {
            color: #CBD5E1;
            line-height: 1.7;
            margin-bottom: 35px;
            font-size: 1.1rem;
        }

        .control-panel {
            margin-top: 30px;
        }

        .agent-select {
            width: 100%;
            padding: 18px 25px;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            background: var(--darker);
            color: var(--light);
            font-size: 18px;
            margin-bottom: 25px;
            outline: none;
            transition: all 0.3s ease;
        }

        .agent-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(39, 174, 95, 0.1);
        }

        .button-group {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            justify-content: center;
            align-items: center;
        }

        .demo-btn {
            min-width: 180px;
            padding: 18px 30px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .start-btn {
            background: var(--primary);
            color: white;
        }

        .start-btn:hover:not(:disabled) {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .stop-btn {
            background: #EF4444;
            color: white;
        }

        .stop-btn:hover:not(:disabled) {
            background: #DC2626;
            transform: translateY(-2px);
        }

        .demo-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        .status-display {
            padding: 18px 25px;
            background: var(--darker);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: var(--accent);
            font-weight: 500;
            text-align: center;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .demo-instructions {
            background: rgba(39, 174, 95, 0.1);
            border: 1px solid var(--primary);
            border-radius: 10px;
            padding: 20px;
        }

        .demo-instructions h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .demo-instructions ol {
            color: #CBD5E1;
            padding-left: 20px;
        }

        .demo-instructions li {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .demo-benefits {
            margin-top: 80px;
            text-align: center;
        }

        .demo-benefits h3 {
            font-size: 2.2rem;
            color: var(--light);
            margin-bottom: 50px;
            font-weight: 600;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-item {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(39, 174, 95, 0.2);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: white;
        }

        .benefit-item h4 {
            color: var(--light);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .benefit-item p {
            color: #94A3B8;
            line-height: 1.6;
        }

        /* Animations */
        @keyframes avatarPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes pulseRing {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            50% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.4);
            }
        }

        @keyframes waveAnimation {
            0%, 100% { height: 20px; }
            50% { height: 60px; }
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .voicebot-demo {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 1200px) and (min-width: 901px) {
            .voicebot-demo {
                gap: 40px;
            }
            
            .avatar-circle {
                width: 180px;
                height: 180px;
                border-radius: 50%;
                font-size: 70px;
            }
            
            .pulse-ring {
                width: 180px;
                height: 180px;
            }
            
            .demo-controls {
                padding: 35px;
            }
        }

        @media (max-width: 900px) {
            .voicebot-demo {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .voicebot-test .container {
                padding: 0 30px;
            }
            
            .avatar-circle {
                width: 150px;
                height: 150px;
                border-radius: 50%;
                font-size: 60px;
            }
            
            .pulse-ring {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .voicebot-test {
                padding: 60px 0;
            }
            
            .voicebot-test .container {
                padding: 0 20px;
            }
            
            .demo-controls {
                padding: 30px 20px;
            }
            
            .button-group {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .demo-btn {
                width: 100%;
                max-width: 300px;
                min-width: auto;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* ===== CREATE AGENT SECTION - ENHANCED ===== */
        .create-agent-section {
            padding: 120px 5% 140px;
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.08) 0%, 
                rgba(15, 23, 42, 0.98) 15%, 
                rgba(30, 41, 59, 0.95) 50%,
                rgba(15, 23, 42, 0.98) 85%,
                rgba(39, 174, 95, 0.08) 100%);
            position: relative;
            overflow: hidden;
        }

        .create-agent-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -20%;
            right: -20%;
            bottom: -20%;
            width: 140%;
            height: 140%;
            background: 
                radial-gradient(circle at 25% 20%, rgba(39, 174, 95, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 75% 80%, rgba(52, 211, 153, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(30, 142, 79, 0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: backgroundShift 20s ease-in-out infinite;
            transform-origin: center center;
        }

        @keyframes backgroundShift {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            33% { opacity: 0.9; transform: scale(1.05) rotate(120deg); }
            66% { opacity: 0.8; transform: scale(1.1) rotate(240deg); }
        }

        .create-agent-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* CTA Spotlight Section - Enhanced */
        .cta-spotlight {
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.15) 0%, 
                rgba(52, 211, 153, 0.1) 50%, 
                rgba(39, 174, 95, 0.05) 100%);
            border: 2px solid rgba(39, 174, 95, 0.3);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 20px 60px rgba(39, 174, 95, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .cta-spotlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(39, 174, 95, 0.1) 25%, 
                transparent 50%, 
                rgba(52, 211, 153, 0.1) 75%, 
                transparent 100%);
            animation: spotlightScan 8s linear infinite;
        }

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

        .spotlight-content {
            position: relative;
            z-index: 2;
        }

        .spotlight-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            animation: spotlightBadgePulse 2s ease-in-out infinite;
        }

        @keyframes spotlightBadgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .spotlight-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
            background: linear-gradient(135deg, #FFFFFF, #27AE5F, #34D399);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .spotlight-subtitle {
            font-size: 1.1rem;
            color: #CBD5E1;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .spotlight-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(39, 174, 95, 0.2);
            border-radius: 16px;
            min-width: 100px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(39, 174, 95, 0.1);
            border-color: rgba(39, 174, 95, 0.4);
            box-shadow: 0 10px 30px rgba(39, 174, 95, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #94A3B8;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .agent-creation-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            margin: 0 auto 30px;
            width: fit-content;
            box-shadow: 0 8px 32px rgba(39, 174, 95, 0.3);
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(39, 174, 95, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(39, 174, 95, 0.4); }
        }

        .badge-icon {
            font-size: 16px;
            animation: rotate 3s linear infinite;
        }

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

        /* Agent Builder - Enhanced Interactive Layout */
        .agent-builder {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            margin-top: 80px;
            align-items: start;
            position: relative;
        }

        .agent-builder::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 2px;
            height: 60%;
            background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(39, 174, 95, 0.4) 20%, 
                rgba(39, 174, 95, 0.8) 50%, 
                rgba(39, 174, 95, 0.4) 80%, 
                transparent 100%);
            animation: dividerPulse 3s ease-in-out infinite;
        }

        @keyframes dividerPulse {
            0%, 100% { opacity: 0.6; height: 60%; }
            50% { opacity: 1; height: 80%; }
        }

        /* Builder Visual - Enhanced Preview */
        .builder-visual {
            position: sticky;
            top: 120px;
            z-index: 10;
        }

        /* Progress Tracker - Interactive Guide */
        .progress-tracker {
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.1) 0%, 
                rgba(52, 211, 153, 0.05) 100%);
            border: 2px solid rgba(39, 174, 95, 0.3);
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 30px;
            backdrop-filter: blur(15px);
            box-shadow: 0 15px 40px rgba(39, 174, 95, 0.15);
        }

        .tracker-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(39, 174, 95, 0.2);
        }

        .tracker-title i {
            color: var(--accent);
            font-size: 16px;
        }

        .progress-steps {
            margin-bottom: 20px;
        }

        .progress-step {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            opacity: 0.7;
            margin-bottom: 5px;
        }

        .progress-step:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .progress-step.active {
            opacity: 1;
            background: rgba(39, 174, 95, 0.15);
            margin: 0 -15px 5px -15px;
            padding: 15px 15px;
            border-radius: 12px;
            border-bottom: 1px solid rgba(39, 174, 95, 0.3);
            transform: translateX(5px);
        }

        .progress-step.completed {
            opacity: 0.9;
            background: rgba(39, 174, 95, 0.08);
            margin: 0 -10px 5px -10px;
            padding: 15px 10px;
            border-radius: 10px;
        }

        .step-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #E2E8F0;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .progress-step.active .step-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: var(--accent);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(39, 174, 95, 0.4);
        }

        .progress-step.completed .step-icon {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            transform: scale(1.05);
        }

        .step-info {
            flex: 1;
        }

        .step-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: #F8FAFC;
            margin-bottom: 3px;
            transition: all 0.3s ease;
        }

        .step-info p {
            font-size: 13px;
            color: #CBD5E1;
            margin: 0;
            transition: all 0.3s ease;
        }

        .progress-step.active .step-info h4 {
            color: white;
            font-weight: 700;
        }

        .progress-step.active .step-info p {
            color: #E2E8F0;
        }

        .step-status {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: transparent;
            transition: all 0.3s ease;
        }

        .progress-step.completed .step-status {
            background: var(--accent);
            color: white;
        }

        .overall-progress {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(39, 174, 95, 0.2);
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #CBD5E1;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            width: 0%;
            transition: width 0.8s ease;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            animation: progressShine 2s infinite;
        }

        @keyframes progressShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .agent-preview {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(39, 174, 95, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 100%);
            border: 2px solid rgba(39, 174, 95, 0.3);
            border-radius: 32px;
            padding: 40px;
            backdrop-filter: blur(25px);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(39, 174, 95, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .agent-preview:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
            border-color: rgba(39, 174, 95, 0.5);
            box-shadow: 
                0 30px 80px rgba(39, 174, 95, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .agent-preview::before {
            content: '';
            position: absolute;
            top: -75%;
            left: -75%;
            width: 250%;
            height: 250%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(39, 174, 95, 0.2),
                transparent,
                rgba(52, 211, 153, 0.2),
                transparent
            );
            animation: rotateGlow 6s linear infinite;
            transform-origin: center center;
        }

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

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

        .agent-avatar {
            text-align: center;
            margin-bottom: 25px;
        }

        .avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .avatar-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            position: relative;
            z-index: 3;
            box-shadow: 0 8px 32px rgba(39, 174, 95, 0.4);
        }

        /* Animations spécifiques pour la section Agent Builder */
        .agent-builder .avatar-pulse,
        .create-agent-section .avatar-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            opacity: 0.7;
            animation: avatar-pulse-animation 2s infinite;
        }

        .agent-builder .avatar-ring,
        .create-agent-section .avatar-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border: 1px solid rgba(39, 174, 95, 0.3);
            border-radius: 50%;
            opacity: 0.5;
            animation: avatar-pulse-animation 2s infinite 0.5s;
        }

        @keyframes avatar-pulse-animation {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.6;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        .avatar-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            opacity: 0.7;
            animation: pulse-ring 2s infinite;
        }

        .avatar-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border: 1px solid rgba(39, 174, 95, 0.3);
            border-radius: 50%;
            opacity: 0.5;
            animation: pulse-ring 2s infinite 0.5s;
        }

        @keyframes pulse-ring {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.6;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        .agent-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            color: var(--accent);
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

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

        .preview-content h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: white;
        }

        .preview-content p {
            color: #94A3B8;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .preview-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .feature-tag {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(39, 174, 95, 0.1);
            border: 1px solid rgba(39, 174, 95, 0.2);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--accent);
        }

        /* Builder Steps - Enhanced Navigation */
        .builder-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            background: rgba(39, 174, 95, 0.05);
            border: 1px solid rgba(39, 174, 95, 0.2);
            border-radius: 20px;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .builder-steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(39, 174, 95, 0.1) 30%, 
                rgba(52, 211, 153, 0.1) 70%, 
                transparent 100%);
            animation: stepsGlow 4s ease-in-out infinite;
        }

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

        .step-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 25px;
            border-radius: 16px;
            transition: all 0.4s ease;
            opacity: 0.6;
            position: relative;
            z-index: 2;
            cursor: pointer;
        }

        .step-item.active {
            opacity: 1;
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.2) 0%, 
                rgba(52, 211, 153, 0.1) 100%);
            border: 2px solid rgba(39, 174, 95, 0.4);
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(39, 174, 95, 0.3);
        }

        .step-item:hover:not(.active) {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        .step-number {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .step-number::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
        }

        .step-item.active .step-number {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(39, 174, 95, 0.4);
            transform: scale(1.1);
        }

        .step-item.active .step-number::before {
            width: 100%;
            height: 100%;
        }

        .step-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: white;
            transition: color 0.3s ease;
        }

        .step-content p {
            font-size: 13px;
            color: #94A3B8;
            margin: 0;
            transition: color 0.3s ease;
        }

        .step-item.active .step-content h4 {
            color: var(--accent);
        }

        .step-item.active .step-content p {
            color: #CBD5E1;
        }

        .step-connector {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(39, 174, 95, 0.4) 50%, 
                rgba(255, 255, 255, 0.2) 100%);
            margin: 0 -15px;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .step-connector::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(39, 174, 95, 0.8), 
                transparent);
            animation: connectorFlow 3s ease-in-out infinite;
        }

        @keyframes connectorFlow {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: -100%; }
        }

        /* Builder Form - Enhanced Interactive Design */
        .builder-form {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.08) 0%, 
                rgba(39, 174, 95, 0.05) 50%, 
                rgba(255, 255, 255, 0.04) 100%);
            border: 2px solid rgba(39, 174, 95, 0.2);
            border-radius: 32px;
            padding: 50px;
            backdrop-filter: blur(25px);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .builder-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--primary) 0%, 
                var(--accent) 50%, 
                var(--primary) 100%);
            background-size: 200% 100%;
            animation: formGlow 3s ease-in-out infinite;
        }

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

        .builder-form::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 32px;
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.1) 0%, 
                transparent 50%, 
                rgba(39, 174, 95, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .builder-form:hover::after {
            opacity: 1;
        }

        .form-section, .agent-form-section {
            display: none;
        }

        .form-section.active, .agent-form-section.active {
            display: block;
        }

        .form-section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 35px;
            color: white;
            padding: 20px 0;
            border-bottom: 2px solid rgba(39, 174, 95, 0.3);
            position: relative;
        }

        .form-section-title::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            animation: titleUnderline 3s ease-in-out infinite;
        }

        @keyframes titleUnderline {
            0%, 100% { width: 60px; }
            50% { width: 120px; }
        }

        .form-section-title i {
            color: var(--accent);
            font-size: 24px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(39, 174, 95, 0.3);
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
            animation: fadeInUp 0.6s ease;
        }

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

        .form-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #E2E8F0;
            transition: color 0.3s ease;
        }

        .form-label i {
            color: var(--accent);
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .premium-input, .premium-textarea, .premium-select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(30, 41, 59, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            color: white;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .premium-input:focus, .premium-textarea:focus, .premium-select:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(30, 41, 59, 0.95);
            box-shadow: 
                0 0 0 4px rgba(39, 174, 95, 0.2),
                0 8px 32px rgba(39, 174, 95, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .premium-input:hover, .premium-textarea:hover, .premium-select:hover {
            border-color: rgba(39, 174, 95, 0.4);
            transform: translateY(-1px);
        }

        .premium-textarea {
            resize: vertical;
            min-height: 120px;
            line-height: 1.7;
        }

        .input-hint {
            font-size: 13px;
            color: #64748B;
            margin-top: 8px;
            font-style: italic;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .form-group:hover .input-hint {
            opacity: 1;
            color: #94A3B8;
        }

        /* Voice Selection - Enhanced Interactive Grid */
        .voice-selection {
            margin-bottom: 40px;
            padding: 25px;
            background: rgba(39, 174, 95, 0.05);
            border: 1px solid rgba(39, 174, 95, 0.2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .voice-selection::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(39, 174, 95, 0.1), 
                transparent);
            animation: voiceSectionScan 4s ease-in-out infinite;
        }

        @keyframes voiceSectionScan {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: -100%; }
        }

        .voice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
            max-width: none;
            position: relative;
            z-index: 2;
        }

        .voice-option {
            position: relative;
            animation: voiceCardFloat 0.6s ease;
            animation-delay: calc(var(--index, 0) * 0.1s);
        }

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

        .voice-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .voice-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 22px 18px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.08) 0%, 
                rgba(39, 174, 95, 0.05) 100%);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 90px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .voice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(39, 174, 95, 0.2), 
                transparent);
            transition: left 0.6s ease;
        }

        .voice-card:hover::before {
            left: 100%;
        }

        .voice-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: rgba(39, 174, 95, 0.4);
            box-shadow: 0 15px 40px rgba(39, 174, 95, 0.2);
        }

        .voice-option input:checked + .voice-card {
            border-color: var(--accent);
            background: linear-gradient(135deg, 
                rgba(39, 174, 95, 0.2) 0%, 
                rgba(52, 211, 153, 0.1) 100%);
            box-shadow: 
                0 8px 32px rgba(39, 174, 95, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .voice-option input:checked + .voice-card::after {
            content: '✓';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
            animation: checkmarkPop 0.3s ease;
        }

        @keyframes checkmarkPop {
            0% { transform: scale(0) rotate(180deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        .voice-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(39, 174, 95, 0.3);
            transition: all 0.3s ease;
        }
        
        .voice-card:hover .voice-avatar {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(39, 174, 95, 0.4);
        }
        
        .voice-info {
            flex: 1;
            min-width: 0;
        }

        .voice-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .voice-info p {
            font-size: 13px;
            color: #94A3B8;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-style: italic;
        }

        .voice-play {
            margin-left: auto;
            width: 40px;
            height: 40px;
            background: rgba(39, 174, 95, 0.2);
            border: 2px solid rgba(39, 174, 95, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 16px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .voice-play::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--accent);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
        }

        .voice-card:hover .voice-play {
            background: var(--accent);
            color: white;
            transform: scale(1.15);
            border-color: var(--accent);
        }

        .voice-card:hover .voice-play::before {
            width: 100%;
            height: 100%;
        }

        /* Deployment Summary */
        .deployment-summary {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 30px;
        }

        .summary-card {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 20px;
        }

        .summary-card h4 {
            font-size: 16px;
            margin-bottom: 15px;
            color: white;
            border-bottom: 1px solid var(--glass-border);
            padding-bottom: 10px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
            font-size: 14px;
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-item strong {
            color: #E2E8F0;
        }

        .summary-item span {
            color: #94A3B8;
        }

        .status-ready {
            color: var(--accent) !important;
            font-weight: 600;
        }

        .deployment-features h4 {
            font-size: 16px;
            margin-bottom: 15px;
            color: white;
            border-bottom: 1px solid var(--glass-border);
            padding-bottom: 10px;
        }

        .deployment-features .features-list {
            list-style: none;
            padding: 0;
        }

        .deployment-features .features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 13px;
            color: #94A3B8;
        }

        .deployment-features .features-list i {
            color: var(--accent);
            font-size: 12px;
        }

        /* Form Navigation */
        .form-navigation {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
            margin-top: 30px;
        }

        .nav-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .nav-btn:hover {
            background: rgba(39, 174, 95, 0.1);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .create-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(39, 174, 95, 0.3);
        }

        .create-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(39, 174, 95, 0.4);
        }

        .step-indicator {
            font-size: 14px;
            color: #64748B;
        }

        .current-step {
            color: var(--accent);
            font-weight: 600;
        }

        /* Agent Created Success */
        .agent-created-success {
            background: var(--glass);
            border: 1px solid rgba(39, 174, 95, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            text-align: center;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .agent-created-success::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(39, 174, 95, 0.1), transparent);
            animation: success-shimmer 2s infinite;
        }

        @keyframes success-shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .success-content {
            position: relative;
            z-index: 2;
        }

        .success-icon {
            font-size: 60px;
            color: var(--accent);
            margin-bottom: 20px;
            animation: success-bounce 1s ease-out;
        }

        @keyframes success-bounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-content h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: white;
        }

        .success-details {
            background: rgba(30, 41, 59, 0.6);
            border-radius: 12px;
            padding: 20px;
            margin: 25px 0;
            text-align: left;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--glass-border);
            font-size: 14px;
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .success-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 25px;
        }

        .test-agent-btn, .create-another-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .test-agent-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 4px 20px rgba(39, 174, 95, 0.3);
        }

        .test-agent-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(39, 174, 95, 0.4);
        }

        .create-another-btn {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            color: white;
        }

        .create-another-btn:hover {
            background: rgba(39, 174, 95, 0.1);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* Creation Benefits */
        .creation-benefits {
            margin-top: 80px;
            text-align: center;
        }

        .creation-benefits h3 {
            font-size: 28px;
            margin-bottom: 50px;
            color: white;
        }

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

        .benefit-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(39, 174, 95, 0.1), transparent);
            transition: left 0.3s ease;
        }

        .benefit-card:hover::before {
            left: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 8px 30px rgba(39, 174, 95, 0.2);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .benefit-card h4 {
            font-size: 18px;
            margin-bottom: 12px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .benefit-card p {
            color: #94A3B8;
            line-height: 1.6;
            font-size: 14px;
            position: relative;
            z-index: 2;
        }

        /* ===== RESPONSIVE DESIGN FOR CREATE AGENT SECTION ===== */
        @media (max-width: 1200px) {
            .agent-builder {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .agent-builder::before {
                display: none;
            }
            
            .builder-visual {
                position: relative;
                top: auto;
                order: -1;
            }
            
            .progress-tracker {
                display: none; /* Hide on smaller screens to save space */
            }
            
            .agent-preview {
                transform: none;
                border-radius: 24px;
                padding: 30px;
            }
            
            .agent-preview:hover {
                transform: scale(1.02);
            }
            
            .deployment-summary {
                grid-template-columns: 1fr;
            }
            
            .voice-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 15px;
            }
            
            .cta-spotlight {
                padding: 30px;
                border-radius: 20px;
            }
            
            .spotlight-stats {
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .create-agent-section {
                padding: 80px 4% 100px;
            }
            
            .cta-spotlight {
                padding: 25px;
                margin-bottom: 40px;
            }
            
            .spotlight-title {
                font-size: 2rem;
            }
            
            .spotlight-subtitle {
                font-size: 1rem;
            }
            
            .spotlight-stats {
                gap: 20px;
            }
            
            .stat-item {
                padding: 12px 15px;
                min-width: 80px;
            }
            
            .stat-number {
                font-size: 1.6rem;
            }
            
            .builder-form {
                padding: 35px;
                border-radius: 24px;
            }
            
            .form-section-title {
                font-size: 22px;
                margin-bottom: 25px;
            }
            
            .form-section-title i {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .builder-steps {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }
            
            .step-connector {
                width: 3px;
                height: 30px;
                margin: -10px 0;
            }
        }

        @media (max-width: 768px) {
            .create-agent-section {
                padding: 60px 4% 80px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .cta-spotlight {
                padding: 20px;
                border-radius: 16px;
                margin-bottom: 30px;
            }
            
            .spotlight-title {
                font-size: 1.6rem;
                margin-bottom: 10px;
            }
            
            .spotlight-subtitle {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .spotlight-stats {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
                max-width: 200px;
            }
            
            .agent-builder {
                gap: 30px;
            }
            
            .builder-form {
                padding: 25px;
                border-radius: 20px;
            }
            
            .form-section-title {
                font-size: 20px;
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .premium-input, .premium-textarea, .premium-select {
                padding: 14px 16px;
                font-size: 14px;
            }
            
            .voice-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                max-width: none;
            }
            
            .voice-card {
                min-height: 70px;
                padding: 16px;
            }
            
            .voice-avatar {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .voice-play {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .builder-steps {
                padding: 12px;
            }
            
            .step-item {
                padding: 15px 20px;
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
            .step-content h4 {
                font-size: 14px;
            }
            
            .step-content p {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .create-agent-section {
                padding: 40px 3% 60px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .agent-creation-badge {
                font-size: 12px;
                padding: 8px 16px;
            }
            
            .cta-spotlight {
                padding: 15px;
                border-radius: 12px;
            }
            
            .spotlight-badge {
                font-size: 11px;
                padding: 6px 14px;
            }
            
            .spotlight-title {
                font-size: 1.4rem;
            }
            
            .spotlight-subtitle {
                font-size: 0.85rem;
            }
            
            .builder-form {
                padding: 20px;
                border-radius: 16px;
            }
            
            .form-section-title {
                font-size: 18px;
            }
            
            .form-section-title i {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .premium-input, .premium-textarea, .premium-select {
                padding: 12px;
                font-size: 13px;
                border-radius: 12px;
            }
            
            .voice-selection {
                padding: 15px;
                border-radius: 16px;
            }
            
            .voice-card {
                min-height: 60px;
                padding: 12px;
                gap: 10px;
                border-radius: 12px;
            }
            
            .voice-avatar {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .voice-info h4 {
                font-size: 14px;
            }
            
            .voice-info p {
                font-size: 11px;
            }
            
            .voice-play {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            
            .builder-steps {
                flex-direction: column;
                padding: 10px;
                gap: 10px;
            }
            
            .step-item {
                padding: 12px 15px;
                gap: 6px;
            }
            
            .step-number {
                width: 35px;
                height: 35px;
                font-size: 13px;
            }
            
            .step-content h4 {
                font-size: 13px;
            }
            
            .step-content p {
                font-size: 11px;
            }
            
            .step-connector {
                height: 20px;
                width: 2px;
            }
        }

        /* Contact Section Mobile Responsive */
        @media (max-width: 768px) {
            .step-connector {
                width: 2px;
                height: 20px;
                margin: -5px 0;
            }
            
            .form-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .success-actions {
                flex-direction: column;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .builder-form {
                padding: 25px;
            }
            
            .agent-preview {
                padding: 20px;
            }
            
            .form-section-title {
                font-size: 18px;
            }
            
            .builder-steps {
                display: none;
            }
        }

        /* Agent Notifications */
        .agent-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .notification-content {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 20px;
            color: white;
            font-size: 14px;
        }

        .agent-notification.error {
            background: rgba(239, 68, 68, 0.9);
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .agent-notification.success {
            background: rgba(39, 174, 95, 0.9);
            border: 1px solid rgba(39, 174, 95, 0.3);
        }

        .agent-notification.info {
            background: rgba(59, 130, 246, 0.9);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        /* Enhanced voice card interactions */
        .voice-card {
            transition: all 0.3s ease;
        }

        .voice-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(39, 174, 95, 0.15);
        }

        .voice-option input:checked + .voice-card {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(39, 174, 95, 0.25);
        }

        /* Improved form animations */
        .form-section {
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
        }

        .form-section.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Loading states */
        .nav-btn.loading {
            position: relative;
            color: transparent;
        }

        .nav-btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* ========================================
           COOKIE NOTICE & CONSENT BANNER
        ======================================== */

        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
            backdrop-filter: blur(20px);
            border-top: 2px solid var(--primary);
            padding: 20px;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
        }

        .cookie-notice.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }

        .cookie-text {
            color: #CBD5E1;
            line-height: 1.6;
        }

        .cookie-title {
            color: var(--light);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-description {
            font-size: 0.95rem;
        }

        .cookie-description a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .cookie-description a:hover {
            color: var(--accent);
        }

        .cookie-actions {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
            /* Desktop: Accept All à droite */
            flex-direction: row;
            justify-content: flex-end;
        }

        .cookie-btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .cookie-btn-accept:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(39, 174, 95, 0.4);
        }

        .cookie-btn-customize {
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            border: 1px solid var(--glass-border);
        }

        .cookie-btn-customize:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary);
        }

        .cookie-btn-reject {
            background: transparent;
            color: #94A3B8;
            border: 1px solid rgba(148, 163, 184, 0.3);
            font-size: 0.85rem;
            padding: 10px 20px;
        }

        .cookie-btn-reject:hover {
            color: var(--light);
            border-color: rgba(148, 163, 184, 0.6);
        }

        /* Voice AI Specific Cookie Notice */
        .voice-ai-notice {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .voice-ai-notice-icon {
            color: #EF4444;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .voice-ai-notice-text {
            color: #CBD5E1;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cookie-notice {
                padding: 15px;
            }

            .cookie-content {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }

            .cookie-actions {
                justify-content: center;
                /* Mobile: Accept All en premier */
                flex-direction: column-reverse;
                width: 100%;
            }

            .cookie-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }

            /* Sur mobile, inverser l'ordre pour que Accept All soit en premier */
            .cookie-btn-accept {
                order: 1;
            }
            
            .cookie-btn-customize {
                order: 2;
            }
            
            .cookie-btn-reject {
                order: 3;
            }

            .voice-ai-notice {
                flex-direction: column;
                text-align: center;
            }

            .cookie-title {
                font-size: 1rem;
                justify-content: center;
            }

            .cookie-description {
                font-size: 0.9rem;
            }
        }

        /* ========================================
           FORM CONSENT CHECKBOXES
        ======================================== */

        .consent-section {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

        .consent-title {
            color: var(--light);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .consent-title-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .consent-checkbox {
            margin-bottom: 15px;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .checkbox-wrapper:hover {
            background: rgba(39, 174, 95, 0.05);
        }

        .checkbox-wrapper.required {
            border: 1px solid rgba(239, 68, 68, 0.3);
            background: rgba(239, 68, 68, 0.02);
        }

        .checkbox-wrapper.required::before {
            content: "Required";
            position: absolute;
            top: -8px;
            right: 10px;
            background: #EF4444;
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .custom-checkbox {
            position: relative;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .custom-checkbox input[type="checkbox"] {
            opacity: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            margin: 0;
            cursor: pointer;
        }

        .checkbox-visual {
            width: 20px;
            height: 20px;
            border: 2px solid var(--glass-border);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-checkbox input[type="checkbox"]:checked + .checkbox-visual {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: var(--primary);
        }

        .checkbox-visual::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .custom-checkbox input[type="checkbox"]:checked + .checkbox-visual::after {
            opacity: 1;
        }

        .checkbox-label {
            color: #CBD5E1;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .checkbox-label strong {
            color: var(--light);
        }

        .checkbox-label a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .checkbox-label a:hover {
            color: var(--accent);
        }

        .consent-note {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
            font-size: 0.9rem;
            color: #94A3B8;
            line-height: 1.5;
        }

        .voice-recording-notice {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .recording-icon {
            width: 40px;
            height: 40px;
            background: #EF4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
            animation: pulse-red 2s infinite;
        }

        @keyframes pulse-red {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }
        }

        .recording-text {
            color: #CBD5E1;
            line-height: 1.6;
        }

        .recording-text strong {
            color: #EF4444;
            font-weight: 700;
        }
