/* DEPLOY: 2026-05-21 16:31:04 */
/* ============================================
   BEKRAFTED - Premium Cyber Futuristic Website
   Complete Design System
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --bg-primary: #020208;
    --bg-secondary: #060612;
    --bg-tertiary: #0a0a1e;
    --bg-card: rgba(10, 10, 30, 0.6);
    --bg-card-hover: rgba(10, 10, 30, 0.8);

    --neon-cyan: #00F0FF;
    --neon-magenta: #F72585;
    --neon-green: #39FF14;
    --neon-purple: #B026FF;
    --neon-blue: #4361EE;

    --text-primary: #FFFFFF;
    --text-secondary: #8892B0;
    --text-muted: #4A5070;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00F0FF 0%, #F72585 50%, #39FF14 100%);
    --gradient-cyan-magenta: linear-gradient(135deg, #00F0FF, #F72585);
    --gradient-magenta-green: linear-gradient(135deg, #F72585, #39FF14);
    --gradient-green-cyan: linear-gradient(135deg, #39FF14, #00F0FF);

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

    /* Spacing */
    --section-padding: 120px;
    --section-padding-tablet: 80px;
    --section-padding-mobile: 60px;
    --container-max: 1400px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gradient-text-animated {
    background: linear-gradient(90deg, #00F0FF, #F72585, #39FF14, #B026FF, #00F0FF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    color: var(--neon-cyan);
    backdrop-filter: blur(10px);
}

.label-icon {
    font-size: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 20px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 2px;
    margin: 24px auto 0;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border-radius: 2px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-header-center {
        margin-bottom: 50px;
    }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    opacity: 0;
}

.cursor-dot.hovering {
    transform: scale(3);
    background: var(--neon-magenta);
    box-shadow: 0 0 20px var(--neon-magenta);
}

.cursor-ring.hovering {
    width: 60px;
    height: 60px;
    border-color: rgba(247, 37, 133, 0.5);
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring, .cursor-trail {
        display: none !important;
    }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 40px;
}

.preloader-letter {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.preloader-percent {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== SCAN LINE ===== */
.scan-line-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.03;
    animation: scan-line 12s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes scan-line {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2, 2, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

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

.navbar-logo {
    position: relative;
    z-index: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.navbar-logo:hover .logo-text {
    color: var(--neon-cyan);
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: var(--neon-cyan);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-logo:hover .logo-glow {
    opacity: 0.3;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    transition: width 0.3s ease;
}

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

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

.nav-link-cta {
    padding: 8px 20px;
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-full);
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Navbar Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    padding: 4px 0;
    z-index: 1001;
}

.toggle-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(2, 2, 8, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at calc(100% - 40px) 30px);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    clip-path: circle(150% at calc(100% - 40px) 30px);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mobile-link:hover {
    color: var(--neon-cyan);
}

.mobile-link-cta {
    margin-top: 16px;
    padding: 12px 32px;
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-full);
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .navbar-links {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* 3D Grid */
.grid-3d {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 60%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
}

/* Mesh Orbs */
.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orb-float 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 240, 255, 0.08);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(247, 37, 133, 0.08);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(57, 255, 20, 0.05);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: rgba(176, 38, 255, 0.06);
    top: 20%;
    right: 20%;
    animation-delay: -7s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particle-rise linear infinite;
}

@keyframes particle-rise {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(20px) scale(0); opacity: 0; }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 70%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
    opacity: 0;
}

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

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

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-word {
    display: inline-block;
    margin-right: 0.3em;
}

.title-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
}

.title-line-accent .title-letter {
    background: linear-gradient(90deg, #00F0FF, #F72585, #39FF14);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
}

/* Hero Terminal */
.hero-terminal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--neon-cyan);
    margin-bottom: 24px;
    opacity: 0;
}

.terminal-prompt {
    color: var(--neon-green);
}

.terminal-cursor {
    width: 2px;
    height: 1.2em;
    background: var(--neon-cyan);
    animation: cursor-blink 1s step-end infinite;
    box-shadow: 0 0 8px var(--neon-cyan);
}

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0;
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5), 0 0 80px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-glow {
    position: absolute;
    inset: 0;
    background: var(--neon-cyan);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.btn-primary:hover .btn-glow {
    opacity: 0.3;
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.btn-secondary:hover {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(247, 37, 133, 0.3);
}

.btn-secondary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary-large {
    padding: 20px 50px;
    font-size: 1rem;
}

.btn-secondary-large {
    padding: 20px 50px;
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--neon-cyan);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.3), transparent);
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 20px;
    }
    .stat-divider {
        height: 30px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-track {
    width: 20px;
    height: 32px;
    border: 1px solid var(--text-muted);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-thumb {
    width: 3px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--neon-cyan);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 10;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.services-header {
    text-align: center;
    padding: var(--section-padding) 24px 40px;
}

.services-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.services-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.service-slide {
    min-width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    position: relative;
}

.service-bg-number {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(15rem, 25vw, 30rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-icon-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--neon-cyan);
    transition: all 0.5s ease;
}

.service-slide:nth-child(2) .service-icon-wrap {
    background: rgba(247, 37, 133, 0.05);
    border-color: rgba(247, 37, 133, 0.2);
}
.service-slide:nth-child(2) .service-icon { color: var(--neon-magenta); }

.service-slide:nth-child(3) .service-icon-wrap {
    background: rgba(57, 255, 20, 0.05);
    border-color: rgba(57, 255, 20, 0.2);
}
.service-slide:nth-child(3) .service-icon { color: var(--neon-green); }

.service-slide:nth-child(4) .service-icon-wrap {
    background: rgba(176, 38, 255, 0.05);
    border-color: rgba(176, 38, 255, 0.2);
}
.service-slide:nth-child(4) .service-icon { color: var(--neon-purple); }

.service-text {
    flex: 1;
}

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

.service-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Services Navigation */
.services-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.services-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.services-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.services-dot.active {
    background: rgba(0, 240, 255, 0.3);
}

.services-dot.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .services-wrapper {
        height: auto;
    }

    .services-track {
        flex-direction: column;
    }

    .service-slide {
        min-width: 100%;
        height: auto;
        padding: 60px 24px;
    }

    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
    }

    .service-description {
        max-width: 100%;
    }

    .service-features {
        justify-content: center;
    }

    .services-nav {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 30px 0;
        justify-content: center;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb-benefits-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 240, 255, 0.05);
    top: 20%;
    left: -10%;
}

.orb-benefits-2 {
    width: 300px;
    height: 300px;
    background: rgba(247, 37, 133, 0.05);
    bottom: 10%;
    right: -5%;
}

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

.benefit-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.1);
}

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

.benefit-card-wide {
    grid-column: span 2;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    transition: all 0.4s ease;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(15deg) scale(1.1);
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefit-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-accent {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card-wide {
        grid-column: span 1;
    }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item-large {
    grid-column: span 2;
    aspect-ratio: 8/5;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-bg {
    transform: scale(1.05);
}

.gradient-1 { background: linear-gradient(135deg, rgba(0,240,255,0.3), rgba(247,37,133,0.3)); }
.gradient-2 { background: linear-gradient(135deg, rgba(247,37,133,0.3), rgba(57,255,20,0.3)); }
.gradient-3 { background: linear-gradient(135deg, rgba(57,255,20,0.3), rgba(0,240,255,0.3)); }
.gradient-4 { background: linear-gradient(135deg, rgba(247,37,133,0.3), rgba(176,38,255,0.3)); }
.gradient-5 { background: linear-gradient(135deg, rgba(0,240,255,0.3), rgba(57,255,20,0.3)); }
.gradient-6 { background: linear-gradient(135deg, rgba(57,255,20,0.3), rgba(247,37,133,0.3)); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 8, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    font-weight: 600;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin: 8px 0 4px;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.portfolio-link {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.portfolio-link-disabled {
    color: var(--text-muted);
    cursor: default;
    font-style: italic;
    opacity: 0.6;
}

/* Portfolio Corners */
.portfolio-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-corner {
    opacity: 1;
}

.portfolio-corner.tl {
    top: 12px;
    left: 12px;
    border-top: 2px solid var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
}

.portfolio-corner.br {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item-large {
        grid-column: span 1;
    }
}

/* ===== PROCESS SECTION ===== */
.process-section {
    position: relative;
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

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

.process-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-magenta), var(--neon-green));
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-node {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-ring {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    animation: radar-pulse 3s ease-out infinite;
}

@keyframes radar-pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.node-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    position: relative;
    z-index: 2;
}

.node-icon svg {
    width: 20px;
    height: 20px;
}

.process-step:nth-child(2) .node-icon { border-color: var(--neon-magenta); color: var(--neon-magenta); }
.process-step:nth-child(2) .node-ring { border-color: rgba(247, 37, 133, 0.2); }
.process-step:nth-child(3) .node-icon { border-color: var(--neon-green); color: var(--neon-green); }
.process-step:nth-child(3) .node-ring { border-color: rgba(57, 255, 20, 0.2); }

.process-content {
    flex: 1;
    padding-top: 8px;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 240, 255, 0.1);
    line-height: 1;
}

.process-step:nth-child(2) .process-number { color: rgba(247, 37, 133, 0.1); }
.process-step:nth-child(3) .process-number { color: rgba(57, 255, 20, 0.1); }

.process-title {
    font-size: 1.75rem;
    margin: 8px 0 12px;
}

.process-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .process-line {
        left: 20px;
    }
    .process-node {
        width: 40px;
        height: 40px;
    }
    .node-icon {
        width: 36px;
        height: 36px;
    }
    .node-icon svg {
        width: 16px;
        height: 16px;
    }
    .process-step {
        gap: 20px;
    }
    .process-number {
        font-size: 2rem;
    }
    .process-title {
        font-size: 1.3rem;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 80px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.stat-block-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
}

.stat-block-suffix {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--neon-cyan);
}

.stat-block-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 8px;
}

.stat-block-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.3), transparent);
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 32px;
    }
    .stat-block-divider {
        display: none;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    position: relative;
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
}

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

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-8px);
}

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

.pricing-card-featured {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
    animation: float-card 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(20, 30, 80, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(40, 15, 50, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(10, 40, 60, 0.5) 0%, transparent 40%),
        var(--bg-card);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 45%, rgba(0, 180, 220, 0.3) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 25%, rgba(180, 30, 100, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 75%, rgba(40, 180, 10, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 60%, rgba(120, 30, 180, 0.2) 0%, transparent 35%);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 0;
    animation: galaxy-shift 12s ease-in-out infinite alternate;
}

.pricing-card-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 12% 18%, rgba(100,200,255,1), transparent),
        radial-gradient(1.5px 1.5px at 28% 42%, rgba(255,150,200,0.8), transparent),
        radial-gradient(2.5px 2.5px at 45% 12%, rgba(150,220,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 58% 58%, rgba(255,220,150,0.7), transparent),
        radial-gradient(2px 2px at 72% 28%, rgba(180,150,255,0.8), transparent),
        radial-gradient(2.5px 2.5px at 88% 72%, rgba(255,180,200,0.9), transparent),
        radial-gradient(1.5px 1.5px at 18% 82%, rgba(150,255,200,0.7), transparent),
        radial-gradient(2px 2px at 92% 48%, rgba(200,220,255,0.8), transparent),
        radial-gradient(2.5px 2.5px at 38% 68%, rgba(180,255,180,0.9), transparent),
        radial-gradient(1.5px 1.5px at 62% 92%, rgba(255,200,150,0.7), transparent),
        radial-gradient(2px 2px at 48% 35%, rgba(150,200,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 78% 88%, rgba(200,180,255,0.7), transparent),
        radial-gradient(2.5px 2.5px at 8% 55%, rgba(255,255,200,0.9), transparent),
        radial-gradient(1.5px 1.5px at 35% 8%, rgba(100,255,220,0.7), transparent),
        radial-gradient(2px 2px at 65% 45%, rgba(255,180,180,0.8), transparent),
        radial-gradient(2.5px 2.5px at 82% 15%, rgba(180,200,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 52% 78%, rgba(255,220,180,0.7), transparent),
        radial-gradient(2px 2px at 22% 62%, rgba(180,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 95% 32%, rgba(220,180,255,0.7), transparent),
        radial-gradient(2.5px 2.5px at 42% 95%, rgba(255,200,220,0.8), transparent),
        radial-gradient(1px 1px at 5% 90%, rgba(200,220,255,0.6), transparent),
        radial-gradient(1px 1px at 15% 5%, rgba(255,200,200,0.5), transparent),
        radial-gradient(1px 1px at 55% 22%, rgba(200,255,200,0.6), transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(220,200,255,0.5), transparent),
        radial-gradient(1px 1px at 32% 50%, rgba(255,255,200,0.6), transparent);
    pointer-events: none;
    z-index: 0;
    animation: stars-twinkle 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 2px rgba(200,220,255,0.5));
}

@keyframes galaxy-shift {
    0% {
        background:
            radial-gradient(ellipse at 25% 45%, rgba(0, 180, 220, 0.3) 0%, transparent 45%),
            radial-gradient(ellipse at 75% 25%, rgba(180, 30, 100, 0.25) 0%, transparent 45%),
            radial-gradient(ellipse at 55% 75%, rgba(40, 180, 10, 0.2) 0%, transparent 40%),
            radial-gradient(ellipse at 40% 60%, rgba(120, 30, 180, 0.2) 0%, transparent 35%);
    }
    100% {
        background:
            radial-gradient(ellipse at 65% 35%, rgba(0, 180, 220, 0.3) 0%, transparent 45%),
            radial-gradient(ellipse at 35% 65%, rgba(180, 30, 100, 0.25) 0%, transparent 45%),
            radial-gradient(ellipse at 75% 50%, rgba(40, 180, 10, 0.2) 0%, transparent 40%),
            radial-gradient(ellipse at 20% 40%, rgba(120, 30, 180, 0.2) 0%, transparent 35%);
    }
}

@keyframes stars-twinkle {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

.pricing-card-featured .pricing-header,
.pricing-card-featured .pricing-features,
.pricing-card-featured .pricing-btn {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: -8px;
    left: auto;
    transform: none;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: var(--bg-primary);
    padding: 5px 14px;
    border-radius: 4px 0 0 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 2;
}

.pricing-badge::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    border: 4px solid var(--neon-green);
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: var(--neon-green);
}

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

.badge-star {
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.pricing-btn-featured {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a0a3e 30%, #0a1a3e 60%, #0a0a2e 100%);
    border-color: rgba(0, 240, 255, 0.5);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(0, 240, 255, 0.05);
}

.pricing-btn-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 200, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(200, 50, 150, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(50, 200, 50, 0.15) 0%, transparent 40%);
    animation: btn-galaxy 6s ease-in-out infinite alternate;
    z-index: 0;
}

.pricing-btn-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 30%, rgba(150,220,255,1), transparent),
        radial-gradient(1px 1px at 35% 60%, rgba(255,180,220,0.8), transparent),
        radial-gradient(2px 2px at 55% 20%, rgba(200,220,255,0.9), transparent),
        radial-gradient(1px 1px at 75% 70%, rgba(255,220,180,0.7), transparent),
        radial-gradient(1.5px 1.5px at 85% 40%, rgba(200,180,255,0.8), transparent),
        radial-gradient(1px 1px at 25% 80%, rgba(180,255,200,0.7), transparent),
        radial-gradient(2px 2px at 65% 50%, rgba(255,200,200,0.9), transparent),
        radial-gradient(1px 1px at 45% 90%, rgba(200,220,255,0.6), transparent),
        radial-gradient(1.5px 1.5px at 90% 15%, rgba(255,255,200,0.8), transparent),
        radial-gradient(1px 1px at 10% 55%, rgba(180,200,255,0.7), transparent);
    animation: btn-stars 2s ease-in-out infinite alternate;
    z-index: 0;
}

.pricing-btn-featured span {
    position: relative;
    z-index: 1;
}

.pricing-btn-featured:hover {
    border-color: rgba(0, 240, 255, 0.8);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), inset 0 0 40px rgba(0, 240, 255, 0.1);
}

@keyframes btn-galaxy {
    0% {
        background:
            radial-gradient(ellipse at 30% 40%, rgba(0, 200, 255, 0.3) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 60%, rgba(200, 50, 150, 0.25) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 20%, rgba(50, 200, 50, 0.15) 0%, transparent 40%);
    }
    100% {
        background:
            radial-gradient(ellipse at 60% 30%, rgba(0, 200, 255, 0.3) 0%, transparent 50%),
            radial-gradient(ellipse at 40% 70%, rgba(200, 50, 150, 0.25) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 50%, rgba(50, 200, 50, 0.15) 0%, transparent 40%);
    }
}

@keyframes btn-stars {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}
}

/* Maintenance Card */
.maintenance-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.maintenance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

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

.maintenance-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card-featured {
        order: -1;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-8px);
}

.testimonial-stars {
    color: var(--neon-cyan);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--bg-primary);
}

.author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 240, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-prompt {
    color: var(--neon-green);
    font-family: var(--font-mono);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-item.active .faq-chevron {
    color: var(--neon-cyan);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer-content {
    padding: 0 24px 20px 48px;
}

.faq-answer-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb-cta-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 240, 255, 0.06);
    top: -20%;
    left: 20%;
}

.orb-cta-2 {
    width: 400px;
    height: 400px;
    background: rgba(247, 37, 133, 0.06);
    bottom: -20%;
    right: 20%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-label {
    margin-bottom: 24px;
}

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

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateX(8px);
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.method-icon svg {
    width: 20px;
    height: 20px;
}

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

.method-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.method-value {
    font-size: 1rem;
    font-weight: 500;
}

.contact-schedule {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-md);
}

.schedule-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    font-weight: 600;
}

.schedule-value {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 10, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.form-input:focus + .form-line {
    transform: scaleX(1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--neon-cyan);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.form-submit {
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 350px;
}

.footer-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

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

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.status-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== GRID CYBER ===== */
.grid-cyber {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

::selection {
    background: rgba(0, 240, 255, 0.3);
    color: var(--text-primary);
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-cyan);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 100001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.clients-label {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--neon-cyan);
    margin-bottom: 32px;
    display: block;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.client-logo {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo svg {
    width: auto;
    height: 28px;
}

.client-logo:nth-child(1) svg { fill: #00F0FF; filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5)); }
.client-logo:nth-child(2) svg { fill: #F72585; filter: drop-shadow(0 0 6px rgba(247, 37, 133, 0.5)); }
.client-logo:nth-child(3) svg { fill: #39FF14; filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.5)); }
.client-logo:nth-child(4) svg { fill: #B026FF; filter: drop-shadow(0 0 6px rgba(176, 38, 255, 0.5)); }
.client-logo:nth-child(5) svg { fill: #4361EE; filter: drop-shadow(0 0 6px rgba(67, 97, 238, 0.5)); }
.client-logo:nth-child(6) svg { fill: #00F0FF; filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5)); }

.client-logo:hover svg {
    opacity: 1;
    filter: drop-shadow(0 0 14px currentColor);
    transform: scale(1.1);
}

.client-logo svg {
    width: auto;
    height: 28px;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .clients-grid {
        gap: 24px 32px;
    }
    .client-logo svg {
        height: 22px;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    z-index: 9990;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

@media (max-width: 640px) {
    .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 6, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 9995;
    padding: 20px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 250px;
}

.cookie-link {
    color: var(--neon-cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #00D4E0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cookie-btn-accept {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    border: 1px solid var(--neon-cyan);
}

.cookie-btn-accept:hover {
    background: #00D4E0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CHATBOT - AI Assistant 24/7
   ============================================ */

/* Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: var(--neon-cyan);
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.chatbot-toggle:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: scale(1.05);
}

.chatbot-toggle.active {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.chatbot-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    animation: chatbot-pulse-anim 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes chatbot-pulse-anim {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
}

.chatbot-toggle.active .chatbot-pulse {
    animation: none;
    opacity: 0;
}

/* Chatbot Container */
.chatbot {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10002;
}

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 380px;
    height: 520px;
    background: rgba(6, 6, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.08);
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(0, 240, 255, 0.03);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chatbot-header-logo {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.chatbot-header-status {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #39FF14;
    box-shadow: 0 0 6px rgba(57, 255, 20, 0.5);
    display: inline-block;
}

.chatbot-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.chatbot-close:hover {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.2);
    border-radius: 2px;
}

/* Message Bubbles */
.chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: chat-message-in 0.3s ease;
}

@keyframes chat-message-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot .chat-bubble {
    background: rgba(0, 240, 255, 0.05);
    border-left: 2px solid var(--neon-cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 90%;
}

.chat-message.user .chat-bubble {
    background: rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-sm) 0 var(--radius-sm) var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-primary);
    align-self: flex-end;
    max-width: 85%;
}

/* Typing Indicator */
.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.chat-typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    animation: chat-typing-bounce 1.4s ease-in-out infinite;
}

.chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes chat-typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick Replies */
.chatbot-footer {
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-quick-reply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.chat-quick-reply:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    transform: translateY(-1px);
}

.chat-quick-reply:active {
    transform: translateY(0);
}

/* Chat Input Area */
.chatbot-input-area {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.25s ease;
}

.chatbot-input::placeholder {
    color: var(--text-muted);
}

.chatbot-input:focus {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neon-cyan);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: #00D4E0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Lead Form Inside Chat */
.chat-lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0;
}

.chat-lead-form .chat-lead-input {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.25s ease;
}

.chat-lead-form .chat-lead-input::placeholder {
    color: var(--text-muted);
}

.chat-lead-form .chat-lead-input:focus {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
}

.chat-lead-form .chat-lead-select {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(6, 6, 18, 0.9);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: all 0.25s ease;
}

.chat-lead-form .chat-lead-select:focus {
    border-color: var(--neon-cyan);
}

.chat-lead-form .chat-lead-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.chat-lead-form textarea.chat-lead-input {
    resize: vertical;
    min-height: 60px;
    max-height: 120px;
    font-family: var(--font-body);
}

.chat-lead-submit {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background: var(--neon-cyan);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    align-self: flex-start;
}

.chat-lead-submit:hover {
    background: #00D4E0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.chat-lead-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.chat-lead-submit.sending {
    position: relative;
    color: transparent;
}

.chat-lead-submit.sending::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--bg-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: chat-spinner 0.6s linear infinite;
}

@keyframes chat-spinner {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.chat-message.success .chat-bubble {
    border-left-color: #39FF14;
    background: rgba(57, 255, 20, 0.05);
}

.chat-message.error .chat-bubble {
    border-left-color: #F72585;
    background: rgba(247, 37, 133, 0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot {
        left: 16px;
        bottom: 16px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        bottom: 16px;
        left: 16px;
    }

    .chatbot-window {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 85vh;
        max-height: 600px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
        transform-origin: bottom center;
    }

    .chatbot-window.open {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        height: 90vh;
    }

    .chatbot-header {
        padding: 12px 16px;
    }

    .chatbot-messages {
        padding: 16px;
    }

    .chatbot-footer {
        padding: 10px 12px 14px;
    }

    .chat-quick-reply {
        padding: 7px 12px;
        font-size: 0.7rem;
    }

    .chatbot-input {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .chatbot-send {
        width: 36px;
        height: 36px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .chatbot-pulse { animation: none !important; }
    .chat-typing-dot { animation: none !important; }
    .chat-message { animation: none !important; }
    .chatbot-window { transition: none !important; }
    .chat-quick-reply { transition: none !important; }
}
