/* ========================================
   DEXON DEV - Main CSS
   ======================================== */

:root {
    --black: #0F172A;
    --dark-1: #0F172A;
    --dark-2: #111827;
    --dark-3: #1E293B;
    --dark-4: #334155;
    --purple: #7C3AED;
    --purple-light: #9D5FF8;
    --purple-dark: #6D28D9;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --white: #FFFFFF;
    --gray: #94A3B8;
    --gray-dark: #64748B;
    --gradient: linear-gradient(135deg, #7C3AED, #2563EB);
    --gradient-hover: linear-gradient(135deg, #6D28D9, #1D4ED8);
    --shadow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --border-color: rgba(255,255,255,0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-1);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--white); }
p { color: var(--gray); }
a { color: var(--purple-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--purple); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- NAVBAR ---- */
#mainNav {
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 0;
}
.brand-logo { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; }
.brand-d { color: var(--purple); }
.brand-dev { color: var(--blue-light); }
.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--white) !important; background: rgba(124,58,237,0.1); }

/* ---- BUTTONS ---- */
.btn { border-radius: var(--radius-sm); font-weight: 600; transition: var(--transition); border: none; }
.btn-gradient {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}
.btn-gradient:hover {
    background: var(--gradient-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124,58,237,0.5);
}
.btn-purple { background: var(--purple); color: white; }
.btn-purple:hover { background: var(--purple-dark); color: white; transform: translateY(-2px); }
.btn-outline-purple {
    border: 1.5px solid var(--purple);
    color: var(--purple-light);
    background: transparent;
}
.btn-outline-purple:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-2px);
}
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #20BA5A; color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--dark-1); font-weight: 700; }
.btn-white:hover { background: var(--gray); color: var(--dark-1); }
.btn-icon {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: var(--gray);
    border: 1px solid var(--border-color);
    padding: 0;
}
.btn-icon:hover { background: rgba(124,58,237,0.15); color: var(--purple-light); }
.text-purple { color: var(--purple-light) !important; }
.bg-purple { background: var(--purple) !important; }

/* ---- HERO ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(124,58,237,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(37,99,235,0.1) 0%, transparent 50%),
                var(--dark-1);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--dark-1) 100%);
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; font-weight: 900; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 550px; }
.hero-badge .badge-glow {
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    color: var(--purple-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.hero-trust { color: var(--gray); font-size: 0.9rem; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; }

.floating-cards { position: relative; height: 420px; width: 100%; }
.float-card {
    position: absolute;
    background: rgba(30,41,59,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
    color: var(--white);
    font-weight: 600;
    min-width: 160px;
}
.card-1 { top: 20px; right: 80px; animation: floatY 3s ease-in-out infinite; }
.card-2 { top: 140px; right: 20px; animation: floatY 3.5s ease-in-out infinite 0.5s; }
.card-3 { top: 280px; right: 100px; animation: floatY 4s ease-in-out infinite 1s; }
.card-4 { top: 60px; right: 260px; animation: floatY 3.2s ease-in-out infinite 0.8s; }

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

.hero-glow-orb {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-dot {
    width: 6px; height: 30px;
    background: linear-gradient(var(--purple), transparent);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
    margin: 0 auto;
}
@keyframes scrollBounce { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.py-6 { padding-top: 80px !important; padding-bottom: 80px !important; }
.bg-dark-2 { background: var(--dark-2) !important; }

.section-tag {
    display: inline-block;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.3);
    color: var(--purple-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; }

/* ---- STATS ---- */
.stats-wrapper {
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(37,99,235,0.08));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.stat-card { padding: 1rem; }
.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.stat-plus { color: var(--purple-light); font-size: 1.5rem; font-weight: 700; display: inline-block; }
.stat-label { color: var(--gray); font-size: 0.9rem; font-weight: 500; margin-top: 0.25rem; }

/* ---- SERVICES ---- */
.service-card {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,0.3); box-shadow: var(--shadow-purple); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px; height: 56px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--purple-light);
    margin-bottom: 1rem;
}
.service-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-desc { color: var(--gray); font-size: 0.875rem; margin-bottom: 1rem; }
.service-features { list-style: none; padding: 0; margin-bottom: 1rem; }
.service-features li { color: var(--gray); font-size: 0.85rem; padding: 0.2rem 0; display: flex; align-items: center; gap: 0.4rem; }
.service-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.price-from { font-size: 0.75rem; color: var(--gray-dark); display: block; }
.price-value { font-size: 1.1rem; font-weight: 700; color: var(--purple-light); }
.service-delivery { color: var(--gray-dark); font-size: 0.8rem; }

/* ---- PORTFOLIO ---- */
.portfolio-card {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-purple); }
.portfolio-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.portfolio-card:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(124,58,237,0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-body { padding: 1rem; }
.portfolio-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.5rem; }
.tech-tag {
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    color: var(--purple-light);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.3); }
.testimonial-text { color: var(--gray); font-style: italic; line-height: 1.7; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initials {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }

/* ---- FAQ ---- */
.accordion-modern .accordion-item {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.accordion-modern .accordion-button {
    background: var(--dark-3);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 1.1rem 1.5rem;
}
.accordion-modern .accordion-button:not(.collapsed) {
    background: rgba(124,58,237,0.1);
    color: var(--purple-light);
    box-shadow: none;
}
.accordion-modern .accordion-button::after {
    filter: invert(1);
}
.accordion-body { padding: 1rem 1.5rem; color: var(--gray); }

/* ---- CTA ---- */
.cta-section {
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.12) 0%, transparent 70%),
                var(--dark-2);
}
.cta-wrapper {
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(37,99,235,0.08));
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
}
.cta-badge {
    display: inline-block;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    color: var(--blue-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; }
.cta-subtitle { color: var(--gray); max-width: 500px; margin: 0 auto; }

/* ---- TECH GRID ---- */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.tech-item {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}
.tech-item:hover { border-color: var(--purple); color: var(--purple-light); transform: translateY(-3px); }

/* ---- FOOTER ---- */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border-color);
}
.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray); font-size: 0.875rem; }
.footer-links a:hover { color: var(--purple-light); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 36px; height: 36px;
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}
.social-link:hover { background: var(--purple); color: white; border-color: var(--purple); transform: translateY(-2px); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover { color: white; transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.wa-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%; transform: translateY(-50%);
    background: var(--dark-3);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark-3);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 9999;
}

/* ---- CARDS / PANELS ---- */
.card-dexon {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

/* ---- FORMS ---- */
.form-control, .form-select {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background: var(--dark-3);
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
    color: var(--white);
}
.form-control::placeholder { color: var(--gray-dark); }
.form-label { font-weight: 500; color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 0.4rem; }
.input-group-text { background: var(--dark-4); border-color: var(--border-color); color: var(--gray); }

/* ---- BADGES ---- */
.badge { border-radius: 6px; font-weight: 600; }

/* ---- AUTH PAGES ---- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-1);
    padding-top: 80px;
}
.auth-card {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}
.auth-logo { text-align: center; margin-bottom: 1.5rem; }

/* ---- CLIENT PANEL ---- */
.client-panel {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--dark-1);
}
.client-sidebar {
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.client-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--gray);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    margin-bottom: 0.25rem;
}
.client-nav-link:hover, .client-nav-link.active {
    background: rgba(124,58,237,0.1);
    color: var(--purple-light);
}
.client-nav-link i { width: 18px; text-align: center; }

/* ---- STATUS BADGES ---- */
.status-received    { background: rgba(100,116,139,0.2); color: #94A3B8; border: 1px solid rgba(100,116,139,0.3); }
.status-analyzing   { background: rgba(234,179,8,0.15);  color: #FBBF24; border: 1px solid rgba(234,179,8,0.3); }
.status-approved    { background: rgba(37,99,235,0.15);  color: #60A5FA; border: 1px solid rgba(37,99,235,0.3); }
.status-development { background: rgba(124,58,237,0.15); color: #A78BFA; border: 1px solid rgba(124,58,237,0.3); }
.status-testing     { background: rgba(245,158,11,0.15); color: #FCD34D; border: 1px solid rgba(245,158,11,0.3); }
.status-completed   { background: rgba(16,185,129,0.15); color: #34D399; border: 1px solid rgba(16,185,129,0.3); }
.status-delivered   { background: rgba(16,185,129,0.2);  color: #10B981; border: 1px solid rgba(16,185,129,0.4); }
.status-cancelled   { background: rgba(239,68,68,0.15);  color: #F87171; border: 1px solid rgba(239,68,68,0.3); }
.status-refunded    { background: rgba(239,68,68,0.1);   color: #FCA5A5; border: 1px solid rgba(239,68,68,0.2); }

/* ---- ERRORS ---- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ====================================
   RESPONSIVE — MOBILE FIRST
==================================== */

/* Navbar mobile */
@media (max-width: 991px) {
    #mainNav {
        padding: 0.6rem 0;
        background: rgba(8, 12, 24, 0.97) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    #mainNav .navbar-collapse {
        background: rgba(8, 12, 24, 0.98);
        border: 1px solid rgba(124,58,237,0.2);
        border-radius: 16px;
        margin-top: 12px;
        padding: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }
    #mainNav .navbar-nav {
        gap: 4px !important;
    }
    #mainNav .nav-link {
        padding: 10px 14px !important;
        border-radius: 10px;
        font-size: 0.925rem;
    }
    #mainNav .nav-item.ms-lg-2,
    #mainNav .nav-item.ms-1 { margin-left: 0 !important; }
    #mainNav .nav-item .btn {
        width: 100%; text-align: center; margin-top: 4px;
        padding: 10px 16px !important;
    }
    .navbar-toggler {
        padding: 6px 10px;
        border: 1px solid rgba(124,58,237,0.3) !important;
        border-radius: 10px;
        background: rgba(124,58,237,0.08);
    }
    .navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(124,58,237,0.25); }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28167,139,250,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .float-card { display: none; }
    .stats-wrapper { padding: 1.5rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .cta-wrapper { padding: 2rem 1rem; }

    /* Client panel */
    .client-sidebar { margin-bottom: 1.5rem; }

    /* Section spacing */
    section { padding-top: 3rem !important; padding-bottom: 3rem !important; }

    /* Tables scroll */
    .table-responsive { -webkit-overflow-scrolling: touch; }

    /* Modals */
    .modal-dialog { margin: 10px; }
    .modal-content { border-radius: 16px !important; }
}

@media (max-width: 576px) {
    .container { padding-left: 16px; padding-right: 16px; }

    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.5rem !important; }

    /* Flash sale bar */
    #flashSaleBar .d-flex { flex-direction: column; gap: 4px !important; text-align: center; }

    /* Footer */
    footer .row > div { text-align: center !important; }
    footer .d-flex { justify-content: center !important; }

    /* Buttons */
    .btn-gradient, .btn-outline-purple { font-size: 0.875rem; padding: 0.6rem 1.2rem; }

    /* Hero parallax on mobile — disable translate for perf */
    #heroParallax [data-speed] { transform: none !important; }
    #heroParallax { width: 100%; height: 280px; }
}

/* ---- ANIMATIONS ---- */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ---- MISC ---- */
::selection { background: rgba(124,58,237,0.3); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }
