:root {
    /* Color Palette */
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F8F8F7;
    --color-bg-tertiary: #F3F3F1;
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #8A8A8A;
    --color-accent: #CC0000;
    --color-accent-dark: #A00000;
    --color-accent-light: #FFE5E5;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-strong: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 80px;
    --space-3xl: 120px;
    
    /* Variables for JS Glow & Magnetic Effects */
    --mouse-x: 50%;
    --mouse-y: 50%;
    
    /* Easing */
    --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-magnetic: cubic-bezier(0.2, 0, 0, 1);
}

/* ================== RESET & BASE ================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    background-color: var(--color-bg-primary);
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: clip; 
}

h1, h2, h3, h4, h5, h6 { color: var(--color-text-primary); margin-bottom: var(--space-sm); line-height: 1.2; }
h1 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: -1px; font-weight: 700; }
h2 { font-family: var(--font-primary); font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 600; letter-spacing: -0.5px; }
h3 { font-family: var(--font-primary); font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 500; }
p { margin-bottom: var(--space-md); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* ================== PRELOADER ================== */
.preloader {
    position: fixed; inset: 0; background: #FFFFFF; z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease-premium), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { display: flex; flex-direction: column; align-items: center; }
.loading-bar { width: 160px; height: 3px; background: var(--color-bg-tertiary); border-radius: 2px; overflow: hidden; position: relative; }
.loading-bar .progress {
    position: absolute; left: -100%; width: 100%; height: 100%;
    background: var(--color-accent); animation: loadingProgress 1.2s ease-in-out infinite;
}
@keyframes loadingProgress { 0% { left: -100%; } 100% { left: 100%; } }

/* ================== LAYOUT & UTILITIES ================== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--space-3xl) 0; }
.bg-primary { background-color: var(--color-bg-primary); }
.bg-secondary { background-color: var(--color-bg-secondary); }
.bg-tertiary { background-color: var(--color-bg-tertiary); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.align-center { align-items: center; }
.center { text-align: center; }
.mt-5 { margin-top: 5px; }
.mt-15 { margin-top: 15px; }

.section-header { margin-bottom: var(--space-2xl); }
.section-header .divider {
    height: 2px; background: linear-gradient(90deg, var(--color-accent), transparent); width: 80px; margin: var(--space-md) 0;
}
.section-header.center .divider { margin: var(--space-md) auto; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); }
.section-subtitle { font-size: 1.125rem; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }
.eyebrow {
    display: inline-block; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--color-accent); font-weight: 600; margin-bottom: var(--space-sm);
    border-left: 4px solid var(--color-accent); padding-left: 12px;
}

/* ================== UI COMPONENTS ================== */

/* Navigation */
.site-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.3); transition: box-shadow 0.3s var(--ease-premium), padding 0.3s var(--ease-premium);
    padding: var(--space-sm) 0;
}
.site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.06); padding: var(--space-xs) 0; background: rgba(255, 255, 255, 0.98); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 48px; max-width: 1400px; margin: 0 auto; }
.brand-logo { font-family: var(--font-primary); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.5px; }
.logo-auto { color: var(--color-text-primary); }
.logo-nola { color: var(--color-accent); }
.nav-links { display: flex; gap: var(--space-lg); align-items: center; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-link {
    font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--color-text-primary); position: relative; padding-bottom: 4px; transition: color 0.2s ease;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background-color: var(--color-accent); transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease-premium);
}
.nav-link:hover, .nav-link.active { color: var(--color-accent); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--color-text-primary); }

/* Buttons & Magnetic Effect */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 4px; font-weight: 600; letter-spacing: 0.5px;
    cursor: pointer; transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease; 
    text-align: center; border: 2px solid transparent; position: relative; overflow: hidden;
}
.magnetic { transition: transform 0.15s var(--ease-magnetic), box-shadow 0.3s ease, background-color 0.3s ease; will-change: transform; }

.btn-primary { background-color: var(--color-accent); color: #FFFFFF; box-shadow: 0 8px 24px rgba(204, 0, 0, 0.25); }
.btn-primary::after {
    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 ease;
}
.btn-primary:hover { background-color: var(--color-accent-dark); box-shadow: 0 12px 32px rgba(204, 0, 0, 0.35); }
.btn-primary:hover::after { left: 100%; }

.btn-secondary { background-color: transparent; color: var(--color-text-primary); border-color: var(--color-text-primary); }
.btn-secondary:hover { background-color: var(--color-text-primary); color: #FFFFFF; }

/* Zaktualizowany widoczny przycisk SKONTAKTUJ SIĘ */
.btn-secondary-light { 
    background: rgba(255, 255, 255, 0.08); 
    color: #FFFFFF; 
    border-color: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
}
.btn-secondary-light:hover { 
    background-color: #FFFFFF; 
    color: var(--color-text-primary); 
    border-color: #FFFFFF; 
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.link-arrow {
    display: inline-flex; align-items: center; gap: 8px; color: var(--color-accent); font-weight: 600;
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s var(--ease-premium);
}
.link-arrow:hover { gap: 12px; }

/* WOW EFFECT: Glow Cards */
.glow-card {
    background-color: #FFFFFF; border-radius: 12px; padding: var(--space-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
    position: relative; overflow: hidden; border: 1px solid var(--color-border); z-index: 1;
}
.glow-card::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(204, 0, 0, 0.05), transparent 40%);
    z-index: -1; opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.glow-card:hover::before { opacity: 1; }
.glow-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); border-color: rgba(204,0,0,0.1); }
.glow-card h3, .glow-card p, .glow-card i { position: relative; z-index: 2; }

/* ================== SPECIFIC SECTIONS ================== */
/* Hero Section (Index) - NAPRAWIONY OVERFLOW */
.index-hero {
    min-height: 100svh; height: auto; display: flex; align-items: center; position: relative; overflow: hidden; background-color: #000;
    padding-top: 100px; padding-bottom: 60px; /* Zapewnia miejsce dla headera */
}
.hero-image-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-image-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transform: scale(1.05); animation: slowPan 20s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); }
@keyframes slowPan { from { transform: scale(1.05) translate(0, 0); } to { transform: scale(1.1) translate(-2%, 2%); } }

.hero-content { position: relative; z-index: 1; max-width: 800px; color: #FFFFFF; }
.hero-content h1 { color: #FFFFFF; font-size: clamp(3.5rem, 6vw, 5.5rem); margin-bottom: 24px; line-height: 1.1; }
.hero-content .hero-subtitle { color: rgba(255,255,255,0.85); font-size: clamp(1.125rem, 2vw, 1.375rem); max-width: 600px; margin-bottom: 40px; font-weight: 300; }
.hero-content .eyebrow { color: var(--color-accent); border-color: var(--color-accent); text-shadow: 0 0 20px rgba(204,0,0,0.5); }
.hero-actions { display: flex; gap: var(--space-md); margin-bottom: var(--space-xl); }
.hero-trust-badges { display: flex; gap: var(--space-xl); flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.2); padding-top: var(--space-lg); }
.trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.9rem; }
.trust-badge i { font-size: 1.5rem; color: var(--color-accent); }

/* USP Icons */
.card-icon { font-size: 2.5rem; color: var(--color-accent); margin-bottom: var(--space-sm); display: inline-block; }

/* Abstract Heroes (Inner Pages) */
.hero-abstract {
    min-height: 40vh; display: flex; align-items: center; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, #FFFFFF 100%); border-bottom: 1px solid var(--color-border);
    padding-top: 80px; 
}
.hero-bg-shapes {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(circle at 10% 20%, rgba(204, 0, 0, 0.04) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 40%);
    filter: blur(40px);
}
.page-hero-content { max-width: 800px; margin: 0 auto; }
.breadcrumbs {
    font-size: 0.875rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: var(--space-md);
    display: flex; align-items: center; justify-content: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.breadcrumbs a { color: var(--color-text-primary); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--color-accent); }

/* Hover-Reveal Image Cards (Asortyment na Głównej) */
.hover-reveal-card {
    position: relative; height: 450px; border-radius: 16px; overflow: hidden; display: block;
    box-shadow: 0 12px 32px rgba(0,0,0,0.05); transform: translateY(0); transition: box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}
.hover-reveal-card img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-premium);
}
.card-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    opacity: 0; transition: opacity 0.5s var(--ease-premium);
}
.card-content-reveal {
    color: #FFF; transform: translateY(30px); transition: transform 0.5s var(--ease-premium);
}
.card-content-reveal i { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 12px; display: block; }
.card-content-reveal h3 { color: #FFF; font-size: 1.75rem; margin-bottom: 12px; }
.card-content-reveal p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 1rem; line-height: 1.5; }
.card-content-reveal .link-arrow { color: #FFF; }
.card-content-reveal .link-arrow i { font-size: 1rem; margin: 0; color: #FFF; display: inline; }

.hover-reveal-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); }
.hover-reveal-card:hover img { transform: scale(1.1); }
.hover-reveal-card:hover .card-overlay { opacity: 1; }
.hover-reveal-card:hover .card-content-reveal { transform: translateY(0); }

/* Sekcja Billboard (Z banerem i reflektorami) - EFEKT 3D */
.billboard-section {
    background-color: #050505; 
    border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
}
.billboard-details { display: flex; align-items: center; gap: 12px; }

.billboard-3d-container {
    perspective: 1200px; position: relative; display: flex; justify-content: center; align-items: center;
}
.billboard-glow {
    position: absolute; width: 90%; height: 90%; background: var(--color-accent);
    filter: blur(80px); opacity: 0.4; z-index: 0; animation: pulseGlow 3s ease-in-out infinite alternate;
}
@keyframes pulseGlow { 0% { opacity: 0.3; transform: scale(0.95); } 100% { opacity: 0.6; transform: scale(1.05); } }

.magnetic-billboard {
    position: relative; border-radius: 12px; padding: 12px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 32px 64px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.2); 
    overflow: hidden; z-index: 1; transform-style: preserve-3d;
    transition: transform 0.2s ease-out; 
}
.billboard-img {
    width: 100%; border-radius: 8px; filter: brightness(0.7) contrast(1.2); transition: filter 0.5s ease;
}
.glare {
    position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0.5; z-index: 2; pointer-events: none; border-radius: 12px; mix-blend-mode: overlay;
}
.headlight-sweep {
    position: absolute; top: 0; bottom: 0; left: -100%; width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), rgba(255,255,255,0.9), transparent);
    transform: skewX(-25deg); filter: blur(20px); mix-blend-mode: overlay; pointer-events: none; z-index: 3;
}
.billboard-section.active .headlight-sweep {
    animation: sweepLight 4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.billboard-section.active .billboard-img {
    animation: brightenImg 4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes sweepLight {
    0% { left: -100%; opacity: 0; }
    30% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}
@keyframes brightenImg {
    0% { filter: brightness(0.7) contrast(1.2); }
    40% { filter: brightness(1.2) contrast(1.05); }
    100% { filter: brightness(0.9) contrast(1.1); }
}

/* Sekcja Dobór po VIN */
.vin-section {
    background-color: #0A0A0A; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vin-section::before {
    content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(204,0,0,0.15) 0%, transparent 60%); z-index: 0;
}
.vin-text, .vin-visual { position: relative; z-index: 1; }
.vin-benefits { list-style: none; padding: 0; }
.vin-benefits li { display: flex; align-items: center; gap: 12px; color: #FFF; font-size: 1.125rem; margin-bottom: 12px; }
.vin-benefits i { color: var(--color-accent); font-size: 1.5rem; }
.vin-mockup-card {
    background: #1A1A1A; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}
.vin-header { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.5); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px;}
.vin-system-status {
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 16px 24px;
    display: flex; align-items: center; gap: 12px; color: #FFF; font-family: monospace; font-size: 0.95rem; margin-bottom: 32px;
}
.status-indicator {
    width: 8px; height: 8px; border-radius: 50%; background-color: #00FF00; box-shadow: 0 0 10px #00FF00;
    animation: blinkIndicator 2s infinite; flex-shrink: 0;
}
@keyframes blinkIndicator { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.vin-system-status p { margin: 0; color: rgba(255,255,255,0.8); line-height: 1.5; }
.vin-system-status strong { color: #00FF00; font-weight: normal; }

.car-wireframe { position: relative; height: 200px; display: flex; align-items: center; justify-content: center; }
.car-wireframe i { font-size: 10rem; color: rgba(255,255,255,0.1); }
.laser-scanner {
    position: absolute; top: 0; bottom: 0; width: 4px; background: var(--color-accent);
    box-shadow: 0 0 20px 4px rgba(204,0,0,0.5); animation: scanLaser 3s ease-in-out infinite alternate;
}
@keyframes scanLaser { 0% { left: 10%; } 100% { left: 90%; } }

/* Kinowy Fokus (Opcja 3 - O Nas) */
.cinema-values-section {
    background-color: #0A0A0A; position: relative; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cinema-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cinema-card {
    background: #151515; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 48px 32px; text-align: center;
    position: relative; transition: all 0.5s var(--ease-premium); z-index: 1; overflow: hidden; display: flex; flex-direction: column; align-items: center;
}
.cinema-card i {
    font-size: 4rem; color: var(--color-accent); margin-bottom: 24px; transition: transform 0.5s ease;
}
.cinema-card h3 { color: #FFFFFF; font-size: 1.75rem; margin-bottom: 16px; }
.cinema-card p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.6; margin: 0; }
.cinema-glow {
    position: absolute; inset: 0; border-radius: 16px; border: 2px solid var(--color-accent); opacity: 0;
    box-shadow: inset 0 0 20px rgba(204,0,0,0.15), 0 0 20px rgba(204,0,0,0.15); transition: opacity 0.5s ease; pointer-events: none;
}
@media (hover: hover) {
    .cinema-grid:hover .cinema-card { opacity: 0.3; filter: blur(4px); transform: scale(0.96); }
    .cinema-grid .cinema-card:hover { opacity: 1; filter: blur(0); transform: scale(1.04) translateY(-10px); z-index: 2; background: #000; border-color: rgba(204,0,0,0.5); }
    .cinema-grid .cinema-card:hover .cinema-glow { opacity: 1; }
    .cinema-grid .cinema-card:hover i { transform: scale(1.1) translateY(-5px); text-shadow: 0 0 20px rgba(204,0,0,0.5); }
}

/* CYTAT (Mini Review) */
.mini-review { text-align: center; position: relative; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.giant-bg-quote {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 30rem; color: rgba(0,0,0,0.03); z-index: 0; line-height: 1; pointer-events: none;
    transition: transform 0.2s ease-out;
}
.pull-quote-wrapper { max-width: 850px; margin: 0 auto; position: relative; padding: 40px; }
.decoration-quote { font-size: 3.5rem; color: var(--color-accent); opacity: 0.9; margin-bottom: 16px; display: inline-block; }
.pull-quote {
    font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--color-text-primary);
    line-height: 1.4; position: relative; font-style: italic; font-weight: 400; text-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.quote-author .stars { color: var(--color-accent); margin-bottom: 8px; font-size: 1.25rem; }
.quote-author .author-name { font-weight: 600; font-size: 1.125rem; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* FAQ */
.faq-grid { align-items: start; gap: var(--space-3xl); }
.faq-item { border-bottom: 1px solid var(--color-border-strong); margin-bottom: 8px; }
.faq-question {
    width: 100%; background: none; border: none; padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-primary); font-size: 1.125rem; font-weight: 600; color: var(--color-text-primary);
    cursor: pointer; text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon { font-size: 1.25rem; color: var(--color-accent); transition: transform 0.4s var(--ease-bounce); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-premium); }
.faq-answer-inner { padding-bottom: 24px; color: var(--color-text-secondary); line-height: 1.8; }

/* Oś Czasu (Timeline) */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 60px 0; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--color-border-strong), var(--color-accent), var(--color-border-strong), transparent); transform: translateX(-50%); opacity: 0.5; }
.timeline-item { display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 64px; width: 100%; }
.timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: 50%; }

.timeline-dot {
    position: absolute; left: 50%; top: 40px; width: 16px; height: 16px; background: #FFFFFF; border: 3px solid var(--color-accent);
    border-radius: 50%; transform: translate(-50%, -50%); z-index: 2; box-shadow: 0 0 0 6px rgba(204,0,0,0.05); transition: all 0.4s var(--ease-premium);
}
.timeline-item:hover .timeline-dot { transform: translate(-50%, -50%) scale(1.3); background: var(--color-accent); box-shadow: 0 0 20px rgba(204,0,0,0.3); }

.timeline-content { 
    width: 85%; position: relative; border-radius: 16px; background: #FFFFFF;
    padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
}
.timeline-item.left .timeline-content { margin-right: 48px; }
.timeline-item.right .timeline-content { margin-left: 48px; }

.timeline-item:hover .timeline-content { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.08); }

.timeline-year { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--color-accent); font-weight: 700; margin-bottom: 12px; line-height: 1; }
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--color-text-primary); }
.timeline-content p { color: var(--color-text-secondary); font-size: 1.05rem; line-height: 1.7; margin: 0; }

/* About Us Images & Masks */
.modern-image-mask { border-radius: 16px; overflow: hidden; transform: rotate(-2deg); box-shadow: 0 24px 48px rgba(0,0,0,0.1); transition: transform 0.5s var(--ease-premium); }
.modern-image-mask:hover { transform: rotate(0deg); }
.parallax-img { width: 100%; height: auto; transform: scale(1.1); transition: transform 0.8s ease; }
.modern-image-mask:hover .parallax-img { transform: scale(1.0); }
.floating-badge {
    position: absolute; bottom: -20px; right: -20px; background: var(--color-accent); color: #FFF; padding: 24px;
    border-radius: 50%; width: 140px; height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 16px 32px rgba(204,0,0,0.3); animation: float 6s ease-in-out infinite; z-index: 10;
}
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.badge-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.875rem; font-weight: 600; text-align: center; text-transform: uppercase; margin-top: 4px; }

/* ================== CONTACT SPECIFIC ================== */
.shadow-premium { box-shadow: 0 24px 48px rgba(0,0,0,0.08); border-radius: 16px; overflow: hidden; border: 1px solid var(--color-border); }
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.info-card { display: flex; gap: var(--space-md); align-items: flex-start; margin-bottom: var(--space-md); padding: var(--space-md); background: #FFF; border-radius: 12px; border: 1px solid var(--color-border); }
.info-card .card-icon { font-size: 2rem; color: var(--color-accent); background: var(--color-accent-light); padding: 16px; border-radius: 12px; }
.huge-phone-link { font-size: 2rem; font-weight: 700; color: var(--color-accent); display: inline-block; transition: transform 0.2s; }
.huge-phone-link:hover { transform: scale(1.05); }

/* KARTA TELEFONU - EFEKT */
.phone-highlight-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #050505 100%);
    border: 1px solid rgba(204, 0, 0, 0.4);
    position: relative; overflow: hidden;
}
.phone-highlight-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.15) 0%, transparent 50%);
    animation: rotateGlow 10s linear infinite; pointer-events: none; z-index: 0;
}
.icon-wrapper { position: relative; display: inline-flex; align-items: center; justify-content: center; z-index: 2; }
.pulse-ring {
    position: absolute; width: 100%; height: 100%;
    background-color: var(--color-accent); border-radius: 12px; z-index: 0;
    animation: pulseRingAnim 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.phone-highlight-card .card-icon { background: var(--color-accent); color: #fff; z-index: 1; position: relative; border-radius: 12px; }
.gradient-text { background: linear-gradient(to right, #ffffff, #FFE5E5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
@keyframes pulseRingAnim { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes rotateGlow { 100% { transform: rotate(360deg); } }

/* Brands Marquee */
.brands-strip { padding: var(--space-xl) 0; overflow: hidden; position: relative; }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-container::before, .marquee-container::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; }
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--color-bg-secondary), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--color-bg-secondary), transparent); }
.marquee-track { display: inline-block; animation: scrollMarquee 30s linear infinite; }
.brand-badge {
    display: inline-block; font-family: var(--font-primary); font-size: 1.25rem; font-weight: 700; color: var(--color-text-muted);
    border: 1px solid var(--color-border-strong); padding: 12px 32px; border-radius: 50px; margin: 0 16px; transition: all 0.3s ease; background: #fff;
}
.brand-badge:hover { color: var(--color-accent); border-color: var(--color-accent); transform: scale(1.05); box-shadow: 0 8px 24px rgba(204,0,0,0.1); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Trust Bar */
.trust-bar { background-color: var(--color-text-primary); color: #FFFFFF; padding: var(--space-2xl) 0; }
.stat-number, .stat-plus, .stat-percent { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--color-accent); }
.stat-number { color: #FFF; }
.stat-item { display: flex; flex-direction: column; align-items: center; }

/* ================== ANIMATIONS ================== */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

/* Kiedy element pojawi się na ekranie (nadawane przez JS) */
.reveal.active, .reveal-left.active, .reveal-right.active, .billboard-section.active { opacity: 1; transform: translate(0, 0); }

/* Clip-reveal: zabezpieczone przez body.page-loaded by preloader go nie psuł */
.clip-reveal { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%); opacity: 0; transform: translateY(20px); }
body.page-loaded .clip-reveal { animation: clipUp 1s var(--ease-premium) forwards; }

@keyframes clipUp { to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.grid-2 .reveal:nth-child(1), .grid-3 .reveal:nth-child(1), .grid-4 .reveal:nth-child(1) { transition-delay: 0s; }
.grid-2 .reveal:nth-child(2), .grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ================== COOKIE BANNER ================== */
.cookie-banner {
    position: fixed; bottom: 24px; right: 24px; max-width: 400px; z-index: 999999;
    background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    transform: translateY(150%); opacity: 0; transition: transform 0.6s var(--ease-premium), opacity 0.6s var(--ease-premium);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cookie-header i { font-size: 1.5rem; color: var(--color-accent); }
.cookie-header h4 { color: #FFF; margin: 0; font-size: 1.125rem; }
.cookie-content p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.6; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions .btn { flex: 1; padding: 10px; text-align: center; font-size: 0.85rem; }
.cookie-actions .btn-secondary { color: #FFF; border-color: rgba(255,255,255,0.2); }
.cookie-actions .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #FFF; }

/* ================== FOOTER (WYKONANE PRZEZ OMEGA) ================== */
.site-footer { background-color: #111; color: rgba(255,255,255,0.6); padding: var(--space-3xl) 0 var(--space-md); }
.site-footer h4 { color: #FFFFFF; margin-bottom: var(--space-md); font-size: 1.125rem; }
.footer-logo { display: inline-block; font-family: var(--font-primary); font-weight: 700; font-size: 1.5rem; margin-bottom: var(--space-sm); }
.footer-logo .logo-auto { color: #FFFFFF; }
.footer-logo .logo-nola { color: var(--color-accent); }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a:hover { color: var(--color-accent); }

.footer-bottom { 
    margin-top: var(--space-2xl); padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.1); 
    display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; 
}

/* PODPIS OMEGA - Wersja czysty kod (wektorowa ostrość) */
.omega-signature {
    display: flex; align-items: center; gap: 12px; text-decoration: none; transition: opacity 0.3s ease;
}
.omega-signature:hover { opacity: 0.8; }
.omega-text-pre {
    font-family: var(--font-primary); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: #8c96a0; font-weight: 400; padding-top: 2px;
}
.omega-logo-css {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: -1px;
    display: flex;
    align-items: flex-end;
    line-height: 0.8;
}
.omega-dot {
    width: 6px;
    height: 6px;
    background-color: #1DF08E; /* Idealny neonowy zielony ze zdjęcia */
    display: inline-block;
    margin-left: 3px;
    margin-bottom: 2px;
}


/* ================== MEDIA QUERIES ================== */
@media (max-width: 1024px) {
    .nav-container { padding: 0 24px; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; margin-left: 12px; }
    
    /* Zaktualizowane Mobilne Menu Premium */
    .nav-links.mobile-active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255,255,255,0.98); padding: var(--space-xl) var(--space-md);
        box-shadow: 0 24px 48px rgba(0,0,0,0.15); border-top: 1px solid var(--color-border);
        animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; transform-origin: top;
        gap: var(--space-md); text-align: center;
    }
    .nav-links.mobile-active .nav-link { font-size: 1.125rem; padding: 12px 0; width: 100%; }
    .nav-links.mobile-active .nav-link::after { left: 50%; transform: translateX(-50%) scaleX(0); width: 30px; }
    .nav-links.mobile-active .nav-link:hover::after,
    .nav-links.mobile-active .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
    
    .cinema-grid { grid-template-columns: repeat(2, 1fr); }
}

@keyframes slideDownMenu {
    0% { opacity: 0; transform: scaleY(0.95); }
    100% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 16px; }
    .brand-logo { font-size: 1.25rem; }
    .nav-btn { padding: 8px 16px; font-size: 0.75rem; } 
    
    /* Mobilna poprawka dla sekcji Hero (zapobiega ucinaniu tekstu) */
    .index-hero { align-items: flex-start; padding-top: 140px; padding-bottom: 60px; }
    .hero-content { margin-top: 2vh; }
    .hero-actions { flex-direction: column; width: 100%; gap: 16px; margin-bottom: 32px; }
    .hero-actions .btn { width: 100%; display: flex; justify-content: center; align-items: center; }
    .hero-trust-badges { flex-direction: column; gap: 16px; align-items: flex-start; }

    .grid-2, .grid-3, .grid-4, .cinema-grid { grid-template-columns: 1fr; }
    
    .timeline-line { left: 24px; transform: none; background: linear-gradient(to bottom, transparent, var(--color-accent), transparent); opacity: 0.3; }
    .timeline-item, .timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: 60px; margin-bottom: 40px; }
    .timeline-dot { left: 24px; top: 32px; transform: translate(-50%, -50%); }
    .timeline-content { width: 100%; padding: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
    .timeline-item.left .timeline-content, .timeline-item.right .timeline-content { margin: 0; }
    .timeline-content::before { display: none; }
    .timeline-year { font-size: 2rem; margin-bottom: 8px; }
    .timeline-content h3 { font-size: 1.25rem; }
    
    .floating-badge { width: 100px; height: 100px; right: 0; bottom: -10px; padding: 12px; }
    .badge-number { font-size: 1.8rem; }
    .badge-text { font-size: 0.7rem; }
    .faq-grid { gap: var(--space-xl); }
    
    .footer-bottom { flex-direction: column; text-align: center; gap: 24px; }
    .omega-signature { justify-content: center; }
    
    .giant-bg-quote { font-size: 15rem; }
    .vin-system-status { flex-direction: column; align-items: flex-start; }
    
    .cinema-card { padding: 32px 24px; }
    
    .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
    .cookie-actions { flex-direction: column; }
}