/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0F172A;
    --accent-red: #DC2626;
    --chrome-silver: #E2E8F0;
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --bg-dark: #0F172A;
    --bg-light: #1E293B;
    --border-color: #334155;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    border-top: 3px solid var(--accent-red);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 30px rgba(220, 38, 38, 0.3);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    color: var(--text-secondary);
    flex: 1;
    min-width: 250px;
    font-family: 'Roboto Condensed', sans-serif;
}

.cookie-content a {
    color: var(--accent-red);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-content a:hover {
    color: var(--chrome-silver);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.cookie-btn {
    background: var(--accent-red);
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
    padding: 12px 30px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn:hover {
    background: transparent;
    color: var(--accent-red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-red);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
    will-change: background, box-shadow;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: none;
    -webkit-transform: none;
    will-change: auto;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-red);
}

.logo:hover {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.logo:hover::after {
    width: 100%;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-red);
}

.nav-link:hover {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--accent-red);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section with Motion Blur */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

/* Parallax Background Elements */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(220, 38, 38, 0.1) 50px,
        rgba(220, 38, 38, 0.1) 52px
    );
    animation: speedLines 2s linear infinite;
    opacity: 0.3;
}

.speed-lines-2 {
    animation: speedLines 1.5s linear infinite reverse;
    opacity: 0.2;
}

@keyframes speedLines {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50px);
    }
}

.road-markings {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 100px,
        rgba(226, 232, 240, 0.1) 100px,
        rgba(226, 232, 240, 0.1) 102px
    );
    animation: roadMarkings 3s linear infinite;
}

@keyframes roadMarkings {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 180px 180px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(200px, 200px);
    }
}

/* Rotating Gears - mechanical aesthetic */
.gears-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.gear {
    position: absolute;
    border: 3px solid var(--accent-red);
    border-radius: 50%;
}

.gear-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation: rotateGear 20s linear infinite;
}

.gear-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation: rotateGear 15s linear infinite reverse;
}

.gear-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 5%;
    animation: rotateGear 25s linear infinite;
}

.gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
}

.gear::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30%;
    background: var(--accent-red);
}

@keyframes rotateGear {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateX(-10%);
    transition: transform 0.1s ease-out;
}

.motion-blur {
    filter: blur(2px);
    animation: motionBlur 5s ease-in-out infinite alternate;
}

@keyframes motionBlur {
    0% {
        filter: blur(2px);
        transform: translateX(-10%) scale(1);
    }
    100% {
        filter: blur(4px);
        transform: translateX(-15%) scale(1.05);
    }
}

.hero-vehicle {
    position: absolute;
    width: 600px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    animation: vehicleMove 8s linear infinite;
    z-index: 2;
}

.vehicle-1 {
    background-image: url('assets/images/hero-vehicle-diagnostics.jpg');
}

.vehicle-2 {
    background-image: url('assets/images/hero-fleet-management.jpg');
}

.vehicle-3 {
    background-image: url('assets/images/hero-performance-monitoring.jpg');
}

@keyframes vehicleMove {
    0% {
        right: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        right: 120%;
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 2;
}

.hero-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100%;
    background: var(--accent-red);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 50px rgba(220, 38, 38, 1), 
                0 0 100px rgba(220, 38, 38, 0.6),
                0 0 150px rgba(220, 38, 38, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.1);
    filter: blur(0.5px);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    animation: fadeInUp 1s ease 0.2s both;
    font-family: 'Roboto Condensed', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(226, 232, 240, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--accent-red);
}

.indicator.active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.indicator-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-red);
    opacity: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

.indicator.active .indicator-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-primary);
    border-color: var(--accent-red);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-red);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--chrome-silver);
    border-color: var(--chrome-silver);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(226, 232, 240, 0.1);
    transition: left 0.3s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--chrome-silver);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(226, 232, 240, 0.5);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-light);
    position: relative;
}

.parallax-bg-features {
    opacity: 0.1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4), 0 0 30px rgba(220, 38, 38, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-red);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    transform: rotate(5deg);
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-red);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-red), transparent, var(--accent-red));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::after {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    width: 200%;
    height: 200%;
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.feature-number {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 12px;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.8);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.3);
}

/* Technology Section */
.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tech-image {
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--accent-red);
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    position: relative;
}

.tech-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.tech-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) brightness(0.9);
}

.tech-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item {
    padding: 20px;
    border-left: 4px solid var(--accent-red);
    background: rgba(30, 41, 59, 0.5);
    transition: var(--transition);
    position: relative;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(220, 38, 38, 0.1);
    transition: width 0.3s ease;
}

.tech-item:hover::before {
    width: 100%;
}

.tech-item:hover {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    transform: translateX(10px);
}

.tech-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.tech-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    z-index: 1;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.benefit-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-red);
    opacity: 0.3;
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.use-case-card {
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-red);
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    border-color: var(--accent-red);
}

.use-case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: grayscale(0.3) contrast(1.1);
    transition: var(--transition);
}

.use-case-card:hover img {
    filter: grayscale(0) contrast(1.2);
}

.use-case-content {
    padding: 25px;
}

.use-case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.use-case-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 10px;
    display: inline-block;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
}

.contact-item a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.contact-item a:hover {
    color: var(--chrome-silver);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    padding: 40px;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    background: rgba(30, 41, 59, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 3px solid var(--accent-red);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-section a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--chrome-silver);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    z-index: 2;
}

/* Policy Pages */
.policy-page {
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    padding: 50px;
    border-radius: 0;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    z-index: 2;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 10px;
    display: inline-block;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    color: var(--chrome-silver);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.thanks-content {
    max-width: 600px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    padding: 60px 40px;
    border-radius: 0;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-red);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    position: relative;
    z-index: 2;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.thanks-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
}

.thanks-content a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

.thanks-content a:hover {
    color: var(--chrome-silver);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        will-change: background, box-shadow;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        -webkit-perspective: 1000px !important;
        perspective: 1000px !important;
    }
    
    .header-content {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        border-bottom: 2px solid var(--accent-red);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .technology-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-vehicle {
        width: 400px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .header {
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        will-change: background, box-shadow;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
    
    .header-content {
        transform: none !important;
        -webkit-transform: none !important;
        width: 100% !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .solutions-grid,
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-vehicle {
        width: 300px;
        height: 150px;
    }
}
