:root {
    --bg-dark: #030305;
    --bg-navy: #060914;
    --accent-purple: #8b5cf6;
    --accent-blue: #0ea5e9;
    --accent-pink: #ec4899;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; 
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent-blue); box-shadow: 0 0 10px var(--accent-blue); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(14, 165, 233, 0.5); transition: width 0.2s, height 0.2s, background 0.2s; }
.cursor-outline.cursor-hover { width: 60px; height: 60px; background: rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.8); }

/* Scroll Progress */
.scroll-progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: transparent; z-index: 10000; }
.scroll-progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink)); width: 0%; box-shadow: 0 0 10px var(--accent-purple); }

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.text-gradient {
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mt-3 { margin-top: 2rem; }
.overflow-hidden { overflow: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.container-sm { max-width: 800px; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }
.gap-4 { gap: 4rem; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

section { padding: 8rem 0; position: relative; }

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 24px; transition: var(--transition);
}
.glass-badge {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-main);
    padding: 0.5rem 1.2rem; border-radius: 50px; display: inline-flex; align-items: center;
    font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.section-badge { color: var(--accent-blue); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; display: block; }
.section-title { font-size: 3rem; margin-bottom: 1.5rem; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin-bottom: 3rem; }
.section-desc.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
    padding: 1rem 2rem; font-family: var(--font-heading); font-weight: 600;
    border-radius: 50px; text-decoration: none; transition: var(--transition);
    cursor: none; border: none; font-size: 1rem; position: relative; overflow: hidden;
}
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-primary { background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink)); color: white; }
.btn-glass { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-outline { background: transparent; border: 1px solid var(--accent-blue); color: var(--text-main); }
.btn-outline:hover { background: rgba(14, 165, 233, 0.1); transform: translateY(-3px); }
.glow-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: var(--transition);
}
.glow-btn:hover::before { left: 100%; }
.glow-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5); }
.btn-full { width: 100%; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: var(--transition); background: transparent; }
.navbar.scrolled { padding: 1rem 0; background: rgba(3, 3, 5, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.nav-content { display: flex; align-items: center; gap: 2rem; width: 100%; padding: 0 4%; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: white; text-decoration: none; letter-spacing: 1px; margin-right: auto; }
.logo span { color: var(--accent-blue); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; cursor: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: var(--accent-blue); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.mobile-menu-btn { display: none; background: transparent; border: none; color: white; font-size: 1.5rem; }

/* Parallax Utilities & Hero */
.parallax-bg { position: absolute; top: 0; left: 0; width: 100%; height: 120%; background-size: cover; background-position: center; background-attachment: fixed; z-index: 0; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 5rem; overflow: hidden; }
#particles-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.6; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; opacity: 0.4; animation: pulseOrb 8s infinite alternate;}
.orb-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--accent-purple); }
.orb-2 { bottom: -10%; right: -10%; width: 600px; height: 600px; background: var(--accent-blue); animation-delay: -4s; }
@keyframes pulseOrb { 0% { transform: scale(1); opacity: 0.2; } 100% { transform: scale(1.2); opacity: 0.5; } }
.hero-title { font-size: 5.5rem; line-height: 1.1; margin: 1.5rem 0; font-weight: 900; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 3rem; }
.hero-cta { display: flex; gap: 1.5rem; justify-content: center; }

/* Floating 3D Elements */
.floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.shape { position: absolute; font-size: 3rem; color: rgba(255,255,255,0.1); filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
.shape-1 { top: 20%; left: 15%; color: var(--accent-purple); filter: drop-shadow(0 0 15px var(--accent-purple)); }
.shape-2 { top: 30%; right: 15%; color: var(--accent-blue); font-size: 2.5rem;}
.shape-3 { bottom: 25%; left: 20%; color: var(--accent-pink); font-size: 3.5rem; }

.mouse-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 10; }
.mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.3); border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 8px; background: white; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite; }
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* Shared Cards & Effects */
.d-hover { transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; transform-style: preserve-3d;}
.d-hover:hover { transform: translateY(-15px) rotateX(2deg) rotateY(2deg); border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.s-icon, .p-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-block; }
.red-glow { color: #ef4444; filter: drop-shadow(0 0 10px #ef4444); }
.purple-glow { color: var(--accent-purple); filter: drop-shadow(0 0 10px var(--accent-purple)); }
.blue-glow { color: var(--accent-blue); filter: drop-shadow(0 0 10px var(--accent-blue)); }
.pink-glow { color: var(--accent-pink); filter: drop-shadow(0 0 10px var(--accent-pink)); }

/* Sections Specifics */
.problem-card { padding: 3rem 2rem; text-align: center; }
.solution-section { background: var(--bg-navy); }
.visual-card img { width: 100%; border-radius: 16px; display: block; object-fit: cover; }
.s-list-item { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 1.5rem; }
.sci-icon { width: 50px; height: 50px; background: var(--glass-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-blue); border: 1px solid var(--glass-border); }

.premium-bullets { list-style: none; }
.premium-bullets li { display: flex; gap: 1rem; margin-bottom: 2rem; }
.premium-bullets i { font-size: 2rem; margin-top: 0.2rem; }
.premium-bullets h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.premium-bullets p { color: var(--text-muted); }

.service-preview { padding: 3rem 2rem; }
.service-preview h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.pricing-preview { background: var(--bg-navy); }
.price-card { padding: 3rem; }
.price-card .price { font-size: 3rem; font-family: var(--font-heading); font-weight: 700; margin: 1rem 0 2rem; }
.price-card .period { font-size: 1rem; color: var(--text-muted); }
.price-features { list-style: none; }
.price-features li { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: center; }

.package-card { padding: 3rem 2rem; text-align: center; position: relative; }
.package-card.highlight { background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), rgba(0,0,0,0)); border-color: rgba(139, 92, 246, 0.5); transform: scale(1.05); }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue)); color: white; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: bold; }
.package-card h4 { font-size: 2rem; margin-bottom: 0.5rem; }
.package-card p { color: var(--text-muted); margin-bottom: 2rem; }
.pack-items { margin-bottom: 2rem; text-align: left; }
.pi { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; gap: 1rem; }
.pi i { color: var(--accent-blue); width: 20px;}

.process-section { background: var(--bg-navy); }
.flow-diagram { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-top: 4rem;}
.flow-step { text-align: center; max-width: 200px; }
.step-num { width: 80px; height: 80px; background: var(--glass-bg); border: 2px solid var(--accent-purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; margin: 0 auto 1.5rem; color: var(--text-main); }
.flow-arrow { font-size: 2rem; color: var(--text-muted); opacity: 0.5; }

.funnel-container { display: flex; justify-content: center; align-items: center; gap: 1rem; padding: 3rem; flex-wrap: wrap; margin-top: 3rem; }
.funnel-part { padding: 1.5rem 2rem; background: rgba(0,0,0,0.3); border-radius: 12px; font-size: 1.5rem; font-weight: bold; }
.funnel-part i { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.f-arrow { font-size: 2rem; color: var(--text-muted); }

.cta-box { padding: 5rem 2rem; text-align: center; border-color: rgba(139, 92, 246, 0.4);}
.c-link { color: white; text-decoration: none; font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); cursor: none;}
.c-link:hover { color: var(--accent-blue); transform: translateY(-2px); }

/* Pages: Services */
.page-header { padding: 10rem 0 5rem; text-align: center; background: linear-gradient(180deg, var(--bg-navy), var(--bg-dark)); }
.service-icon-box { background: var(--glass-bg); width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.5rem; border: 1px solid var(--glass-border); }
.brand-showcase img { width: 100%; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.stat-box { padding: 2rem; text-align: center; }

/* Pages: About */
.story-img { border-radius: 24px; height: 100%; object-fit: cover; }
.process-vertical { display: flex; flex-direction: column; gap: 2rem; position: relative; }
.process-vertical::before { content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1); }
.p-step-v { display: flex; gap: 2.5rem; position: relative; z-index: 2; align-items: center; }
.p-num-v { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-navy); border: 2px solid var(--accent-blue); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; flex-shrink: 0; }

/* Pages: Contact */
.contact-wrapper { padding: 4rem; position: relative; max-width: 800px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.input-group { position: relative; margin-bottom: 2.5rem; }
.input-group input, .input-group textarea { width: 100%; padding: 1rem 0; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); color: white; font-size: 1rem; font-family: var(--font-body); resize: none; cursor: none; }
.input-group input:focus, .input-group textarea:focus { outline: none; }
.input-group label { position: absolute; top: 1rem; left: 0; color: var(--text-muted); transition: var(--transition); pointer-events: none; }
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label { top: -20px; font-size: 0.8rem; color: var(--accent-blue); }
.input-border { position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple)); transition: var(--transition); }
.input-group input:focus ~ .input-border, .input-group textarea:focus ~ .input-border { width: 100%; }

/* Footer */
.footer { background: #020203; padding: 5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.f-col h4 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 0.8rem; }
.f-col ul a { color: var(--text-muted); text-decoration: none; transition: var(--transition); cursor: none;}
.f-col ul a:hover { color: var(--accent-blue); padding-left: 5px;}
.f-about p { color: var(--text-muted); margin-top: 1rem; font-size: 0.95rem;}
.social-links { display: flex; gap: 1rem; }
.glass-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; color: white; text-decoration: none; transition: var(--transition); cursor: none; }
.glass-icon:hover { background: var(--accent-purple); border-color: var(--accent-purple); transform: translateY(-3px); }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* Responsive Updates */
@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 4rem; }
    .flow-diagram { flex-direction: column; gap: 2rem; }
    .flow-arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links, .btn-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
    .form-row { grid-template-columns: 1fr; }
}
