/* ============================================
   IMPERIAL TECHNOTRICS - FUTURISTIC THEME
   ============================================ */

:root {
    --cyan: #00d4ff;
    --cyan-dim: rgba(0, 212, 255, 0.15);
    --purple: #a855f7;
    --purple-dim: rgba(168, 85, 247, 0.15);
    --blue: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.15);
    --green: #10b981;
    --green-dim: rgba(16, 185, 129, 0.15);
    --orange: #f59e0b;
    --orange-dim: rgba(245, 158, 11, 0.15);
    --pink: #ec4899;
    --pink-dim: rgba(236, 72, 153, 0.15);

    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-border: rgba(255, 255, 255, 0.06);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;

    --gradient-primary: linear-gradient(135deg, #00d4ff, #a855f7);
    --gradient-secondary: linear-gradient(135deg, #a855f7, #3b82f6);

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --nav-height: 80px;
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { border: none; cursor: none; background: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== CUSTOM CURSOR ========== */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 450px;
    height: 450px;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(168, 85, 247, 0.04) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
body.cursor-active #cursor-glow { opacity: 1; }

#cursor-trail {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99997;
    overflow: hidden;
}
.cursor-trail-dot {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: trailFade 0.8s ease-out forwards;
}
@keyframes trailFade {
    0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

#cursor {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    mix-blend-mode: screen;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.7), 0 0 20px rgba(0, 212, 255, 0.3);
}
#cursor.is-moving {
    box-shadow: 0 0 18px rgba(0, 212, 255, 1), 0 0 40px rgba(168, 85, 247, 0.5);
}
#cursor.is-clicking {
    transform: translate(-50%, -50%) scale(0.5);
    background: var(--purple);
}

#cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 212, 255, 0.45);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    border: 1px dashed rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99996;
    transform: translate(-50%, -50%);
    animation: ringSpin 6s linear infinite;
}
@keyframes ringSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cursor-ripple {
    position: fixed;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.6);
    pointer-events: none;
    z-index: 99995;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleExpand 0.7s ease-out forwards;
}
@keyframes rippleExpand {
    to { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor,
body:has(.service-card:hover) #cursor,
body:has(.nav-logo:hover) #cursor {
    width: 18px;
    height: 18px;
    background: var(--purple);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.9);
}
body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower,
body:has(.service-card:hover) #cursor-follower {
    width: 54px;
    height: 54px;
    border-color: rgba(168, 85, 247, 0.55);
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 70px;
    height: 70px;
    border-color: rgba(168, 85, 247, 0.4);
    animation-duration: 2s;
}

@media (max-width: 768px) {
    #cursor, #cursor-follower, #cursor-ring, #cursor-glow, #cursor-trail, .cursor-ripple {
        display: none !important;
    }
    body { cursor: auto; }
    a, button { cursor: pointer; }
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-loader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    margin: 0 auto 20px;
    gap: 24px;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}
.preloader-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.35));
}
@keyframes preloaderPulse {
    from { filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3)); transform: scale(1); }
    to { filter: drop-shadow(0 0 35px rgba(168, 85, 247, 0.5)); transform: scale(1.04); }
}

.preloader-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}
.preloader-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 99px;
    width: 0%;
    animation: preloaderFill 2s ease-in-out forwards;
}
@keyframes preloaderFill { to { width: 100%; } }

.preloader-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ========== PARTICLE CANVAS ========== */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    padding: 0;
}
.navbar.scrolled {
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-card-border);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    cursor: none;
}

/* Cyber brand name — right of logo */
.cyber-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-align: left;
    padding-left: 12px;
    border-left: 2px solid rgba(0, 212, 255, 0.35);
    position: relative;
}
.cyber-brand::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    animation: cyberScan 2.5s ease-in-out infinite;
}
@keyframes cyberScan {
    0%, 100% { opacity: 0; transform: scaleY(0.2); }
    50% { opacity: 1; transform: scaleY(1); }
}
.cyber-brand-top {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}
.cyber-brand-bottom {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.35));
    animation: cyberGlow 3s ease-in-out infinite alternate;
}
@keyframes cyberGlow {
    from { filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3)); }
    to { filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.55)); }
}
.nav-logo:hover .cyber-brand-top {
    text-shadow: 2px 0 rgba(0, 212, 255, 0.45), -2px 0 rgba(168, 85, 247, 0.45);
    transition: text-shadow 0.15s ease;
}
.nav-logo:hover .cyber-brand-bottom {
    letter-spacing: 0.28em;
    transition: letter-spacing 0.35s ease;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all var(--transition);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.2));
    flex-shrink: 0;
}
.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.45));
    transform: scale(1.03);
}
.logo-img-footer {
    height: 72px;
    margin-bottom: 0;
}
.nav-logo-footer {
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}
.nav-logo-footer .cyber-brand {
    padding-right: 14px;
}
.nav-logo-footer .cyber-brand-top {
    font-size: 1rem;
}
.nav-logo-footer .cyber-brand-bottom {
    font-size: 0.75rem;
}
.accent { color: var(--cyan); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
    cursor: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 99px;
    transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    border-radius: 10px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: none;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    transition: all var(--transition);
    cursor: none;
}
.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-dim);
    transform: translateY(-2px);
}

.w-full { width: 100%; justify-content: center; }
.mt-2 { margin-top: 24px; }
.ms-auto { margin-left: auto; }

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 99px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid var(--bg-card-border);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
    display: block;
    padding: 14px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 10px;
    transition: all var(--transition);
    cursor: none;
}
.mobile-menu a:hover { color: var(--cyan); background: var(--cyan-dim); }

/* ========== SECTION COMMON ========== */
section { position: relative; z-index: 1; padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 6px 16px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 99px;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-desc { color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--nav-height) 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPan 20s linear infinite;
}
@keyframes gridPan { from { background-position: 0 0; } to { background-position: 60px 60px; } }

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0, 212, 255, 0.08); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(168, 85, 247, 0.08); bottom: -50px; left: -50px; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: rgba(59, 130, 246, 0.06); top: 40%; left: 40%; animation-delay: 6s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 30px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 24px;
    width: fit-content;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: ping 1.5s ease-in-out infinite;
}
@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.typed-wrapper {
    color: var(--cyan);
    min-height: 1.1em;
    display: inline-block;
}
#typed-text { color: var(--cyan); }
.typed-cursor {
    color: var(--cyan);
    animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    width: fit-content;
    backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}
.stat-plus { font-size: 1rem; color: var(--cyan); font-weight: 700; }
.stat-label { font-size: 0.72rem; color: var(--text-secondary); margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 40px; background: var(--bg-card-border); }

/* Hero Visual / Code Card */
.hero-visual { position: relative; }

.hero-3d-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.6s ease;
    animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(-10px); }
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: 0.3; } to { opacity: 0.6; } }

.card-inner {
    background: rgba(10, 15, 30, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.card-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.card-dot.red { background: #ff5f57; }
.card-dot.yellow { background: #febc2e; }
.card-dot.green { background: #28c840; }
.card-title-bar {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.code-animation {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.9;
}
.code-line { animation: fadeCodeLine 0.3s ease both; }
.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.4s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }
.code-line:nth-child(4) { animation-delay: 0.8s; }
.code-line:nth-child(5) { animation-delay: 1.0s; }
.code-line:nth-child(6) { animation-delay: 1.2s; }
.code-line:nth-child(7) { animation-delay: 1.4s; }
.code-line:nth-child(8) { animation-delay: 1.6s; }
.code-line:nth-child(9) { animation-delay: 1.8s; }
.code-line:nth-child(10) { animation-delay: 2.0s; }
.code-line:nth-child(11) { animation-delay: 2.2s; }
.code-line:nth-child(12) { animation-delay: 2.4s; }
.code-line:nth-child(13) { animation-delay: 2.6s; }

@keyframes fadeCodeLine {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.indent { padding-left: 20px; }
.indent2 { padding-left: 40px; }
.indent3 { padding-left: 60px; }

.c-purple { color: #c792ea; }
.c-cyan { color: #80cbc4; }
.c-blue { color: #82aaff; }
.c-green { color: #c3e88d; }
.c-orange { color: #f78c6c; }

.blink-cursor {
    animation: blink 0.8s step-end infinite;
    color: var(--cyan);
}

.card-footer-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0,212,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: ping 1.5s ease-in-out infinite;
}
.ping-text { color: var(--green); }

/* Floating Chips */
.floating-chips { position: absolute; inset: 0; pointer-events: none; }
.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}
.chip-1 { top: -20px; right: -30px; animation: chipFloat 4s ease-in-out infinite; color: #61DAFB; border-color: rgba(97,218,251,0.3); }
.chip-2 { bottom: 40px; right: -40px; animation: chipFloat 4s ease-in-out infinite 1.5s; color: var(--purple); border-color: rgba(168,85,247,0.3); }
.chip-3 { top: 50%; left: -50px; transform: translateY(-50%); animation: chipFloat 4s ease-in-out infinite 0.8s; color: var(--orange); border-color: rgba(245,158,11,0.3); }
.chip-4 { bottom: -20px; left: 20px; animation: chipFloat 4s ease-in-out infinite 2.2s; color: var(--green); border-color: rgba(16,185,129,0.3); }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(4px); }
}
.chip-3 { animation: chipFloat3 4s ease-in-out infinite 0.8s; }
@keyframes chipFloat3 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(calc(-50% - 8px)) translateX(4px); }
}

/* ========== HERO MUSIC PLAYER ========== */
.hero-music-player {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.youtube-player-hidden {
    position: fixed;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.music-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 99px;
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    transition: all var(--transition);
    cursor: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.08);
    text-align: left;
}
.music-toggle:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}
.music-toggle.is-playing {
    border-color: rgba(168, 85, 247, 0.45);
    background: rgba(15, 23, 42, 0.95);
}

.music-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.music-icon-pause { display: none; }
.music-toggle.is-playing .music-icon-play { display: none; }
.music-toggle.is-playing .music-icon-pause { display: flex; }

.music-visualizer {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}
.music-toggle.is-playing .music-visualizer { display: flex; }
.music-toggle.is-playing .music-icon { display: none; }

.music-bar {
    display: block;
    width: 3px;
    height: 6px;
    background: var(--cyan);
    border-radius: 99px;
    animation: musicBar 0.8s ease-in-out infinite;
}
.music-bar:nth-child(1) { animation-delay: 0s; }
.music-bar:nth-child(2) { animation-delay: 0.15s; }
.music-bar:nth-child(3) { animation-delay: 0.3s; }
.music-bar:nth-child(4) { animation-delay: 0.45s; }
.music-bar:nth-child(5) { animation-delay: 0.6s; }
@keyframes musicBar {
    0%, 100% { height: 6px; opacity: 0.5; }
    50% { height: 18px; opacity: 1; background: var(--purple); }
}

.music-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.music-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.music-toggle.is-playing .music-label { color: var(--cyan); }
.music-track {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    white-space: nowrap;
}

.music-volume-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--bg-card-border);
    border-radius: 99px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all var(--transition);
}
.hero-music-player:hover .music-volume-wrap,
.hero-music-player:focus-within .music-volume-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.music-volume-wrap i { font-size: 0.7rem; color: var(--text-muted); }
.music-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 90px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    outline: none;
    cursor: none;
}
.music-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: none;
}

@media (max-width: 768px) {
    .hero-music-player {
        right: 20px;
        bottom: 80px;
    }
    .music-toggle { padding: 10px 14px; }
    .music-track { font-size: 0.65rem; }
    .music-volume-wrap { opacity: 1; transform: none; pointer-events: auto; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 2s both;
}
.scroll-line {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    border-radius: 99px;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes fadeInUp { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ========== MARQUEE ========== */
.marquee-section {
    background: rgba(0, 212, 255, 0.04);
    border-top: 1px solid rgba(0,212,255,0.1);
    border-bottom: 1px solid rgba(0,212,255,0.1);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    white-space: nowrap;
}
.marquee-dot { color: var(--cyan); font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SERVICES ========== */
.services { background: transparent; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    cursor: none;
}
.service-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.1);
}
.service-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(0,212,255,0.04), transparent 60%);
    pointer-events: none;
    transition: opacity var(--transition);
    opacity: 0;
}
.service-card:hover .service-card-bg { opacity: 1; }

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: transform var(--transition);
}
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-5deg); }

.color-cyan { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }
.color-purple { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(168,85,247,0.2); }
.color-blue { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(59,130,246,0.2); }
.color-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.color-orange { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(245,158,11,0.2); }
.color-pink { background: var(--pink-dim); color: var(--pink); border: 1px solid rgba(236,72,153,0.2); }

.service-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}
.service-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tag {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 99px;
    color: var(--text-secondary);
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    transition: gap var(--transition);
    cursor: none;
}
.service-link:hover { gap: 10px; }

/* ========== ABOUT ========== */
.about {
    background: radial-gradient(ellipse at 70% 50%, rgba(168,85,247,0.04) 0%, transparent 60%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}
.about-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 6s ease-in-out infinite;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-items: center;
}

.hex {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    transition: all var(--transition);
    animation: hexFloat var(--d, 5s) ease-in-out infinite;
}
.hex:hover { border-color: var(--cyan); color: var(--cyan); transform: scale(1.1); box-shadow: 0 0 30px rgba(0,212,255,0.2); }

.hex-1 { color: var(--cyan); --d: 4s; }
.hex-2 { color: var(--purple); --d: 5s; }
.hex-3 { color: var(--blue); --d: 3.5s; }
.hex-4 { color: var(--green); --d: 6s; }
.hex-5 { color: var(--cyan); --d: 4.5s; background: var(--cyan-dim); border-color: rgba(0,212,255,0.3); width: 130px; height: 130px; font-size: 2.2rem; }
.hex-6 { color: var(--orange); --d: 5.5s; }
.hex-7 { color: var(--pink); --d: 4.2s; }
.hex-8 { color: var(--blue); --d: 6.5s; }
.hex-9 { color: var(--green); --d: 3.8s; }

@keyframes hexFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-badges {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    bottom: -30px;
    left: 0;
}
.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
}
.about-badge i { font-size: 1.5rem; }
.badge-1 i { color: var(--orange); }
.badge-2 i { color: var(--cyan); }
.about-badge strong { display: block; font-size: 0.85rem; }
.about-badge span { color: var(--text-secondary); font-size: 0.72rem; }

.about-text { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}
.about-feature i { color: var(--cyan); }

.skills-bars { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.skill-bar-header { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 8px; }
.skill-bar-header span:last-child { color: var(--cyan); font-weight: 600; }
.skill-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 99px;
    overflow: hidden;
}
.skill-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 99px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== STATS SECTION ========== */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(168,85,247,0.05));
    border-top: 1px solid var(--bg-card-border);
    border-bottom: 1px solid var(--bg-card-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.2); }
.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { color: var(--text-secondary); font-size: 0.85rem; }

/* ========== PORTFOLIO ========== */
.portfolio { }

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--bg-card-border);
    background: transparent;
    transition: all var(--transition);
    cursor: none;
}
.filter-btn:hover, .filter-btn.active {
    color: #000;
    background: var(--gradient-primary);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-item { transition: all var(--transition); }
.portfolio-item.hidden { display: none; }

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.12); }

.portfolio-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all var(--transition);
    cursor: none;
}
.portfolio-link:hover { background: var(--cyan); border-color: var(--cyan); }

.grad-cyan { background: linear-gradient(135deg, #001f3f, #00d4ff30); }
.grad-purple { background: linear-gradient(135deg, #1a0030, #a855f730); }
.grad-blue { background: linear-gradient(135deg, #001040, #3b82f630); }
.grad-green { background: linear-gradient(135deg, #001a12, #10b98130); }
.grad-orange { background: linear-gradient(135deg, #1a0f00, #f59e0b30); }
.grad-pink { background: linear-gradient(135deg, #1a0020, #ec489930); }

.portfolio-info { padding: 24px; }
.portfolio-cat {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    display: block;
    margin-bottom: 8px;
}
.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.portfolio-info p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ========== PROCESS ========== */
.process-section {
    background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.04) 0%, transparent 60%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
    background: var(--gradient-primary);
    color: #000;
}
.process-step:hover .step-icon { transform: scale(1.1); box-shadow: 0 0 30px rgba(0,212,255,0.3); }

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.process-step p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.7; position: relative; z-index: 1; }

.step-connector {
    position: absolute;
    top: 75px;
    right: -1px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--cyan), var(--purple));
    opacity: 0.2;
}

/* ========== TEAM ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 40px 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: none;
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(0,212,255,0.2); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    position: relative;
}
.team-initials {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}
.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: ringRotate 4s linear infinite;
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}
.team-role { font-size: 0.8rem; color: var(--text-secondary); display: block; margin-bottom: 20px; }

.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--transition);
    cursor: none;
}
.team-socials a.social-instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    border-color: rgba(228, 64, 95, 0.5);
    color: #E4405F;
}
.team-socials a.social-facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.5);
    color: #1877F2;
}

/* ========== TESTIMONIALS ========== */
.testimonials { overflow: hidden; }
.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
    position: relative;
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); }

.testimonial-stars { display: flex; gap: 4px; color: #fbbf24; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-secondary); }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.slider-dot.active { width: 24px; background: var(--cyan); }

/* ========== TECH STACK ========== */
.tech-stack { }
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: none;
}
.tech-item i { font-size: 2rem; transition: transform var(--transition); }
.tech-item:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.tech-item:hover i { transform: scale(1.2); }

/* ========== CONTACT ========== */
.contact {
    background: radial-gradient(ellipse at 50% 100%, rgba(0,212,255,0.06) 0%, transparent 60%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title { margin-top: 16px; }
.contact-info > p { color: var(--text-secondary); margin: 16px 0 32px; line-height: 1.8; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0,212,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-item span { color: var(--text-secondary); font-size: 0.82rem; }

.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition);
    cursor: none;
}
.contact-socials a:hover { background: var(--cyan-dim); border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

/* Form */
.contact-form-wrap {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all var(--transition);
    outline: none;
    width: 100%;
    resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    background: rgba(0,212,255,0.04);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group select option { background: #0f172a; color: var(--text-primary); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer { border-top: 1px solid var(--bg-card-border); }
.footer-top { padding: 80px 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand p { color: var(--text-secondary); font-size: 0.875rem; margin: 16px 0 24px; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition);
    cursor: none;
}
.footer-socials a:hover { background: var(--cyan-dim); border-color: var(--cyan); color: var(--cyan); }

.footer-col h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: none;
}
.footer-col a:hover { color: var(--cyan); }
.badge-hiring {
    font-size: 0.65rem;
    padding: 2px 8px;
    background: rgba(16,185,129,0.15);
    color: var(--green);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 99px;
}

.footer-nl-text { color: var(--text-secondary); font-size: 0.82rem; margin-bottom: 16px; line-height: 1.6; }
.footer-newsletter {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
}
.footer-newsletter input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.82rem;
    outline: none;
}
.footer-newsletter input::placeholder { color: var(--text-muted); }
.footer-newsletter button {
    padding: 12px 18px;
    background: var(--gradient-primary);
    color: #000;
    font-size: 1rem;
    transition: all var(--transition);
    cursor: none;
}
.footer-newsletter button:hover { opacity: 0.85; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--bg-card-border);
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.82rem; transition: color var(--transition); cursor: none; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ========== BACK TO TOP ========== */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(0,212,255,0.3);
    cursor: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); }

/* ========== BLINK ========== */
.blink { animation: blink 1s step-end infinite; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc, .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; margin: 0 auto; }
    .hero-visual { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap { width: 280px; height: 280px; }
    .hex { width: 80px; height: 80px; font-size: 1.3rem; }
    .hex-5 { width: 90px; height: 90px; font-size: 1.6rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-grid { grid-template-columns: 1fr; }
    .testimonials-slider { flex-direction: column; }
    .testimonial-card { flex: none; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .about-badges { position: static; flex-direction: column; gap: 12px; margin-top: 16px; }
}

@media (max-width: 480px) {
    :root { --nav-height: 65px; }
    .logo-img { height: 40px; }
    .preloader-loader-wrap { width: 220px; gap: 18px; }
    .preloader-logo-img { width: 140px; }
    .cyber-brand { padding-left: 8px; }
    .cyber-brand-top { font-size: 0.68rem; letter-spacing: 0.1em; }
    .cyber-brand-bottom { font-size: 0.52rem; letter-spacing: 0.14em; }
    .hero-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}
