/* ============================================================
   AI SOFTWARE POWERHOUSE - Complete Design System
   Futuristic, dark-mode tech aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
    /* Core palette */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-elevated: #1a1a26;
    --bg-hover: #22222e;
    
    /* Accent colors - each agent gets a signature color */
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-green: #00ff88;
    --neon-orange: #ff6b2b;
    --neon-pink: #ff2d78;
    --neon-cyan: #06ffd0;
    --neon-gold: #ffd700;
    
    /* Agent color aliases */
    --agent-blue: #0066ff;
    --agent-purple: #9933ff;
    --agent-green: #00cc88;
    --agent-orange: #ff6600;
    --agent-pink: #ff3366;
    --agent-cyan: #00ccff;
    --agent-gold: #ffaa00;
    
    /* Gradients */
    --grad-hero: linear-gradient(135deg, #00d4ff 0%, #a855f7 50%, #ff2d78 100%);
    --grad-blue-purple: linear-gradient(135deg, #00d4ff, #a855f7);
    --grad-green-cyan: linear-gradient(135deg, #00ff88, #06ffd0);
    
    /* Text colors */
    --text-primary: #f0f0f5;
    --text-secondary: #9898a8;
    --text-muted: #5a5a6e;
    --text-inverse: #0a0a0f;
    
    /* Borders */
    --border-subtle: rgba(255,255,255,0.06);
    --border-medium: rgba(255,255,255,0.12);
    --border-strong: rgba(255,255,255,0.2);
    
    /* Spacing */
    --section-padding: 120px 5%;
    --card-radius: 16px;
    --btn-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
.bg-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    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;
    z-index: 0;
    pointer-events: none;
}

.floating-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 20s ease-in-out infinite;
}
.glow-1 {
    width: 600px; height: 600px;
    background: var(--neon-blue);
    top: -200px; left: -200px;
    animation-delay: 0s;
}
.glow-2 {
    width: 500px; height: 500px;
    background: var(--neon-purple);
    top: 50%; right: -150px;
    animation-delay: -7s;
}
.glow-3 {
    width: 400px; height: 400px;
    background: var(--neon-green);
    bottom: -100px; left: 30%;
    animation-delay: -14s;
}
@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 30px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.9); }
    75% { transform: translate(40px, -20px) scale(1.05); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 5%;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 5%;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.4rem;
}
.brand-icon {
    font-size: 1.6rem;
}
.brand-text {
    letter-spacing: -0.5px;
}
.brand-highlight {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav-link:hover {
    color: var(--text-primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-hero);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: var(--btn-radius);
    background: var(--grad-hero);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}
.cta-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 5%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
}
.mobile-menu.active {
    display: flex;
}

/* ============================================================
   LIVE ACTIVITY TICKER
   ============================================================ */
.activity-ticker {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}
.ticker-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.ticker-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: tickerDotPulse 2s ease-in-out infinite;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes tickerDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}
.hero-content {
    flex: 1;
    max-width: 650px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neon-blue);
    margin-bottom: 28px;
    position: relative;
}
.badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.gradient-text {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}
.hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--btn-radius);
    background: var(--grad-hero);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.35);
}
.btn-primary.large {
    padding: 18px 36px;
    font-size: 1.1rem;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--border-medium);
    border-radius: var(--btn-radius);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
}
.btn-secondary:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}
.btn-icon {
    font-size: 1.1rem;
}

/* Hero Visual - Agent Orbit */
.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
}
.agent-orbit {
    position: relative;
    width: 400px;
    height: 400px;
}
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 2px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}
.orbit-icon {
    font-size: 1.8rem;
}
.orbit-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--neon-blue);
    letter-spacing: 2px;
}
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}
.ring-1 {
    width: 240px; height: 240px;
    margin-left: -120px;
    margin-top: -120px;
    animation-duration: 15s;
}
.ring-2 {
    width: 360px; height: 360px;
    margin-left: -180px;
    margin-top: -180px;
    animation-duration: 25s;
    animation-direction: reverse;
}
.orbit-agent {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 2px solid var(--agent-color, var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    top: 50%; left: 50%;
    margin: -22px 0 0 -22px;
    animation: orbitCounter 20s linear infinite;
    animation-delay: var(--delay, 0s);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.ring-1 .orbit-agent {
    transform: rotate(0deg) translateX(120px) rotate(0deg);
    animation: orbitAgent1 15s linear infinite;
    animation-delay: var(--delay, 0s);
}
.ring-2 .orbit-agent {
    transform: rotate(0deg) translateX(180px) rotate(0deg);
    animation: orbitAgent2 25s linear infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbitAgent1 {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes orbitAgent2 {
    from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    to { transform: rotate(-360deg) translateX(180px) rotate(360deg); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-blue);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   PIPELINE SECTION
   ============================================================ */
.pipeline-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    max-width: 1000px;
    margin: 0 auto;
}
.pipeline-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.pipeline-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 30px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}
.pipeline-step.visible {
    opacity: 1;
    transform: translateX(0);
}
.step-connector {
    position: absolute;
    left: 27px;
    top: 70px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--node-color, var(--neon-blue)), transparent);
    opacity: 0.3;
}
.pipeline-step:last-child .step-connector {
    display: none;
}
.step-node {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 2px solid var(--node-color, var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}
.step-icon {
    z-index: 1;
}
.step-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--node-color, var(--neon-blue));
    animation: stepPulse 3s ease-out infinite;
    opacity: 0;
}
@keyframes stepPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}
.step-content {
    flex: 1;
    padding-top: 4px;
}
.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}
.step-agent {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}
.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.pipeline-cta {
    text-align: center;
    margin-top: 60px;
}
.pipeline-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ============================================================
   AI AGENTS SECTION
   ============================================================ */
.agents-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
}
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.agent-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.agent-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.agent-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.agent-card.featured {
    border-color: var(--neon-gold);
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.05), var(--bg-card));
}
.agent-card.featured::before {
    content: '⭐ TALK TO ME';
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--neon-gold);
    color: var(--text-inverse);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 1px;
}
.agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}
.status-dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.status-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    transition: opacity 0.3s;
}
.agent-avatar {
    width: 72px;
    height: 72px;
    background: var(--bg-elevated);
    border: 2px solid var(--agent-color, var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}
.avatar-emoji {
    font-size: 2rem;
    z-index: 1;
}
.avatar-ring {
    position: absolute;
    top: -4px; left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--agent-color, var(--neon-blue));
    animation: avatarSpin 4s linear infinite;
}
@keyframes avatarSpin {
    to { transform: rotate(360deg); }
}
.agent-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-family: 'JetBrains Mono', monospace;
}
.agent-role {
    font-size: 0.85rem;
    color: var(--neon-blue);
    font-weight: 600;
    margin-bottom: 14px;
}
.agent-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
}
.agent-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.skill-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.agent-metrics {
    display: flex;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
}
.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}
.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.agent-cta {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border: 2px solid var(--neon-gold);
    border-radius: var(--btn-radius);
    background: rgba(255, 170, 0, 0.1);
    color: var(--neon-gold);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.agent-cta:hover {
    background: var(--neon-gold);
    color: var(--text-inverse);
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.3);
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    max-width: 1200px;
    margin: 0 auto;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}
.package-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.package-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.package-card.featured {
    border-color: var(--neon-blue);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}
.package-card.featured.visible {
    transform: scale(1.03);
}
.package-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}
.package-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--grad-hero);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 0 0 10px 10px;
}
.package-header {
    padding: 36px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}
.package-tier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}
.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px;
}
.price-amount {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}
.package-period {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.package-body {
    padding: 28px 32px;
}
.package-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.package-features {
    list-style: none;
    margin-bottom: 24px;
}
.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-subtle);
}
.package-features li:last-child {
    border-bottom: none;
}
.feature-check {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.85rem;
}
.feature-x {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
}
.feature-disabled {
    opacity: 0.4;
}
.package-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--neon-blue);
    font-weight: 600;
}
.delivery-icon {
    font-size: 1rem;
}
.package-cta {
    display: block;
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    padding: 14px;
    border: 2px solid var(--border-medium);
    border-radius: var(--btn-radius);
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.package-cta:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-2px);
}
.package-cta.featured {
    background: var(--grad-hero);
    border: none;
    color: #fff;
}
.package-cta.featured:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}
.portfolio-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.portfolio-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.portfolio-image {
    height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.portfolio-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}
.portfolio-type {
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Portfolio Mockups */
.portfolio-mockup {
    width: 85%;
    background: var(--bg-primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.portfolio-mockup.mobile {
    background: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
}
.mockup-bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-subtle);
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-content {
    display: flex;
    padding: 12px;
    gap: 10px;
    height: 160px;
}
.mockup-sidebar {
    width: 50px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    flex-shrink: 0;
}
.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mockup-chart {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(153, 51, 255, 0.15));
    border-radius: 6px;
}
.mockup-cards {
    display: flex;
    gap: 8px;
}
.mockup-mini-card {
    flex: 1;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
}

/* Mobile mockup */
.mockup-phone {
    width: 120px;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 2px solid var(--border-medium);
    overflow: hidden;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.phone-notch {
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 4px auto 10px;
}
.phone-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.phone-header-bar {
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.phone-card-large {
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 204, 136, 0.2), rgba(0, 204, 255, 0.2));
    border-radius: 8px;
}
.phone-cards-row {
    display: flex;
    gap: 6px;
}
.phone-card-sm {
    flex: 1;
    height: 35px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}
.phone-nav-bar {
    display: flex;
    gap: 4px;
    justify-content: space-around;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border-subtle);
}
.phone-nav-bar span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* E-commerce mockup */
.mockup-content.ecommerce {
    flex-direction: column;
}
.mockup-hero-banner {
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 51, 102, 0.2));
    border-radius: 6px;
    flex-shrink: 0;
}
.mockup-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    flex: 1;
}
.mockup-product {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
}

.portfolio-info {
    padding: 24px;
}
.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.portfolio-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}
.portfolio-stats span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.portfolio-tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.portfolio-tech span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-text {
    max-width: 600px;
}
.about-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.5;
}
.about-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.about-stat {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}
.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-visual {
    position: sticky;
    top: 120px;
}

/* Terminal animation */
.about-terminal {
    background: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-subtle);
}
.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.terminal-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 8px;
    font-family: 'JetBrains Mono', monospace;
}
.terminal-body {
    padding: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    line-height: 2;
    max-height: 500px;
    overflow-y: auto;
}
.terminal-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.terminal-line.blink .term-agent::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--neon-green);
    margin-left: 4px;
    vertical-align: middle;
    animation: termBlink 1s step-end infinite;
}
@keyframes termBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.term-time {
    color: var(--text-muted);
}
.term-agent {
    font-weight: 700;
    margin: 0 4px;
}
.term-agent.apex { color: var(--agent-gold); }
.term-agent.pulse { color: var(--agent-cyan); }
.term-agent.nexus { color: var(--agent-purple); }
.term-agent.nova { color: var(--agent-blue); }
.term-agent.forge { color: var(--agent-green); }
.term-agent.orbit { color: var(--agent-orange); }
.term-agent.cipher { color: var(--agent-pink); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 102, 255, 0.05), transparent);
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.cta-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    z-index: 1;
    padding: 80px 5% 30px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 350px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
}
.social-link:hover {
    background: var(--neon-blue);
    color: #fff;
    border-color: var(--neon-blue);
}
.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 6px 0;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--text-primary);
}
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.footer-agents-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--neon-green);
}

/* ============================================================
   SALES CHATBOT
   ============================================================ */

/* Floating Action Button */
.chatbot-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--grad-hero);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.4);
    opacity: 0;
    transform: translateY(20px);
}
.chatbot-fab.visible {
    opacity: 1;
    transform: translateY(0);
}
.chatbot-fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0, 102, 255, 0.5);
}
.fab-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50px;
    background: var(--grad-hero);
    animation: fabPulse 2s ease-out infinite;
    z-index: -1;
}
@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}
.fab-icon {
    font-size: 1.4rem;
}
.fab-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* Chat Container */
.chatbot-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 420px;
    max-height: 680px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.chatbot-container.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Chat Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(153, 51, 255, 0.1));
    border-bottom: 1px solid var(--border-subtle);
}
.chatbot-agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chatbot-avatar {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 2px solid var(--neon-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
}
.chatbot-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
}
.chatbot-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 2px;
}
.chatbot-role {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.chatbot-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}
.chatbot-close:hover {
    background: rgba(255, 59, 48, 0.15);
    border-color: rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

/* Chat Messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 300px;
    max-height: 380px;
}
.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}
.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

/* Message Bubbles */
.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: msgFadeIn 0.3s ease;
}
@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-message.user {
    flex-direction: row-reverse;
}
.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--neon-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.message-content {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.chat-message.user .message-content {
    align-items: flex-end;
}
.message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
}
.message-bubble.bot {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-top-left-radius: 4px;
    color: var(--text-primary);
}
.message-bubble.user {
    background: var(--grad-hero);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.message-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 0 4px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}
.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

/* Quote Card */
.chatbot-quote-card {
    margin: 0 16px 12px;
    background: var(--bg-card);
    border: 1px solid var(--neon-gold);
    border-radius: 14px;
    overflow: hidden;
    animation: msgFadeIn 0.5s ease;
}
.quote-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 170, 0, 0.08);
    border-bottom: 1px solid var(--border-subtle);
    font-weight: 700;
    font-size: 0.9rem;
}
.quote-icon {
    font-size: 1.1rem;
}
.quote-body {
    padding: 16px;
}
.quote-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.quote-row:last-child {
    border-bottom: none;
}
.quote-row.total {
    padding-top: 12px;
    margin-top: 4px;
}
.quote-row.discount {
    border-bottom: none;
    padding: 4px 0 0;
}
.quote-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.quote-value {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 600;
}
.discount-value {
    color: var(--neon-green);
    font-weight: 700;
}
.quote-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-gold);
    font-family: 'JetBrains Mono', monospace;
}
.quote-features {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.quote-features .quote-label {
    margin-bottom: 6px;
    display: block;
}
.quote-features ul {
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.quote-features li {
    padding: 3px 0;
}
.quote-divider {
    height: 1px;
    background: var(--border-medium);
    margin: 6px 0;
}
.quote-actions {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border-subtle);
}
.quote-accept {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: var(--neon-green);
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.quote-accept:hover {
    background: #00e07a;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}
.quote-negotiate {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-medium);
    border-radius: 10px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.quote-negotiate:hover {
    border-color: var(--neon-gold);
    background: rgba(255, 170, 0, 0.08);
}

/* Chat Input Area */
.chatbot-input-area {
    padding: 12px 16px 16px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-card);
}
.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    max-height: 100px;
    overflow-y: auto;
}
.suggestion-btn {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    white-space: nowrap;
}
.suggestion-btn:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.05);
}
.chatbot-input-row {
    display: flex;
    gap: 8px;
}
.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.chatbot-input:focus {
    border-color: var(--neon-blue);
}
.chatbot-input::placeholder {
    color: var(--text-muted);
}
.chatbot-send {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
    .packages-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-visual {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 160px;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        max-width: 300px;
    }
    .agent-orbit {
        width: 280px;
        height: 280px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .agents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .packages-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .chatbot-container {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 100px);
        right: 8px;
        bottom: 8px;
        border-radius: 16px;
    }
    .package-card.featured {
        transform: none;
    }
    .package-card.featured.visible {
        transform: none;
    }
    .package-card.featured:hover {
        transform: translateY(-6px);
    }
    .about-numbers {
        grid-template-columns: 1fr;
    }
    .activity-ticker {
        top: 60px;
    }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--border-strong);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}