/* ============================================
   AInCloud Infotech - Master Stylesheet
   Futuristic AI/Cloud Theme | Dark Mode
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    /* Colors - Deep Space Palette */
    --bg-primary: #050714;
    --bg-secondary: #0a0f24;
    --bg-tertiary: #111733;
    --surface: rgba(20, 27, 60, 0.5);
    --surface-glass: rgba(255, 255, 255, 0.04);
    --surface-glass-hover: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 229, 255, 0.3);

    /* Neon Accents */
    --neon-cyan: #00e5ff;
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
    --neon-green: #10ffaa;
    --neon-orange: #ff8a00;
    --neon-blue: #3b82f6;

    /* Text */
    --text-primary: #e8ecf8;
    --text-secondary: #a8b1cc;
    --text-muted: #6b7494;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00e5ff 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #00e5ff 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-mesh: radial-gradient(at 20% 20%, rgba(0,229,255,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 30%, rgba(139,92,246,0.15) 0px, transparent 50%),
                     radial-gradient(at 50% 80%, rgba(236,72,153,0.1) 0px, transparent 50%);

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Layout */
    --container: 1240px;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(0, 229, 255, 0.3);
    --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 24px 48px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
}

#particles-js {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
}

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

/* === GLASS CARD === */
.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,229,255,0.4), transparent 50%, rgba(139,92,246,0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3);
    background-size: 200% 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
    background-position: 100% 0;
}

.btn-secondary {
    background: var(--surface-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--surface-glass-hover);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    background: rgba(5, 7, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 0;
}

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

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

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.4);
    animation: pulse-glow 3s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 229, 255, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(139, 92, 246, 0.6); }
}

.logo-accent {
    color: var(--neon-cyan);
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 10px 18px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    position: relative;
}

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

.nav-link.active {
    color: var(--neon-cyan);
}

.nav-cta {
    background: var(--gradient-primary);
    color: #fff !important;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-green);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-typed {
    color: var(--text-primary);
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* === ORBITAL VISUAL === */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-system {
    position: relative;
    width: 400px;
    height: 400px;
}

.core-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(0, 229, 255, 0.5),
                inset 0 0 40px rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.core-sphere::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(30px);
    animation: pulse-bg 4s ease infinite;
}

.core-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(5, 7, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--neon-cyan);
    backdrop-filter: blur(10px);
    z-index: 2;
    position: relative;
}

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

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

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
}

.orbit-1 {
    width: 240px;
    height: 240px;
    animation: rotate 12s linear infinite;
    border-color: rgba(0, 229, 255, 0.2);
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation: rotate 18s linear infinite reverse;
    border-color: rgba(139, 92, 246, 0.2);
}

.orbit-3 {
    width: 400px;
    height: 400px;
    animation: rotate 24s linear infinite;
    border-color: rgba(236, 72, 153, 0.2);
}

.orbit-item {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.orbit-2 .orbit-item { color: var(--neon-purple); box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2); }
.orbit-3 .orbit-item { color: var(--neon-pink); box-shadow: 0 4px 20px rgba(236, 72, 153, 0.2); }

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

/* Counter rotation for orbit items */
.orbit-1 .orbit-item { animation: counter-rotate 12s linear infinite; }
.orbit-2 .orbit-item { animation: counter-rotate 18s linear infinite reverse; }
.orbit-3 .orbit-item { animation: counter-rotate 24s linear infinite; }

@keyframes counter-rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(-360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: wheel 1.8s ease infinite;
}

@keyframes wheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* === SECTIONS === */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === TRUSTED MARQUEE === */
.trusted-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.trusted-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.marquee-track span:nth-child(even) {
    color: var(--neon-cyan);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--surface-glass-hover);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease);
}

.icon-cyan { background: rgba(0, 229, 255, 0.1); color: var(--neon-cyan); }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--neon-purple); }
.icon-pink { background: rgba(236, 72, 153, 0.1); color: var(--neon-pink); }
.icon-green { background: rgba(16, 255, 170, 0.1); color: var(--neon-green); }
.icon-orange { background: rgba(255, 138, 0, 0.1); color: var(--neon-orange); }
.icon-blue { background: rgba(59, 130, 246, 0.1); color: var(--neon-blue); }

.icon-cyan-text { color: var(--neon-cyan); }
.icon-purple-text { color: var(--neon-purple); }
.icon-pink-text { color: var(--neon-pink); }
.icon-green-text { color: var(--neon-green); }
.icon-orange-text { color: var(--neon-orange); }
.icon-blue-text { color: var(--neon-blue); }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px currentColor;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.card-link:hover {
    gap: 14px;
    color: var(--neon-purple);
}

/* === PROCESS TIMELINE === */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
}

.process-step {
    padding: 32px 24px;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--neon-cyan);
    box-shadow: 0 12px 32px rgba(0, 229, 255, 0.15);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
}

.cta-content {
    padding: 64px 40px;
    text-align: center;
    position: relative;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.cta-content .btn {
    position: relative;
}

/* === FOOTER === */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-glass);
    background: rgba(5, 7, 20, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    max-width: 320px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: color 0.3s var(--ease);
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
    border-color: transparent;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

.newsletter-form button {
    padding: 12px 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.newsletter-large {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-large input {
    padding: 16px 20px;
    font-size: 15px;
}

.newsletter-large button {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
    color: var(--neon-cyan);
}

/* === AI BUBBLE === */
.ai-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.4);
    transition: transform 0.3s var(--ease);
}

.ai-bubble:hover {
    transform: scale(1.1);
}

.ai-bubble-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.5;
    animation: ai-ping 2s ease infinite;
}

@keyframes ai-ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* === PAGE HERO (subpages) === */
.page-hero {
    padding: 160px 0 60px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin: 16px 0 20px;
    line-height: 1.1;
}

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

/* === MISSION SECTION === */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mission-card {
    padding: 40px 32px;
    text-align: center;
}

.mission-card .feature-icon {
    margin: 0 auto 24px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FOUNDER === */
.founder-section {
    padding: 80px 0;
}

.founder-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.founder-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #fff;
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 2;
}

.founder-orbits {
    position: absolute;
    inset: 0;
}

.founder-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed var(--border-glass);
    border-radius: 50%;
}

.fo-1 { width: 280px; height: 280px; animation: rotate 20s linear infinite; }
.fo-2 { width: 350px; height: 350px; animation: rotate 30s linear infinite reverse; }
.fo-3 { width: 420px; height: 420px; animation: rotate 40s linear infinite; }

.founder-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 16px 0 24px;
}

.founder-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    border-left: 3px solid var(--neon-cyan);
    padding-left: 20px;
    margin: 0 0 24px;
    line-height: 1.5;
}

.founder-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.founder-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
}

.founder-signature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
}

.founder-signature span {
    color: var(--text-muted);
    font-size: 14px;
}

/* === BIG STATS === */
.stats-section {
    padding: 80px 0;
}

.big-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.big-stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
}

.big-stat-label {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

/* === WHY US === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 32px 24px;
    text-align: center;
}

.why-card i {
    font-size: 36px;
    margin-bottom: 18px;
    display: block;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

/* === SERVICES DETAIL === */
.services-detail {
    padding: 60px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-glass);
}

.service-row:last-child {
    border-bottom: none;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-num {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: block;
}

.service-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

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

.service-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--neon-cyan);
}

.service-visual {
    padding: 48px 32px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto 32px;
    box-shadow: 0 8px 40px currentColor;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-tags span {
    padding: 6px 14px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
}

/* === INDUSTRY CARDS === */
.industries-section { padding: 60px 0; }

.industry-card {
    padding: 32px;
}

.industry-card:hover {
    transform: translateY(-4px);
    background: var(--surface-glass-hover);
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.industry-header i {
    font-size: 32px;
}

.industry-header h3 {
    font-size: 22px;
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.industry-list li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.industry-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* === ACCELERATORS === */
.accelerator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.accel-card {
    padding: 32px;
}

.accel-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.accel-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

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

/* === BLOG === */
.blog-section { padding: 60px 0; }

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.featured-image {
    background: var(--gradient-primary);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-overlay {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.featured-content {
    padding: 48px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    flex-wrap: wrap;
}

.post-tag {
    padding: 4px 10px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
}

.post-date, .post-read {
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.featured-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.blog-card {
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    border-bottom: 1px solid var(--border-glass);
}

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 19px;
    margin: 12px 0 10px;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* === CONTACT === */
.contact-section {
    padding: 40px 0 100px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-card i {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: var(--surface-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-card a, .contact-card p {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--neon-cyan);
}

.contact-social {
    margin-top: 16px;
}

.contact-form-wrap {
    padding: 48px;
}

.contact-form-wrap h3 {
    font-size: 26px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-checkbox input {
    width: auto;
    margin: 0;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 255, 170, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(16, 255, 170, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(236, 72, 153, 0.1);
    color: var(--neon-pink);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero-container,
    .founder-wrap,
    .service-row,
    .featured-post,
    .contact-wrap {
        grid-template-columns: 1fr !important;
    }
    .service-row.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { order: -1; height: 380px; }
    .orbital-system { transform: scale(0.85); }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 28px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .featured-content { padding: 28px; }
    .contact-form-wrap { padding: 28px; }
    .cta-content { padding: 40px 24px; }
    .scroll-indicator { display: none; }

    /* Mobile Nav */
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: rgba(5, 7, 20, 0.95);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 32px 24px;
        gap: 0;
        transition: right 0.3s var(--ease);
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 14px 16px; border-radius: 12px; }
    .nav-cta { margin-top: 8px; }
}

@media (max-width: 480px) {
    .container, .nav-container { padding: 0 16px; }
    .hero-title { font-size: 2.2rem; }
    .orbital-system { transform: scale(0.7); }
    .marquee-track { font-size: 16px; gap: 24px; }
    .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* === TEXT SELECTION === */
::selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

/* === PRINT === */
@media print {
    .navbar, .footer, .ai-bubble, #particles-js, .grid-overlay { display: none; }
    body { background: white; color: black; }
}
