/* AINNA Roadmap to Unicorn - Apple-Inspired Corporate Design */

/* Local Inter Font - CDN Localisation */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
}

:root {
    /* Color Palette - Apple Corporate Style */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F7;
    --bg-tertiary: #EFEFF4;
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --text-tertiary: #86868B;
    --accent-blue: #0071E3;
    --accent-blue-hover: #0077ED;
    --border-light: #E5E5EA;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1200px;
}

html[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --border-light: rgba(148, 163, 184, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .global-nav {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: rgba(148, 163, 184, 0.15);
}

html[data-theme="dark"] .nav-links.open {
    background: rgba(15, 23, 42, 0.98);
    border-bottom-color: rgba(148, 163, 184, 0.15);
}

html[data-theme="dark"] .vision-card,
html[data-theme="dark"] .agent-card,
html[data-theme="dark"] .metric-card,
html[data-theme="dark"] .timeline-content,
html[data-theme="dark"] .neuralops-card {
    background: var(--bg-secondary);
    border-color: var(--border-light);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Global Navigation */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-logo {
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-links .highlight-link {
    color: var(--accent-blue);
    font-weight: 600;
}

.nav-links .highlight-link:hover {
    color: var(--accent-blue-hover);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.btn-nav {
    padding: 8px 16px;
    background: var(--accent-blue);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-1px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 1.5px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: rgba(0, 113, 227, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--accent-blue);
}

/* Hero Section */
.hero-section {
    padding: calc(86px + 24px) 0 48px;
    background: var(--bg-primary);
    text-align: center;
    min-height: auto;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--text-secondary);
}

.bullet-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Vision Section */
.vision-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.vision-grid {
    display: block;
    overflow: hidden;
    width: 100%;
}

.vision-swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.vision-grid .vision-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.vision-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vision-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.vision-card p {
    font-size: 15px;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Roadmap Timeline Section */
.roadmap-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.timeline-item {
    position: relative;
    padding-left: 48px;
    padding-top: 24px;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -6px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
}

.timeline-year {
    position: absolute;
    left: 24px;
    top: -64px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-blue);
    background: var(--bg-primary);
    padding: 4px 10px;
    white-space: nowrap;
    z-index: 10;
    line-height: 1.4;
    display: flex;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.timeline-outputs,
.agent-list,
.feature-list,
.products-grid,
.moats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.output-tag,
.agent-item,
.feature-item,
.product-card,
.moat-item {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.revenue-model,
.target-users {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 16px;
}

.revenue-model strong,
.target-users strong {
    color: var(--text-primary);
}

/* AI Agents Section */
.agents-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* NeuralOps Infrastructure Section */
.neuralops-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.neuralops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Cost Savings Section */
.savings-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.savings-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.savings-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.savings-card.highlight {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-color: var(--accent-blue);
}

.savings-card.roi {
    background: var(--accent-blue);
    color: white;
}

.savings-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.savings-card.roi h3 {
    color: white;
}

.savings-amount {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.1;
}

.savings-amount.external {
    color: #ef4444;
}

.savings-amount.local {
    color: var(--accent-blue);
}

.savings-amount.roi {
    color: white;
}

.savings-breakdown {
    list-style: none;
    padding: 0;
}

.savings-breakdown li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.savings-breakdown li:last-child {
    border-bottom: none;
}

.savings-card.roi .savings-breakdown li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cost-comparison {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0, 113, 227, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.comparison-item:first-child {
    border-bottom: 1px solid var(--border-light);
}

.comparison-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.comparison-value {
    font-size: 16px;
    font-weight: 700;
}

.comparison-value.external {
    color: #ef4444;
}

.comparison-value.local {
    color: var(--accent-blue);
}

.cost-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.cost-label {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cost-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-blue);
}

.neuralops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.neuralops-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.neuralops-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.neuralops-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: var(--accent-blue);
}

.neuralops-card.highlight {
    background: var(--accent-blue);
    color: white;
}

.neuralops-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.neuralops-card.highlight h3 {
    color: white;
}

.model-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.model-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stat-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-blue);
}

.router-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
}

.benefit-list {
    margin-top: 20px;
}

.benefit-item {
    padding: 8px 0;
    font-size: 15px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:last-child {
    border-bottom: none;
}

.neuralops-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.neuralops-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.neuralops-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agents-grid {
    display: block;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.agent-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.agent-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.agent-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.agent-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Metrics Section */
.metrics-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 12px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.metric-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.metric-note {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Investor Section */
.investor-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.investor-content {
    max-width: 800px;
    margin: 0 auto;
}

.investor-text {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.key-statement {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.key-statement p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

/* Action Plan Section */
.action-plan-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.action-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.action-item {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.action-phase {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.action-list {
    list-style: none;
    padding: 0;
}

.action-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.action-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

/* Footer CTA Section */
.footer-cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    text-align: center;
}

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

.footer-cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--text-primary);
}

/* Site Footer */
.site-footer {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .neuralops-card.featured {
        grid-column: span 1;
    }
    
    .model-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .container {
        padding: 0 16px;
    }

    section,
    .vision-section,
    .roadmap-section,
    .agents-section,
    .metrics-section,
    .investor-section,
    .cta-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    .ainna-nav-hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .global-nav {
        position: relative;
    }
    
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-bullets {
        align-items: flex-start;
        text-align: left;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .vision-grid,
    .agents-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        padding-left: 32px;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .timeline-marker {
        left: -5px;
    }
    
    .timeline-content h3 {
        font-size: 24px;
    }
    
    .footer-cta-title {
        font-size: 28px;
    }
    
    .action-timeline {
        grid-template-columns: 1fr;
    }
    
    .neuralops-grid {
    display: block;
        grid-template-columns: 1fr;
    }
    
    .neuralops-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .savings-grid {
    display: block;
        grid-template-columns: 1fr;
    }
    
    .savings-amount {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .vision-card,
    .agent-card,
    .metric-card {
        padding: 24px;
    }
}

/* Smooth Fade-Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Vision Cards Animation */
.vision-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vision-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Timeline Cards Animation - Slide from Left */
.timeline-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* AI Agent Cards - Hover Glow + Float */
.agent-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15), 0 0 20px rgba(0, 113, 227, 0.1);
}

/* Metrics Cards - Pulse on Hover */
.metric-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
}

.metric-value {
    transition: all 0.3s ease;
}

.metric-card:hover .metric-value {
    transform: scale(1.03);
}

/* NeuralOps Cards - Gradient Flow Border */
.neuralops-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neuralops-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-blue), transparent, rgba(124, 58, 237, 0.5));
    -webkit-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 ease;
}

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

.neuralops-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
}

/* Savings Cards Animation */
.savings-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.savings-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 113, 227, 0.2);
}

/* Stat Box Animation */
.stat-box {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
}

.stat-number {
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-blue), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

   MOBILE RESPONSIVE FIXES FOR SCROLLERS
   ========================================== */

@media (max-width: 768px) {
    
    /* Vision Cards - Mobile */
    .vision-swiper {
        padding: 10px 0 30px;
    }
    
    .vision-card {
        width: 260px !important;
        padding: 32px 24px;
    }
    
    .vision-number {
        font-size: 12px;
    }
    
    .vision-card h3 {
        font-size: 18px;
    }
    
    .vision-card p {
        font-size: 14px;
    }
    
    /* AI Agent Cards - Mobile */
    .agent-swiper {
        padding: 10px 0 30px;
    }
    
    .agent-card {
        width: 280px !important;
        padding: 28px 24px;
    }
    
    .agent-icon {
        font-size: 28px;
    }
    
    .agent-card h3 {
        font-size: 17px;
    }
    
    .agent-card p {
        font-size: 13px;
    }
    
    /* NeuralOps Cards - Mobile */
    .neuralops-swiper {
        padding: 10px 0 30px;
    }
    
    .neuralops-card {
        width: 300px !important;
        padding: 28px 24px;
    }
    
    .neuralops-card h3 {
        font-size: 18px;
    }
    
    .neuralops-card p {
        font-size: 14px;
    }
    
    .model-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .model-list li {
        font-size: 13px;
    }
    
    /* Savings Cards - Mobile */
    .savings-swiper {
        padding: 10px 0 30px;
    }
    
    .savings-card {
        width: 320px !important;
        padding: 32px 28px;
    }
    
    .savings-amount {
        font-size: 32px;
    }
    
    .savings-breakdown li {
        font-size: 14px;
    }
    
    /* Metrics Grid - Keep as grid on mobile */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .metric-card {
        padding: 28px 20px;
    }
    
    .metric-value {
        font-size: 26px;
    }
    
    .metric-label {
        font-size: 13px;
    }
    
    /* NeuralOps Stats - Mobile */
    .neuralops-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-box {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-text {
        font-size: 12px;
    }
    
    /* Timeline - Keep vertical scroll on mobile */
    .timeline-item {
        padding-left: 40px;
        margin-bottom: 60px;
    }
    
    .timeline-year {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .timeline-content p {
        font-size: 15px;
    }
    
    /* Action Plan - Stack vertically */
    .action-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-item {
        padding: 24px;
    }
    
    .action-phase {
        font-size: 12px;
    }
    
    .action-list li {
        font-size: 14px;
    }
}

/* Small Mobile (iPhone SE, etc) */
@media (max-width: 480px) {
    
    .vision-card {
        width: 240px !important;
        padding: 28px 20px;
    }
    
    .agent-card {
        width: 260px !important;
        padding: 24px 20px;
    }
    
    .neuralops-card {
        width: 280px !important;
        padding: 24px 20px;
    }
    
    .savings-card {
        width: 290px !important;
        padding: 28px 24px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 24px 20px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .neuralops-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
}

/* Fix Swiper overflow issues */
.swiper {
    overflow: visible !important;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Ensure cards don't get cut off */
.swiper-slide {
    height: auto !important;
}

/* Pause animation when scrolling */
@media (prefers-reduced-motion: reduce) {
    .swiper {
        scroll-behavior: auto !important;
    }
}

   SWIPER CONTAINER FIXES - DESKTOP & MOBILE
   ========================================== */

/* Vision Grid - Convert to Swiper */
.vision-grid {
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.vision-swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.vision-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    width: 280px !important;
    flex-shrink: 0 !important;
    height: auto !important;
}

/* Agents Grid - Convert to Swiper */
.agents-grid {
    display: block;
    overflow: hidden;
    width: 100%;
}

.agent-swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.agent-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    width: 300px !important;
    flex-shrink: 0 !important;
    height: auto !important;
}

/* Fix card content overflow */
.vision-card *,
.agent-card *,
.savings-card * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure swiper slides are visible */
.swiper-slide {
    width: auto !important;
    height: auto !important;
}

/* Prevent horizontal page scroll */
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
}

.container {
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Desktop specific - ensure proper widths */
@media (min-width: 1024px) {
    .vision-card {
        width: 300px !important;
    }
    
    .agent-card {
        width: 320px !important;
    }
}

   AI AGENT SWIPER - MOBILE FIX
   ========================================== */

@media (max-width: 768px) {
    .agent-swiper {
        padding: 10px 0 30px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
    
    .agent-card {
        width: 280px !important;
        padding: 28px 24px !important;
        height: auto !important;
        min-height: unset !important;
    }
    
    .agent-icon {
        font-size: 32px !important;
        margin-bottom: 12px !important;
    }
    
    .agent-card h3 {
        font-size: 17px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .agent-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .agent-swiper {
        padding: 10px 0 30px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
    
    .agent-card {
        width: 260px !important;
        padding: 24px 20px !important;
    }
    
    .agent-icon {
        font-size: 28px !important;
    }
    
    .agent-card h3 {
        font-size: 16px !important;
    }
    
    .agent-card p {
        font-size: 13px !important;
    }
}

/* Prevent card content overflow */
.agent-card h3,
.agent-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

