/* MEDIA ONE - Complete Stylesheet */
/* Verze: 2.0 - clean merge */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --gray: #2a2a2a;
    --light-gray: #888;
    --white: #ffffff;
    --accent: #f77f00;
    --accent-glow: rgba(247, 127, 0, 0.5);
    --font-display: 'Darker Grotesque', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --section-padding: clamp(80px, 15vh, 150px);
    --container-padding: clamp(20px, 5vw, 80px);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* SR-only - pro SEO h1 v hero */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: var(--gray); z-index: 10000; }
.scroll-progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent), #ff4444, var(--accent)); width: 0; transition: width 0.1s linear; }

/* =============================================
   HERO SCROLL INDICATOR
   ============================================= */
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; height: 60px; } 50% { opacity: 0.5; height: 40px; } }
.hero-scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-gray); }

/* =============================================
   GLITCH EFFECT
   ============================================= */
.glitch { position: relative; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; }
.glitch::before { color: #ff0000; z-index: -1; }
.glitch::after { color: #00ffff; z-index: -2; }
.glitch:hover::before { opacity: 0.8; animation: glitch1 0.3s infinite; }
.glitch:hover::after { opacity: 0.8; animation: glitch2 0.3s infinite; }
@keyframes glitch1 { 0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); } 20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -1px); } 40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 2px); } 60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, 1px); } 80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, -1px); } 100% { clip-path: inset(58% 0 43% 0); transform: translate(1px, 2px); } }
@keyframes glitch2 { 0% { clip-path: inset(65% 0 25% 0); transform: translate(2px, -2px); } 20% { clip-path: inset(10% 0 85% 0); transform: translate(-1px, 1px); } 40% { clip-path: inset(55% 0 35% 0); transform: translate(1px, -2px); } 60% { clip-path: inset(75% 0 15% 0); transform: translate(-2px, -1px); } 80% { clip-path: inset(20% 0 70% 0); transform: translate(2px, 1px); } 100% { clip-path: inset(45% 0 45% 0); transform: translate(-1px, -2px); } }

/* =============================================
   COOKIE POPUP
   ============================================= */
.cookie-popup {
    position: fixed; bottom: 30px; right: 30px; width: 400px; max-width: calc(100vw - 60px);
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 127, 0, 0.3); border-radius: 20px;
    padding: 30px; z-index: 9997;
    opacity: 0; transform: translateY(30px); pointer-events: none;
    transition: all 0.5s var(--ease-out-expo);
}
.cookie-popup.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-close { position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.3s ease; }
.cookie-close:hover { background: var(--accent); }
.cookie-close svg { width: 18px; height: 18px; }
.cookie-popup h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 15px; }
.cookie-popup p { font-size: 0.9rem; color: var(--light-gray); line-height: 1.6; margin-bottom: 25px; }
.cookie-popup p a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn { padding: 12px 25px; border-radius: 30px; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; }
.cookie-btn.accept { background: var(--accent); color: var(--black); border: none; }
.cookie-btn.accept:hover { background: var(--white); }
.cookie-btn.preferences { background: transparent; color: var(--light-gray); border: 1px solid var(--gray); }
.cookie-btn.preferences:hover { color: var(--white); border-color: var(--white); }

/* =============================================
   COOKIE NASTAVENÍ PANEL
   ============================================= */
.cookie-settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cookie-settings-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-settings-panel {
    width: 520px;
    max-width: calc(100vw - 40px);
    max-height: 85vh;
    overflow-y: auto;
    background: var(--dark);
    border: 1px solid rgba(247, 127, 0, 0.3);
    border-radius: 20px;
    padding: 35px;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.cookie-settings-overlay.visible .cookie-settings-panel {
    transform: translateY(0);
}

.cookie-settings-panel h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.cookie-settings-panel .settings-desc {
    font-size: 0.85rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-settings-panel .settings-desc a {
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-category {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.cookie-category-header h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.cookie-category-header .required-tag {
    font-size: 0.7rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 2px 8px;
    border-radius: 10px;
}

.cookie-category p {
    font-size: 0.8rem;
    color: var(--light-gray);
    line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle .toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray);
    border-radius: 24px;
    transition: background 0.3s ease;
}

.cookie-toggle .toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--accent);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.cookie-settings-actions button {
    flex: 1;
    padding: 13px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-settings-actions .save-btn {
    background: var(--accent);
    color: var(--black);
    border: none;
}

.cookie-settings-actions .save-btn:hover {
    background: var(--white);
}

.cookie-settings-actions .accept-all-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray);
}

.cookie-settings-actions .accept-all-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* =============================================
   OCHRANA OSOBNÍCH ÚDAJŮ - PRIVACY MODAL
   ============================================= */
.privacy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.privacy-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.privacy-panel {
    position: relative;
    width: 700px;
    max-width: calc(100vw - 40px);
    max-height: 85vh;
    overflow-y: auto;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.privacy-overlay.visible .privacy-panel {
    transform: translateY(0);
}

.privacy-panel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 1;
}

.privacy-panel-close:hover {
    background: var(--accent);
}

.privacy-panel-close svg {
    width: 18px;
    height: 18px;
}

.privacy-panel h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
}

.privacy-panel h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-panel p,
.privacy-panel li {
    font-size: 0.85rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.privacy-panel ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-panel a {
    color: var(--accent);
    text-decoration: underline;
}

/* Scrollbars pro modaly */
.privacy-panel::-webkit-scrollbar,
.cookie-settings-panel::-webkit-scrollbar {
    width: 6px;
}

.privacy-panel::-webkit-scrollbar-track,
.cookie-settings-panel::-webkit-scrollbar-track {
    background: transparent;
}

.privacy-panel::-webkit-scrollbar-thumb,
.cookie-settings-panel::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}

/* =============================================
   NOISE OVERLAY
   ============================================= */
.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); opacity: 0.03; pointer-events: none; z-index: 9998; }

/* =============================================
   SECTION GRADIENTS (statické - žádný parallax)
   ============================================= */
.section-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(247, 127, 0, 0.08) 0%, transparent 50%); pointer-events: none; }
.section-gradient.reverse { background: radial-gradient(ellipse at 80% 50%, rgba(247, 127, 0, 0.06) 0%, transparent 50%); }

/* =============================================
   LOADER
   ============================================= */
.loader { position: fixed; inset: 0; background: var(--black); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.loader-content { text-align: center; }
.loader-counter { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--white); margin-bottom: 30px; }
.loader-counter span { color: var(--accent); }
.loader-bar { width: 200px; height: 3px; background: var(--gray); border-radius: 3px; overflow: hidden; }
.loader-bar-fill { width: 0; height: 100%; background: var(--accent); transition: width 0.1s ease; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav { position: fixed; top: 0; left: 0; width: 100%; padding: 25px var(--container-padding); display: flex; justify-content: space-between; align-items: center; z-index: 1000; mix-blend-mode: difference; }
.nav-logo img { height: 40px; filter: brightness(0) invert(1); }
.nav-menu-trigger { display: flex; align-items: center; gap: 15px; cursor: pointer; }
.trigger-text { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; color: var(--white); position: relative; }
.text-menu, .text-close { transition: opacity 0.3s ease; }
.text-close { position: absolute; left: 0; opacity: 0; }
.nav-menu-trigger.active .text-menu { opacity: 0; }
.nav-menu-trigger.active .text-close { opacity: 1; }
.trigger-lines { display: flex; flex-direction: column; gap: 6px; width: 25px; height: 14px; position: relative; }
.trigger-lines span { position: absolute; width: 25px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.trigger-lines span:first-child { top: 0; }
.trigger-lines span:last-child { bottom: 0; }
.nav-menu-trigger.active .trigger-lines span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-menu-trigger.active .trigger-lines span:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =============================================
   MENU OVERLAY
   ============================================= */
.menu-overlay { position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0; }
.menu-overlay.active { pointer-events: auto; opacity: 1; }
.menu-bg { position: absolute; inset: 0; display: flex; }
.menu-bg-panel { flex: 1; background: var(--dark); transform: scaleY(0); transform-origin: top; }
.menu-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 100px var(--container-padding); opacity: 0; }
.menu-overlay.active .menu-content { opacity: 1; }
.menu-links { display: flex; flex-direction: column; gap: 8px; max-height: calc(100vh - 200px); overflow-y: auto; }
.menu-link { position: relative; display: inline-block; font-family: var(--font-display); font-size: clamp(1.4rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--white); overflow: hidden; transition: color 0.3s ease; }
.menu-link::before { display: none !important; }
.link-text { display: block; transition: transform 0.4s var(--ease-out-expo); }
.menu-link:hover { color: var(--accent); }
.menu-link:hover .link-text { transform: translateX(10px); }
.menu-footer { position: absolute; bottom: 40px; left: var(--container-padding); right: var(--container-padding); display: flex; justify-content: space-between; }
.menu-socials { display: flex; gap: 30px; }
.menu-socials a, .menu-info span { font-size: 0.9rem; color: var(--light-gray); transition: color 0.3s ease; }
.menu-socials a:hover { color: var(--accent); }
.menu-info { display: flex; gap: 30px; }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; background: var(--black); }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.hero-video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; }
.hero-title-line { overflow: hidden; }
.split-text { display: flex; justify-content: center; }
.split-text .char { font-family: var(--font-display); font-size: clamp(4rem, 15vw, 14rem); font-weight: 900; line-height: 0.9; color: var(--white); display: inline-block; }
.split-text .char.accent { color: var(--accent); text-shadow: 0 0 60px var(--accent-glow); }
.hero-tagline { margin-top: 30px; }
.hero-tagline p { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300; color: var(--white); opacity: 0.9; line-height: 1.6; }

/* Hero video fallback gradient */
.hero-video-fallback {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(247, 127, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(247, 127, 0, 0.1) 0%, transparent 50%),
        var(--black);
    z-index: 0;
}

/* =============================================
   CONTAINER & SECTIONS
   ============================================= */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--container-padding); }
.section { position: relative; padding: var(--section-padding) 0; }
.section-header { margin-bottom: 60px; }
.section-header-services { margin-top: 80px; margin-bottom: 40px; }
.section-label { display: inline-block; font-size: 0.85rem; color: var(--accent); margin-bottom: 20px; letter-spacing: 0.1em; }
.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 800; line-height: 1; color: var(--white); }
.section-subtitle { font-size: 1rem; color: var(--light-gray); margin-top: 15px; max-width: 600px; }

/* =============================================
   ABOUT
   ============================================= */
.about-intro { margin-bottom: 60px; }
.large-text { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 2.2rem); font-weight: 500; line-height: 1.4; color: var(--white); }
.large-text .highlight { color: var(--accent); }

.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 60px; }
@media (max-width: 1200px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; } }

/* Tilt Cards */
.tilt-card { transform-style: preserve-3d; transition: transform 0.3s ease; }
.about-card { position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 30px 25px; border-radius: 12px; transition: all 0.4s ease; overflow: hidden; }
.about-card:hover { border-color: rgba(247,127,0,0.4); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.card-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-glow) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.about-card:hover .card-glow { opacity: 0.3; }
.card-number { display: none; }
.card-icon { width: 40px; height: 40px; margin-bottom: 18px; color: var(--accent); }
.card-icon svg { width: 100%; height: 100%; }
.about-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.about-card p { font-size: 0.9rem; color: var(--light-gray); line-height: 1.6; }

/* =============================================
   PARTNERS - TV LOGOS
   ============================================= */
.partners-section { text-align: center; }
.partners-label { display: block; font-size: 0.85rem; color: var(--light-gray); margin-bottom: 30px; }
.partners-label-big {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-logo { display: flex; align-items: center; justify-content: center; }
.partner-logo img { height: 40px; filter: grayscale(1) brightness(0.7); opacity: 0.6; transition: all 0.3s ease; object-fit: contain; }
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }
.partner-logo.nova-logo img { height: 55px; }
.partner-logo.canal-logo img { height: 28px; }

/* =============================================
   PROJECTS SHOWCASE & CAROUSEL
   ============================================= */
.projects-showcase { overflow: hidden; padding: 40px 0; position: relative; }
.projects-track { display: flex; gap: 40px; padding: 0 var(--container-padding); transition: transform 0.6s var(--ease-out-expo); cursor: grab; user-select: none; -webkit-user-select: none; }
.projects-track:active { cursor: grabbing; }
.projects-track a { -webkit-user-drag: none; user-drag: none; }
.projects-progress { position: absolute; bottom: 0; left: var(--container-padding); right: var(--container-padding); height: 2px; background: var(--gray); border-radius: 2px; }
.progress-bar { height: 100%; background: var(--accent); width: 0; border-radius: 2px; transition: width 0.3s ease; }

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 127, 0, 0.4);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-arrow svg { width: 24px; height: 24px; }

.carousel-arrow:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left { left: 15px; }
.carousel-arrow-right { right: 15px; }
.carousel-arrow.hidden { opacity: 0; pointer-events: none; }

/* =============================================
   3D PROJECT CARDS
   ============================================= */
.project-card-3d { flex: 0 0 auto; width: clamp(320px, 40vw, 480px); perspective: 1000px; }
.project-card-inner { 
    position: relative; 
    transform-style: preserve-3d; 
    transition: transform 0.5s var(--ease-out-expo); 
    border-radius: 20px; 
    overflow: hidden; 
    background: var(--dark-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-card-3d:hover .project-card-inner { transform: rotateY(-5deg) rotateX(5deg) scale(1.02); }
.project-card-bg { position: absolute; inset: -2px; background: linear-gradient(135deg, var(--accent), transparent, var(--accent)); border-radius: 22px; z-index: -1; opacity: 0; transition: opacity 0.4s ease; }
.project-card-3d:hover .project-card-bg { opacity: 1; }
.project-image-wrapper { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.project-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease; filter: saturate(0.8); }
.project-card-3d:hover .project-image-wrapper img { transform: scale(1.1); filter: saturate(1); }
.project-image-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8) 100%); }
.project-info { padding: 25px; position: relative; flex: 1; display: flex; flex-direction: column; }
.project-category { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 5px 12px; border-radius: 20px; margin-bottom: 12px; align-self: flex-start; }
.project-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.project-desc { font-size: 0.8rem; color: var(--light-gray); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.project-meta-row { display: flex; gap: 20px; font-size: 0.75rem; color: var(--light-gray); margin-bottom: 15px; flex-wrap: wrap; }
.project-meta-row span { display: flex; align-items: center; gap: 5px; }

/* Project Links */
.project-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.project-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: transparent; border: 1px solid var(--accent); border-radius: 30px; color: var(--accent); font-size: 0.75rem; font-weight: 500; transition: all 0.3s ease; }
.project-cta:hover { background: var(--accent); color: var(--black); }
.cta-arrow { display: flex; transition: transform 0.3s ease; }
.project-cta:hover .cta-arrow { transform: translateX(5px); }
.cta-arrow svg { width: 14px; height: 14px; }

/* =============================================
   EVENTS
   ============================================= */
.events-more-link { display: inline-block; margin-top: 15px; color: var(--accent); font-size: 1rem; transition: all 0.3s ease; }
.events-more-link:hover { color: var(--white); transform: translateX(5px); }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 768px) { .events-grid { grid-template-columns: 1fr; } }
.event-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; transition: all 0.4s ease; }
.event-card:hover { border-color: rgba(247,127,0,0.4); transform: translateY(-5px); }
.event-link { display: block; }
.event-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-image img { transform: scale(1.05); }
.event-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.event-card:hover .event-overlay { opacity: 1; }
.event-overlay svg { width: 60px; height: 60px; color: var(--accent); }
.event-content { padding: 25px; }
.event-content h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.event-content p { font-size: 0.9rem; color: var(--light-gray); line-height: 1.6; }

/* =============================================
   SOCIAL SECTION
   ============================================= */
.social-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .social-content { grid-template-columns: 1fr; } }
.social-video { border-radius: 16px; overflow: hidden; }
.social-video video { width: 100%; height: auto; display: block; }
.social-info p { font-size: 1.1rem; color: var(--light-gray); line-height: 1.8; margin-bottom: 30px; }
.social-links-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.social-links-list li a { display: inline-block; font-size: 1.1rem; color: var(--accent); transition: all 0.3s ease; }
.social-links-list li a:hover { color: var(--white); transform: translateX(10px); }

/* =============================================
   CLIENTS MARQUEE
   ============================================= */
.clients-marquee { overflow: hidden; padding: 40px 0; }
.clients-track { display: flex; gap: 60px; animation: marquee 60s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.client-logo img { height: 55px; max-width: 150px; filter: grayscale(1) brightness(0.8); opacity: 0.6; transition: all 0.3s ease; object-fit: contain; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }

/* =============================================
   COMPETITION / SOUTĚŽ
   ============================================= */
.competition { text-align: center; }
.competition-content { padding: 60px 0; }
.competition-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); }

/* =============================================
   TEAM / TÝM
   ============================================= */
.team-grid-main, .team-grid-extra { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.team-grid-extra { display: none; margin-top: 25px; }
.team-grid-extra.expanded { display: grid; }
.team-member .member-card { height: 320px; }
.member-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s ease; }
.member-card:hover { border-color: rgba(247,127,0,0.3); box-shadow: 0 20px 60px rgba(247, 127, 0, 0.1); }
.member-image { width: 100%; height: 100%; position: relative; overflow: hidden; }

/* Fotky VŽDY černobílé */
.team-member .member-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    transition: transform 0.5s ease !important;
}

/* Hover = jen zoom, ZŮSTÁVÁ černobílé */
.team-member .member-card:hover .member-image img {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    transform: scale(1.08);
}

/* Lenka Létalová - potlačení pozadí auta */
.team-member .member-card .member-image img[alt="Lenka Létalová"] {
    object-position: center 30%;
    transform: scale(1.1);
}

.team-member .member-card:hover .member-image img[alt="Lenka Létalová"] {
    transform: scale(1.18);
}

.member-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px 20px; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%); transform: translateY(30px); opacity: 0; transition: all 0.4s ease; }
.member-card:hover .member-overlay { transform: translateY(0); opacity: 1; }
.member-overlay h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.member-role { font-size: 0.8rem; color: var(--accent); display: block; margin-bottom: 10px; }
.member-contact { display: flex; flex-direction: column; gap: 4px; }
.member-contact a { font-size: 0.75rem; color: var(--light-gray); transition: color 0.3s ease; }
.member-contact a:hover { color: var(--white); }
.team-expand-wrapper { text-align: center; margin-top: 50px; }
.team-expand-btn { display: inline-flex; align-items: center; gap: 15px; padding: 15px 35px; background: transparent; border: 1px solid var(--gray); border-radius: 50px; color: var(--white); font-size: 0.95rem; transition: all 0.3s ease; }
.team-expand-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }
.expand-icon { display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; background: var(--accent); border-radius: 50%; color: var(--black); font-weight: 700; font-size: 0.85rem; }
.team-expand-btn:hover .expand-icon { background: var(--black); color: var(--accent); }

/* =============================================
   CONTACT
   ============================================= */
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 60px; }
.contact-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.contact-subtitle { font-size: 1rem; color: var(--light-gray); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; flex-direction: column; gap: 5px; }
.contact-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.contact-item a, .contact-item span { font-size: 1rem; color: var(--white); transition: color 0.3s ease; }
.contact-item a:hover { color: var(--accent); }
.contact-note { font-size: 0.8rem; color: var(--light-gray); margin-top: 30px; line-height: 1.5; }
.contact-form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--accent); margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 30px; }
.form-group { position: relative; }
.form-group input, .form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--gray); padding: 15px 0; font-size: 1rem; color: var(--white); outline: none; transition: border-color 0.3s ease; }
.form-group label { position: absolute; left: 0; top: 15px; font-size: 1rem; color: var(--light-gray); pointer-events: none; transition: all 0.3s ease; }
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label, .form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label { top: -10px; font-size: 0.75rem; color: var(--accent); }
.form-group textarea { resize: none; }
.form-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.4s var(--ease-out-expo); }
.form-group input:focus ~ .form-line, .form-group textarea:focus ~ .form-line { width: 100%; }
.submit-btn { display: inline-flex; align-items: center; gap: 15px; padding: 18px 35px; background: var(--accent); border-radius: 50px; color: var(--black); font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease; align-self: flex-start; }
.submit-btn:hover { background: var(--white); transform: scale(1.05); }
.btn-icon svg { width: 20px; height: 20px; }
@media (max-width: 900px) { .contact-content { grid-template-columns: 1fr; gap: 50px; } }

/* =============================================
   FOOTER
   ============================================= */
.footer { padding: 40px 0; border-top: 1px solid var(--gray); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; color: var(--light-gray); }
.footer-info { display: flex; gap: 20px; font-size: 0.8rem; color: var(--light-gray); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--light-gray); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--light-gray); transition: color 0.3s ease; }
.footer-socials a:hover { color: var(--accent); }
@media (max-width: 700px) { .footer-top, .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }

/* Magnetic Button Effect */
.magnetic { position: relative; transition: transform 0.3s var(--ease-out-expo); }

/* =============================================
   LARGE SCREENS
   ============================================= */
@media (min-width: 1600px) {
    .container { max-width: 1600px; }
    .section-title { font-size: clamp(3rem, 6vw, 5rem); }
}
@media (min-width: 2000px) {
    .container { max-width: 1800px; }
}

/* =============================================
   MOBILE RESPONSIVE - KOMPAKTNĚJŠÍ LAYOUT
   ============================================= */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(40px, 8vh, 80px);
        --container-padding: clamp(16px, 4vw, 30px);
    }

    /* Hero */
    .hero { min-height: 85vh; height: auto; }
    .split-text .char { font-size: clamp(3rem, 12vw, 5rem) !important; }
    .hero-tagline p { font-size: 0.9rem !important; }
    .hero-scroll-indicator { bottom: 20px; }
    .scroll-line { height: 35px; }

    /* Section titles */
    .section-title { font-size: clamp(1.8rem, 5vw, 3rem) !important; }
    .section-header { margin-bottom: 30px; }

    /* About cards - 2 na řádek */
    .about-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 12px; 
    }
    .about-card { padding: 18px 14px; }
    .about-card h3 { font-size: 1rem; }
    .about-card p { font-size: 0.78rem; }
    .card-icon { width: 28px; height: 28px; margin-bottom: 10px; }
    .about-intro { margin-bottom: 30px; }
    .large-text { font-size: clamp(1rem, 2.5vw, 1.4rem) !important; }

    /* Partners */
    .partners-label-big { font-size: clamp(1.2rem, 3vw, 1.6rem) !important; margin-bottom: 20px; }
    .partners-logos { gap: 20px; }
    .partner-logo img { height: 28px !important; }
    .partner-logo.nova-logo img { height: 38px !important; }
    .partner-logo.canal-logo img { height: 22px !important; }

    /* Project karty */
    .project-card-3d { width: clamp(260px, 75vw, 340px) !important; }
    .project-image-wrapper { height: 160px !important; }
    .project-title { font-size: 1.2rem !important; }
    .project-desc { font-size: 0.75rem !important; }
    .project-category { font-size: 0.6rem !important; padding: 3px 10px; }
    .projects-showcase { padding: 20px 0; }

    /* Carousel šipky */
    .carousel-arrow { width: 36px; height: 36px; }
    .carousel-arrow svg { width: 18px; height: 18px; }
    .carousel-arrow-left { left: 5px; }
    .carousel-arrow-right { right: 5px; }

    /* Events */
    .events-grid { gap: 20px !important; }
    .event-content { padding: 15px; }
    .event-content h3 { font-size: 1.2rem; }
    .event-content p { font-size: 0.8rem; }

    /* Social */
    .social-content { gap: 30px !important; }
    .social-info p { font-size: 0.9rem; margin-bottom: 15px; }

    /* Clients */
    .client-logo img { height: 38px !important; max-width: 100px !important; }
    .clients-track { gap: 35px; }

    /* Soutěž */
    .competition-content { padding: 30px 0; }
    .competition-text { font-size: 1.1rem; }

    /* TÝM - 2 na řádek */
    .team-grid-main, 
    .team-grid-extra { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 12px !important; 
    }
    .team-member .member-card { height: 200px !important; }
    .member-overlay { padding: 12px 10px !important; }
    .member-overlay h4 { font-size: 0.85rem !important; }
    .member-role { font-size: 0.65rem !important; margin-bottom: 5px !important; }
    .member-contact a { font-size: 0.6rem !important; }
    .team-expand-wrapper { margin-top: 25px; }
    .team-expand-btn { padding: 10px 22px; font-size: 0.8rem; }
    .expand-icon { width: 28px; height: 28px; font-size: 0.75rem; }

    /* Kontakt */
    .contact-title { font-size: clamp(1.6rem, 4vw, 2.5rem) !important; }
    .contact-content { gap: 35px !important; }
    .contact-details { gap: 14px; }
    .contact-item a, .contact-item span { font-size: 0.85rem; }
    .contact-form-title { font-size: 1.4rem; }
    .contact-map iframe { height: 250px !important; }

    /* Footer */
    .footer { padding: 25px 0; }

    /* Cookie popup */
    .cookie-popup { 
        bottom: 15px; right: 15px; 
        width: calc(100vw - 30px); padding: 20px; 
    }
    .cookie-popup h3 { font-size: 1.2rem; }
    .cookie-popup p { font-size: 0.8rem; margin-bottom: 15px; }
    .cookie-buttons { flex-direction: column; gap: 8px; }
    .cookie-btn { text-align: center; }

    /* Cookie settings & privacy */
    .cookie-settings-panel { padding: 25px; }
    .cookie-settings-panel h3 { font-size: 1.4rem; }
    .cookie-settings-actions { flex-direction: column; gap: 8px; }
    .privacy-panel { padding: 25px; }
    .privacy-panel h2 { font-size: 1.5rem; }
}

/* Malé telefony */
@media (max-width: 400px) {
    .split-text .char { font-size: clamp(2.5rem, 11vw, 4rem) !important; }
    .section-title { font-size: clamp(1.5rem, 4.5vw, 2rem) !important; }
    
    .about-grid { grid-template-columns: 1fr !important; gap: 10px; }

    .team-grid-main, 
    .team-grid-extra { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 8px !important; 
    }
    .team-member .member-card { height: 170px !important; }
    .member-overlay h4 { font-size: 0.75rem !important; }
    .member-role { font-size: 0.6rem !important; }
    .member-contact { display: none !important; }

    .project-card-3d { width: clamp(230px, 72vw, 300px) !important; }
    .project-image-wrapper { height: 130px !important; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .team-grid-main, 
    .team-grid-extra { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 18px; 
    }
    .team-member .member-card { height: 260px; }
    
    .about-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}