/* ========================================
   CLAWDBOT LANDING PAGE - FUTURISTIC DARK MODE
   ======================================== */

:root {
    /* Primary Colors */
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --primary-light: #66e5ff;
    --primary-glow: rgba(0, 212, 255, 0.3);

    /* Accent Colors */
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-glow: rgba(124, 58, 237, 0.3);

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.7);
    --bg-card-hover: rgba(20, 20, 35, 0.8);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);

    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;

    /* Typography */
    --font-display: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.nav-cta i {
    width: 16px;
    height: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 140px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--primary);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Hero Visual - AI Brain Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.5s both;
}

.ai-brain {
    position: relative;
    width: 400px;
    height: 400px;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 60px var(--primary-glow);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 60px var(--primary-glow); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 80px var(--primary-glow); }
}

.brain-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--primary);
    border-right-color: var(--accent);
}

.ring-1 {
    width: 150px;
    height: 150px;
    animation: ringRotate 4s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    animation: ringRotate 6s linear infinite reverse;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: nodeGlow 2s ease-in-out infinite;
}

.node-1 { top: 10%; left: 50%; animation-delay: 0s; }
.node-2 { top: 30%; right: 10%; animation-delay: 0.5s; }
.node-3 { bottom: 30%; right: 10%; animation-delay: 1s; }
.node-4 { bottom: 10%; left: 50%; animation-delay: 1.5s; }

@keyframes nodeGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Intro Section */
.intro-section {
    padding: 0 24px 80px;
}

.intro-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
}

.intro-icon i {
    width: 40px;
    height: 40px;
    color: var(--bg-dark);
}

.intro-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.intro-content p {
    color: var(--text-secondary);
}

.intro-content strong {
    color: var(--primary);
}

/* Why AI Section */
.why-ai-section {
    padding: var(--section-padding) 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-card strong {
    color: var(--primary);
}

/* CTO Section */
.cto-section {
    padding: var(--section-padding) 24px;
}

.cto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.cto-frame {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.cto-avatar {
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glass-border);
    overflow: hidden;
}

.cto-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    width: 60px;
    height: 60px;
    color: var(--bg-dark);
}

.cto-frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
}

.corner-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.corner-tr { top: -8px; right: -8px; border-left: none; border-bottom: none; }
.corner-bl { bottom: -8px; left: -8px; border-right: none; border-top: none; }
.corner-br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: #0077b5;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.linkedin-btn:hover {
    background: #005c8f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.linkedin-btn i {
    width: 18px;
    height: 18px;
}

.cto-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cto-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cto-intro strong {
    color: var(--primary);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.credential-item:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.credential-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.credential-icon i {
    width: 24px;
    height: 24px;
    color: var(--bg-dark);
}

.credential-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.credential-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Infrastructure Section */
.infrastructure-section {
    padding: var(--section-padding) 24px;
}

.infra-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.infra-card {
    padding: 40px;
    position: relative;
}

.infra-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
}

.infra-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.infra-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.infra-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.infra-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.recommended-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.recommended-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.infra-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.infra-card h3 .highlight {
    color: var(--primary);
}

.infra-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.infra-features {
    list-style: none;
}

.infra-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.infra-features i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Roadmap Section */
.roadmap-section {
    padding: var(--section-padding) 24px;
}

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

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    padding-bottom: 40px;
}

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

.timeline-marker {
    position: absolute;
    left: 20px;
    width: 42px;
    height: 42px;
    background: var(--bg-dark);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    z-index: 1;
}

.timeline-marker.highlight {
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-dark);
}

.timeline-content {
    padding: 28px;
    position: relative;
}

.timeline-content.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 16px;
}

.timeline-icon i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.timeline-period {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Investment Section */
.investment-section {
    padding: var(--section-padding) 24px;
}

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

.investment-card {
    padding: 36px;
    position: relative;
}

.investment-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--glass-border);
}

.investment-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    margin-bottom: 20px;
}

.investment-icon i {
    width: 28px;
    height: 28px;
    color: var(--bg-dark);
}

.investment-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.investment-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 24px;
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 60px var(--primary-glow);
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.cta-icon i {
    width: 40px;
    height: 40px;
    color: var(--bg-dark);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-item i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 60px 24px 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 420px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 40px; }
    .ai-brain { width: 300px; height: 300px; }
    .features-grid { grid-template-columns: 1fr; }
    .cto-grid { grid-template-columns: 1fr; text-align: center; }
    .infra-options { grid-template-columns: 1fr; }
    .investment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; }
    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero-title { font-size: 2rem; }
    .hero-cta-group { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .intro-card { flex-direction: column; text-align: center; }
    .cta-trust { flex-direction: column; gap: 12px; }
    .footer-content { flex-direction: column; gap: 32px; }
    .footer-links { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Disable fade-in animations on mobile */
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-cta-group,
    .hero-stats,
    .hero-visual {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .section-header,
    .feature-card,
    .credential-item,
    .infra-card,
    .timeline-item,
    .investment-card,
    .cta-card,
    .intro-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
