*{ 
            -webkit-tap-highlight-color: transparent;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: default;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .allow-select,
        .section-content p,
        .step-description,
        .process-card p,
        .explanation-content p,
        .example-card p,
        .layer p,
        .component-card p,
        .feature-card p {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
            cursor: text;
        }
        
        :root {
            --deep-blue: #060F1E;
            --mid-blue: #0B2A55;
            --light-blue: #0E4DA4;
            --accent-blue: #1E90FF;
            --accent-teal: #1E90FF;
            --text-white: #EAF1FF;
            --text-gray: #CFE2FF;
            --text-light: #EAF1FF;
            --glass-bg: rgba(11, 42, 85, 0.85);
            --glass-border: rgba(255, 255, 255, 0.22);
            --gradient-primary: linear-gradient(180deg, #060F1E, #0B2A55, #0E4DA4);
            --gradient-secondary: linear-gradient(135deg, #0B2A55 0%, #0E4DA4 100%);
            --gradient-accent: linear-gradient(135deg, #1E90FF 0%, #1E90FF 100%);
            --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            --section-padding: 5rem 2rem;
        }

        html {
            scroll-behavior: smooth;
            font-size: 15px;
        }

        body {
            font-family: 'Manrope', 'IBM Plex Sans', 'Source Sans Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--gradient-primary);
            color: var(--text-white);
            line-height: 1.6;
            font-weight: 400;
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1, h2, h3, h4 {
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 500;
            letter-spacing: -0.3px;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            font-weight: 500;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 0;
            width: 3.5rem;
            height: 2px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
            font-weight: 400;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .lead-text {
            font-size: 1.15rem;
            line-height: 1.7;
            font-weight: 300;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        a:hover {
            opacity: 0.85;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .main-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(6, 15, 30, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 0.8rem 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.22);
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .main-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .main-logo .logo-icon {
            font-size: 1.8rem;
            padding: 0.5rem;
            background: rgba(30, 144, 255, 0.12);
            border-radius: 10px;
            border: 1px solid rgba(30, 144, 255, 0.25);
            transition: all 0.3s ease;
        }

        .logo-tagline {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-top: 0.1rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .main-nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .main-nav a {
            color: var(--text-gray);
            font-weight: 400;
            padding: 0.4rem 0;
            position: relative;
            font-size: 0.95rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-teal);
        }

        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent-teal);
            transition: width 0.3s ease;
        }

        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }

        .main-nav i {
            margin-right: 0.4rem;
            font-size: 1rem;
        }

        .login-btn {
            background: #1E90FF;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-weight: 400;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            width: 90px;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .login-btn:hover {
            background: #0B2A55;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
        }

        .login-btn:active {
            background: #0E4DA4;
            transform: translateY(0);
        }

        .login-btn i {
            font-size: 1rem;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: rgba(6, 15, 30, 0.97);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.22);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 4rem 1.5rem 1.5rem;
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .sidebar-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .sidebar-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
            padding: 0.7rem;
            background: rgba(30, 144, 255, 0.15);
            border-radius: 10px;
            border: 1px solid rgba(30, 144, 255, 0.3);
        }

        .sidebar-tagline {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.25rem;
            font-weight: 400;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .sidebar-nav {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .sidebar-nav li {
            margin-bottom: 0.4rem;
        }

        .sidebar-nav a {
            display: block;
            padding: 0.8rem 1.2rem;
            color: var(--text-gray);
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 400;
            border: 1px solid transparent;
            font-size: 0.9rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            background: rgba(30, 144, 255, 0.1);
            color: var(--accent-teal);
            border-color: rgba(30, 144, 255, 0.2);
            transform: translateX(5px);
        }

        .sidebar-nav i {
            width: 20px;
            text-align: center;
            margin-right: 8px;
        }

        .sidebar-close {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .sidebar-close:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: rotate(90deg);
        }

        .mobile-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(6, 15, 30, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.22);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .mobile-logo .logo-icon {
            font-size: 1.7rem;
            padding: 0.4rem;
            background: rgba(30, 144, 255, 0.12);
            border-radius: 8px;
            border: 1px solid rgba(30, 144, 255, 0.25);
            transition: all 0.3s ease;
        }

        .mobile-nav-toggle {
            background: rgba(30, 144, 255, 0.12);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            font-size: 1.1rem;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 1001;
        }

        .mobile-nav-toggle:hover {
            background: rgba(30, 144, 255, 0.18);
            transform: rotate(90deg);
        }

        .page-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding: 9rem 1.2rem 4rem;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at top, rgba(30, 144, 255, 0.15) 0%, transparent 70%),
                        radial-gradient(ellipse at bottom, rgba(6, 15, 30, 0.8) 0%, transparent 70%);
        }

        .page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #060F1E, #0B2A55, #0E4DA4);
            opacity: 0.5;
            z-index: -1;
        }

        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
            filter: blur(50px);
            z-index: -1;
            opacity: 0.3;
        }

        .glow-1 {
            top: -150px;
            right: -150px;
        }

        .glow-2 {
            bottom: -150px;
            left: -150px;
            background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
        }

        .page-hero-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-title {
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--text-light);
            line-height: 1.1;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: -0.1px;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .fade-in-text {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
            animation-delay: 0.3s;
        }

        .fade-in-delay {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }

        .fade-in-delay.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }

        .slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section {
            padding: 5rem 1.2rem;
            position: relative;
        }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            opacity: 0.1;
            z-index: -1;
        }

        .section-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .process-steps {
            position: relative;
            margin-top: 3rem;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            left: 100px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--accent-teal), transparent);
            opacity: 0.3;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .process-steps::before {
                left: 40px;
            }
        }

        .step {
            display: flex;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .step.visible {
            opacity: 1;
        }

        .step:nth-child(odd) {
            transform: translateX(-50px);
        }

        .step:nth-child(even) {
            transform: translateX(50px);
        }

        .step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .step {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .step-number {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            background: var(--gradient-accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 500;
            margin-right: 2rem;
            position: relative;
            z-index: 3;
            box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
            transition: all 0.5s ease;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .step:hover .step-number {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 20px 50px rgba(30, 144, 255, 0.5);
        }

        @media (max-width: 768px) {
            .step-number {
                margin-right: 0;
                margin-bottom: 1.5rem;
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }

        .step-content {
            flex: 1;
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .step-content:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .step-content:hover:before {
            opacity: 1;
        }

        .step-content:hover {
            transform: translateX(10px);
            border-color: rgba(30, 144, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(30, 144, 255, 0.15);
        }

        @media (max-width: 768px) {
            .step-content {
                padding: 1.8rem;
            }
            
            .step-content:hover {
                transform: translateY(-5px);
            }
        }

        .step-title {
            color: var(--text-light);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .step-title i {
            color: var(--accent-teal);
            font-size: 1.3rem;
        }

        .step-description {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .step-description ul {
            margin-left: 1.8rem;
            margin-bottom: 1.2rem;
        }

        .step-description li {
            margin-bottom: 0.8rem;
            color: var(--text-gray);
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .highlight-text {
            background: linear-gradient(135deg, var(--accent-teal) 0%, #1E90FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 400;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .example-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .example-card {
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 2rem;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .example-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .example-card:nth-child(odd) {
            transform: translateX(-50px);
        }

        .example-card:nth-child(even) {
            transform: translateX(50px);
        }

        .example-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .example-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .example-card:hover:before {
            opacity: 1;
        }

        .example-card:hover {
            transform: translateY(-8px) scale(1.03);
            border-color: rgba(30, 144, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(30, 144, 255, 0.1);
        }

        .example-icon {
            font-size: 2.2rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .example-card:hover .example-icon {
            transform: rotate(5deg) scale(1.1);
            background: rgba(30, 144, 255, 0.15);
        }

        .example-card h3 {
            color: var(--text-light);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .example-card p {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 0.8rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .example-card strong {
            color: var(--accent-teal);
            font-weight: 500;
        }

        .architecture {
            margin-top: 3rem;
        }

        .architecture-diagram {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .architecture-diagram {
                gap: 1.8rem;
            }
        }

        .layer {
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 2rem;
            width: 100%;
            max-width: 550px;
            text-align: center;
            position: relative;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .layer.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .layer:nth-child(odd) {
            transform: translateX(-50px);
        }

        .layer:nth-child(even) {
            transform: translateX(50px);
        }

        .layer.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .layer:hover {
            transform: scale(1.05) !important;
            border-color: var(--accent-teal);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(30, 144, 255, 0.1);
        }

        .layer::after {
            content: '↓';
            position: absolute;
            bottom: -2.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--accent-teal);
            font-size: 2rem;
            opacity: 0.7;
            font-weight: 300;
        }

        .layer:last-child::after {
            display: none;
        }

        @media (max-width: 768px) {
            .layer::after {
                bottom: -2rem;
                font-size: 1.8rem;
            }
        }

        .layer h3 {
            color: var(--text-light);
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .layer p {
            color: var(--text-gray);
            margin-bottom: 0;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .explanation-components {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .component-card {
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 2rem;
            text-align: center;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .component-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .component-card:nth-child(odd) {
            transform: translateX(-50px);
        }

        .component-card:nth-child(even) {
            transform: translateX(50px);
        }

        .component-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .component-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .component-card:hover:before {
            opacity: 1;
        }

        .component-card:hover {
            transform: translateY(-8px) scale(1.03) !important;
            border-color: rgba(30, 144, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(30, 144, 255, 0.1);
        }

        .component-icon {
            font-size: 2.2rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .component-card:hover .component-icon {
            transform: rotate(5deg) scale(1.1);
            background: rgba(30, 144, 255, 0.15);
        }

        .component-card h3 {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .component-card p {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 2rem;
            text-align: center;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:nth-child(odd) {
            transform: translateX(-50px);
        }

        .feature-card:nth-child(even) {
            transform: translateX(50px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover:before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.03) !important;
            border-color: rgba(30, 144, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(30, 144, 255, 0.1);
        }

        .feature-icon {
            font-size: 2.2rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(5deg) scale(1.1);
            background: rgba(30, 144, 255, 0.15);
        }

        .feature-card h3 {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .feature-card p {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .cta-section {
            text-align: center;
            padding: 5rem 1.2rem;
            background: linear-gradient(135deg, rgba(6, 15, 30, 0.95) 0%, rgba(11, 42, 85, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1.8rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .cta-section p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 14px;
            font-weight: 400;
            font-size: 1rem;
            transition: all 0.5s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.7s ease;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
        }

        .btn-secondary:hover {
            background: rgba(30, 144, 255, 0.08);
            transform: translateY(-4px);
            border-color: var(--accent-teal);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 1.2rem 2.5rem;
            background: rgba(6, 15, 30, 0.8);
            backdrop-filter: blur(20px);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .footer-section h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 2.5rem;
            height: 2px;
            background: var(--accent-teal);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-gray);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .footer-links a:hover {
            color: var(--accent-teal);
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.95rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .footer-contact i {
            color: var(--accent-teal);
            width: 18px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.8rem;
            text-align: center;
            color: var(--text-gray);
        }

        .footer-bottom p {
            margin-bottom: 0.8rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .copyright {
            font-size: 0.9rem;
            color: var(--text-gray);
            opacity: 0.7;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            justify-content: center;
        }

        .social-links a {
            color: var(--text-gray);
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-teal);
            transform: translateY(-3px);
        }

        @media (min-width: 1025px) {
            .main-header {
                display: flex;
            }
            
            .mobile-header {
                display: none;
            }
            
            .page-hero {
                padding-top: 8rem;
            }
        }

        @media (max-width: 1200px) {
            html {
                font-size: 14px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 992px) {
            .example-cards,
            .explanation-components,
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 13px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .page-hero {
                padding: 7rem 1rem 3.5rem;
                min-height: 60vh;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 4rem 1rem;
            }
            
            .example-cards,
            .explanation-components,
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 320px;
            }
            
            .sidebar {
                width: 100%;
                right: -100%;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.2rem;
            }
            
            .mobile-header {
                padding: 0.8rem 1rem;
            }
            
            .process-steps::before {
                left: 50px;
            }
            
            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .cta-section {
                padding: 4rem 1.2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .cta-section p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 12px;
            }
            
            .mobile-header {
                padding: 0.7rem 0.8rem;
            }
            
            .page-hero {
                padding: 6rem 0.8rem 3rem;
            }
            
            .section {
                padding: 3.5rem 0.8rem;
            }
            
            .btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .step-content,
            .example-card,
            .component-card,
            .feature-card {
                padding: 1.8rem;
            }
            
            .step-number {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .process-steps::before {
                left: 35px;
            }
            
            .example-icon,
            .component-icon,
            .feature-icon {
                font-size: 1.8rem;
                padding: 0.8rem;
            }
            
            .lead-text {
                font-size: 1.05rem;
            }
            
            p {
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            html {
                font-size: 11px;
            }
            
            .page-title {
                font-size: 1.7rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
            }
            
            .process-steps::before {
                left: 30px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }