/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Poppins', sans-serif;
    background: #060a14;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.7;
    cursor: default;
}
a { text-decoration: none; color: inherit; }

/* ========== INTRO SPLASH ========== */
.intro-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #060a14;
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.intro-overlay.hide {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.intro-content {
    position: relative; text-align: center; z-index: 2;
}
.intro-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 1;
}
.intro-particle {
    position: absolute; border-radius: 50%; pointer-events: none;
    animation: introParticleFloat 4s ease-in-out infinite;
}
@keyframes introParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.3); opacity: 0.7; }
}
.intro-code-lines {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(30,144,255,0.15);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; max-width: 90vw;
    text-align: left;
    line-height: 1.6;
    pointer-events: none;
}
.intro-code-line {
    opacity: 0;
    animation: codeLineIn 0.3s ease forwards;
    white-space: nowrap;
    overflow: hidden;
}
.intro-code-line .keyword { color: rgba(168,85,247,0.35); }
.intro-code-line .string { color: rgba(0,212,255,0.3); }
.intro-code-line .func { color: rgba(255,107,157,0.3); }
@keyframes codeLineIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
.intro-logo-wrapper {
    position: relative; z-index: 3;
    animation: introLogoIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s both;
}
@keyframes introLogoIn {
    from { opacity: 0; transform: scale(0.5) translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.intro-logo {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900; color: #fff;
    letter-spacing: -2px;
    display: block;
    text-shadow: 0 0 40px rgba(30,144,255,0.3), 0 0 80px rgba(30,144,255,0.1);
}
.intro-logo span {
    background: linear-gradient(135deg, #1e90ff, #00d4ff, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.intro-tagline {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    font-family: 'Courier New', monospace;
    min-height: 1.4em;
}
.intro-tagline .intro-caret {
    display: inline-block;
    background: #1e90ff;
    width: 2px; height: 1em;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.7s step-end infinite;
}
.intro-loader {
    width: 200px; height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    margin: 30px auto 0;
    overflow: hidden;
    opacity: 0;
    animation: introLoaderIn 0.5s ease 1.2s forwards;
}
@keyframes introLoaderIn { to { opacity: 1; } }
.intro-loader-bar {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #1e90ff, #a855f7, #00d4ff);
    border-radius: 3px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(30,144,255,0.5);
}
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== MOUSE FOLLOWER ========== */
.mouse-follower {
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.08) 0%, rgba(168,85,247,0.03) 40%, transparent 70%);
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.2s ease-out, top 0.2s ease-out, width 0.4s, height 0.4s, background 0.4s;
}
.mouse-follower.hover-grow {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, rgba(30,144,255,0.04) 40%, transparent 70%);
}

/* ========== CUSTOM CURSOR ========== */
.interactive-hover { cursor: none; }
.cursor-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #1e90ff; position: fixed; pointer-events: none; z-index: 10001;
    transform: translate(-50%, -50%); transition: transform 0.1s, background 0.3s;
    box-shadow: 0 0 10px rgba(30,144,255,0.5);
}
.cursor-dot.active { transform: translate(-50%, -50%) scale(2.5); background: #a855f7; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 18px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(6, 10, 20, 0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 0 80px rgba(30,144,255,0.03);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo {
    font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -1px;
    transition: all 0.4s; position: relative;
    animation: logoEntrance 1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
@keyframes logoEntrance {
    0% { opacity: 0; transform: translateX(-30px) scale(0.8); filter: blur(10px); }
    100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
.nav-menu li { animation: navItemDrop 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) both; }
.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.18s; }
.nav-menu li:nth-child(3) { animation-delay: 0.26s; }
.nav-menu li:nth-child(4) { animation-delay: 0.34s; }
.nav-menu li:nth-child(5) { animation-delay: 0.42s; }
.nav-menu li:nth-child(6) { animation-delay: 0.50s; }
@keyframes navItemDrop {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.logo::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, #1e90ff, #a855f7); transition: width 0.4s;
}
.logo:hover { transform: scale(1.05); }
.logo:hover::after { width: 100%; }
.logo span { color: #1e90ff; }
.nav-menu { display: flex; gap: 32px; }
.nav-menu a {
    color: rgba(255,255,255,0.7); font-weight: 500; font-size: 0.95rem;
    position: relative; transition: all 0.3s; padding: 4px 0;
}
.nav-menu a::before {
    content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px;
    background: linear-gradient(90deg, #1e90ff, #00d4ff, #a855f7);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); transform: translateX(-50%);
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; text-shadow: 0 0 20px rgba(30,144,255,0.3); }
.nav-menu a:hover::before, .nav-menu a.active::before { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; position: relative; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center;
    background: linear-gradient(160deg, #060a14 0%, #0d1b3e 40%, #0a0f2e 70%, #060a14 100%);
    overflow: hidden;
}
/* Animated bg lines */
.hero-bg-lines { position: absolute; inset: 0; overflow: hidden; opacity: 0.15; }
.bg-line {
    position: absolute; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(30,144,255,0.6), transparent);
    animation: bgLineMove 6s ease-in-out infinite;
}
@keyframes bgLineMove {
    0% { transform: translateY(100vh) scaleY(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) scaleY(1); opacity: 0; }
}
/* Floating orbs */
.hero-orbs { position: absolute; inset: 0; overflow: hidden; }
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px);
}
.orb-1 {
    width: 500px; height: 500px; top: -10%; left: -10%;
    background: rgba(30,144,255,0.12);
    animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
    width: 400px; height: 400px; bottom: -10%; right: -10%;
    background: rgba(168,85,247,0.1);
    animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
    width: 300px; height: 300px; top: 40%; left: 50%;
    background: rgba(0,212,255,0.08);
    animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 80px) scale(1.1); }
    66% { transform: translate(-50px, 120px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -60px) scale(1.15); }
    66% { transform: translate(60px, -100px) scale(0.9); }
}
@keyframes orbFloat3 {
    0%,100% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-50%, -60px) scale(1.2); }
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}
.particle-glow { background: rgba(30, 144, 255, 0.5); box-shadow: 0 0 10px rgba(30,144,255,0.3); }
.particle-purple { background: rgba(168, 85, 247, 0.4); box-shadow: 0 0 10px rgba(168,85,247,0.3); }
.particle-cyan { background: rgba(0, 212, 255, 0.4); box-shadow: 0 0 10px rgba(0,212,255,0.3); }
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-60px) scale(1.3) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-120px) scale(1.8) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-60px) scale(1.3) rotate(270deg); opacity: 0.5; }
}
/* Shooting Stars */
.shooting-stars { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; pointer-events: none; }
.shooting-star {
    position: absolute;
    width: 4px; height: 4px;
    background: #fff;
    border-radius: 50%;
    filter: drop-shadow(0 0 6px #fff);
    opacity: 0;
    animation: shootingStar var(--duration) linear var(--delay) infinite;
}
.shooting-star::after {
    content: '';
    position: absolute;
    top: 50%; left: 100%;
    transform: translateY(-50%);
    width: var(--tail);
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    border-radius: 0 2px 2px 0;
}
@keyframes shootingStar {
    0% { transform: translate(0, 0) rotate(var(--angle)); opacity: 0; }
    5% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) rotate(var(--angle)); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 24px; color: #fff; align-items: center; }
.gradient-text {
    background: linear-gradient(135deg, #1e90ff, #00d4ff, #a855f7, #ff6b9d, #1e90ff);
    background-size: 400% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(30,144,255,0.15));
}
@keyframes gradientShift { 0%{background-position:0% center} 50%{background-position:100% center} 100%{background-position:0% center} }
.cursor {
    display: inline-block; font-weight: 300;
    background: linear-gradient(135deg, #1e90ff, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero p { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 36px; min-height: 1.7em; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
    padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer; border: none; font-family: inherit;
    position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.6s ease; transform: translate(-50%, -50%);
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary {
    background: linear-gradient(135deg, #1e90ff, #0066cc, #1e90ff);
    background-size: 200% auto; color: #fff;
    box-shadow: 0 4px 20px rgba(30,144,255,0.35);
    animation: btnGlow 3s ease infinite;
}
@keyframes btnGlow {
    0%,100% { box-shadow: 0 4px 20px rgba(30,144,255,0.35); background-position: 0% center; }
    50% { box-shadow: 0 4px 30px rgba(30,144,255,0.5); background-position: 100% center; }
}
.btn-primary:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(30,144,255,0.5); }
.btn-outline { border: 2px solid rgba(255,255,255,0.25); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #a855f7; background: rgba(168,85,247,0.1); transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(168,85,247,0.2); }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s ease infinite;
}
.hero-scroll a {
    color: rgba(255,255,255,0.4); font-size: 1.5rem; transition: all 0.4s;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-scroll a:hover { color: #1e90ff; transform: scale(1.2); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(15px)} }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark { background: rgba(255,255,255,0.015); }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; text-align: center;
    margin-bottom: 12px; color: #fff; position: relative; width: 100%;
}
.section-title::after {
    content: ''; display: block; width: 80px; height: 4px;
    background: linear-gradient(90deg, #1e90ff, #00d4ff, #a855f7, #1e90ff);
    background-size: 300% auto;
    border-radius: 4px; margin: 16px auto 0;
    animation: lineGlow 2s ease infinite alternate, lineColorShift 4s ease infinite;
}
@keyframes lineGlow {
    0% { width: 40px; opacity: 0.5; box-shadow: none; }
    100% { width: 80px; opacity: 1; box-shadow: 0 0 25px rgba(30,144,255,0.5); }
}
@keyframes lineColorShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}
/* Section background animated gradient */
.section-dark::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 20% 50%, rgba(30,144,255,0.02) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(168,85,247,0.015) 0%, transparent 50%);
    animation: sectionBgPulse 8s ease-in-out infinite;
}
@keyframes sectionBgPulse {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.section-subtitle {
    text-align: center; color: rgba(255,255,255,0.45); max-width: 550px;
    margin: 0 auto 60px; font-size: 1.05rem;
}
.section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,144,255,0.3), rgba(168,85,247,0.3), transparent);
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 36px 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden;
}
.service-card .card-shine {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(30,144,255,0.03), transparent, rgba(168,85,247,0.03), transparent);
    animation: cardShineRotate 8s linear infinite;
    pointer-events: none;
}
@keyframes cardShineRotate { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, #1e90ff, #00d4ff, #a855f7);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 3px;
    background: linear-gradient(270deg, #1e90ff, #00d4ff, #a855f7);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(30,144,255,0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 60px rgba(30,144,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
}
.service-card:hover::before, .service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 68px; height: 68px; border-radius: 18px;
    background: linear-gradient(135deg, rgba(30,144,255,0.12), rgba(168,85,247,0.08));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #1e90ff; margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
.service-icon::after {
    content: ''; position: absolute; inset: -3px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(30,144,255,0.3), rgba(168,85,247,0.3));
    opacity: 0; transition: opacity 0.5s; z-index: -1; filter: blur(8px);
}
.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-8deg);
    background: linear-gradient(135deg, rgba(30,144,255,0.25), rgba(168,85,247,0.2));
    color: #00d4ff;
}
.service-card:hover .service-icon::after { opacity: 1; }
.service-card h3 {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #fff;
    transition: all 0.4s; position: relative; z-index: 1;
}
.service-card:hover h3 {
    background: linear-gradient(90deg, #00d4ff, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-card p { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.7; position: relative; z-index: 1; }
.service-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: #1e90ff; font-weight: 600; font-size: 0.9rem;
    transition: all 0.4s; position: relative; z-index: 1;
}
.service-btn i { transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.service-btn:hover { gap: 6px; color: #a855f7; }
.service-btn:hover i { transform: translateX(8px); }

/* ========== ABOUT ========== */
.about-content { max-width: 900px; margin: 0 auto; }
.about-text { margin-bottom: 50px; }
.about-text p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 16px; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item {
    text-align: center; padding: 30px 16px;
    background: rgba(255,255,255,0.03); border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden;
}
.stat-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,144,255,0.06), rgba(168,85,247,0.04));
    opacity: 0; transition: opacity 0.5s;
}
.stat-item::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(30,144,255,0.1) 10%, transparent 20%);
    opacity: 0; transition: opacity 0.5s;
    animation: statSpin 4s linear infinite;
}
@keyframes statSpin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.stat-item:hover { transform: translateY(-10px); border-color: rgba(30,144,255,0.4); box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 0 40px rgba(30,144,255,0.05); }
.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after { opacity: 1; }
.stat-number {
    font-size: 2.8rem; font-weight: 900; display: block; position: relative; z-index: 1;
    background: linear-gradient(135deg, #1e90ff, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 4px; display: block; position: relative; z-index: 1; }

/* ========== TESTIMONIALS MARQUEE ========== */
.marquee-wrapper {
    overflow: hidden; position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
    display: flex; gap: 28px; width: max-content;
    animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testimonial-card {
    min-width: 380px; max-width: 380px; padding: 32px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; flex-shrink: 0; position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.testimonial-card::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #1e90ff, #00d4ff, #a855f7);
    transform: scaleX(0); transition: transform 0.5s; transform-origin: center;
}
.testimonial-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(30,144,255,0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(30,144,255,0.3);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 50px rgba(30,144,255,0.06);
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-card:hover::after { opacity: 1; }
.testimonial-stars { color: #f5a623; margin-bottom: 16px; display: flex; gap: 4px; font-size: 0.9rem; }
.testimonial-card:hover .testimonial-stars i:nth-child(1) { animation: starBounce 0.5s ease 0s both; }
.testimonial-card:hover .testimonial-stars i:nth-child(2) { animation: starBounce 0.5s ease 0.08s both; }
.testimonial-card:hover .testimonial-stars i:nth-child(3) { animation: starBounce 0.5s ease 0.16s both; }
.testimonial-card:hover .testimonial-stars i:nth-child(4) { animation: starBounce 0.5s ease 0.24s both; }
.testimonial-card:hover .testimonial-stars i:nth-child(5) { animation: starBounce 0.5s ease 0.32s both; }
@keyframes starBounce {
    0%{transform:scale(1) rotate(0deg)} 30%{transform:scale(1.5) rotate(20deg)}
    60%{transform:scale(0.9) rotate(-5deg)} 100%{transform:scale(1) rotate(0deg)}
}
.testimonial-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, #1e90ff, #a855f7);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 0 0 0 rgba(30,144,255,0);
}
.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 0 20px rgba(30,144,255,0.3);
}
.testimonial-author strong { display: block; color: #fff; font-size: 0.95rem; }
.testimonial-author span { display: block; color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.testimonial-service {
    display: inline-flex; align-items: center; gap: 6px;
    color: #1e90ff; font-size: 0.78rem; font-style: normal;
    margin-top: 4px; background: rgba(30,144,255,0.08);
    padding: 3px 10px; border-radius: 20px;
    transition: all 0.3s;
}
.testimonial-card:hover .testimonial-service { background: rgba(30,144,255,0.15); }
/* Testimonial quote icon */
.testimonial-card .quote-icon {
    position: absolute; top: 16px; right: 20px;
    font-size: 3rem; color: rgba(30,144,255,0.06);
    transition: all 0.5s;
}
.testimonial-card:hover .quote-icon {
    color: rgba(30,144,255,0.12); transform: scale(1.2) rotate(-5deg);
}

/* ========== PRICING ========== */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; align-items: start;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px; padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pricing-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 180deg, transparent, rgba(30,144,255,0.04), transparent, rgba(168,85,247,0.03), transparent);
    animation: cardShineRotate 8s linear infinite; pointer-events: none;
}
.pricing-card::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #1e90ff, #00d4ff, #a855f7);
    transform: scaleX(0); transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center; z-index: 2;
}
.pricing-card:hover::after { transform: scaleX(1); }
.pricing-card:hover {
    transform: translateY(-14px);
    border-color: rgba(30,144,255,0.3);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 80px rgba(30,144,255,0.06);
}
/* Popular card */
.pricing-popular {
    border-color: rgba(168,85,247,0.3);
    background: linear-gradient(160deg, rgba(30,144,255,0.06) 0%, rgba(168,85,247,0.04) 50%, rgba(255,107,157,0.03) 100%);
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 80px rgba(168,85,247,0.06);
}
.pricing-popular::after {
    transform: scaleX(0.6); opacity: 0.6;
    background: linear-gradient(90deg, #a855f7, #ff6b9d, #a855f7);
}
.pricing-popular:hover::after { transform: scaleX(1); opacity: 1; }
.pricing-popular:hover {
    transform: scale(1.04) translateY(-14px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.45), 0 0 100px rgba(168,85,247,0.1);
}
.popular-badge {
    position: absolute; top: 20px; right: -32px;
    background: linear-gradient(135deg, #a855f7, #ff6b9d, #a855f7);
    background-size: 200% auto;
    color: #fff; font-size: 0.72rem; font-weight: 700;
    padding: 6px 40px; transform: rotate(35deg);
    letter-spacing: 0.5px; text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(168,85,247,0.4);
    animation: badgeShimmer 3s ease infinite;
}
@keyframes badgeShimmer {
    0%{background-position:0% center} 50%{background-position:100% center} 100%{background-position:0% center}
}
.popular-badge i { margin-right: 4px; }
.pricing-header { text-align: center; margin-bottom: 28px; }
.pricing-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(30,144,255,0.12), rgba(168,85,247,0.1));
    font-size: 1.6rem; color: #1e90ff; margin-bottom: 18px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
}
.pricing-icon::after {
    content: ''; position: absolute; inset: -4px; border-radius: 22px;
    background: linear-gradient(135deg, rgba(30,144,255,0.25), rgba(168,85,247,0.25));
    opacity: 0; z-index: -1; filter: blur(10px); transition: opacity 0.5s;
}
.pricing-card:hover .pricing-icon {
    transform: scale(1.15) rotate(-10deg);
    color: #a855f7;
}
.pricing-card:hover .pricing-icon::after { opacity: 1; }
.pricing-popular .pricing-icon {
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(255,107,157,0.15));
    color: #a855f7;
}
.pricing-header h3 {
    font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 8px;
    transition: all 0.4s;
}
.pricing-card:hover .pricing-header h3 {
    background: linear-gradient(90deg, #1e90ff, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-desc { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.pricing-features {
    list-style: none; margin-bottom: 32px;
    display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
    color: rgba(255,255,255,0.6); font-size: 0.88rem;
    display: flex; align-items: flex-start; gap: 10px;
    padding-left: 2px;
}
.pricing-features li {
    opacity: 0; animation: featureFadeIn 0.4s ease forwards;
}
.pricing-features li:nth-child(1) { animation-delay: 0s; }
.pricing-features li:nth-child(2) { animation-delay: 0.04s; }
.pricing-features li:nth-child(3) { animation-delay: 0.08s; }
.pricing-features li:nth-child(4) { animation-delay: 0.12s; }
.pricing-features li:nth-child(5) { animation-delay: 0.16s; }
.pricing-features li:nth-child(6) { animation-delay: 0.20s; }
.pricing-features li:nth-child(7) { animation-delay: 0.24s; }
.pricing-features li:nth-child(8) { animation-delay: 0.28s; }
.pricing-features li:nth-child(9) { animation-delay: 0.32s; }
.pricing-features li:nth-child(10) { animation-delay: 0.36s; }
.pricing-features li:nth-child(11) { animation-delay: 0.40s; }
@keyframes featureFadeIn {
    0% { opacity: 0; transform: translateX(-12px); }
    100% { opacity: 1; transform: translateX(0); }
}
.pricing-features li i {
    color: #1e90ff; font-size: 0.7rem; margin-top: 5px; flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.pricing-popular .pricing-features li i { color: #a855f7; }
.pricing-card:hover .pricing-features li i { transform: scale(1.4) rotate(-15deg); }
.btn-pricing {
    width: 100%; justify-content: center; padding: 16px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; border-radius: 14px; font-size: 0.95rem;
    position: relative; overflow: hidden;
}
.btn-pricing::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,144,255,0.15), rgba(168,85,247,0.1));
    opacity: 0; transition: opacity 0.4s;
}
.btn-pricing:hover {
    border-color: rgba(30,144,255,0.4);
    box-shadow: 0 8px 30px rgba(30,144,255,0.15);
    transform: translateY(-2px);
}
.btn-pricing:hover::before { opacity: 1; }
.btn-pricing i { transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.btn-pricing:hover i { transform: translateX(6px); }
.btn-pricing-pop {
    background: linear-gradient(135deg, #1e90ff, #a855f7);
    border: none;
    box-shadow: 0 6px 25px rgba(168,85,247,0.3);
}
.btn-pricing-pop:hover {
    box-shadow: 0 12px 40px rgba(168,85,247,0.4);
}
.btn-pricing-pop::before { background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); }

.pricing-card .pricing-particle {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: rgba(30,144,255,0.3);
    animation: pricingParticle 4s ease-in-out infinite;
}
.pricing-popular .pricing-particle { background: rgba(168,85,247,0.3); }
@keyframes pricingParticle {
    0%,100% { transform: translateY(0) scale(0.5); opacity: 0; }
    50% { transform: translateY(-40px) scale(1.2); opacity: 0.6; }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-popular { transform: scale(1); }
    .pricing-popular:hover { transform: translateY(-12px); }
}

/* ========== CONTACT ========== */
.contact-info-center { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; max-width: 900px; margin: 0 auto; }
.contact-item {
    display: flex; align-items: center; gap: 16px;
    padding: 24px 32px; border-radius: 18px;
    background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden;
}
.contact-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,144,255,0.04), rgba(168,85,247,0.03));
    opacity: 0; transition: opacity 0.5s;
}
.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(30,144,255,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 40px rgba(30,144,255,0.05);
}
.contact-item:hover::before { opacity: 1; }
.contact-item > i {
    font-size: 1.4rem; color: #1e90ff; width: 54px; height: 54px;
    background: rgba(30,144,255,0.08); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative; z-index: 1;
}
.contact-item:hover > i {
    background: linear-gradient(135deg, #1e90ff, #a855f7); color: #fff;
    transform: rotate(-12deg) scale(1.15);
    box-shadow: 0 8px 25px rgba(30,144,255,0.35);
}
.contact-item strong { display: block; color: #fff; font-size: 0.9rem; position: relative; z-index: 1; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.3s; position: relative; z-index: 1; }
.contact-item a:hover { color: #1e90ff; }
/* Contact pulse ring on hover */
.contact-item .pulse-ring {
    position: absolute; top: 50%; left: 30px; transform: translate(-50%, -50%);
    width: 54px; height: 54px; border-radius: 14px;
    border: 2px solid rgba(30,144,255,0); pointer-events: none;
    transition: border-color 0.5s;
}
.contact-item:hover .pulse-ring {
    animation: contactPulse 1.5s ease-out infinite;
}
@keyframes contactPulse {
    0% { transform: translate(-50%, -50%) scale(1); border-color: rgba(30,144,255,0.4); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.6); border-color: rgba(30,144,255,0); opacity: 0; }
}

/* ========== FOOTER ========== */
.footer { padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.footer::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,144,255,0.4), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col p { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; position: relative; display: inline-block; }
.footer-col h4::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 24px; height: 2px;
    background: linear-gradient(90deg, #1e90ff, #a855f7); border-radius: 2px;
}
.footer-col a {
    display: block; color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 10px;
    transition: all 0.3s; position: relative; padding-left: 0;
}
.footer-col a::before {
    content: ''; position: absolute; left: -12px; top: 50%; width: 0; height: 2px;
    background: #1e90ff; transition: width 0.3s; transform: translateY(-50%);
}
.footer-col a:hover { color: #1e90ff; padding-left: 16px; }
.footer-col a:hover::before { width: 8px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.social-links a:hover {
    background: linear-gradient(135deg, #1e90ff, #a855f7); color: #fff;
    border-color: transparent;
    transform: translateY(-6px) rotate(-8deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(30,144,255,0.3);
}
.footer-bottom {
    text-align: center; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3); font-size: 0.85rem;
    position: relative; overflow: hidden;
}
.footer-bottom::before {
    content: ''; position: absolute; top: -1px; left: -100%;
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, #1e90ff, transparent);
    animation: footerLine 6s linear infinite;
}
@keyframes footerLine {
    0% { left: -10%; }
    100% { left: 110%; }
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
}
.float-btn::before {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid transparent; transition: all 0.4s;
}
.float-btn::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    animation: rippleOut 2s ease-out infinite;
    pointer-events: none;
}
@keyframes rippleOut {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
    100% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
}
/* Float btn tooltip */
.float-btn .float-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(10px);
    background: rgba(6,10,20,0.95); color: #fff; padding: 8px 16px;
    border-radius: 10px; font-size: 0.78rem; font-weight: 500;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.float-btn:hover .float-tooltip {
    opacity: 1; transform: translateY(-50%) translateX(0);
}
.float-whatsapp { background: linear-gradient(135deg, #25d366, #128c47); box-shadow: 0 6px 25px rgba(37,211,102,0.35); }
.float-whatsapp:hover { transform: scale(1.2) rotate(-10deg); box-shadow: 0 10px 35px rgba(37,211,102,0.5); }
.float-whatsapp:hover::before { border-color: rgba(37,211,102,0.4); inset: -8px; }
.float-call { background: linear-gradient(135deg, #1e90ff, #0055bb); box-shadow: 0 6px 25px rgba(30,144,255,0.35); }
.float-call:hover { transform: scale(1.2) rotate(10deg); box-shadow: 0 10px 35px rgba(30,144,255,0.5); }
.float-call:hover::before { border-color: rgba(30,144,255,0.4); inset: -8px; }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal.revealed { opacity: 1; transform: none !important; }
.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-scale { transform: scale(0.8); }
.reveal-rotate { transform: translateY(60px) rotate(5deg); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-flip { transform: rotateX(20deg) translateY(40px); perspective: 800px; }

/* Scroll progress bar */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 1001;
    background: linear-gradient(90deg, #1e90ff, #00d4ff, #a855f7, #ff6b9d);
    background-size: 300% auto;
    animation: gradientShift 4s ease infinite;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(30,144,255,0.5);
}

/* Staggered card reveals */
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.40s; }
.service-card.reveal:nth-child(7) { transition-delay: 0.48s; }
.service-card.reveal:nth-child(8) { transition-delay: 0.56s; }
.service-card.reveal:nth-child(9) { transition-delay: 0.64s; }

/* ========== 1. PRELOADER COUNTER ========== */
.intro-counter {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900; color: rgba(255,255,255,0.06);
    position: absolute; bottom: 20%; right: 10%;
    font-family: 'Courier New', monospace;
    z-index: 1;
}

/* ========== 2. SMOOTH PAGE TRANSITION ========== */
.section-transition {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-transition.visible {
    opacity: 1; transform: translateY(0);
}

/* ========== 3. GRADIENT BORDER GLOW ========== */
.neon-glow-border {
    position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
    background: linear-gradient(135deg, #1e90ff, #a855f7, #00d4ff, #ff6b9d, #1e90ff);
    background-size: 400% 400%;
    animation: neonBorderGlow 6s ease infinite;
    opacity: 0; transition: opacity 0.5s;
    filter: blur(6px);
}
.service-card:hover .neon-glow-border,
.pricing-card:hover .neon-glow-border { opacity: 1; }
@keyframes neonBorderGlow {
    0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%}
}

/* ========== 4. FLOATING ICONS ========== */
.hero-floating-icons {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.floating-icon {
    position: absolute;
    color: rgba(30,144,255,0.15);
    text-shadow: 0 0 20px currentColor;
    transition: color 0.5s, text-shadow 0.5s;
}
.floating-icon.orbit {
    animation: floatOrbit var(--dur) linear infinite;
    animation-delay: var(--delay);
}
.floating-icon.drift {
    animation: floatDrift var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}
.floating-icon.zigzag {
    animation: floatZigzag var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}
.floating-icon.pulse-float {
    animation: floatPulse var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}
@keyframes floatOrbit {
    0% { transform: rotate(0deg) translateX(var(--radius)) rotate(0deg); opacity: 0.08; }
    25% { opacity: 0.25; }
    50% { transform: rotate(180deg) translateX(var(--radius)) rotate(-180deg); opacity: 0.1; }
    75% { opacity: 0.2; }
    100% { transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg); opacity: 0.08; }
}
@keyframes floatDrift {
    0%,100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.08; }
    25% { transform: translate(var(--dx1), var(--dy1)) rotate(90deg) scale(1.3); opacity: 0.22; }
    50% { transform: translate(var(--dx2), var(--dy2)) rotate(180deg) scale(0.9); opacity: 0.15; }
    75% { transform: translate(var(--dx3), var(--dy3)) rotate(270deg) scale(1.2); opacity: 0.2; }
}
@keyframes floatZigzag {
    0%,100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    20% { transform: translate(30px, -50px) rotate(72deg); opacity: 0.25; }
    40% { transform: translate(-20px, -100px) rotate(144deg); opacity: 0.12; }
    60% { transform: translate(40px, -150px) rotate(216deg); opacity: 0.2; }
    80% { transform: translate(-30px, -200px) rotate(288deg); opacity: 0.08; }
}
@keyframes floatPulse {
    0%,100% { transform: scale(1) translateY(0); opacity: 0.08; text-shadow: 0 0 10px currentColor; }
    50% { transform: scale(1.6) translateY(-30px); opacity: 0.3; text-shadow: 0 0 30px currentColor, 0 0 60px currentColor; }
}
/* Icon connection lines */
.icon-connection {
    position: absolute; pointer-events: none; z-index: 0;
    opacity: 0.04; stroke: #1e90ff; fill: none; stroke-width: 1;
}

/* ========== HERO HEX GRID ========== */
.hero-hex-grid {
    position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.03;
    overflow: hidden;
}
.hex-cell {
    position: absolute; width: 60px; height: 60px;
    border: 1px solid rgba(30,144,255,0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s;
    animation: hexPulse var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}
@keyframes hexPulse {
    0%,100% { opacity: 0.3; transform: scale(1); border-color: rgba(30,144,255,0.2); }
    50% { opacity: 1; transform: scale(1.1); border-color: rgba(168,85,247,0.4); }
}

/* ========== HERO CIRCUIT LINES ========== */
.hero-circuits {
    position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.circuit-line {
    position: absolute; background: rgba(30,144,255,0.06); border-radius: 1px;
}
.circuit-line.horizontal { height: 1px; animation: circuitH var(--dur) linear infinite; animation-delay: var(--delay); }
.circuit-line.vertical { width: 1px; animation: circuitV var(--dur) linear infinite; animation-delay: var(--delay); }
.circuit-dot {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: #1e90ff; box-shadow: 0 0 10px #1e90ff;
}
.circuit-line.horizontal .circuit-dot { animation: dotMoveH var(--dur) linear infinite; animation-delay: var(--delay); }
.circuit-line.vertical .circuit-dot { animation: dotMoveV var(--dur) linear infinite; animation-delay: var(--delay); }
@keyframes circuitH {
    0%,100% { opacity: 0.3; } 50% { opacity: 0.8; }
}
@keyframes circuitV {
    0%,100% { opacity: 0.3; } 50% { opacity: 0.8; }
}
@keyframes dotMoveH {
    0% { left: -6px; } 100% { left: 100%; }
}
@keyframes dotMoveV {
    0% { top: -6px; } 100% { top: 100%; }
}

/* ========== HERO TECH RING ========== */
.tech-ring {
    position: absolute; border-radius: 50%; pointer-events: none;
    border: 1px solid rgba(30,144,255,0.05);
    animation: techRingSpin var(--dur) linear infinite;
}
.tech-ring .ring-icon {
    position: absolute; font-size: 1rem;
    color: rgba(30,144,255,0.2);
    text-shadow: 0 0 15px rgba(30,144,255,0.3);
}
@keyframes techRingSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========== HERO TYPING CODE BLOCK ========== */
.hero-code-block {
    position: absolute; bottom: 6%; left: 4%;
    font-family: 'Courier New', monospace; font-size: 1.05rem;
    color: rgba(30,144,255,0.18); line-height: 1.8;
    pointer-events: none; z-index: 1; text-align: left;
    max-width: 460px;
    background: transparent;
    padding: 24px 28px; border-radius: 14px;
    border: none;
}
.hero-code-block .code-line {
    opacity: 0; animation: heroCodeIn 0.4s ease forwards;
    white-space: nowrap; overflow: hidden;
}
.hero-code-block .code-keyword { color: rgba(168,85,247,0.4); }
.hero-code-block .code-string { color: rgba(0,212,255,0.35); }
@keyframes heroCodeIn {
    from { opacity: 0; max-width: 0; }
    to { opacity: 1; max-width: 460px; }
}

/* ========== HERO SCAN LINE ========== */
.hero-scanline {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30,144,255,0.15), rgba(168,85,247,0.1), transparent);
    pointer-events: none; z-index: 1;
    animation: scanLine 8s linear infinite;
    box-shadow: 0 0 30px rgba(30,144,255,0.1);
}
@keyframes scanLine {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* ========== HERO GRADIENT MESH ========== */
.hero-gradient-mesh {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(30,144,255,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(168,85,247,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.02) 0%, transparent 40%);
    animation: meshShift 15s ease-in-out infinite;
}
@keyframes meshShift {
    0%,100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    33% { background-position: 30% 20%, 70% 80%, 40% 60%; }
    66% { background-position: 60% 40%, 40% 30%, 60% 40%; }
}

/* ========== 5. RIPPLE EFFECT ON BUTTONS ========== */
.btn-ripple {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0); animation: rippleBtn 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleBtn {
    to { transform: scale(4); opacity: 0; }
}

/* ========== 6. GLITCH TEXT ========== */
.logo-glitch {
    position: relative;
}
.logo-glitch:hover {
    animation: glitchText 0.4s ease;
}
.navbar .logo-glitch {
    animation: navbarGlitch 3s ease infinite;
}
@keyframes navbarGlitch {
    0%, 86% { transform: translate(0); filter: hue-rotate(0deg); }
    87% { transform: translate(-3px, 2px); filter: hue-rotate(90deg); }
    89% { transform: translate(3px, -2px); filter: hue-rotate(180deg); }
    91% { transform: translate(-2px, -1px); filter: hue-rotate(270deg); }
    93% { transform: translate(2px, 1px); filter: hue-rotate(90deg); }
    95% { transform: translate(-1px, 2px); filter: hue-rotate(180deg); }
    97% { transform: translate(1px, -1px); filter: hue-rotate(270deg); }
    99% { transform: translate(-2px, -1px); filter: hue-rotate(0deg); }
    100% { transform: translate(0); filter: hue-rotate(0deg); }
}
@keyframes glitchText {
    0% { transform: translate(0); }
    10% { transform: translate(-3px, 2px); filter: hue-rotate(90deg); }
    20% { transform: translate(3px, -2px); }
    30% { transform: translate(-2px, -1px); filter: hue-rotate(180deg); }
    40% { transform: translate(2px, 1px); }
    50% { transform: translate(-1px, 2px); filter: hue-rotate(270deg); }
    60% { transform: translate(1px, -1px); }
    70% { transform: translate(-1px, -2px); filter: hue-rotate(0deg); }
    80% { transform: translate(2px, 1px); }
    90% { transform: translate(-2px, -1px); }
    100% { transform: translate(0); filter: hue-rotate(0deg); }
}
.logo-glitch::before, .logo-glitch::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; pointer-events: none;
}
.logo-glitch:hover::before {
    color: #ff006e; opacity: 0.7;
    animation: glitchLayer1 0.3s ease infinite;
    clip-path: inset(20% 0 30% 0);
}
.logo-glitch:hover::after {
    color: #00d4ff; opacity: 0.7;
    animation: glitchLayer2 0.3s ease infinite;
    clip-path: inset(60% 0 10% 0);
}
@keyframes glitchLayer1 {
    0% { transform: translate(-2px, 0); }
    50% { transform: translate(2px, -1px); }
    100% { transform: translate(-2px, 0); }
}
@keyframes glitchLayer2 {
    0% { transform: translate(2px, 0); }
    50% { transform: translate(-2px, 1px); }
    100% { transform: translate(2px, 0); }
}

/* ========== 7. MORPHING BLOBS ========== */
.morphing-blob {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
    animation: blobMorph var(--dur) ease-in-out infinite;
}
@keyframes blobMorph {
    0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(90deg) scale(1.1); }
    50% { border-radius: 50% 60% 30% 60% / 30% 70% 50% 60%; transform: rotate(180deg) scale(0.95); }
    75% { border-radius: 40% 60% 70% 30% / 70% 30% 50% 60%; transform: rotate(270deg) scale(1.05); }
}


/* ========== 9. GLOW TRAIL ========== */
.glow-trail-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9998;
}

/* ========== 10. STAGGERED LIST ANIMATION (pricing) - already exists, enhanced ========== */
.pricing-card.revealed .pricing-features li {
    animation: featureSlideIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes featureSlideIn {
    0% { opacity: 0; transform: translateX(-20px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* ========== 11. ROTATING BORDER (stat cards) - enhanced ========== */
.stat-item .rotating-border {
    position: absolute; inset: -2px; border-radius: 18px;
    background: conic-gradient(from var(--angle, 0deg), #1e90ff, #a855f7, #00d4ff, #ff6b9d, #1e90ff);
    opacity: 0; z-index: -1; transition: opacity 0.5s;
}
.stat-item:hover .rotating-border { opacity: 0.6; }

/* ========== 12. MATRIX RAIN ========== */
.matrix-rain {
    position: absolute; inset: 0; overflow: hidden;
    pointer-events: none; z-index: 0; opacity: 0.06;
}
.matrix-col {
    position: absolute; top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 14px; color: #1e90ff;
    writing-mode: vertical-rl;
    animation: matrixFall var(--dur) linear infinite;
    animation-delay: var(--delay);
    white-space: nowrap;
}
@keyframes matrixFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(calc(100vh + 100%)); }
}


/* ========== 14. CARD FLIP ========== */
.service-card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}
.service-card-back {
    position: absolute; inset: 0; backface-visibility: hidden;
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(30,144,255,0.08), rgba(168,85,247,0.06));
    border-radius: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 30px; text-align: center; gap: 16px;
}
.service-card-back .back-icon { font-size: 2.5rem; color: #1e90ff; }
.service-card-back .back-text { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }
.service-card-back .service-btn { z-index: 5; }

/* ========== 15. COUNTER WITH ELASTIC EASING ========== */
.stat-number.counting {
    animation: counterPulse 0.15s ease;
}
@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.stat-number.done {
    animation: counterDone 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes counterDone {
    0% { transform: scale(1); }
    40% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ========== 16. NEON FLICKER ========== */
.neon-flicker {
    animation: neonFlicker 4s ease-in-out infinite;
}
@keyframes neonFlicker {
    0%,100% { text-shadow: 0 0 10px rgba(30,144,255,0.3), 0 0 40px rgba(30,144,255,0.1); }
    5% { text-shadow: none; }
    6% { text-shadow: 0 0 10px rgba(30,144,255,0.3), 0 0 40px rgba(30,144,255,0.1); }
    7% { text-shadow: none; }
    8% { text-shadow: 0 0 10px rgba(30,144,255,0.3), 0 0 40px rgba(30,144,255,0.1); }
    50% { text-shadow: 0 0 20px rgba(30,144,255,0.5), 0 0 60px rgba(30,144,255,0.2), 0 0 100px rgba(30,144,255,0.1); }
}

/* ========== 17. WAVE DIVIDER ========== */
.wave-divider {
    position: relative; height: 80px; overflow: hidden;
    background: transparent; margin-top: -1px;
}
.wave-divider svg {
    position: absolute; bottom: 0; width: 100%; height: 100%;
}
.wave-path {
    fill: rgba(255,255,255,0.015);
}
.wave-1 { animation: waveMove1 8s ease-in-out infinite; }
.wave-2 { animation: waveMove2 6s ease-in-out infinite; fill: rgba(30,144,255,0.02); }
@keyframes waveMove1 {
    0%,100% { d: path("M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z"); }
    50% { d: path("M0,80 C200,20 400,100 600,40 C800,100 1000,20 1200,80 L1200,120 L0,120 Z"); }
}
@keyframes waveMove2 {
    0%,100% { d: path("M0,80 C200,20 400,100 600,50 C800,0 1000,80 1200,40 L1200,120 L0,120 Z"); }
    50% { d: path("M0,40 C150,100 350,20 600,80 C850,20 1050,100 1200,50 L1200,120 L0,120 Z"); }
}

/* ========== 18. MAGNETIC CURSOR (elements pull toward cursor) ========== */
.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ========== 19. CONFETTI ========== */
.confetti-piece {
    position: fixed; width: 8px; height: 8px;
    pointer-events: none; z-index: 99999;
    animation: confettiFall var(--dur) cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes confettiFall {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0); opacity: 0; }
}

/* ========== 20. AURORA / NORTHERN LIGHTS ========== */
.aurora-container {
    position: absolute; inset: 0; overflow: hidden;
    pointer-events: none; z-index: 0;
}
.aurora-band {
    position: absolute; width: 200%; height: 60%;
    top: -20%; left: -50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(30,144,255,0.03) 20%,
        rgba(0,212,255,0.05) 40%,
        rgba(168,85,247,0.04) 60%,
        rgba(30,144,255,0.02) 80%,
        transparent 100%
    );
    filter: blur(40px);
    animation: auroraSway var(--dur) ease-in-out infinite;
    transform-origin: center;
}
@keyframes auroraSway {
    0%,100% { transform: translateX(0) skewX(0deg) scaleY(1); opacity: 0.5; }
    25% { transform: translateX(5%) skewX(-3deg) scaleY(1.1); opacity: 0.8; }
    50% { transform: translateX(-3%) skewX(2deg) scaleY(0.9); opacity: 0.6; }
    75% { transform: translateX(4%) skewX(-2deg) scaleY(1.05); opacity: 0.9; }
}


/* ========== 22. TYPEWRITER CURSOR PARTICLES ========== */
.cursor-particle {
    position: fixed; pointer-events: none; z-index: 9999;
    width: 3px; height: 3px; border-radius: 50%;
    animation: cursorParticleFade 0.8s ease forwards;
}
@keyframes cursorParticleFade {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* ========== 23. GLASSMORPHISM CARDS ========== */
.glass-card {
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 40px rgba(30,144,255,0.03);
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ========== 24. HOVER SOUND WAVE ========== */
.sound-wave {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 0;
}
.sound-wave-ring {
    position: absolute; border-radius: 50%; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border: 1px solid rgba(30,144,255,0.2);
    animation: soundWaveExpand 1.2s ease-out forwards;
}
@keyframes soundWaveExpand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ========== 25. GRADIENT TEXT REVEAL ========== */
.gradient-reveal {
    background: linear-gradient(90deg, #1e90ff, #a855f7, rgba(255,255,255,0.1));
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gradient-reveal.active {
    background-position: 0% 0;
}

/* ========== 26. FLOATING EMOJI REACTIONS ========== */
.floating-emoji {
    position: absolute; pointer-events: none; z-index: 10;
    font-size: 1.2rem;
    animation: emojiFloat 2s ease-out forwards;
}
@keyframes emojiFloat {
    0% { transform: translateY(0) scale(0) rotate(0deg); opacity: 0; }
    15% { transform: translateY(-10px) scale(1.2) rotate(-10deg); opacity: 1; }
    100% { transform: translateY(-120px) scale(0.6) rotate(20deg); opacity: 0; }
}


/* ========== 28. INTERACTIVE PARTICLE EXPLOSION ========== */
.card-explosion-particle {
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 10;
    animation: cardExplode 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes cardExplode {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(var(--ex), var(--ey)) scale(0); opacity: 0; }
}

/* ========== 29. ANIMATED SVG ICONS (stroke draw) ========== */
.service-icon-svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    fill: none; stroke: #1e90ff; stroke-width: 2;
}
.service-card.revealed .service-icon-svg,
.service-card:hover .service-icon-svg {
    stroke-dashoffset: 0;
}
/* Icon draw ring */
.icon-draw-ring {
    position: absolute; inset: -4px; border-radius: inherit; pointer-events: none;
}
.icon-draw-ring circle {
    fill: none; stroke: rgba(30,144,255,0.3); stroke-width: 2;
    stroke-dasharray: 200; stroke-dashoffset: 200;
    transition: stroke-dashoffset 1s ease;
}
.service-card.revealed .icon-draw-ring circle,
.service-card:hover .icon-draw-ring circle {
    stroke-dashoffset: 0;
}

/* ========== 30. LIGHT BEAM SPOTLIGHT ========== */
.spotlight {
    position: fixed; pointer-events: none; z-index: 0;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.04) 0%, rgba(168,85,247,0.02) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: left 0.15s ease, top 0.15s ease;
    mix-blend-mode: screen;
}

/* ========== CYBERPUNK: 1. NEON GRID FLOOR ========== */
.neon-grid-floor {
    position: absolute; bottom: 0; left: -10%; width: 120%; height: 45%;
    background:
        linear-gradient(90deg, rgba(30,144,255,0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30,144,255,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(400px) rotateX(55deg);
    transform-origin: bottom center;
    pointer-events: none; z-index: 0;
    mask-image: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 80%);
    animation: gridScroll 4s linear infinite;
}
@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 60px; }
}

/* ========== CYBERPUNK: 2. GLITCH OVERLAY ========== */
.glitch-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 99997;
    opacity: 0; mix-blend-mode: screen;
}
.glitch-overlay.active {
    animation: glitchOverlayFlash 0.15s steps(2) forwards;
}
@keyframes glitchOverlayFlash {
    0% { opacity: 0; }
    20% { opacity: 1; background: linear-gradient(0deg, transparent 45%, rgba(30,144,255,0.03) 45.5%, transparent 46%, transparent 55%, rgba(168,85,247,0.02) 55.5%, transparent 56%); }
    40% { opacity: 0; }
    60% { opacity: 1; background: linear-gradient(0deg, transparent 30%, rgba(255,0,100,0.02) 30.5%, transparent 31%); transform: translateX(3px); }
    80% { opacity: 0; transform: translateX(-2px); }
    100% { opacity: 0; }
}

/* ========== CYBERPUNK: 3. HOLOGRAM CARD ========== */
.holo-shine {
    position: absolute; inset: 0; pointer-events: none; border-radius: inherit; z-index: 5;
    background: linear-gradient(135deg,
        transparent 20%,
        rgba(30,144,255,0.05) 35%,
        rgba(168,85,247,0.05) 40%,
        rgba(0,212,255,0.05) 45%,
        rgba(255,107,157,0.04) 50%,
        transparent 65%
    );
    background-size: 250% 250%;
    opacity: 0; transition: opacity 0.4s;
}
.service-card:hover .holo-shine,
.pricing-card:hover .holo-shine { opacity: 1; animation: holoShine 2s ease infinite; }
@keyframes holoShine {
    0% { background-position: 200% 200%; }
    100% { background-position: -50% -50%; }
}

/* ========== CYBERPUNK: 4. CRT SCANLINES ========== */
.crt-scanlines {
    position: fixed; inset: 0; pointer-events: none; z-index: 99996;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.015) 2px,
        rgba(0,0,0,0.015) 4px
    );
}

/* ========== CYBERPUNK: 5. NEON TEXT STROKE ========== */
.neon-stroke {
    -webkit-text-stroke: 0.5px rgba(30,144,255,0.3);
    text-shadow:
        0 0 10px rgba(30,144,255,0.2),
        0 0 30px rgba(30,144,255,0.1),
        0 0 60px rgba(168,85,247,0.05);
}

/* ========== CYBERPUNK: 6. ENHANCED DIGITAL RAIN ========== */
.matrix-col.cyber {
    color: transparent;
    background: linear-gradient(180deg, #1e90ff, #00d4ff, #a855f7);
    -webkit-background-clip: text; background-clip: text;
    filter: drop-shadow(0 0 4px rgba(30,144,255,0.4));
}

/* ========== CYBERPUNK: 7. HUD CORNERS ========== */
.hud-corner {
    position: absolute; width: 20px; height: 20px; pointer-events: none; z-index: 6;
}
.hud-corner::before, .hud-corner::after {
    content: ''; position: absolute; background: rgba(30,144,255,0.4);
}
.hud-corner.tl { top: -1px; left: -1px; }
.hud-corner.tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.hud-corner.tl::after { top: 0; left: 0; width: 2px; height: 20px; }
.hud-corner.tr { top: -1px; right: -1px; }
.hud-corner.tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.hud-corner.tr::after { top: 0; right: 0; width: 2px; height: 20px; }
.hud-corner.bl { bottom: -1px; left: -1px; }
.hud-corner.bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.hud-corner.bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }
.hud-corner.br { bottom: -1px; right: -1px; }
.hud-corner.br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.hud-corner.br::after { bottom: 0; right: 0; width: 2px; height: 20px; }
.hud-dot {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: #1e90ff; box-shadow: 0 0 6px #1e90ff;
    animation: hudDotBlink 2s ease-in-out infinite;
}
.hud-corner.tl .hud-dot { top: 0; left: 0; }
.hud-corner.tr .hud-dot { top: 0; right: 0; }
.hud-corner.bl .hud-dot { bottom: 0; left: 0; }
.hud-corner.br .hud-dot { bottom: 0; right: 0; }
@keyframes hudDotBlink {
    0%,100% { opacity: 1; } 50% { opacity: 0.2; }
}

/* ========== CYBERPUNK: 8. DATA STREAM LINES ========== */
.data-stream {
    position: absolute; width: 100%; height: 2px; left: 0;
    overflow: hidden; pointer-events: none; z-index: 5;
}
.data-stream-inner {
    position: absolute; height: 100%; width: 80px;
    background: linear-gradient(90deg, transparent, #1e90ff, #a855f7, transparent);
    animation: dataStreamMove var(--dur) linear infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px rgba(30,144,255,0.4);
}
@keyframes dataStreamMove {
    0% { left: -80px; } 100% { left: 100%; }
}

/* ========== CYBERPUNK: 9. NEON SIGN FLICKER ========== */
.neon-sign-flicker {
    animation: neonSignFlicker 6s ease-in-out infinite;
}
@keyframes neonSignFlicker {
    0%,100% { opacity: 1; text-shadow: 0 0 10px rgba(30,144,255,0.4), 0 0 40px rgba(30,144,255,0.2), 0 0 80px rgba(30,144,255,0.1); }
    4% { opacity: 0.4; text-shadow: none; }
    4.5% { opacity: 1; text-shadow: 0 0 10px rgba(30,144,255,0.4), 0 0 40px rgba(30,144,255,0.2); }
    5% { opacity: 0.6; text-shadow: none; }
    5.5% { opacity: 1; text-shadow: 0 0 10px rgba(30,144,255,0.4), 0 0 40px rgba(30,144,255,0.2); }
    45% { opacity: 1; text-shadow: 0 0 15px rgba(30,144,255,0.5), 0 0 50px rgba(30,144,255,0.3), 0 0 100px rgba(168,85,247,0.1); }
    55% { opacity: 0.8; }
    55.5% { opacity: 1; }
}

/* ========== CYBERPUNK: 10. HEX CODE WATERMARK ========== */
.hex-watermark {
    position: absolute; inset: 0; overflow: hidden;
    pointer-events: none; z-index: 0;
}
.hex-code {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: rgba(30,144,255,0.05);
    white-space: nowrap;
    animation: hexDrift var(--dur) linear infinite;
    animation-delay: var(--delay);
}
@keyframes hexDrift {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.06; }
    90% { opacity: 0.06; }
    100% { transform: translateY(-200px); opacity: 0; }
}

/* ========== CYBERPUNK: 11. CYBER BADGE ========== */
.cyber-badge {
    position: absolute; top: 12px; left: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.55rem; font-weight: 700;
    color: rgba(30,144,255,0.5);
    text-transform: uppercase; letter-spacing: 2px;
    padding: 3px 8px;
    border: 1px solid rgba(30,144,255,0.15);
    border-radius: 3px;
    pointer-events: none; z-index: 6;
    animation: cyberBadgeBlink 3s ease-in-out infinite;
}
.cyber-badge::before {
    content: ''; position: absolute; left: -6px; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: #00ff88; box-shadow: 0 0 6px #00ff88;
    animation: hudDotBlink 1.5s ease infinite;
}
@keyframes cyberBadgeBlink {
    0%,100% { opacity: 0.7; } 50% { opacity: 1; }
}

/* ========== CYBERPUNK: 12. ELECTRIC ARC ========== */
.electric-arc {
    position: absolute; pointer-events: none; z-index: 0;
    opacity: 0.06;
}
.electric-arc line {
    stroke: #1e90ff; stroke-width: 1;
    filter: drop-shadow(0 0 3px #1e90ff);
    animation: arcFlicker 0.1s steps(2) infinite;
}
@keyframes arcFlicker {
    0% { opacity: 0.8; } 50% { opacity: 0.2; } 100% { opacity: 0.8; }
}

/* ========== CYBERPUNK: 13. TERMINAL PROMPT ========== */
.hero-terminal {
    position: absolute; bottom: 6%; right: 4%;
    font-family: 'Courier New', monospace; font-size: 0.85rem;
    color: rgba(0,255,136,0.2);
    pointer-events: none; z-index: 1; text-align: left;
}
.hero-terminal .term-line {
    white-space: nowrap; overflow: hidden;
    animation: termType 0.5s ease forwards;
}
.hero-terminal .term-prompt { color: rgba(30,144,255,0.3); }
.hero-terminal .term-cursor {
    display: inline-block; width: 8px; height: 1em;
    background: rgba(0,255,136,0.3);
    vertical-align: text-bottom;
    animation: blink 0.7s step-end infinite;
}
@keyframes termType {
    from { max-width: 0; opacity: 0; }
    to { max-width: 500px; opacity: 1; }
}

/* ========== CYBERPUNK: 14. WIREFRAME OVERLAY ========== */
.wireframe-overlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 7;
    border-radius: inherit; opacity: 0;
    transition: opacity 0.5s;
    background:
        linear-gradient(rgba(30,144,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,144,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}
.service-card:hover .wireframe-overlay,
.pricing-card:hover .wireframe-overlay { opacity: 1; }

/* ========== CYBERPUNK: 15. RADAR SWEEP ========== */
.radar-container {
    position: absolute; pointer-events: none; z-index: 0;
}
.radar-circle {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(30,144,255,0.06);
}
.radar-sweep {
    position: absolute; top: 50%; left: 50%;
    width: 50%; height: 2px; transform-origin: left center;
    background: linear-gradient(90deg, rgba(30,144,255,0.3), transparent);
    animation: radarSweep 4s linear infinite;
}
@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.radar-ping {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: #1e90ff; box-shadow: 0 0 8px #1e90ff;
    animation: radarPing 4s ease-out infinite;
}
@keyframes radarPing {
    0%,80% { opacity: 0; transform: scale(0); }
    85% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(1); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .mouse-follower { display: none; }
    .glow-trail-canvas { display: none; }
    .cursor-dot { display: none; }
    .hero-floating-icons .floating-icon { font-size: 1rem !important; }
    .matrix-rain { display: none; }
    .hero-hex-grid { display: none; }
    .hero-circuits { display: none; }
    .tech-ring { display: none; }
    .hero-code-block { display: none; }
    .hero-scanline { display: none; }
    .spotlight { display: none; }
    .hero-code-block { display: none; }
    .hero-terminal { display: none; }
    .radar-container { display: none; }
    .neon-grid-floor { display: none; }
    .morphing-blob { display: none; }
    .aurora-band { display: none; }
    .hero-floating-icons { display: none; }
    .shooting-star { display: none; }
    .orb { animation-duration: 20s !important; }
    .particle { animation-duration: 10s !important; }
    .neon-glow-border { display: none; }
    .data-stream { display: none; }
    .rotating-border { display: none; }
    .card-shine-rotate { animation: none !important; }
    * { -webkit-backface-visibility: hidden; backface-visibility: hidden; }
    .crt-scanlines { display: none; }
    .electric-arc { display: none; }
    .hex-watermark { display: none; }
    .cyber-badge { display: none; }
    .hud-corner { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(6, 10, 20, 0.98); backdrop-filter: blur(24px);
        flex-direction: column; padding: 100px 40px 40px;
        gap: 24px; transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid rgba(30,144,255,0.1);
    }
    .nav-menu.active { right: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 300px; max-width: 300px; padding: 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-center { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .floating-buttons { bottom: 20px; right: 16px; }
    .float-btn { width: 52px; height: 52px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
}
