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

        :root {
            --dark-navy: #0A192F;
            --metallic-gold: #D4AF37;
            --bright-teal: #64FFDA;
            --charcoal-grey: #1a1a2e;
            --charcoal-dark: #0f0f1e;
            --danger-red: #ff4757;
            --success-green: #2ed573;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --border-light: rgba(100, 255, 218, 0.1);
            --border-hover: rgba(100, 255, 218, 0.3);
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-navy);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            perspective: 1000px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Manrope', sans-serif;
        }

        /* 3D Floating Particles */
        .particle {
            position: fixed;
            width: 3px;
            height: 3px;
            background: var(--bright-teal);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            animation: particle-float-3d 20s ease-in-out infinite;
            box-shadow: 0 0 10px var(--bright-teal), 0 0 20px var(--bright-teal);
        }

        @keyframes particle-float-3d {

            0%,
            100% {
                opacity: 0;
                transform: translate3d(0, 0, 0) scale(0);
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                opacity: 0;
                transform: translate3d(100px, -800px, 500px) scale(1);
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 2rem;
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-family: 'Manrope', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--bright-teal), var(--metallic-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: logo-glow 3s ease-in-out infinite;
        }

        @keyframes logo-glow {

            0%,
            100% {
                filter: drop-shadow(0 0 5px rgba(100, 255, 218, 0.3));
            }

            50% {
                filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.6));
            }
        }

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

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-teal);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--bright-teal);
        }

        .nav-link:hover {
            color: var(--bright-teal);
        }

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

        /* Hero Section - The Reality Check */
        .hero {
            min-height: 100vh;
            background: var(--charcoal-grey);
            position: relative;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 6rem;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .hero-graph-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.08;
            transform-style: preserve-3d;
        }

        .graph-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--bright-teal), transparent);
            animation: graph-flow 20s linear infinite;
            box-shadow: 0 0 20px var(--bright-teal), 0 0 40px var(--bright-teal);
        }

        @keyframes graph-flow {
            0% {
                transform: translateX(-100%) translateZ(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateX(100%) translateZ(50px);
                opacity: 0;
            }
        }

        /* 3D Floating Shapes */
        .floating-shape {
            position: absolute;
            border: 2px solid rgba(100, 255, 218, 0.1);
            animation: float-rotate 30s linear infinite;
            transform-style: preserve-3d;
        }

        @keyframes float-rotate {
            0% {
                transform: translateZ(0) rotateX(0deg) rotateY(0deg);
            }

            100% {
                transform: translateZ(100px) rotateX(360deg) rotateY(360deg);
            }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-text {
            padding-right: 3rem;
            animation: slide-in-left 1s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
        }

        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-100px) rotateY(10deg);
            }

            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        .india-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 153, 51, 0.1);
            border: 1px solid rgba(255, 153, 51, 0.3);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ff9933;
            margin-bottom: 1.5rem;
            animation: badge-bounce 2s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes badge-bounce {

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

            50% {
                transform: translateY(-5px) translateZ(20px);
            }
        }

        .hero h1 {
            font-size: clamp(3.5rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            animation: title-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes title-reveal {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--bright-teal), var(--metallic-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            animation: highlight-pulse 3s ease-in-out infinite;
        }

        @keyframes highlight-pulse {

            0%,
            100% {
                filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.3));
            }

            50% {
                filter: drop-shadow(0 0 30px rgba(100, 255, 218, 0.6));
            }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.8;
            max-width: 600px;
            animation: fade-in-up 1s ease-out 0.3s both;
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 4rem;
            animation: fade-in-up 1s ease-out 0.5s both;
        }

        .btn-primary {
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, var(--bright-teal), rgba(100, 255, 218, 0.8));
            color: var(--dark-navy);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .btn-primary::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;
        }

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

        .btn-primary:hover {
            transform: translateY(-5px) translateZ(20px);
            box-shadow: 0 15px 50px rgba(100, 255, 218, 0.5);
        }

        .btn-secondary {
            padding: 1.25rem 3rem;
            background: transparent;
            color: var(--bright-teal);
            border: 2px solid var(--bright-teal);
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-secondary:hover {
            background: rgba(100, 255, 218, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
        }

        /* Floating Stat Bar */
        .stat-bar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.75rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
            position: relative;
            animation: stat-box-enter 1s ease-out both;
            animation-delay: calc(var(--index) * 0.1s);
        }

        @keyframes stat-box-enter {
            from {
                opacity: 0;
                transform: translateY(50px) rotateX(-10deg);
            }

            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .stat-box::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--bright-teal), var(--metallic-gold));
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .stat-box:hover::before {
            opacity: 1;
        }

        .stat-box:hover {
            transform: translateY(-8px) translateZ(30px) rotateX(5deg);
            box-shadow: 0 20px 50px rgba(100, 255, 218, 0.2);
        }

        .stat-value {
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-value.gold {
            color: var(--metallic-gold);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .stat-value.crossed {
            color: var(--danger-red);
            text-decoration: line-through;
            opacity: 0.6;
        }

        .stat-value.save {
            color: var(--success-green);
            text-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Hero Visual Element */
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slide-in-right 1s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
        }

        @keyframes slide-in-right {
            from {
                opacity: 0;
                transform: translateX(100px) rotateY(-10deg);
            }

            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        .visual-card {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: rgba(100, 255, 218, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transform-style: preserve-3d;
            animation: visual-card-float 6s ease-in-out infinite;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        @keyframes visual-card-float {

            0%,
            100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }

            25% {
                transform: translateY(-20px) rotateX(2deg) rotateY(2deg);
            }

            50% {
                transform: translateY(-10px) rotateX(-2deg) rotateY(-2deg);
            }

            75% {
                transform: translateY(-15px) rotateX(1deg) rotateY(-1deg);
            }
        }

        .visual-card::before {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, var(--bright-teal), var(--metallic-gold), var(--bright-teal));
            border-radius: 22px;
            opacity: 0;
            animation: border-glow 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes border-glow {

            0%,
            100% {
                opacity: 0;
                filter: blur(10px);
            }

            50% {
                opacity: 0.5;
                filter: blur(15px);
            }
        }

        .visual-icon {
            font-size: 80px;
            color: var(--bright-teal);
            opacity: 0.3;
            animation: icon-rotate-3d 20s linear infinite;
            transform-style: preserve-3d;
        }

        @keyframes icon-rotate-3d {
            0% {
                transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            }

            100% {
                transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
            }
        }

        /* Bento Grid Section */
        .bento-section {
            background: var(--charcoal-dark);
            padding: 6rem 2rem;
            transform-style: preserve-3d;
        }

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

        .bento-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            grid-template-rows: auto auto;
            gap: 1.5rem;
            transform-style: preserve-3d;
        }

        .bento-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: bento-enter 0.8s ease-out both;
            animation-delay: calc(var(--index) * 0.15s);
        }

        @keyframes bento-enter {
            from {
                opacity: 0;
                transform: translateY(80px) rotateX(-15deg) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) rotateX(0) scale(1);
            }
        }

        .bento-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--bright-teal), var(--metallic-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 20px var(--bright-teal);
        }

        .bento-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(100, 255, 218, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .bento-box:hover::before {
            transform: scaleX(1);
        }

        .bento-box:hover::after {
            opacity: 1;
        }

        .bento-box:hover {
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-10px) translateZ(40px);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(100, 255, 218, 0.1);
        }

        .bento-large {
            grid-row: span 2;
        }

        .bento-full {
            grid-column: span 2;
        }

        .bento-visual {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .laptop-mockup {
            width: 100%;
            max-width: 400px;
            animation: mockup-float 4s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes mockup-float {

            0%,
            100% {
                transform: translateY(0) rotateX(0deg);
            }

            50% {
                transform: translateY(-10px) rotateX(3deg);
            }
        }

        .mockup-header {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem 1rem;
            border-radius: 8px 8px 0 0;
            display: flex;
            gap: 0.5rem;
        }

        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            animation: dot-pulse 2s ease-in-out infinite;
        }

        .mockup-dot:nth-child(1) {
            animation-delay: 0s;
        }

        .mockup-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .mockup-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes dot-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }
        }

        .mockup-body {
            background: rgba(255, 255, 255, 0.02);
            padding: 2rem;
            border-radius: 0 0 8px 8px;
        }

        .deal-summary {
            font-size: 0.875rem;
        }

        .deal-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .deal-row:hover {
            background: rgba(100, 255, 218, 0.05);
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        .deal-row:last-child {
            border-bottom: none;
        }

        .deal-label {
            color: var(--text-tertiary);
        }

        .deal-value {
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .deal-row:hover .deal-value {
            color: var(--bright-teal);
        }

        .deal-value.profit {
            color: var(--success-green);
            font-size: 1.5rem;
            font-weight: 700;
            animation: profit-pulse 2s ease-in-out infinite;
        }

        @keyframes profit-pulse {

            0%,
            100% {
                text-shadow: 0 0 10px rgba(46, 213, 115, 0.3);
            }

            50% {
                text-shadow: 0 0 20px rgba(46, 213, 115, 0.6);
            }
        }

        .pie-chart {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: conic-gradient(var(--bright-teal) 0deg 216deg,
                    rgba(100, 255, 218, 0.2) 216deg 360deg);
            position: relative;
            animation: pie-rotate-3d 3s ease-out forwards, pie-float 4s ease-in-out infinite 3s;
            transform-style: preserve-3d;
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
        }

        @keyframes pie-rotate-3d {
            from {
                transform: rotate(-90deg) rotateX(0deg) scale(0);
                opacity: 0;
            }

            to {
                transform: rotate(0deg) rotateX(0deg) scale(1);
                opacity: 1;
            }
        }

        @keyframes pie-float {

            0%,
            100% {
                transform: translateY(0) rotateX(0deg);
            }

            50% {
                transform: translateY(-10px) rotateX(5deg);
            }
        }

        .pie-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--charcoal-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .pie-percent {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--bright-teal);
        }

        .forecast-graph {
            width: 100%;
            height: 150px;
            position: relative;
            transform-style: preserve-3d;
        }

        .forecast-line {
            position: absolute;
            bottom: 20%;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--bright-teal) 30%,
                    var(--metallic-gold) 70%,
                    transparent 100%);
            clip-path: polygon(0 100%, 30% 60%, 60% 40%, 100% 20%, 100% 100%);
            animation: forecast-grow 2s ease-out forwards, forecast-glow 3s ease-in-out infinite 2s;
            box-shadow: 0 0 30px var(--bright-teal);
            filter: drop-shadow(0 0 10px var(--metallic-gold));
        }

        @keyframes forecast-grow {
            from {
                clip-path: polygon(0 100%, 30% 100%, 60% 100%, 100% 100%, 100% 100%);
                opacity: 0;
            }

            to {
                clip-path: polygon(0 100%, 30% 60%, 60% 40%, 100% 20%, 100% 100%);
                opacity: 1;
            }
        }

        @keyframes forecast-glow {

            0%,
            100% {
                filter: drop-shadow(0 0 10px var(--bright-teal));
            }

            50% {
                filter: drop-shadow(0 0 30px var(--bright-teal)) drop-shadow(0 0 20px var(--metallic-gold));
            }
        }

        /* NEW: Price Comparison Chart */
        .price-comparison {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            gap: 1.5rem;
            padding: 1rem;
        }

        .price-bar-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            flex: 1;
            height: 100%;
        }

        .price-bar-wrapper {
            flex: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
        }

        .price-bar {
            width: 100%;
            max-width: 60px;
            border-radius: 8px 8px 0 0;
            position: relative;
            transform-origin: bottom;
            animation: bar-grow-up 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            box-shadow: 0 0 20px currentColor;
        }

        .price-bar.lme {
            background: linear-gradient(180deg, var(--bright-teal), rgba(100, 255, 218, 0.3));
            color: var(--bright-teal);
            height: 0;
            animation-delay: 0s;
        }

        .price-bar.mcx {
            background: linear-gradient(180deg, var(--metallic-gold), rgba(212, 175, 55, 0.3));
            color: var(--metallic-gold);
            height: 0;
            animation-delay: 0.2s;
        }

        .price-bar.nalco {
            background: linear-gradient(180deg, var(--success-green), rgba(46, 213, 115, 0.3));
            color: var(--success-green);
            height: 0;
            animation-delay: 0.4s;
        }

        @keyframes bar-grow-up {
            from {
                height: 0;
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .price-value {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.875rem;
            font-weight: 700;
            white-space: nowrap;
            animation: value-fade-in 0.5s ease-out forwards;
            opacity: 0;
        }

        .price-bar.lme .price-value {
            color: var(--bright-teal);
            animation-delay: 0.8s;
        }

        .price-bar.mcx .price-value {
            color: var(--metallic-gold);
            animation-delay: 1s;
        }

        .price-bar.nalco .price-value {
            color: var(--success-green);
            animation-delay: 1.2s;
        }

        @keyframes value-fade-in {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .price-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-align: center;
        }

        .price-difference {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            animation: diff-fade-in 0.5s ease-out forwards;
            opacity: 0;
        }

        .price-bar.mcx .price-difference {
            color: var(--danger-red);
            background: rgba(255, 71, 87, 0.1);
            animation-delay: 1.5s;
        }

        .price-bar.nalco .price-difference {
            color: var(--success-green);
            background: rgba(46, 213, 115, 0.1);
            animation-delay: 1.7s;
        }

        @keyframes diff-fade-in {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(10px);
            }

            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        .bento-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .bento-box:hover .bento-title {
            transform: translateX(10px);
            color: var(--bright-teal);
        }

        .bento-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .bento-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid var(--bright-teal);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--bright-teal);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
        }

        .bento-box:hover .bento-tag {
            background: rgba(100, 255, 218, 0.2);
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
            transform: scale(1.05);
        }

        /* Pain vs Gain Section */
        .comparison-section {
            background: #f8f9fa;
            padding: 6rem 2rem;
            color: #1a1a2e;
            transform-style: preserve-3d;
        }

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

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 4rem;
            transform-style: preserve-3d;
        }

        .comparison-side {
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
            animation: comparison-enter 1s ease-out both;
        }

        .pain-side {
            background: rgba(255, 71, 87, 0.05);
            border: 2px solid rgba(255, 71, 87, 0.2);
            animation-delay: 0s;
        }

        .gain-side {
            background: rgba(10, 25, 47, 0.95);
            border: 2px solid var(--bright-teal);
            color: var(--text-primary);
            animation-delay: 0.2s;
        }

        @keyframes comparison-enter {
            from {
                opacity: 0;
                transform: translateY(50px) rotateX(10deg);
            }

            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .comparison-side:hover {
            transform: translateY(-10px) translateZ(30px);
        }

        .pain-side:hover {
            box-shadow: 0 20px 50px rgba(255, 71, 87, 0.2);
        }

        .gain-side:hover {
            box-shadow: 0 20px 50px rgba(100, 255, 218, 0.2);
        }

        .comparison-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .pain-side .comparison-icon {
            background: rgba(255, 71, 87, 0.1);
        }

        .pain-side .comparison-icon i {
            color: var(--danger-red);
            font-size: 40px;
            animation: icon-shake 3s ease-in-out infinite;
        }

        @keyframes icon-shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-5px) rotate(-5deg);
            }

            75% {
                transform: translateX(5px) rotate(5deg);
            }
        }

        .gain-side .comparison-icon {
            background: rgba(100, 255, 218, 0.1);
        }

        .gain-side .comparison-icon i {
            color: var(--bright-teal);
            font-size: 40px;
            animation: icon-pulse 2s ease-in-out infinite;
        }

        @keyframes icon-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .comparison-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

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

        .comparison-list li {
            padding: 0.75rem 0;
            font-size: 1.0625rem;
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }

        .comparison-list li::before {
            content: '•';
            font-size: 1.5rem;
            line-height: 1;
        }

        .pain-side .comparison-list li::before {
            color: var(--danger-red);
        }

        .gain-side .comparison-list li::before {
            color: var(--bright-teal);
        }

        .comparison-list li:hover {
            transform: translateX(5px);
        }

        .comparison-quote {
            font-size: 1.125rem;
            font-style: italic;
            padding-left: 1.5rem;
            border-left: 3px solid;
        }

        .pain-side .comparison-quote {
            border-color: var(--danger-red);
            color: rgba(255, 71, 87, 0.8);
        }

        .gain-side .comparison-quote {
            border-color: var(--bright-teal);
            color: var(--bright-teal);
        }

        /* Intelligence Engine Section */
        .intelligence-section {
            background: var(--dark-navy);
            padding: 6rem 2rem;
            transform-style: preserve-3d;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fade-in-up 1s ease-out;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .layer-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            transform-style: preserve-3d;
        }

        .layer-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: layer-card-enter 0.8s ease-out both;
            animation-delay: calc(var(--index) * 0.15s);
        }

        @keyframes layer-card-enter {
            from {
                opacity: 0;
                transform: translateY(60px) rotateX(-10deg) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) rotateX(0) scale(1);
            }
        }

        .layer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--bright-teal), var(--metallic-gold));
            opacity: 0;
            transition: opacity 0.3s ease;
            box-shadow: 0 0 20px var(--bright-teal);
        }

        .layer-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(100, 255, 218, 0.15), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

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

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

        .layer-card:hover {
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-10px) translateZ(40px);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(100, 255, 218, 0.1);
        }

        .layer-card.highlight {
            background: rgba(100, 255, 218, 0.05);
            border-color: var(--bright-teal);
        }

        .layer-card.highlight::before {
            opacity: 1;
            animation: border-shimmer 2s ease-in-out infinite;
        }

        @keyframes border-shimmer {

            0%,
            100% {
                box-shadow: 0 0 20px var(--bright-teal);
            }

            50% {
                box-shadow: 0 0 40px var(--bright-teal), 0 0 60px var(--metallic-gold);
            }
        }

        .layer-number {
            font-family: 'Manrope', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(100, 255, 218, 0.1);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .layer-card:hover .layer-number {
            color: rgba(100, 255, 218, 0.2);
            transform: translateZ(20px);
        }

        .layer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--bright-teal);
            transition: all 0.3s ease;
        }

        .layer-card:hover .layer-title {
            transform: translateX(10px);
        }

        .layer-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .layer-tag {
            padding: 0.5rem 1rem;
            background: rgba(100, 255, 218, 0.1);
            border-radius: 20px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--bright-teal);
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
        }

        .layer-card:hover .layer-tag {
            background: rgba(100, 255, 218, 0.2);
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
            transform: translateY(-3px);
        }

        .layer-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Comparison Table Section */
        .table-section {
            background: var(--charcoal-grey);
            padding: 6rem 2rem;
            transform-style: preserve-3d;
        }

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

        .comparison-table-wrapper {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 2rem;
            overflow-x: auto;
            animation: table-enter 1s ease-out;
            transform-style: preserve-3d;
        }

        @keyframes table-enter {
            from {
                opacity: 0;
                transform: translateY(50px) rotateX(5deg);
            }

            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1.5rem 2rem;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .comparison-table th {
            background: rgba(255, 255, 255, 0.05);
            font-weight: 700;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
        }

        .comparison-table th:first-child {
            border-radius: 12px 0 0 0;
        }

        .comparison-table th.highlight-col {
            background: rgba(100, 255, 218, 0.1);
            color: var(--bright-teal);
            position: relative;
        }

        .comparison-table th.highlight-col::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--bright-teal);
            box-shadow: 0 0 10px var(--bright-teal);
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
            transform: scale(1.02);
        }

        .comparison-table td {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .check-mark {
            color: var(--success-green);
            font-size: 1.5rem;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
            animation: check-pop 0.5s ease-out;
        }

        @keyframes check-pop {
            0% {
                transform: scale(0);
            }

            50% {
                transform: scale(1.3);
            }

            100% {
                transform: scale(1);
            }
        }

        .cross-mark {
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.5rem;
        }

        .table-caption {
            text-align: center;
            margin-top: 2rem;
            font-size: 1.125rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .table-caption strong {
            color: var(--bright-teal);
        }

        /* Tech Stack Section */
        .tech-section {
            background: var(--dark-navy);
            padding: 4rem 2rem;
            transform-style: preserve-3d;
        }

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

        .tech-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--bright-teal);
            animation: fade-in-up 1s ease-out;
        }

        .tech-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            transform-style: preserve-3d;
        }

        .tech-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-secondary);
            opacity: 0.5;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .tech-logo:hover {
            opacity: 1;
            color: var(--bright-teal);
            border-color: var(--bright-teal);
            transform: translateY(-10px) translateZ(30px) rotateY(5deg);
            box-shadow:
                0 20px 40px rgba(100, 255, 218, 0.2),
                0 0 20px rgba(100, 255, 218, 0.3);
        }

        .tech-points {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            animation: fade-in-up 1s ease-out 0.3s both;
        }

        .tech-point {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .tech-point i {
            color: var(--bright-teal);
            animation: icon-float 3s ease-in-out infinite;
        }

        @keyframes icon-float {

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

            50% {
                transform: translateY(-5px);
            }
        }

        .tech-point:hover {
            color: var(--bright-teal);
            transform: translateX(5px);
        }

        /* Final CTA Section */
        .cta-section {
            background: linear-gradient(180deg, var(--charcoal-dark), var(--dark-navy));
            padding: 8rem 2rem;
            text-align: center;
            transform-style: preserve-3d;
        }

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

        .cta-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: title-reveal 1s ease-out;
        }

        .cta-title .highlight {
            background: linear-gradient(135deg, var(--bright-teal), var(--metallic-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            animation: highlight-pulse 3s ease-in-out infinite;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            animation: fade-in-up 1s ease-out 0.2s both;
        }

        .email-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
            animation: fade-in-up 1s ease-out 0.4s both;
            transform-style: preserve-3d;
        }

        .email-input {
            flex: 1;
            padding: 1.25rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .email-input::placeholder {
            color: var(--text-tertiary);
        }

        .email-input:focus {
            outline: none;
            border-color: var(--bright-teal);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
        }

        .submit-btn {
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, var(--bright-teal), rgba(100, 255, 218, 0.8));
            color: var(--dark-navy);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
        }

        .submit-btn::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;
        }

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

        .submit-btn:hover {
            transform: translateY(-3px) translateZ(15px);
            box-shadow: 0 15px 40px rgba(100, 255, 218, 0.5);
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }

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

        .footer-logo {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--bright-teal), var(--metallic-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: logo-glow 3s ease-in-out infinite;
        }

        .footer-text {
            font-size: 0.875rem;
            color: var(--text-tertiary);
        }

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

            .hero-text {
                padding-right: 0;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

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

            .bento-large {
                grid-row: auto;
            }

            .bento-full {
                grid-column: auto;
            }

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

            .layer-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

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

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .stat-bar {
                grid-template-columns: 1fr;
            }

            .email-form {
                flex-direction: column;
            }

            .tech-logos {
                gap: 2rem;
            }

            .tech-points {
                flex-direction: column;
                align-items: center;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 1rem;
                font-size: 0.875rem;
            }

            .price-comparison {
                gap: 0.75rem;
            }

            .price-bar {
                max-width: 40px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Mobile Navigation Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 200;
        }

        .nav-toggle-bar {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--bright-teal);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(10, 25, 47, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2.5rem;
                z-index: 150;
            }

            .nav-links.nav-open {
                display: flex;
            }

            .nav-links .nav-link {
                font-size: 1.5rem;
                font-weight: 600;
            }

            .nav-links .btn-primary {
                font-size: 1rem !important;
                padding: 1rem 2.5rem !important;
            }
        }

        /* Form status message */
        .form-status {
            margin-top: 1rem;
            font-size: 0.9rem;
            min-height: 1.5rem;
            color: var(--bright-teal);
        }

        .form-status.error {
            color: var(--danger-red);
        }
