:root {
    --primary-color: #d4af37; /* Gold */
    --primary-light: #f5d76e; /* Light gold */
    --primary-dark: #b8860b; /* Dark gold */
    --secondary-color: #c0c0c0; /* Silver */
    --accent-color: #d4af37; /* Gold accent */
    --dark-bg: #121212; /* Deep black */
    --dark-bg-lighter: #1e1e1e; /* Slightly lighter black */
    --text-light: #ffffff; /* White text */
    --text-muted: #b8b8b8; /* Muted silver text */
    --card-bg: rgba(30, 30, 30, 0.7); /* Dark card background */
    --glass-effect: rgba(212, 175, 55, 0.05); /* Gold tinted glass */
    --glass-border: rgba(212, 175, 55, 0.15); /* Gold tinted border */
    --glass-highlight: rgba(212, 175, 55, 0.2); /* Gold highlight */
    --shadow-color: rgba(0, 0, 0, 0.3); /* Deeper shadow */
    --gradient-start: #0a0a0a; /* Black gradient start */
    --gradient-end: #1a1a1a; /* Black gradient end */
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particle and Gradient Effects */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.95;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--text-light);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: black;
    border: none;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(10, 11, 26, 0.8);
}

header.scrolled {
    background-color: rgba(10, 11, 26, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-left: 10px;
}

.header-logo {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark-bg-lighter);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.mobile-menu-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-logo {
    flex: 0 0 auto;
}

.hero-logo-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

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

.hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.ai-gradient-text {
    background: linear-gradient(
        to right,
        #8e9eab, /* silver start */
        #eef2f3, /* bright silver */
        #a1c4fd, /* light blue */
        #c2e9fb, /* cyan */
        #eef2f3, /* bright silver again */
        #8e9eab  /* silver end */
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    animation: ai-gradient-shift 8s ease infinite, ai-shimmer 3s infinite;
    position: relative;
}

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

@keyframes ai-shimmer {
    0% { filter: brightness(100%) contrast(100%); }
    50% { filter: brightness(120%) contrast(110%); }
    100% { filter: brightness(100%) contrast(100%); }
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

.hero-image {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-40%);
    width: 50%;
    max-width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.llm-container {
    width: 100%;
    max-width: 600px;
    background: rgba(18, 18, 18, 0.9);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    margin-right: 60px;
}

.llm-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.llm-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.llm-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.7;
}

.llm-title {
    flex-grow: 1;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 16px;
    padding: 5px;
}

.copy-btn:hover {
    color: var(--primary-color);
}

.llm-content {
    padding: 20px 30px 20px 20px;
    height: 300px;
    overflow-y: auto;
}

.typing-container {
    display: flex;
    align-items: center;
}

.typing-text {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    white-space: pre-wrap;
}

/* Cursor removed as requested */

/* Syntax highlighting colors */
.keyword {
    color: var(--primary-color);
}

.function {
    color: #61afef;
}

.string {
    color: #98c379;
}

.comment {
    color: #7f848e;
    font-style: italic;
}

.hero-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.6;
    filter: blur(30px);
}

.fe-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 50px;
    animation: float 6s ease-in-out infinite;
}

.fe-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 100px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    animation: float 8s ease-in-out infinite;
}

.fe-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    animation: float 7s ease-in-out infinite;
}

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

/* Value Proposition Section */
/* Problems We Solve Section */
.problems-solved {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(20, 20, 30, 0.9), rgba(20, 20, 30, 0.95));
}

.problems-content {
    max-width: 900px;
    margin: 0 auto;
}

.problems-list li {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(30, 30, 40, 0.5);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.problems-list li:hover {
    background: rgba(40, 40, 50, 0.7);
    transform: translateX(5px);
}

/* Value Proposition Section */
.value-prop {
    padding: 100px 0;
}

.value-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.value-text {
    flex: 1;
}

.value-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    color: var(--text-muted);
}

.feature-text strong {
    color: var(--text-light);
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 30px;
}

.glass-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-light));
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
    justify-content: space-between;
}

.stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: rgba(20, 21, 48, 0.5);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-badge {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.workflow-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 0 50px;
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.node-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.node-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: spin 10s linear infinite;
}

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

.node-label {
    font-weight: 500;
    color: var(--text-light);
}

.workflow-arrow {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    margin: 0 10px;
}

.workflow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* Why Bionic Section */
.why-bionic {
    padding: 100px 0;
}

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

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--glass-border);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Differentiators Section */
.differentiators {
    padding: 100px 0;
    background-color: rgba(20, 21, 48, 0.5);
}

.diff-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.diff-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.diff-visual {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, var(--primary-color), transparent 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diff-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.diff-visual::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    animation: pulse 3s ease-in-out infinite 1.5s;
}

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

.diff-list {
    flex: 1;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.diff-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.diff-icon i {
    color: white;
    font-size: 1.2rem;
}

.diff-text h4 {
    margin-bottom: 5px;
    color: var(--text-light);
}

.diff-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Partnership Section */
.partnership {
    padding: 100px 0;
    background-color: rgba(10, 11, 26, 0.7);
}

.partnership-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 60px;
    margin-bottom: 10px;
}

.partner-logo i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.partner-logo h4 {
    font-size: 1.5rem;
    margin: 0;
}

.qw-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2);
}

.ts-logo {
    max-width: 60px;
    height: auto;
}

.testers-logo h4 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.partner-description p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.partnership-value {
    background: var(--dark-bg-lighter);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.partnership-value h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.partnership-value .highlight-text {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 61, 129, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-value {
        padding: 25px;
    }
}

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

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

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.how-it-works-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
}

.steps-container {
    flex: 1;
}

.workflow-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-top: 50px;
}

.workflow-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pioneer-note {
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    text-align: left;
    max-width: 80%;
}

.pioneer-note p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .how-it-works-content {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .workflow-visual {
        padding-top: 20px;
    }
    
    .workflow-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .workflow-visual {
        margin-top: 40px;
    }
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    top: -40%;
    left: -40%;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
        top: -150%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.service-icon i {
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sample Output Section */
.sample-output {
    padding: 100px 0;
    background-color: rgba(20, 21, 48, 0.5);
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sample-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sample-card:hover {
    transform: translateY(-5px);
}

.sample-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.sample-icon i {
    color: white;
    font-size: 1.5rem;
}

.sample-card h4 {
    margin-bottom: 5px;
    color: var(--text-light);
}

.sample-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sample-visual {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 800px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

.dashboard-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    height: 200px;
}

.dc-1 {
    grid-column: 1 / 3;
}

.dashboard-table {
    grid-column: 1 / 3;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
}

/* News Section */
.news {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 60px 0;
    position: relative;
}

.news .container {
    display: flex;
    justify-content: center;
}

.news .footer-links {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.news .article-preview {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.news .article-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.news .article-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.news .article-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news .article-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news .article-summary {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 768px) {
    .news {
        padding: 40px 0;
    }
    
    .news .article-preview {
        padding: 15px;
        gap: 15px;
    }
    
    .news .article-image {
        width: 90px;
        height: 90px;
    }
    
    .news .article-title {
        font-size: 1rem;
    }
    
    .news .article-summary {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news .article-preview {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .news .article-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: rgba(10, 11, 26, 0.9);
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-links {
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.article-preview {
    display: flex;
    align-items: center;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    gap: 15px;
}

.article-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.article-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.article-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.article-summary {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .article-preview {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .article-image {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-image {
        width: 45%;
    }
    
    .value-content, .diff-content {
        flex-direction: column;
    }
    
    .value-image, .diff-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .llm-container {
        margin-right: 0;
        margin-left: 0;
        max-width: 90%;
        width: 90%;
    }
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo-img {
        width: 150px;
        margin-bottom: 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .workflow-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .workflow-arrow {
        width: 2px;
        height: 30px;
    }
    
    .workflow-arrow::after {
        right: 50%;
        top: 100%;
        transform: translate(50%, -50%);
    }
    
    .benefits-grid, .services-grid, .sample-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        width: 92%;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero .subtitle {
        font-size: 0.95rem;
    }
    
    .llm-container {
        max-width: 95%;
        width: 95%;
        margin: 0 auto;
    }
    
    .pioneer-note {
        max-width: 95%;
        padding: 15px;
        margin-top: 20px;
    }
    
    .pioneer-note p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-list li, .diff-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon, .diff-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-logo {
        margin-bottom: 15px;
    }
    
    .cta {
        padding: 40px 0;
    }
    
    .cta h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .footer-content {
        padding: 10px;
    }
    
    .footer-links {
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .article-link {
        font-size: 0.85rem;
        padding: 5px 10px;
        display: inline-block;
    }
}
