:root {
            --blue-electric: #0D6EFD;
            --cyan-future: #00C2FF;
            --red-tech: #FF3B3B;
            --dark-bg: #0A0A0F;
            --dark-card: #151521;
            --light-text: #FFFFFF;
            --gray-text: #A0A0B0;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* AI Background Effects */
        .ai-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--cyan-future);
            border-radius: 50%;
            opacity: 0.4;
            animation: float-particle 15s infinite ease-in-out;
        }

        @keyframes float-particle {
            0%, 100% {
                transform: translate(0, 0);
                opacity: 0.4;
            }
            50% {
                transform: translate(100px, -100px);
                opacity: 0.8;
            }
        }

        .ai-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 194, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 194, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 194, 255, 0.1);
            padding: 24px 0;
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.4em;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo::before {
            content: '';
            font-size: 1.2em;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95em;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--cyan-future);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: white;
        }

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

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--cyan-future);
            border-radius: 2px;
            transition: all 0.3s;
        }

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

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

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

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            background: linear-gradient(135deg, #0A0A0F 0%, #0D1B2E 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 194, 255, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: rotate-slow 30s linear infinite;
        }

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

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 194, 255, 0.1);
            border: 1px solid rgba(0, 194, 255, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 24px;
            font-size: 0.85em;
            font-weight: 600;
            color: var(--cyan-future);
        }

        .hero-badge::before {
            content: '●';
            animation: blink 2s ease-in-out infinite;
        }

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

        .hero-content h1 {
            font-size: 4em;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--cyan-future), #00E5FF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 3s ease infinite;
            background-size: 200% 200%;
        }

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

        .hero-content p {
            font-size: 1.25em;
            color: var(--gray-text);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-visual {
            position: relative;
            height: 600px;
        }

        .hero-image-main {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 194, 255, 0.2);
            border: 1px solid rgba(0, 194, 255, 0.2);
        }

        .hero-image-main img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(21, 21, 33, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 194, 255, 0.3);
            border-radius: 50%;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: float-card 3s ease-in-out infinite;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 140px;
            height: 140px;
        }

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

        .floating-card-1 {
            top: 80px;
            right: -40px;
            width: 140px;
            height: 140px;
        }

        .floating-card-2 {
            bottom: 80px;
            left: -40px;
            width: 140px;
            height: 140px;
        }

        .floating-card-icon {
            font-size: 1.8em;
            margin-bottom: 8px;
        }

        .floating-card-title {
            font-size: 0.75em;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--cyan-future);
            line-height: 1.2;
        }

        .floating-card-value {
            font-size: 1.2em;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            font-size: 1em;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

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

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

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: var(--cyan-future);
            color: white;
            box-shadow: 0 10px 30px rgba(0, 194, 255, 0.3);
        }

        .btn-primary:hover {
            background: #00A8E6;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 194, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            border-color: white;
            transform: translateY(-2px);
        }

        .btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Section */
        .section {
            padding: 120px 0;
            position: relative;
        }

        /* Doniani Section - White Background */
        .doniani-section {
            background: #FFFFFF;
            color: #1A1A2E;
        }

        .doniani-section .section-label {
            color: var(--cyan-future);
        }

        .doniani-section .section-title {
            color: #1A1A2E;
        }

        .doniani-section .section-subtitle {
            color: #6B7280;
        }

        .doniani-section .content-text h2 {
            color: var(--cyan-future);
        }

        .doniani-section .content-text p {
            color: #6B7280;
        }

        .doniani-section .content-text p[style*="font-weight: 600"] {
            color: #1A1A2E !important;
        }

        .doniani-section .feature-card {
            background: #F8F9FA;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .doniani-section .feature-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .doniani-section .feature-card h3 {
            color: var(--cyan-future);
        }

        .doniani-section .feature-card p {
            color: #6B7280;
        }

        .doniani-section .list-item {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(0, 194, 255, 0.02) 100%);
            border: 1px solid rgba(13, 110, 253, 0.1);
        }

        .doniani-section .list-item:hover {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(0, 194, 255, 0.04) 100%);
            border-color: rgba(13, 110, 253, 0.2);
        }

        .doniani-section .list-item-content h4 {
            color: #1A1A2E;
        }

        .doniani-section .list-item-content p {
            color: #6B7280;
        }

        .doniani-section .list-item:hover .list-item-content h4 {
            color: var(--blue-electric);
        }

        .doniani-section .list-item:hover .list-item-content p {
            color: #4B5563;
        }

        .doniani-section .btn-secondary {
            color: #1A1A2E;
            border: 2px solid rgba(0, 0, 0, 0.2);
        }

        .doniani-section .btn-secondary:hover {
            border-color: #1A1A2E;
        }

        /* Digital Warriors Section - White Background */
        .warriors-section {
            background: #FFFFFF;
            color: #1A1A2E;
        }

        .warriors-section .section-label {
            color: var(--red-tech);
        }

        .warriors-section .section-title {
            color: #1A1A2E;
        }

        .warriors-section .section-subtitle {
            color: #6B7280;
        }

        .warriors-section .content-text h2 {
            color: var(--red-tech);
        }

        .warriors-section .content-text p {
            color: #6B7280;
        }

        .warriors-section .content-text p[style*="font-weight: 700"] {
            color: #1A1A2E !important;
        }

        .warriors-section .feature-card {
            background: #F8F9FA;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .warriors-section .feature-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .warriors-section .feature-card h3 {
            color: var(--red-tech);
        }

        .warriors-section .feature-card p {
            color: #6B7280;
        }

        .warriors-section .list-item {
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
            border: 1px solid rgba(255, 59, 59, 0.1);
        }

        .warriors-section .list-item:hover {
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.08) 0%, rgba(255, 107, 107, 0.04) 100%);
            border-color: rgba(255, 59, 59, 0.2);
        }

        .warriors-section .list-item-content h4 {
            color: #1A1A2E;
        }

        .warriors-section .list-item-content p {
            color: #6B7280;
        }

        .warriors-section .list-item:hover .list-item-content h4 {
            color: var(--red-tech);
        }

        .warriors-section .list-item:hover .list-item-content p {
            color: #4B5563;
        }

        .warriors-section .btn-secondary {
            color: #1A1A2E;
            border: 2px solid rgba(0, 0, 0, 0.2);
        }

        .warriors-section .btn-secondary:hover {
            border-color: #1A1A2E;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .section-label {
            display: inline-block;
            font-size: 0.85em;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--cyan-future);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 3.5em;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.25em;
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* Stats */
        .stats {
            background: var(--dark-card);
            border-top: 1px solid rgba(0, 194, 255, 0.1);
            border-bottom: 1px solid rgba(0, 194, 255, 0.1);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            text-align: center;
        }

        .stat-item {
            position: relative;
            padding: 20px;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan-future), transparent);
            transform: translateX(-50%);
        }

        .stat-item h3 {
            font-size: 4em;
            font-weight: 800;
            background: linear-gradient(135deg, var(--cyan-future), #00E5FF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .stat-item p {
            font-size: 1.1em;
            color: var(--gray-text);
        }

        /* Content Block with Image */
        .content-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .content-block.reverse {
            direction: rtl;
        }

        .content-block.reverse > * {
            direction: ltr;
        }

        .content-text h2 {
            font-size: 2.8em;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .content-text p {
            font-size: 1.15em;
            color: var(--gray-text);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .content-visual {
            position: relative;
        }

        .content-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 194, 255, 0.1);
            position: relative;
        }

        .content-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .content-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: top;
            display: block;
        }

        .ai-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 194, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.85em;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ai-badge::before {
            content: '⚡';
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 60px 0;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.05) 0%, rgba(13, 110, 253, 0.05) 100%);
            border: 1px solid rgba(0, 194, 255, 0.15);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-electric), var(--cyan-future));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

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

        .feature-card:hover {
            border-color: rgba(0, 194, 255, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 194, 255, 0.1);
        }

        .feature-icon {
            font-size: 2.5em;
            margin-bottom: 24px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .feature-card p {
            color: var(--gray-text);
            line-height: 1.7;
            font-size: 1.05em;
        }

        /* GoSaaS Features Section */
        .gosaas-features {
            margin: 60px 0;
        }

        /* Portfolio Section */
        .portfolio-section {
            margin: 80px 0;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
        }

        .portfolio-item {
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.05) 0%, rgba(13, 110, 253, 0.05) 100%);
            border: 1px solid rgba(0, 194, 255, 0.15);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            text-decoration: none;
            color: inherit;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 194, 255, 0.4);
            box-shadow: 0 20px 60px rgba(0, 194, 255, 0.2);
        }

        .portfolio-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
        }

        .portfolio-info {
            padding: 32px;
        }

        .portfolio-info h4 {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--light-text);
        }

        .portfolio-info p {
            color: var(--gray-text);
            line-height: 1.6;
            font-size: 1.05em;
        }

        .portfolio-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .portfolio-button {
            display: block;
            text-align: center;
            padding: 16px 24px;
            background: linear-gradient(135deg, var(--cyan-future) 0%, var(--blue-electric) 100%);
            color: white;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            margin-top: 24px;
            transition: all 0.3s;
        }

        .portfolio-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 194, 255, 0.3);
            background: linear-gradient(135deg, var(--blue-electric) 0%, var(--cyan-future) 100%);
        }

        /* Pillar Section */
        .pillar-section {
            background: var(--dark-card);
            position: relative;
        }

        .pillar-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .pillar-visual {
            position: relative;
        }

        .pillar-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 194, 255, 0.1);
        }

        .pillar-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .pillar-content h2 {
            font-size: 3.5em;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .pillar-label {
            font-size: 0.9em;
            color: var(--cyan-future);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            display: block;
        }

        .pillar-content p {
            font-size: 1.2em;
            color: var(--gray-text);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* List Items - Modern Card Design */
        .list-items {
            margin: 40px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .list-item {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 40px;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.05) 0%, rgba(13, 110, 253, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(0, 194, 255, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .list-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--blue-electric), var(--cyan-future));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .list-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.03) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .list-item:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
            transform: translateY(-8px);
            border-color: rgba(0, 194, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 194, 255, 0.1);
        }

        .list-item:hover::before {
            transform: scaleX(1);
        }

        .list-item:hover::after {
            opacity: 1;
        }

        .list-item-icon {
            font-size: 2.5em;
            display: block;
            margin-bottom: 24px;
        }


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

        .list-item-content h4 {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 16px;
            color: white;
        }

        .list-item-content p {
            color: var(--gray-text);
            line-height: 1.7;
            font-size: 1.05em;
        }

        /* Staggered animation for list items */
        .list-item:nth-child(1) { animation-delay: 0.1s; }
        .list-item:nth-child(2) { animation-delay: 0.2s; }
        .list-item:nth-child(3) { animation-delay: 0.3s; }
        .list-item:nth-child(4) { animation-delay: 0.4s; }

        /* Ecosystem */
        .ecosystem {
            background: linear-gradient(135deg, #0A0A0F 0%, #1A0D2E 100%);
            position: relative;
            overflow: hidden;
        }

        .ecosystem::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 10;
        }

        .ecosystem-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 194, 255, 0.2);
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .ecosystem-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--blue-electric), var(--cyan-future));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            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.3s;
        }

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

        .ecosystem-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-8px);
        }

        .ecosystem-icon {
            font-size: 4em;
            margin-bottom: 24px;
            display: block;
        }

        .ecosystem-card h3 {
            font-size: 2em;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .ecosystem-card .role {
            color: var(--cyan-future);
            font-weight: 600;
            margin-bottom: 16px;
            font-size: 1em;
        }

        .ecosystem-card .description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 24px;
            font-size: 1.05em;
        }

        .ecosystem-card .service-list {
            margin-bottom: 24px;
            flex: 1;
        }

        .ecosystem-card .result {
            color: var(--cyan-future);
            font-weight: 700;
            font-size: 1em;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 194, 255, 0.2);
            margin-top: auto;
        }

        /* Ecosystem Detailed Styles */
        .ecosystem-detailed {
            margin: 80px 0;
        }

        .ecosystem-business {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 194, 255, 0.2);
            border-radius: 24px;
            padding: 50px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .ecosystem-business::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.05) 0%, transparent 100%);
            pointer-events: none;
        }

        .business-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .business-icon {
            font-size: 3em;
            display: block;
            margin-bottom: 20px;
        }

        .business-title {
            font-size: 2.2em;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }

        .business-subtitle {
            font-size: 1.2em;
            color: var(--cyan-future);
            font-weight: 600;
        }

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

        .business-content h4 {
            font-size: 1.4em;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            margin-top: 32px;
        }

        .business-content h4:first-child {
            margin-top: 0;
        }

        .business-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .service-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 24px 0;
        }

        .service-item {
            background: none;
            border: none;
            border-radius: 0;
            padding: 0;
            text-align: left;
            transition: none;
        }

        .service-item h5 {
            font-size: 1.1em;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 6px;
        }

        .service-item p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95em;
            margin-bottom: 0;
        }

        .service-item:not(:last-child) {
            border-bottom: 1px solid rgba(0, 194, 255, 0.1);
            padding-bottom: 16px;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin: 24px 0;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 194, 255, 0.15);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 194, 255, 0.3);
        }

        .step-number {
            background: linear-gradient(135deg, var(--cyan-future), #00E5FF);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2em;
            flex-shrink: 0;
        }

        .step-content h5 {
            font-size: 1.2em;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .step-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1em;
            margin-bottom: 0;
        }

        .business-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .ecosystem-connection {
            margin-top: 80px;
            text-align: center;
        }

        .connection-table {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 194, 255, 0.2);
            border-radius: 20px;
            overflow: hidden;
            margin: 40px 0;
        }

        .table-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            background: rgba(0, 194, 255, 0.1);
        }

        .table-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            border-top: 1px solid rgba(0, 194, 255, 0.1);
        }

        .table-cell {
            padding: 20px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1em;
            border-right: 1px solid rgba(0, 194, 255, 0.1);
        }

        .table-cell:last-child {
            border-right: none;
        }

        .table-header .table-cell {
            font-weight: 700;
            color: white;
        }

        .ecosystem-final-message {
            margin-top: 60px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 194, 255, 0.2);
            border-radius: 20px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--cyan-future) 0%, #00E5FF 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
        }

        @keyframes grid-move {
            from { background-position: 0 0; }
            to { background-position: 50px 50px; }
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .cta-section h2 {
            font-size: 3.5em;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-section p {
            font-size: 1.3em;
            margin-bottom: 48px;
            opacity: 0.95;
            line-height: 1.7;
        }

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

        .btn-white {
            background: white;
            color: var(--cyan-future);
            font-weight: 700;
        }

        .btn-white:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            background: #050508;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(0, 194, 255, 0.1);
        }

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

        .footer-logo {
            font-size: 1.8em;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .footer-logo::before {
            content: '';
            color: var(--cyan-future);
        }

        footer p {
            color: var(--gray-text);
            margin-bottom: 12px;
        }

        /* Color Variants - Updated to use cyan-future */
        .color-blue { color: var(--cyan-future); }
        .color-cyan { color: var(--cyan-future); }
        .color-red { color: var(--red-tech); }

        /* Content text h3 style for cyan */
        .content-text h3.color-cyan {
            color: var(--cyan-future);
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 16px;
        }

        /* Card border variants */
        .border-blue::before { 
            background: linear-gradient(90deg, var(--cyan-future), #00E5FF); 
        }
        .border-cyan::before { 
            background: linear-gradient(90deg, var(--cyan-future), #00E5FF); 
        }
        .border-red::before { 
            background: linear-gradient(90deg, var(--red-tech), #FF6B6B); 
        }

        .border-blue .list-item-icon {
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), rgba(0, 229, 255, 0.1));
            border-color: rgba(0, 194, 255, 0.2);
        }

        .border-red .list-item-icon {
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.1), rgba(255, 107, 107, 0.1));
            border-color: rgba(255, 59, 59, 0.2);
        }

        .border-blue:hover .list-item-icon {
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.2), rgba(0, 229, 255, 0.2));
            border-color: rgba(0, 194, 255, 0.4);
        }

        .border-red:hover .list-item-icon {
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.2), rgba(255, 107, 107, 0.2));
            border-color: rgba(255, 59, 59, 0.4);
        }

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

            .content-block.reverse {
                direction: ltr;
            }

            .feature-grid,
            .ecosystem-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-image {
                height: 200px;
            }

            .portfolio-info {
                padding: 24px;
            }

            .portfolio-button {
                font-size: 0.95em;
                padding: 14px 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .floating-card-1,
            .floating-card-2 {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 5, 14, 0.98);
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(0, 194, 255, 0.1);
                padding: 24px;
                gap: 0;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 194, 255, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 16px 0;
                font-size: 1.1em;
            }

            .hero-content h1 {
                font-size: 2.5em;
            }

            .section-title {
                font-size: 2.2em;
            }

            .hero-visual {
                height: 400px;
            }

            .hero-image-main img,
            .content-image img,
            .pillar-image img {
                height: 400px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

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

            /* Card list items mobile */
            .list-items {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .list-item {
                padding: 40px 24px;
            }

            .list-item-icon {
                font-size: 2.5em;
                margin-bottom: 24px;
            }

            .list-item-content h4 {
                font-size: 1.2em;
            }

            .list-item-content p {
                font-size: 0.95em;
            }

            /* Timeline mobile */
            .timeline-container {
                max-width: 100%;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-item {
                flex-direction: row !important;
                margin-bottom: 40px;
            }

            .timeline-content {
                margin-left: 80px;
                margin-right: 0;
                padding: 24px;
            }

            .timeline-content::before {
                display: none;
            }

            .timeline-number {
                left: 30px;
                top: 0;
                transform: translate(-50%, -50%);
                width: 50px;
                height: 50px;
                font-size: 1.2em;
            }

            /* Ecosystem responsive */
            .ecosystem-business {
                padding: 30px 20px;
            }

            .business-title {
                font-size: 1.8em;
            }

            .business-subtitle {
                font-size: 1em;
            }

            .service-list {
                gap: 12px;
            }

            .service-item:not(:last-child) {
                border-bottom: 1px solid rgba(0, 194, 255, 0.1);
                padding-bottom: 12px;
            }

            .process-steps {
                gap: 16px;
            }

            .process-step {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .step-number {
                margin: 0 auto;
            }

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

            .table-header,
            .table-row {
                grid-template-columns: 1fr;
            }

            .table-cell {
                border-right: none;
                border-bottom: 1px solid rgba(0, 194, 255, 0.1);
            }

            .table-cell:last-child {
                border-bottom: none;
            }
        }

        /* Smooth reveal on scroll - DISABLED */
        .reveal {
            opacity: 1;
            transform: translateY(0);
        }

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

        /* Card list item reveal animation - DISABLED */
        .list-item {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .list-item.reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Quote Box */
        .quote-box {
            border-left: 4px solid var(--cyan-future);
            padding: 50px 60px;
            border-radius: 20px;
            margin: 60px 0;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.08) 0%, rgba(13, 110, 253, 0.08) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 194, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .quote-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.03) 0%, transparent 100%);
            pointer-events: none;
        }

        .quote-box p {
            font-size: 1.4em;
            font-style: italic;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            position: relative;
            z-index: 2;
            text-align: center;
            font-weight: 500;
        }

        .quote-box p strong {
            color: var(--cyan-future);
            font-weight: 700;
        }

        /* Timeline Style - Option 1 */
        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 40px auto 100px auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--cyan-future), var(--blue-electric));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: 30px 40px;
            background: linear-gradient(135deg, rgba(0, 194, 255, 0.05) 0%, rgba(13, 110, 253, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(0, 194, 255, 0.15);
            margin: 0 40px;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 0;
            height: 0;
            border: 15px solid transparent;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -30px;
            border-left-color: rgba(0, 194, 255, 0.15);
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -30px;
            border-right-color: rgba(0, 194, 255, 0.15);
        }

        .timeline-number {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--cyan-future), #00E5FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: 800;
            color: white;
            z-index: 10;
            border: 4px solid var(--dark-bg);
        }

        .timeline-content h4 {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
        }

        .timeline-content p {
            color: var(--gray-text);
            line-height: 1.6;
            font-size: 1.05em;
        }
    </style>
