body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #0c0a09;
    color: #d6d3d1;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-black {
    font-family: 'Oswald', 'Inter', sans-serif;
}

#top-nav {
    background: rgba(12, 10, 9, 0.95);
    border-bottom: 2px solid rgba(245, 158, 11, 0.1);
}

#top-nav.scrolled {
    background: rgba(12, 10, 9, 0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-bottom: 2px solid rgba(245, 158, 11, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-wrap::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 150px;
    background: #0c0a09;
    transform: rotate(-3deg);
    z-index: 10;
}

#tire-track-deco {
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,0.8) 0px,
        rgba(0,0,0,0.8) 10px,
        transparent 10px,
        transparent 20px
    ),
    repeating-linear-gradient(
        -45deg,
        rgba(0,0,0,0.8) 0px,
        rgba(0,0,0,0.8) 10px,
        transparent 10px,
        transparent 20px
    );
    mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent);
}

.glow-box {
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.1; filter: blur(20px); }
    100% { opacity: 0.3; filter: blur(30px); }
}

.pack-box {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.fleet-card {
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

#monetization-bg-fx {
    background-image: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.q-card {
    position: relative;
}

.q-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background-color: #f59e0b;
    transition: height 0.3s ease;
}

.q-card:hover::before {
    height: 100%;
}

.shimmer-fx {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg) translateX(-150%);
}

@keyframes shimmer {
    0% { transform: skewX(-20deg) translateX(-150%); }
    100% { transform: skewX(-20deg) translateX(250%); }
}

#cookie-banner.show {
    transform: translateY(0);
}

.deco-bg {
    animation: drift 10s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(-40%, 20px) scale(1.1); }
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover::after {
    transform: rotate(45deg) translate(0, 0);
}

.bg-layer {
    background-blend-mode: overlay;
}

#mobile-menu.open {
    transform: translateX(0);
}

#burger-btn.active #line-1 { transform: translateY(10px) rotate(45deg); }
#burger-btn.active #line-2 { opacity: 0; }
#burger-btn.active #line-3 { transform: translateY(-10px) rotate(-45deg); }

.bar-line {
    transition: all 0.3s ease;
}
