/* ============================================
   BLANCTECH - GLOBAL STYLES
   Palette: #0D0D0D (bg), #FFFFFF (text), #00E5FF (accent cyan)
   ============================================ */

:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #141414;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --accent: #00E5FF;
    --accent-glow: rgba(0, 229, 255, 0.3);
    --accent-dark: #00B8CC;
    --accent-purple: #8B5CF6;
    --accent-green: #10B981;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(0,229,255,0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; z-index: 2; background: var(--bg-primary); }

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #00FFD1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content { text-align: center; }
.loader-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.loader-logo span { color: var(--accent); }
.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-card);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 16px;
}
.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loadProgress 1.5s ease-in-out forwards;
}
@keyframes loadProgress {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}
.loader-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
#cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.08;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    mix-blend-mode: screen;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
#navbar.scrolled {
    background: rgba(13,13,13,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.nav-logo .logo-text { color: var(--text-primary); }
.nav-logo .logo-text span { color: var(--accent); }
.logo-icon {
    color: var(--accent);
    font-size: 0.5em;
}
.nav-links {
    display: flex;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover::after { width: 20px; }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-cta:hover {
    background: #00FFD1;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--accent-glow);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
}
.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0,229,255,0.08);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.title-line { display: block; }
.title-gradient {
    background: linear-gradient(135deg, var(--accent), #00FFD1, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle strong { color: var(--text-primary); }
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: #00FFD1;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), #00FFD1);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(15px);
}
.btn-glow:hover::before { opacity: 0.5; }
.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0,229,255,0.05);
}
.btn-full { width: 100%; justify-content: center; }

/* HERO TERMINAL */
.hero-terminal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}
.terminal-dots { display: flex; gap: 6px; }
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}
.terminal-body { padding: 16px; min-height: 60px; }
.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.terminal-prompt { color: var(--accent); font-weight: 700; }
.terminal-cmd { color: var(--text-secondary); }
.terminal-cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ANIMATE IN */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.animate-in:nth-child(1) { animation-delay: 0.6s; }
.animate-in:nth-child(2) { animation-delay: 0.8s; }
.animate-in:nth-child(3) { animation-delay: 1s; }
.animate-in:nth-child(4) { animation-delay: 1.2s; }
.animate-in:nth-child(5) { animation-delay: 1.4s; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg-primary); }
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}
.card-glow {
    position: absolute;
    top: -100px; right: -100px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    filter: blur(80px);
    transition: opacity 0.5s;
    pointer-events: none;
}
.service-card:hover .card-glow { opacity: 0.08; }
.card-featured {
    border-color: rgba(0,229,255,0.15);
    background: linear-gradient(135deg, rgba(0,229,255,0.03), var(--bg-card));
}
.card-featured .card-glow { opacity: 0.05; }
.card-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}
.card-icon { margin-bottom: 24px; position: relative; }
.icon-orb {
    width: 56px; height: 56px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}
.orb-purple {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.2);
    color: var(--accent-purple);
}
.orb-green {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.2);
    color: var(--accent-green);
}
.icon-rings {
    position: absolute;
    top: 50%; left: 28px;
    transform: translate(-50%, -50%);
}
.icon-rings span {
    position: absolute;
    border: 1px solid rgba(0,229,255,0.1);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 3s ease-in-out infinite;
}
.icon-rings span:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.icon-rings span:nth-child(2) { width: 110px; height: 110px; animation-delay: 0.5s; }
.icon-rings span:nth-child(3) { width: 140px; height: 140px; animation-delay: 1s; }
@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0,229,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,229,255,0.06);
}
.stat-item { text-align: center; flex: 1; }
.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}
.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}
.card-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.card-badge.badge-green {
    background: var(--accent-green);
}
.orb-gold {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.2);
    color: #FFD700;
}

/* TECH CHIPS (dentro dos cards) */
.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.tech-chips .chip {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    border-radius: 100px;
    padding: 4px 10px;
    transition: var(--transition);
}
.service-card:hover .tech-chips .chip {
    border-color: rgba(0,229,255,0.25);
    color: var(--text-secondary);
}

/* MINI RAIO-X PREVIEW (card automação) */
.xray-mini-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.xray-mini-row:last-child { border-bottom: none; }
.xray-mini-row .xm-proc {
    flex: 1;
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xray-mini-row .xm-tag {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 100px;
    flex-shrink: 0;
}
.xm-tag.auto {
    background: rgba(16,185,129,0.12);
    color: var(--accent-green);
    border: 1px solid rgba(16,185,129,0.3);
}
.xm-tag.human {
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}
.xray-mini-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,229,255,0.25);
    font-size: 0.68rem;
    color: var(--text-secondary);
}
.xray-mini-total strong {
    font-family: var(--font-mono);
    color: var(--accent-green);
    font-size: 0.78rem;
}

/* POWER STRIP — ARSENAL DE TECNOLOGIAS */
.power-strip {
    margin-top: 56px;
    text-align: center;
}
.power-strip-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.power-strip-label::before,
.power-strip-label::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3));
}
.power-strip-label::after {
    background: linear-gradient(90deg, rgba(0,229,255,0.3), transparent);
}
.power-marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.power-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: powerScroll 38s linear infinite;
}
.power-marquee:hover .power-track { animation-play-state: paused; }
@keyframes powerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.power-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--bg-card);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: var(--transition);
}
.power-item i {
    color: var(--accent);
    font-size: 0.85rem;
}
.power-item:hover {
    border-color: rgba(0,229,255,0.35);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* QUIZ LAUNCH (CTA gamificada) */
.quiz-launch {
    max-width: 520px;
    margin: 0 auto;
}
.quiz-launch-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 10px 0 34px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.quiz-launch-points i { color: var(--accent); margin-right: 6px; }
.quiz-launch .btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 18px 28px;
}

/* CARD PREVIEWS - MINI DASHBOARDS */
.card-preview {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 20px;
    font-size: 0.75rem;
}
.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
}
.preview-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
}
.preview-dot.green { background: var(--accent-green); box-shadow: 0 0 8px rgba(16,185,129,0.5); }
.preview-dot.blue { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.preview-metrics {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.metric { flex: 1; text-align: center; }
.metric-num {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.metric-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.preview-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent));
    border-radius: 4px;
    animation: barGrow 2s ease-out forwards;
}
@keyframes barGrow {
    from { width: 0%; }
}

/* AGENT TEAM DASHBOARD */
.agent-team-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.agent-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
}
.agent-row:hover { background: rgba(255,255,255,0.05); }
.agent-row.agent-ceo {
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.1);
}
.agent-avatar {
    width: 24px; height: 24px;
    border-radius: 6px;
    background: rgba(0,229,255,0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    flex-shrink: 0;
}
.agent-ceo .agent-avatar {
    background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(0,255,209,0.2));
    color: #FFD700;
    font-size: 0.6rem;
}
.agent-name {
    flex: 1;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.agent-ceo .agent-name {
    color: var(--accent);
    font-weight: 600;
}
.agent-status {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}
.agent-status.online {
    color: var(--accent-green);
    background: rgba(16,185,129,0.1);
}
.agent-status.processing {
    color: #FBBF24;
    background: rgba(251,191,36,0.1);
    animation: pulse-status 2s infinite;
}
@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* FULL AGENT DASHBOARD (landing page) */
.agent-dashboard {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}
.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dashboard-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
}
.dashboard-header .team-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 3px 8px;
    background: rgba(0,229,255,0.1);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 600;
}
.dashboard-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 350px;
}
.dashboard-sidebar {
    border-right: 1px solid var(--border);
    padding: 16px;
}
.sidebar-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.agent-list-full {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.agent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: default;
}
.agent-item:hover { background: rgba(255,255,255,0.03); }
.agent-item.ceo-item {
    background: rgba(0,229,255,0.04);
    border: 1px solid rgba(0,229,255,0.08);
    margin-bottom: 4px;
}
.agent-item-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.agent-item-avatar.cyan { background: rgba(0,229,255,0.15); color: var(--accent); }
.agent-item-avatar.green { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.agent-item-avatar.purple { background: rgba(139,92,246,0.15); color: var(--accent-purple); }
.agent-item-avatar.gold { background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(0,229,255,0.1)); color: #FFD700; }
.agent-item-info { flex: 1; min-width: 0; }
.agent-item-name {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ceo-item .agent-item-name { color: var(--accent); }
.agent-item-role {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.agent-item-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.agent-item-dot.online { background: var(--accent-green); box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.agent-item-dot.busy { background: #FBBF24; box-shadow: 0 0 6px rgba(251,191,36,0.5); animation: pulse-dot 2s infinite; }
.dashboard-main { padding: 16px; }
.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.kpi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}
.kpi-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.kpi-value {
    font-size: 1.3rem;
    font-weight: 800;
}
.kpi-change {
    font-size: 0.65rem;
    color: var(--accent-green);
    margin-top: 2px;
}
.dashboard-log {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}
.log-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.log-entry {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    align-items: baseline;
}
.log-entry:last-child { border: none; }
.log-time {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    white-space: nowrap;
}
.log-agent {
    font-weight: 600;
    white-space: nowrap;
}
.log-action { color: var(--text-muted); }

/* Dashboard tabs */
.dash-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    justify-content: center;
}
.dash-tab {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}
.dash-tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.dash-tab.active {
    color: var(--bg-primary);
    background: var(--accent);
    border-color: var(--accent);
}
.dash-panel { display: none; }
.dash-panel.active { display: block; }

@media (max-width: 768px) {
    .dashboard-body { grid-template-columns: 1fr; }
    .dashboard-sidebar { border-right: none; border-bottom: 1px solid var(--border); }
    .dashboard-kpis { grid-template-columns: 1fr; }
    .dash-tabs { flex-direction: column; }
}

/* ============================================
   OPERATIONAL AGENT DASHBOARD (card grid style)
   ============================================ */
.op-dashboard {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.op-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}
.op-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.op-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
}
.op-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}
.op-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-green);
}
.op-live-dot {
    width: 6px; height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* KPI BAR */
.op-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1px;
    background: var(--border);
    border-bottom: 1px solid var(--border);
}
.op-kpi {
    background: var(--bg-secondary);
    padding: 16px 20px;
}
.op-kpi-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.op-kpi-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* MAIN BODY: CARDS + LOG */
.op-body {
    display: grid;
    grid-template-columns: 1fr 320px;
}

/* AGENT CARDS GRID */
.op-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}
.op-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.op-card:hover {
    border-color: var(--border-hover);
}
.op-card.ceo-card {
    border-color: rgba(255,215,0,0.15);
    background: linear-gradient(135deg, rgba(255,215,0,0.03), var(--bg-card));
}
.op-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.op-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.op-card-icon.icon-gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,179,0,0.1));
    color: #FFD700;
}
.op-card-icon.icon-cyan {
    background: rgba(0,229,255,0.1);
    color: var(--accent);
}
.op-card-icon.icon-purple {
    background: rgba(139,92,246,0.1);
    color: var(--accent-purple);
}
.op-card-icon.icon-green {
    background: rgba(16,185,129,0.1);
    color: var(--accent-green);
}
.op-card-icon.icon-yellow {
    background: rgba(251,191,36,0.1);
    color: #FBBF24;
}
.op-card-icon.icon-pink {
    background: rgba(236,72,153,0.1);
    color: #EC4899;
}
.op-card-info { flex: 1; min-width: 0; }
.op-card-name {
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ceo-card .op-card-name { color: #FFD700; }
.op-card-role {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.op-card-status {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
}
.op-card-status.status-active {
    background: rgba(16,185,129,0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16,185,129,0.2);
}
.op-card-status.status-paused {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.op-card-status.status-busy {
    background: rgba(251,191,36,0.1);
    color: #FBBF24;
    border: 1px solid rgba(251,191,36,0.2);
}

/* PROGRESS BAR IN CARD */
.op-card-progress {
    margin: 10px 0;
}
.op-progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}
.op-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-green));
    transition: width 1s ease;
}
.op-progress-fill.purple {
    background: linear-gradient(90deg, var(--accent-purple), #A78BFA);
}
.op-progress-text {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ACTION BUTTONS */
.op-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}
.op-btn {
    padding: 5px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: default;
    transition: var(--transition);
}
.op-btn-start {
    background: rgba(0,229,255,0.1);
    color: var(--accent);
    border: 1px solid rgba(0,229,255,0.15);
}
.op-btn-stop {
    background: rgba(239,68,68,0.08);
    color: #EF4444;
    border: 1px solid rgba(239,68,68,0.12);
}
.op-btn-schedule {
    background: rgba(16,185,129,0.08);
    color: var(--accent-green);
    border: 1px solid rgba(16,185,129,0.12);
}

/* LOG SIDEBAR */
.op-log {
    border-left: 1px solid var(--border);
    padding: 16px;
    background: rgba(0,0,0,0.15);
    overflow-y: auto;
    max-height: 500px;
}
.op-log-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.op-log-title span:first-child {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.op-log-title span:last-child {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
}
.op-log-entry {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.7rem;
    line-height: 1.5;
    font-family: var(--font-mono);
    color: var(--text-muted);
}
.op-log-entry:last-child { border: none; }
.op-log-entry .log-highlight { color: var(--accent); }
.op-log-entry .log-success { color: var(--accent-green); }
.op-log-entry .log-warning { color: #FBBF24; }
.op-log-entry .log-agent-tag {
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.6rem;
}

@media (max-width: 1024px) {
    .op-body { grid-template-columns: 1fr; }
    .op-cards { grid-template-columns: repeat(2, 1fr); }
    .op-log { border-left: none; border-top: 1px solid var(--border); max-height: 300px; }
}
@media (max-width: 640px) {
    .op-cards { grid-template-columns: 1fr; }
    .op-kpis { grid-template-columns: repeat(2, 1fr); }
}

/* SAAS Preview Chart */
.preview-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    padding: 4px 0;
}
.chart-bar {
    flex: 1;
    background: rgba(139,92,246,0.3);
    border-radius: 3px 3px 0 0;
    transition: background 0.3s;
    animation: chartGrow 1s ease-out forwards;
    transform-origin: bottom;
}
.chart-bar.active { background: var(--accent-purple); }
.chart-bar:hover { background: var(--accent-purple); }
@keyframes chartGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* App Phone Mockup */
.preview-app {
    display: flex;
    justify-content: center;
    padding: 16px;
    background: none;
    border: none;
}
.phone-mockup {
    width: 120px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 8px;
    position: relative;
}
.phone-notch {
    width: 40px;
    height: 4px;
    background: var(--bg-card);
    border-radius: 4px;
    margin: 0 auto 8px;
}
.phone-screen {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.app-header-mock {
    height: 12px;
    background: rgba(16,185,129,0.2);
    border-radius: 3px;
}
.app-card-mock {
    height: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid var(--border);
}
.app-card-mock.short { height: 18px; }
.app-nav-mock {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding-top: 6px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}
.app-nav-mock span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.app-nav-mock span.active {
    background: var(--accent-green);
    box-shadow: 0 0 8px rgba(16,185,129,0.4);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-block {
    text-align: center;
    padding: 32px;
    position: relative;
}
.stat-block::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}
.stat-block:last-child::after { display: none; }
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: inline;
    letter-spacing: -0.03em;
}
.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}
.stat-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}
.stats-bg-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section { background: var(--bg-primary); }
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--border));
}
.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
    position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.step-marker {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    z-index: 1;
}
.marker-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(0,229,255,0.2);
    animation: markerPulse 2s infinite;
}
@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}
.step-content {
    padding-top: 8px;
}
.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-primary);
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.testimonial-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(0,229,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,229,255,0.08);
}
.metric-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}
.testimonial-metric span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: var(--bg-primary); }
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: var(--accent);
    opacity: 0.04;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-input {
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-input::placeholder { color: var(--text-muted); }
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
select.form-input option {
    background: var(--bg-card);
    color: var(--text-primary);
}
.cta-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    position: relative;
    z-index: 2;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(0,229,255,0.05);
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
/* COUNTRIES */
.footer-countries {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}
.countries-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.countries-flags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.country-flag {
    font-size: 1.5rem;
    cursor: default;
    transition: transform 0.2s;
    filter: grayscale(0.3);
}
.country-flag:hover {
    transform: scale(1.3);
    filter: grayscale(0);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}
.lang-btn {
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
    color: var(--accent);
    border-color: rgba(0,229,255,0.2);
    background: rgba(0,229,255,0.05);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-block:nth-child(2)::after { display: none; }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13,13,13,0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }

    .hero { padding: 100px 24px 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 2.5rem; }
    .stat-block::after { display: none; }
    .stat-block { padding: 20px; }

    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 32px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    #cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-terminal { display: none; }
    .stats-bg-text { font-size: 6rem; }
}

/* ============================================
   LANDING PAGE STYLES (shared)
   ============================================ */
.landing-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
}
.landing-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.landing-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.landing-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* FEATURE BLOCKS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.feature-block:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(0,229,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.feature-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-block p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* COMPARISON TABLE */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}
.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.comparison-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.comparison-table td:first-child { font-weight: 600; }
.comparison-table .highlight-col {
    background: rgba(0,229,255,0.03);
    color: var(--accent);
    font-weight: 700;
}
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

.check-green { color: var(--accent-green); }
.check-red { color: #EF4444; }

/* PRICING SECTION */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.pricing-card.popular {
    border-color: rgba(0,229,255,0.3);
    background: linear-gradient(135deg, rgba(0,229,255,0.05), var(--bg-card));
    transform: scale(1.02);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i {
    color: var(--accent);
    font-size: 0.7rem;
}

/* Dashboard mockup for landing pages */
.dashboard-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.mockup-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}
.mockup-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}
.mockup-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.mockup-widget.full { grid-column: 1 / -1; }
.mockup-widget.half { grid-column: span 2; }
.widget-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.widget-value {
    font-size: 1.5rem;
    font-weight: 800;
}
.widget-change {
    font-size: 0.75rem;
    color: var(--accent-green);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .mockup-body { grid-template-columns: 1fr; }
    .mockup-widget.half, .mockup-widget.full { grid-column: 1; }
}
