
        :root {
            --navy: #0a1628;
            --teal: #00d9c0;
            --teal-bright: #00f5d4;
            --white: #ffffff;
            --grey: rgba(255, 255, 255, 0.7);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--navy);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .icon-wrapper {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80px;
        }
        /* Animated Wave Background */
        .wave-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            background: 
                linear-gradient(135deg, rgba(0, 217, 192, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 245, 212, 0.08), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 217, 192, 0.06), transparent 40%);
        }


        /* Hero - Asymmetric Layout */
        .hero-asymmetric {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 60% 40%;
            position: relative;
            z-index: 1;
            padding-top: 80px;
            gap: 4rem;
        }

        .hero-content-area {
            padding: 8rem 5% 4rem 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: linear-gradient(135deg, rgba(0, 217, 192, 0.2), rgba(0, 245, 212, 0.1));
            border: 1px solid rgba(0, 217, 192, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--teal-bright);
            margin-bottom: 2.5rem;
            width: fit-content;
        }

        .hero-content-area h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 600;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--grey);
            line-height: 1.5;
            margin-bottom: 3rem;
            max-width: 550px;
        }

        .hero-btn-group {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .btn-solid {
            background: var(--teal);
            color: var(--navy);
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 217, 192, 0.3);
        }

        .btn-solid:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 217, 192, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: var(--teal);
            color: var(--teal);
            background: rgba(0, 217, 192, 0.05);
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .metric-card-small {
            text-align: center;
            padding: 1.5rem;
            background: rgba(13, 30, 54, 0.4);
            border: 1px solid rgba(0, 217, 192, 0.2);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .metric-card-small:hover {
            transform: translateY(-5px);
            border-color: var(--teal);
            background: rgba(13, 30, 54, 0.7);
        }

        .metric-number-small {
            font-size: 36px;
            font-weight: 600;
            color: var(--teal-bright);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .metric-label-small {
            font-size: 13px;
            color: var(--grey);
            font-weight: 500;
        }

        /* Hero Right - Image Grid */
        .hero-visual-area {
            padding: 8rem 5% 4rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .visual-card {
            background: rgba(13, 30, 54, 0.6);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 217, 192, 0.1);
            transition: all 0.3s ease;
        }

        .visual-card:hover {
            transform: scale(1.02);
            border-color: var(--teal);
        }

        .visual-card-large {
            grid-column: span 2;
            height: 300px;
        }

        .visual-card-small {
            height: 200px;
        }

        .visual-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .visual-card:hover img {
            opacity: 1;
        }

        /* Bento Box Problem Section */
        .bento-section {
            padding: 8rem 5%;
            position: relative;
            z-index: 1;
        }

        .section-header-center {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .tag-label {
            display: inline-block;
            background: rgba(0, 217, 192, 0.1);
            color: var(--teal);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .section-header-center h2 {
            font-size: clamp(36px, 5vw, 32px);
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-header-center p {
            font-size: 18px;
            color: var(--grey);
            line-height: 1.7;
        }

        .bento-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .bento-card {
            background: rgba(13, 30, 54, 0.5);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--teal-bright), var(--teal));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

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

        .bento-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 217, 192, 0.3);
            box-shadow: 0 20px 60px rgba(0, 217, 192, 0.2);
        }

        .bento-icon {
            font-size: 52px;
            margin-bottom: 1.5rem;
            display: block;
        }

        .bento-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .bento-card p {
            font-size: 15px;
            color: var(--grey);
            line-height: 1.7;
        }

        /* Zigzag Comparison */
        .zigzag-section {
            padding: 8rem 5%;
            position: relative;
            z-index: 1;
            background: linear-gradient(180deg, transparent, rgba(0, 217, 192, 0.03), transparent);
        }

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

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .comparison-row:nth-child(even) .comparison-content {
            order: 2;
        }

        .comparison-row:nth-child(even) .comparison-visual {
            order: 1;
        }

        .comparison-content {
            padding: 2rem;
        }

        .comparison-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 217, 192, 0.1);
            color: var(--teal);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .comparison-tag.before {
            background: rgba(255, 255, 255, 0.05);
            color: var(--grey);
        }

        .comparison-content h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .comparison-content p {
            font-size: 16px;
            color: var(--grey);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            padding: 1rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 15px;
            color: var(--grey);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .comparison-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 600;
        }

        .comparison-visual {
            background: rgba(13, 30, 54, 0.6);
            border: 1px solid rgba(0, 217, 192, 0.2);
            border-radius: 20px;
            padding: 2rem;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .comparison-visual.after {
            border-color: var(--teal);
            background: rgba(13, 30, 54, 0.8);
        }

        .visual-icon-large {
            font-size: 72px;
            text-align: center;
            margin-bottom: 0;
        }

        .visual-stats {
            text-align: center;
        }

        .visual-stat-number {
            font-size: 56px;
            font-weight: 600;
            color: var(--teal-bright);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .visual-stat-label {
            font-size: 16px;
            color: var(--grey);
        }

        /* Gradient Stats Bar */
        .stats-bar {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
        }

        .stats-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(0, 217, 192, 0.2), rgba(0, 245, 212, 0.1));
            border: 2px solid var(--teal);
            border-radius: 30px;
            padding: 4rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stats-bar-item {
            text-align: center;
            position: relative;
        }

        .stats-bar-item::after {
            content: '';
            position: absolute;
            right: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 60%;
            background: linear-gradient(180deg, transparent, var(--teal), transparent);
        }

        .stats-bar-item:last-child::after {
            display: none;
        }

        .stats-bar-number {
            font-size: 52px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--teal-bright), var(--teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .stats-bar-label {
            font-size: 15px;
            color: var(--white);
            font-weight: 600;
        }

        /* CTA with Overlay */
        .cta-overlay {
            padding: 8rem 5%;
            position: relative;
            z-index: 1;
        }

        .cta-box-overlay {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(13, 30, 54, 0.9);
            backdrop-filter: blur(40px);
            border: 2px solid var(--teal);
            border-radius: 30px;
            padding: 5rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 217, 192, 0.3);
        }

        .cta-box-overlay::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(0, 217, 192, 0.15), transparent 50%);
            animation: rotate 20s linear infinite;
        }

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

        .cta-box-overlay h2 {
            font-size: clamp(36px, 5vw, 32px);
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-box-overlay p {
            font-size: 20px;
            color: var(--grey);
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .cta-btn-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-asymmetric {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-visual-area {
                padding: 4rem 5%;
            }

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

            .comparison-row {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .comparison-row:nth-child(even) .comparison-content,
            .comparison-row:nth-child(even) .comparison-visual {
                order: initial;
            }

            .stats-bar-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-bar-item::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-content-area {
                padding: 4rem 5%;
            }

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

            .hero-visual-area {
                grid-template-columns: 1fr;
            }

            .visual-card-large {
                grid-column: span 1;
            }

            .stats-bar-container {
                grid-template-columns: 1fr;
                padding: 3rem 2rem;
            }

            .cta-box-overlay {
                padding: 3rem 2rem;
            }

            .hero-btn-group,
            .cta-btn-group {
                flex-direction: column;
            }
        }