/* === RESET & VARIABLES === */
:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #0070f3;
    
    /* Solution Card Colors */
    --crm-color: #00ff88;
    --ai-color: #ff6b9d;
    --cloud-color: #00b4ff;
    --background: #000000;
    --surface: #111111;
    --surface-light: #1a1a1a;
    --surface-lighter: #222222;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-accent: #00ff88;
    --border: #333333;
    --border-light: #444444;
    --shadow: rgba(0, 255, 136, 0.1);
    --shadow-strong: rgba(0, 255, 136, 0.3);
    --code-bg: #0d1117;
    --code-border: #30363d;
    
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Consolas', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* === BACKGROUND ELEMENTS === */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

.background-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

/* === TYPOGRAPHY === */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-highlight {
    font-family: var(--font-mono);
    color: var(--text-accent);
    font-size: 0.9em;
    font-weight: 500;
}

.tech-emphasis {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 0.85em;
    font-style: italic;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.brand-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-domain {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-mono);
}

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

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--background);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.nav-link.cta-button:hover {
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-strong);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.nav-link.cta-button:hover .button-glow {
    left: 100%;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 112, 243, 0.1) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-code-block {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid var(--code-border);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #28ca42; }

.code-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.code-content {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.code-comment { color: #8b949e; }
.code-keyword { color: #ff7b72; }
.code-class { color: #ffa657; }
.code-method { color: #79c0ff; }
.code-param { color: #ffa657; }
.code-this { color: #ff7b72; }
.code-string { color: #a5d6ff; }
.code-boolean { color: #79c0ff; }
.code-template { color: #a5d6ff; }
.code-variable { color: #79c0ff; }
.code-property { color: #79c0ff; }

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--background);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

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

.button-text {
    font-size: 1.1rem;
}

.button-code {
    font-size: 0.8rem;
    opacity: 0.8;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    border: 1px solid var(--border);
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.hero-terminal {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    padding: 0.75rem 1rem;
    background: var(--surface);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid var(--code-border);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.terminal-content {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt {
    color: var(--primary);
    font-weight: 700;
}

.command {
    color: var(--text-primary);
}

.terminal-output {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.success {
    color: var(--primary);
}

.value {
    color: var(--secondary);
    font-weight: 600;
}

/* === SECTIONS === */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.code-bracket {
    color: var(--primary);
    font-family: var(--font-mono);
}

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

/* === TECH STACK === */
.tech-stack {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.tech-category {
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.tech-item {
    background: var(--surface-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-3px);
}

.tech-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tech-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.3rem;
}

.tech-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.code-snippet-showcase {
    margin-top: 3rem;
}

.code-demo {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.code-demo .code-content {
    padding: 2rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* === SOLUTIONS === */
.solutions {
    background: var(--background);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, var(--surface-light) 100%);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper {
    position: relative;
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.card-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* === COLORED PULSES === */
.crm-pulse {
    background: var(--crm-color);
}

.ai-pulse {
    background: var(--ai-color);
    animation: pulse-fast 1.8s ease-in-out infinite;
}

.cloud-pulse {
    background: var(--cloud-color);
    animation: pulse-slow 2.5s ease-in-out infinite;
}

@keyframes pulse-fast {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.15; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@keyframes pulse-slow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.25; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.08; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* === CARD THEME ENHANCEMENTS === */
.crm-card .card-tag,
.crm-card .tech-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--crm-color);
}

.ai-card .card-tag,
.ai-card .tech-tag {
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    color: var(--ai-color);
}

.cloud-card .card-tag,
.cloud-card .tech-tag {
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    color: var(--cloud-color);
}

/* Keep complexity badges consistent across all cards */
.crm-card .card-complexity,
.ai-card .card-complexity,
.cloud-card .card-complexity {
    background: transparent !important;
    color: #666666 !important;
    border: none !important;
}

.crm-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.ai-card:hover {
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
}

.cloud-card:hover {
    border-color: rgba(0, 180, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 180, 255, 0.15);
}

.card-meta {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-end;
}

.card-tag, .card-complexity {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-weight: 600;
    text-transform: uppercase;
}

.card-tag {
    background: rgba(0, 112, 243, 0.2);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.card-complexity {
    background: transparent;
    color: #666666;
    border: none;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.3),
        inset -1px -1px 2px rgba(255, 255, 255, 0.05);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.card-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* === DEVELOPMENT PROCESS === */
.development-process {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-pipeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pipeline-step {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 112, 243, 0.1);
    color: var(--secondary);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-weight: 500;
    border: 1px solid rgba(0, 112, 243, 0.3);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--background);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
}

.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.metric-icon {
    font-size: 2rem;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    margin-bottom: 0.3rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

/* === DEMO SHOWCASE === */
.demo-showcase {
    background: var(--background);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.demo-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.demo-preview {
    padding: 1.5rem;
    background: var(--code-bg);
}

.demo-browser {
    background: var(--surface-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 0.3rem;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--code-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.browser-content {
    padding: 1rem;
    height: 120px;
    display: flex;
    align-items: center;
}

.demo-interface {
    width: 100%;
}

.demo-nav {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.demo-stats {
    display: flex;
    gap: 2rem;
}

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

.demo-terminal-wrapper {
    background: var(--code-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.demo-terminal-header {
    padding: 0.5rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.demo-terminal-content {
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.demo-info {
    padding: 1.5rem 2rem;
}

.demo-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.demo-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.demo-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-mono);
    transition: all 0.3s ease;
}

.demo-link:hover {
    color: var(--primary-dark);
}

/* === CONTACT === */
.contact {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-code {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-info {
    padding: 2rem 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-subtitle {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.contact-method.primary {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
}

.method-icon {
    font-size: 1.5rem;
}

.method-title {
    font-weight: 600;
    font-family: var(--font-mono);
    display: block;
}

.method-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-guarantee {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.guarantee-icon {
    color: var(--primary);
    font-weight: 700;
}

/* === FOOTER === */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4 {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-terminal {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cursor {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.legal-line {
    line-height: 1.4;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.cta-button) {
        display: none;
    }
    
    .hero-content {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .solutions-grid,
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .process-pipeline {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-contact {
        margin-bottom: 1rem;
    }
    
    .hero-code-block {
        font-size: 0.8rem;
    }
    
    .code-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-card {
        min-width: unset;
    }
}