:root {
    --bg-pure: #030303;
    --bg-dark: #09090b;
    --card-bg: rgba(15, 15, 18, 0.7);
    --accent-red: #ff1e27;
    --accent-red-glow: rgba(255, 30, 39, 0.4);
    --accent-cyan: #00f0ff;
    --text-white: #ffffff;
    --text-gray: #8f8f96;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 30, 39, 0.3);
    --font-speed: 'Anton', sans-serif;
    --font-main: 'Cairo', sans-serif;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-pure);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100vw;
    cursor: none; /* Custom Cursor */
}

/* Lenis Smooth Scroll Setup */
html.lenis {
    height: auto;
}
.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-pure);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* --- 1. PRELOADER (CINEMATIC INTRO) --- */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #030303;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: clip-path 1.2s var(--ease-premium);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.preloader.loaded {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    pointer-events: none;
}
.loader-ui {
    text-align: center;
    position: relative;
}
.loader-gauge {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 30px;
}
.loader-gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.loader-gauge circle {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
}
.loader-gauge .bg-circle {
    stroke: rgba(255, 255, 255, 0.05);
}
.loader-gauge .glow-circle {
    stroke: var(--accent-red);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    filter: drop-shadow(0 0 8px var(--accent-red));
    transition: stroke-dashoffset 0.1s linear;
}
.loader-num {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-speed);
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
.loader-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-top: 10px;
}
.loader-text span {
    color: var(--accent-red);
}
.loader-scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    z-index: 10;
    pointer-events: none;
}

/* --- 2. CUSTOM CURSOR --- */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-red);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent-red);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 30, 39, 0.4);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring::after {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}
/* Cursor Hover States */
body.cursor-hover .cursor-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
}
body.cursor-hover .cursor-ring {
    width: 70px;
    height: 70px;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}
body.cursor-hover .cursor-ring::after {
    opacity: 1;
    animation: rotate 10s linear infinite;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide default cursor only if not on touch device */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, .img-slot, .pro-card, .timeline-card, .hud-btn, .logo-box { cursor: none !important; }
}

/* --- 3. WEBGL & BACKGROUND --- */
#webgl-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background-color: var(--bg-pure);
}
/* Blur Blobs in Background */
.blur-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: floatBlob 20s infinite alternate;
}
.blob-1 {
    width: 50vw; height: 50vw;
    background: var(--accent-red);
    top: -10%; left: -10%;
}
.blob-2 {
    width: 45vw; height: 45vw;
    background: #600207;
    bottom: -10%; right: -10%;
    animation-duration: 25s;
}
.blob-3 {
    width: 30vw; height: 30vw;
    background: var(--accent-cyan);
    top: 40%; left: 50%;
    opacity: 0.06;
    animation-duration: 18s;
}
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 15%) scale(1.2); }
}

/* Cyber grid overlay */
.cyber-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.005) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.005) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}
.animated-noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    z-index: 2;
    pointer-events: none;
}

/* --- 4. NAVBAR (GLASSMORPHISM HUD) --- */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding 0.5s var(--ease-premium), background 0.5s, border-bottom 0.5s;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 15px 6%;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-logo img {
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,30,39,0.3));
    transition: height 0.5s var(--ease-premium);
}
.navbar.scrolled .nav-logo img {
    height: 38px;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
@media (max-width: 1024px) {
    .nav-links { display: none; }
}
.nav-link a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
    padding: 5px 0;
}
.nav-link a::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s var(--ease-premium);
}
.nav-link a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.nav-link a:hover::after,
.nav-link.active a::after {
    width: 100%;
}
.nav-link.active a {
    color: var(--accent-red);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
}
.btn-premium {
    background: linear-gradient(90deg, var(--accent-red) 0%, #d01017 100%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 5px 15px var(--accent-red-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.btn-premium::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: left 0.5s;
}
.btn-premium:hover::before {
    left: 100%;
}
.btn-premium:hover {
    box-shadow: 0 5px 25px rgba(255, 30, 39, 0.7);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}
@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .nav-cta { display: none; }
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.4s var(--ease-premium), opacity 0.4s, background-color 0.4s;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-red);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-red);
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0; right: 0; width: 100%; height: 100%;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(0px at 90% 8%);
    transition: clip-path 0.8s var(--ease-premium);
    pointer-events: none;
}
.menu-overlay.open {
    clip-path: circle(150% at 90% 8%);
    pointer-events: all;
}
.menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.menu-link a {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-main);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.menu-link a:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

/* --- 5. MAIN STRUCTURE & PARALLAX SECTIONS --- */
.page-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 8%;
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
}

.section-tag {
    color: var(--text-white);
    background: linear-gradient(90deg, var(--accent-red), transparent);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: inline-block;
    align-self: flex-start;
    border-right: 4px solid var(--text-white);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
    text-transform: uppercase;
}

.section-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.section-title span {
    font-family: var(--font-speed);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    display: block;
    font-size: 28px;
    letter-spacing: 3px;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .section-title { font-size: 36px; }
    .section-title span { font-size: 20px; }
    section { padding: 90px 6%; }
}

.section-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    background: rgba(20, 20, 23, 0.3);
    border-right: 3px solid var(--accent-red);
    padding: 20px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}
@media (max-width: 992px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- SECTION 1: HERO (CINEMATIC ENTRY) --- */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 4%;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.hero-logo-box {
    height: 130px;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 30, 39, 0.25));
    transition: transform 0.5s var(--ease-premium);
}
.hero-logo-box:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .hero-logo-box { height: 80px; max-width: 160px; }
    .hero-logos { gap: 15px; }
}
.hero-title {
    font-size: 90px;
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin-bottom: 15px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .hero-title { font-size: 48px; }
}
.hero-subtitle {
    font-family: var(--font-speed);
    font-size: 20px;
    color: var(--accent-red);
    letter-spacing: 6px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--accent-red-glow);
}
.hero-desc {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .hero-desc { font-size: 15px; }
}
.hero-badge {
    font-size: 12px;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}

.scroll-down-hud {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}
.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}
.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}
.scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
}

/* --- FEATURE LISTS --- */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-item {
    background: linear-gradient(90deg, rgba(20, 20, 25, 0.6) 0%, rgba(30, 30, 38, 0.4) 100%);
    border-left: 4px solid var(--accent-red);
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-item:hover {
    transform: translateX(-6px);
    border-color: rgba(255, 30, 39, 0.3);
    background: linear-gradient(90deg, rgba(30, 30, 38, 0.8) 0%, rgba(40, 40, 50, 0.6) 100%);
}
.feature-item span {
    font-size: 13px;
    color: var(--accent-red);
    font-family: var(--font-speed);
    letter-spacing: 1px;
}

/* --- IMAGES SHOWCASE (3D PARALLAX & TILT) --- */
.slide-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    gap: 20px;
}
@media (max-width: 768px) {
    .slide-visual-wrapper {
        min-height: 300px;
        gap: 10px;
    }
}
.img-slot {
    flex: 1;
    height: 480px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: flex 0.6s var(--ease-premium), border-color 0.3s, box-shadow 0.3s;
    background-color: var(--bg-dark);
    transform-style: preserve-3d;
}
@media (max-width: 768px) {
    .img-slot { height: 350px; }
}
.img-slot:hover {
    flex: 2;
    border-color: var(--accent-red);
    box-shadow: 0 0 35px var(--accent-red-glow);
}
.img-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%) contrast(115%);
    transition: transform 0.8s var(--ease-premium), filter 0.5s;
    transform: scale(1.1);
}
.img-slot:hover img {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(110%);
}
.spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 30, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.slot-title {
    position: absolute;
    bottom: 25px; right: 25px;
    background: rgba(5,5,5,0.85);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transform: translateZ(20px);
    backdrop-filter: blur(5px);
    z-index: 4;
}

/* --- SECTION 4: CAREER HIGHLIGHTS (TIMELINE) --- */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}
.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--text-white);
    transition: border-color 0.3s, transform 0.4s var(--ease-premium), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}
.timeline-card:hover {
    border-top-color: var(--accent-red);
    border-color: rgba(255, 30, 39, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 30, 39, 0.1);
}
.timeline-year {
    font-family: var(--font-speed);
    font-size: 38px;
    color: var(--accent-red);
    margin-bottom: 15px;
    line-height: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.timeline-year i {
    font-size: 20px;
    opacity: 0.5;
    transition: transform 0.3s;
}
.timeline-card:hover .timeline-year i {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
}
.timeline-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* --- SECTION 8: DATA & ROI SPEEDOMETER --- */
.data-showcase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.speedometer-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.speedometer-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-220deg);
}
.speedometer-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 12;
    stroke-dasharray: 630;
    stroke-linecap: round;
}
.speedometer-value {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 12;
    stroke-dasharray: 630;
    stroke-dashoffset: 630;
    stroke-linecap: round;
    filter: drop-shadow(0 0 15px var(--accent-red));
    transition: stroke-dashoffset 2s var(--ease-premium);
}
.metric-content {
    text-align: center;
    z-index: 5;
}
.metric-big {
    font-family: var(--font-speed);
    font-size: 90px;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 40%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 5px;
}
.metric-tag {
    font-size: 13px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- SECTION 10: SPONSOR PACKAGES (INTERACTIVE TELEMETRY) --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.pro-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease-premium), border-color 0.3s, box-shadow 0.3s;
}
/* Spotlight mouse move border trick */
.pro-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: radial-gradient(500px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 30, 39, 0.35), transparent 45%);
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s;
}
.pro-card:hover::before {
    opacity: 1;
}
.pro-card:hover {
    border-color: rgba(255,30,39,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transform: translateY(-8px);
}
.pro-card.highlight {
    border: 2px solid var(--accent-red);
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.8) 0%, rgba(45, 10, 12, 0.4) 100%);
    box-shadow: 0 15px 35px rgba(255, 30, 39, 0.15);
}
.pro-card.highlight::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px; left: -30px;
    background: var(--accent-red);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 5px 30px;
    transform: rotate(-45deg);
}
.card-header h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}
.card-price {
    font-family: var(--font-speed);
    font-size: 28px;
    color: var(--accent-red);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 35px;
    text-align: right;
}
.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-red);
    font-size: 15px;
}

/* --- CONTACT HUB & FOOTER --- */
.contact-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 50px;
    border-radius: 16px;
    display: inline-grid;
    gap: 18px;
    text-align: right;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 600px;
}
.contact-row {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-row i {
    color: var(--accent-red);
    font-size: 20px;
    width: 25px;
    text-align: center;
}
.contact-row a {
    color: var(--accent-red);
    text-decoration: none;
    font-family: var(--font-speed);
    font-size: 18px;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.contact-row a:hover {
    color: #fff;
}

/* --- FLOATING TRACK HUD (NAVIGATION TRACKER) --- */
.track-hud {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
@media (max-width: 1024px) {
    .track-hud { display: none; }
}
.hud-line {
    width: 2px;
    height: 180px;
    background: rgba(255,255,255,0.07);
    position: relative;
    border-radius: 2px;
}
.hud-fill {
    width: 100%;
    height: 0%;
    background: var(--accent-red);
    position: absolute;
    top: 0; left: 0;
    box-shadow: 0 0 8px var(--accent-red);
    transition: height 0.1s ease-out;
}
.hud-dot {
    width: 8px;
    height: 8px;
    background: var(--text-gray);
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}
.hud-dot.active {
    background: var(--accent-red);
    transform: scale(1.5);
    box-shadow: 0 0 10px var(--accent-red);
}

/* --- BOTTOM CONTROLLER BAR --- */
.hud-navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--border-color);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: border-color 0.3s;
}
.hud-navigation:hover {
    border-color: rgba(255,30,39,0.3);
}
.hud-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    font-family: var(--font-main);
    transition: color 0.3s, transform 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hud-btn:hover { color: var(--accent-red); transform: scale(1.05); }
.hud-btn:active { transform: scale(0.95); }

.hud-indicator {
    font-family: var(--font-speed);
    font-size: 16px;
    color: var(--text-gray);
    letter-spacing: 2px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    padding: 0 25px;
}
@media (max-width: 768px) {
    .hud-navigation {
        width: 90%;
        justify-content: space-between;
        padding: 10px 20px;
        bottom: 20px;
    }
    .hud-indicator { padding: 0 15px; font-size: 14px; }
}
