body.loading > *:not(#loader) {
    display: none !important;
}
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Ultra-Elegant Dark Theme with Logo Colors */
:root {
    /* Colors from logo */
    --orange-start: #F59E0B;
    --orange-end: #FBB928;
    --green-accent: #10B981;
    --blue-accent: #1E40AF;
    
    /* Ultra-dark backgrounds */
    --black-pure: #000000;
    --black-soft: #0A0A0A;
    --gray-900: #111111;
    --gray-800: #1A1A1A;
    --gray-700: #222222;
    --gray-600: #333333;
    --gray-500: #444444;
    --gray-400: #666666;
    --gray-300: #888888;
    --gray-200: #BBBBBB;
    --gray-100: #DDDDDD;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, var(--orange-start), var(--orange-end));
    --gradient-dark: linear-gradient(135deg, var(--black-pure), var(--gray-900));
    --gradient-card: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    
    /* Typography */
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Borders & Shadows */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.8);
    --shadow-glow-orange: 0 0 32px rgba(245, 158, 11, 0.2);
    --shadow-glow-green: 0 0 32px rgba(16, 185, 129, 0.2);
    --shadow-glow-blue: 0 0 32px rgba(30, 64, 175, 0.2);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--gray-100);
    background: var(--black-pure);
    overflow-x: hidden;
    font-weight: var(--font-weight-normal);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-end);
}

/* Scroll margin for proper navigation positioning */
section {
    scroll-margin-top: 90px; /* Reduced for more precise positioning */
}

/* Ultra-Elegant Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange), var(--shadow-medium);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--orange-start);
    box-shadow: inset 0 0 0 0 var(--gradient-orange);
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-100);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-start);
    color: var(--white);
}

/* Ultra-Modern Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.navbar {
    padding: var(--space-md) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: 2;
}

.logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    position: relative;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1.1rem;
    }

    .nav-menu.active {
        display: flex;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-200);
    font-weight: var(--font-weight-medium);
    font-size: 1.05rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(245, 158, 11, 0.1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 3;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1000;
}

/* Show mobile menu toggle on mobile devices */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        gap: 4px;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
        margin-left: auto;
        padding: 5px;
    }
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 28px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Ultra-Luxe Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        var(--gradient-dark),
        url('../images/hero-background.png') center/cover no-repeat;
    background-blend-mode: overlay;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23333333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    
    /* Fallback for browsers that don't support background-clip: text */
    color: var(--orange-start);
}

/* Support for background-clip: text */
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .highlight {
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: var(--gray-200);
    font-weight: var(--font-weight-light);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-glow-orange);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

/* Company logos styles - redesigned for better visual appeal */
.stat-item.company-logo {
    padding: var(--space-lg);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-item.company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item.company-logo:hover::before {
    left: 100%;
}

.company-logo-container {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.stat-item.company-logo:hover .company-logo-container {
    transform: scale(1.1);
}

.stat-item.company-logo:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(245, 158, 11, 0.1);
    transform: translateY(-12px) scale(1.02);
}

.company-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.stat-item.company-logo:hover .company-logo-img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 4;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--orange-start);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* Luxury Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: var(--font-weight-light);
}

.section-header.white .section-title,
.section-header.white .section-subtitle {
    color: var(--white);
}

/* Ultra-Elegant About Section */
.about {
    padding: var(--space-3xl) 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-main {
    max-width: 700px;
}

.about-main h3 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-main p {
    margin-bottom: var(--space-lg);
    color: var(--gray-200);
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: var(--font-weight-light);
}

.about-features {
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-lg);
    justify-items: center;
    align-items: center;
}

.feature-item {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item:hover {
    height: 220px;
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
    z-index: 10;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
}

.feature-icon {
    background: var(--gradient-orange);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-glow-orange);
    transition: all 0.4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-item:hover .feature-icon {
    top: 35px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    transform: translate(-50%, 0);
}

.feature-content {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.feature-item:hover .feature-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    width: 100%;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.4;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 240px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-orange);
    opacity: 0.1;
    z-index: 2;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    position: relative;
    z-index: 1;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(245, 158, 11, 0.3);
    border-radius: var(--border-radius-md);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: var(--space-lg);
    color: var(--orange-start);
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    text-align: center;
    font-weight: var(--font-weight-medium);
}

/* Modern Brand Strip - Przewijanie w pętli */
.brands {
    background: #fff;
    padding: 64px 0 48px 0;
    width: 100%;
}
.brands-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 24px;
}
.brands-header {
    text-align: center;
    margin-bottom: 32px;
}
.brands-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #222;
    font-weight: 700;
    margin-bottom: 8px;
}
.brands-header p {
    font-size: 1.15rem;
    color: #555;
    font-weight: 400;
}

/* Przewijanie w pętli jak w sekcji ambasadorów - 4 paski */
.brands-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.brands-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 110px;
    mask: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.brands-track {
    display: flex;
    gap: 24px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.scroll-left .brands-track {
    animation: scrollLeftLoop 480s linear infinite;
    transform: translateX(0);
}

.scroll-right .brands-track {
    animation: scrollRightLoop 480s linear infinite;
    transform: translateX(-50%);
}

.brand-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    min-width: 160px;
    height: 90px;
    padding: 15px;
    flex-shrink: 0;
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollLeftLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scrollRightLoop {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

@media (max-width: 700px) {
    .brand-card {
        width: 135px;
        min-width: 135px;
        height: 90px;
    }
}


.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.03) 50%, transparent 100%),
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    animation: stripShimmer 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes stripShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.brands .section-header {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDownStrip 1s ease 0.2s forwards;
    animation-play-state: running;
    margin-bottom: var(--space-xl);
    color: var(--black-pure);
}

.brands .section-title {
    color: var(--white);
    text-shadow: none;
}

.brands .section-subtitle {
    color: var(--gray-200);
}

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

/* Brand Strip Container - Three Rows Layout */
.brands-wrapper {
    position: relative;
    z-index: 2;
    overflow: visible;
    padding: var(--space-lg) 0;
    min-height: 300px;
}

/* Nowe przewijane wiersze logotypów */
.brands-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.brands-row-scroll {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) var(--gray-200);
    justify-content: center;
}
.brands-row-scroll::-webkit-scrollbar {
    height: 6px;
}
.brands-row-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 3px;
}
.brands-row-scroll::-webkit-scrollbar-track {
    background: var(--gray-200);
}

.brand-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 0 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.brand-logo img {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
    filter: none;
}
.brand-logo:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.10);
}

/* Brands Grid Layout - 3 rows with rotating logos */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    min-height: 350px;
    position: relative;
}

/* Individual brand slots - fixed positions for rotating logos */
.brand-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(-2px) scale(1.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Brand logos with flickering bulb animation */
.brand-item .brand-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    mix-blend-mode: lighten;
    transition: filter 0.3s ease;
    opacity: 0;
    position: absolute;
    animation: bulbFlicker 42.5s infinite;
    animation-play-state: running;
}

.brand-item .brand-logo.paused {
    animation-play-state: paused;
}

.brand-item .brand-logo.manual-active {
    opacity: 1;
    animation: none;
}

.brand-item .brand-logo.manual-hidden {
    opacity: 0;
    animation: none;
}

.brand-item:hover .brand-logo {
    filter: brightness(1) invert(0) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transform: scale(1);
    max-width: calc(100% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Keyframes for flickering bulb effect with 0.5s gap between logos */
@keyframes bulbFlicker {
    0% { opacity: 0; }
    
    /* Quick power on flicker */
    4.7% { opacity: 0; }
    4.8% { opacity: 1; }
    4.9% { opacity: 0.7; }
    5% { opacity: 1; }
    
    /* Stable period - no flickers */
    5.2% { opacity: 1; }
    21.2% { opacity: 1; }
    
    /* Power outage flicker before switching off */
    21.5% { opacity: 0.2; }
    21.7% { opacity: 0.8; }
    21.9% { opacity: 0.1; }
    22.2% { opacity: 0.6; }
    22.5% { opacity: 0; }
    
    23.5% { opacity: 0; }
    100% { opacity: 0; }
}

/* Animation for grid items appearance */
@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.brand-item {
    animation: fadeInGrid 0.6s ease forwards;
    opacity: 0; /* Ustaw początkowo na 0 */
}

.brand-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.brand-item:nth-child(even) {
    animation-delay: 0.2s;
}

/* Desktop responsive design without shadows */
@media (min-width: 1001px) {
    .brands-grid {
        max-width: 1500px;
        gap: var(--space-2xl);
        padding: var(--space-4xl);
    }
    
    .brand-item {
        transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .brand-item:hover {
        transform: none;
    }
    
    .brands-wrapper::before {
        width: 500px;
        height: 500px;
        filter: blur(30px);
    }
}

/* Responsive design for brands grid */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--space-md);
    }
    
    .brand-item {
        min-height: 60px;
        padding: var(--space-sm);
    }
    
    .brand-item img {
        max-width: 100px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--space-sm);
    }
    
    .brand-item {
        min-height: 50px;
        padding: var(--space-xs);
    }
    
    .brand-item img {
        max-width: 80px;
        max-height: 35px;
    }
}

/* Brands pagination */
.brands-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-md);
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: dotPulse 42.5s infinite;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* Animation for pagination dots sync with logos */
.pagination-dot:nth-child(1) { animation-delay: 2s; }
.pagination-dot:nth-child(2) { animation-delay: 10.5s; }
.pagination-dot:nth-child(3) { animation-delay: 19s; }
.pagination-dot:nth-child(4) { animation-delay: 27.5s; }
.pagination-dot:nth-child(5) { animation-delay: 36s; }

@keyframes dotPulse {
    0%, 19% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
    20%, 39% { 
        background: #ffffff;
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    40%, 100% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
}

@media (min-width: 1200px) {
    .brands-strip {
        max-width: 1600px;
    }
    
    .brand-strip-item {
        min-width: 180px;
        height: 70px;
        margin: 0 var(--space-xl);
    }
    
    .brand-strip-item img {
        max-width: 140px;
        max-height: 50px;
    }
}

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

/* Legacy styles - not used in strip layout but kept for compatibility */

/* Dark theme loaded states with neon effects */
.brand-logo img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.brand-logo.loaded::before {
    opacity: 0;
}

/* Dark theme cyberpunk placeholder */
.brand-logo::after {
    content: '';
    display: block;
    width: 75%;
    height: 50px;
    background: linear-gradient(90deg, 
        rgba(245, 158, 11, 0.2) 25%, 
        rgba(16, 185, 129, 0.3) 50%, 
        rgba(245, 158, 11, 0.2) 75%);
    background-size: 200% 100%;
    animation: shimmerDarkPlaceholder 2.5s infinite;
    border-radius: var(--border-radius-sm);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.brand-logo.loaded::after {
    opacity: 0;
}

@keyframes shimmerDarkPlaceholder {
    0% { 
        background-position: -200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
    100% { 
        background-position: 200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
}

/* Dark theme logo hover effects without shadows */
.brand-item:hover .brand-logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

.brand-item:hover .brand-logo::before {
    opacity: 0.8;
}

.brand-item:hover .brand-logo img {
    filter: brightness(1.3) contrast(1.3) saturate(1.1);
    transform: scale(1.08);
}

/* Style dla przyciętych logotypów */
.brand-logo img.trimmed {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback style dla logotypów z ograniczeniami CORS */
.brand-logo img.fallback-trim {
    padding: 2px;
    box-sizing: border-box;
}

/* Specjalne reguły dla małych/kwadratowych logotypów */
.brand-logo img[src*="hoya"],
.brand-logo img[src*="joby"],
.brand-logo img[src*="kenko"],
.brand-logo img[src*="nitecore"],
.brand-logo img[src*="giottos"],
.brand-logo img[src*="Hoya"],
.brand-logo img[src*="Joby"],
.brand-logo img[src*="Kenko"],
.brand-logo img[src*="Nitecore"],
.brand-logo img[src*="pmi"],
.brand-logo img[src*="kanda"],
.brand-logo img[src*="MOG"],
.brand-logo img[src*="irix"],
.brand-logo img[src*="genesis"] {
    min-height: 45px !important;
    min-width: 80px !important;
    transform: scale(1.4);
    max-height: 60px !important;
}

/* Specjalne reguły dla bardzo szerokich logotypów */
.brand-logo img[src*="blackrapid"],
.brand-logo img[src*="cullmann"],
.brand-logo img[src*="manfrotto"],
.brand-logo img[src*="cokin"],
.brand-logo img[src*="BlackRapid"],
.brand-logo img[src*="Cullmann"],
.brand-logo img[src*="Manfrotto"],
.brand-logo img[src*="Cokin"],
.brand-logo img[src*="lastolite"],
.brand-logo img[src*="colorama"] {
    max-width: 100%;
    min-height: 28px;
    min-width: 90px;
}

/* Reguły dla średnich logotypów */
.brand-logo img[src*="aputure"],
.brand-logo img[src*="Aputure"],
.brand-logo img[src*="benro"],
.brand-logo img[src*="Benro"],
.brand-logo img[src*="7artisans"],
.brand-logo img[src*="desview"],
.brand-logo img[src*="Desview"] {
    min-height: 40px;
    min-width: 75px;
    transform: scale(1.15);
}

/* Responsive adjustments for brands */
@media (max-width: 768px) {
    /* Mobile Menu for tablets */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1.1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Brands styling for mobile */
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-md);
        padding: var(--space-lg);
    }
    
    .brand-item {
        height: 80px;
        padding: var(--space-md);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 45px;
        min-height: 28px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na mobile */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.3);
        min-height: 35px !important;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .brand-item {
        height: 70px;
        padding: var(--space-sm);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 40px;
        min-height: 24px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na bardzo małych ekranach */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.25);
        min-height: 30px !important;
    }
}

/* Brands pagination */
.brands-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-md);
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: dotPulse 42.5s infinite;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* Animation for pagination dots sync with logos */
.pagination-dot:nth-child(1) { animation-delay: 2s; }
.pagination-dot:nth-child(2) { animation-delay: 10.5s; }
.pagination-dot:nth-child(3) { animation-delay: 19s; }
.pagination-dot:nth-child(4) { animation-delay: 27.5s; }
.pagination-dot:nth-child(5) { animation-delay: 36s; }

@keyframes dotPulse {
    0%, 19% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
    20%, 39% { 
        background: #ffffff;
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    40%, 100% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
}

@media (min-width: 1200px) {
    .brands-strip {
        max-width: 1600px;
    }
    
    .brand-strip-item {
        min-width: 180px;
        height: 70px;
        margin: 0 var(--space-xl);
    }
    
    .brand-strip-item img {
        max-width: 140px;
        max-height: 50px;
    }
}

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

/* Legacy styles - not used in strip layout but kept for compatibility */

/* Dark theme loaded states with neon effects */
.brand-logo img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.brand-logo.loaded::before {
    opacity: 0;
}

/* Dark theme cyberpunk placeholder */
.brand-logo::after {
    content: '';
    display: block;
    width: 75%;
    height: 50px;
    background: linear-gradient(90deg, 
        rgba(245, 158, 11, 0.2) 25%, 
        rgba(16, 185, 129, 0.3) 50%, 
        rgba(245, 158, 11, 0.2) 75%);
    background-size: 200% 100%;
    animation: shimmerDarkPlaceholder 2.5s infinite;
    border-radius: var(--border-radius-sm);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.brand-logo.loaded::after {
    opacity: 0;
}

@keyframes shimmerDarkPlaceholder {
    0% { 
        background-position: -200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
    100% { 
        background-position: 200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
}

/* Dark theme logo hover effects without shadows */
.brand-item:hover .brand-logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

.brand-item:hover .brand-logo::before {
    opacity: 0.8;
}

.brand-item:hover .brand-logo img {
    filter: brightness(1.3) contrast(1.3) saturate(1.1);
    transform: scale(1.08);
}

/* Style dla przyciętych logotypów */
.brand-logo img.trimmed {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback style dla logotypów z ograniczeniami CORS */
.brand-logo img.fallback-trim {
    padding: 2px;
    box-sizing: border-box;
}

/* Specjalne reguły dla małych/kwadratowych logotypów */
.brand-logo img[src*="hoya"],
.brand-logo img[src*="joby"],
.brand-logo img[src*="kenko"],
.brand-logo img[src*="nitecore"],
.brand-logo img[src*="giottos"],
.brand-logo img[src*="Hoya"],
.brand-logo img[src*="Joby"],
.brand-logo img[src*="Kenko"],
.brand-logo img[src*="Nitecore"],
.brand-logo img[src*="pmi"],
.brand-logo img[src*="kanda"],
.brand-logo img[src*="MOG"],
.brand-logo img[src*="irix"],
.brand-logo img[src*="genesis"] {
    min-height: 45px !important;
    min-width: 80px !important;
    transform: scale(1.4);
    max-height: 60px !important;
}

/* Specjalne reguły dla bardzo szerokich logotypów */
.brand-logo img[src*="blackrapid"],
.brand-logo img[src*="cullmann"],
.brand-logo img[src*="manfrotto"],
.brand-logo img[src*="cokin"],
.brand-logo img[src*="BlackRapid"],
.brand-logo img[src*="Cullmann"],
.brand-logo img[src*="Manfrotto"],
.brand-logo img[src*="Cokin"],
.brand-logo img[src*="lastolite"],
.brand-logo img[src*="colorama"] {
    max-width: 100%;
    min-height: 28px;
    min-width: 90px;
}

/* Reguły dla średnich logotypów */
.brand-logo img[src*="aputure"],
.brand-logo img[src*="Aputure"],
.brand-logo img[src*="benro"],
.brand-logo img[src*="Benro"],
.brand-logo img[src*="7artisans"],
.brand-logo img[src*="desview"],
.brand-logo img[src*="Desview"] {
    min-height: 40px;
    min-width: 75px;
    transform: scale(1.15);
}

/* Responsive adjustments for brands */
@media (max-width: 768px) {
    /* Mobile Menu for tablets */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1.1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Brands styling for mobile */
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-md);
        padding: var(--space-lg);
    }
    
    .brand-item {
        height: 80px;
        padding: var(--space-md);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 45px;
        min-height: 28px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na mobile */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.3);
        min-height: 35px !important;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .brand-item {
        height: 70px;
        padding: var(--space-sm);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 40px;
        min-height: 24px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na bardzo małych ekranach */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.25);
        min-height: 30px !important;
    }
}

/* Brands pagination */
.brands-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-md);
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: dotPulse 42.5s infinite;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* Animation for pagination dots sync with logos */
.pagination-dot:nth-child(1) { animation-delay: 2s; }
.pagination-dot:nth-child(2) { animation-delay: 10.5s; }
.pagination-dot:nth-child(3) { animation-delay: 19s; }
.pagination-dot:nth-child(4) { animation-delay: 27.5s; }
.pagination-dot:nth-child(5) { animation-delay: 36s; }

@keyframes dotPulse {
    0%, 19% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
    20%, 39% { 
        background: #ffffff;
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    40%, 100% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
}

@media (min-width: 1200px) {
    .brands-strip {
        max-width: 1600px;
    }
    
    .brand-strip-item {
        min-width: 180px;
        height: 70px;
        margin: 0 var(--space-xl);
    }
    
    .brand-strip-item img {
        max-width: 140px;
        max-height: 50px;
    }
}

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

/* Legacy styles - not used in strip layout but kept for compatibility */

/* Dark theme loaded states with neon effects */
.brand-logo img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.brand-logo.loaded::before {
    opacity: 0;
}

/* Dark theme cyberpunk placeholder */
.brand-logo::after {
    content: '';
    display: block;
    width: 75%;
    height: 50px;
    background: linear-gradient(90deg, 
        rgba(245, 158, 11, 0.2) 25%, 
        rgba(16, 185, 129, 0.3) 50%, 
        rgba(245, 158, 11, 0.2) 75%);
    background-size: 200% 100%;
    animation: shimmerDarkPlaceholder 2.5s infinite;
    border-radius: var(--border-radius-sm);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.brand-logo.loaded::after {
    opacity: 0;
}

@keyframes shimmerDarkPlaceholder {
    0% { 
        background-position: -200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
    100% { 
        background-position: 200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
}

/* Dark theme logo hover effects without shadows */
.brand-item:hover .brand-logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

.brand-item:hover .brand-logo::before {
    opacity: 0.8;
}

.brand-item:hover .brand-logo img {
    filter: brightness(1.3) contrast(1.3) saturate(1.1);
    transform: scale(1.08);
}

/* Style dla przyciętych logotypów */
.brand-logo img.trimmed {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback style dla logotypów z ograniczeniami CORS */
.brand-logo img.fallback-trim {
    padding: 2px;
    box-sizing: border-box;
}

/* Specjalne reguły dla małych/kwadratowych logotypów */
.brand-logo img[src*="hoya"],
.brand-logo img[src*="joby"],
.brand-logo img[src*="kenko"],
.brand-logo img[src*="nitecore"],
.brand-logo img[src*="giottos"],
.brand-logo img[src*="Hoya"],
.brand-logo img[src*="Joby"],
.brand-logo img[src*="Kenko"],
.brand-logo img[src*="Nitecore"],
.brand-logo img[src*="pmi"],
.brand-logo img[src*="kanda"],
.brand-logo img[src*="MOG"],
.brand-logo img[src*="irix"],
.brand-logo img[src*="genesis"] {
    min-height: 45px !important;
    min-width: 80px !important;
    transform: scale(1.4);
    max-height: 60px !important;
}

/* Specjalne reguły dla bardzo szerokich logotypów */
.brand-logo img[src*="blackrapid"],
.brand-logo img[src*="cullmann"],
.brand-logo img[src*="manfrotto"],
.brand-logo img[src*="cokin"],
.brand-logo img[src*="BlackRapid"],
.brand-logo img[src*="Cullmann"],
.brand-logo img[src*="Manfrotto"],
.brand-logo img[src*="Cokin"],
.brand-logo img[src*="lastolite"],
.brand-logo img[src*="colorama"] {
    max-width: 100%;
    min-height: 28px;
    min-width: 90px;
}

/* Reguły dla średnich logotypów */
.brand-logo img[src*="aputure"],
.brand-logo img[src*="Aputure"],
.brand-logo img[src*="benro"],
.brand-logo img[src*="Benro"],
.brand-logo img[src*="7artisans"],
.brand-logo img[src*="desview"],
.brand-logo img[src*="Desview"] {
    min-height: 40px;
    min-width: 75px;
    transform: scale(1.15);
}

/* Responsive adjustments for brands */
@media (max-width: 768px) {
    /* Mobile Menu for tablets */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1.1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Brands styling for mobile */
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-md);
        padding: var(--space-lg);
    }
    
    .brand-item {
        height: 80px;
        padding: var(--space-md);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 45px;
        min-height: 28px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na mobile */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.3);
        min-height: 35px !important;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .brand-item {
        height: 70px;
        padding: var(--space-sm);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 40px;
        min-height: 24px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na bardzo małych ekranach */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.25);
        min-height: 30px !important;
    }
}

/* Brands pagination */
.brands-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-md);
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: dotPulse 42.5s infinite;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* Animation for pagination dots sync with logos */
.pagination-dot:nth-child(1) { animation-delay: 2s; }
.pagination-dot:nth-child(2) { animation-delay: 10.5s; }
.pagination-dot:nth-child(3) { animation-delay: 19s; }
.pagination-dot:nth-child(4) { animation-delay: 27.5s; }
.pagination-dot:nth-child(5) { animation-delay: 36s; }

@keyframes dotPulse {
    0%, 19% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
    20%, 39% { 
        background: #ffffff;
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    40%, 100% { 
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
        box-shadow: none;
    }
}

@media (min-width: 1200px) {
    .brands-strip {
        max-width: 1600px;
    }
    
    .brand-strip-item {
        min-width: 180px;
        height: 70px;
        margin: 0 var(--space-xl);
    }
    
    .brand-strip-item img {
        max-width: 140px;
        max-height: 50px;
    }
}

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

/* Legacy styles - not used in strip layout but kept for compatibility */

/* Dark theme loaded states with neon effects */
.brand-logo img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.brand-logo.loaded::before {
    opacity: 0;
}

/* Dark theme cyberpunk placeholder */
.brand-logo::after {
    content: '';
    display: block;
    width: 75%;
    height: 50px;
    background: linear-gradient(90deg, 
        rgba(245, 158, 11, 0.2) 25%, 
        rgba(16, 185, 129, 0.3) 50%, 
        rgba(245, 158, 11, 0.2) 75%);
    background-size: 200% 100%;
    animation: shimmerDarkPlaceholder 2.5s infinite;
    border-radius: var(--border-radius-sm);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.brand-logo.loaded::after {
    opacity: 0;
}

@keyframes shimmerDarkPlaceholder {
    0% { 
        background-position: -200% 0;
        box-shadow: 0 0  10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
    100% { 
        background-position: 200% 0;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
}

/* Dark theme logo hover effects without shadows */
.brand-item:hover .brand-logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

.brand-item:hover .brand-logo::before {
    opacity: 0.8;
}

.brand-item:hover .brand-logo img {
    filter: brightness(1.3) contrast(1.3) saturate(1.1);
    transform: scale(1.08);
}

/* Style dla przyciętych logotypów */
.brand-logo img.trimmed {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback style dla logotypów z ograniczeniami CORS */
.brand-logo img.fallback-trim {
    padding: 2px;
    box-sizing: border-box;
}

/* Specjalne reguły dla małych/kwadratowych logotypów */
.brand-logo img[src*="hoya"],
.brand-logo img[src*="joby"],
.brand-logo img[src*="kenko"],
.brand-logo img[src*="nitecore"],
.brand-logo img[src*="giottos"],
.brand-logo img[src*="Hoya"],
.brand-logo img[src*="Joby"],
.brand-logo img[src*="Kenko"],
.brand-logo img[src*="Nitecore"],
.brand-logo img[src*="pmi"],
.brand-logo img[src*="kanda"],
.brand-logo img[src*="MOG"],
.brand-logo img[src*="irix"],
.brand-logo img[src*="genesis"] {
    min-height: 45px !important;
    min-width: 80px !important;
    transform: scale(1.4);
    max-height: 60px !important;
}

/* Specjalne reguły dla bardzo szerokich logotypów */
.brand-logo img[src*="blackrapid"],
.brand-logo img[src*="cullmann"],
.brand-logo img[src*="manfrotto"],
.brand-logo img[src*="cokin"],
.brand-logo img[src*="BlackRapid"],
.brand-logo img[src*="Cullmann"],
.brand-logo img[src*="Manfrotto"],
.brand-logo img[src*="Cokin"],
.brand-logo img[src*="lastolite"],
.brand-logo img[src*="colorama"] {
    max-width: 100%;
    min-height: 28px;
    min-width: 90px;
}

/* Reguły dla średnich logotypów */
.brand-logo img[src*="aputure"],
.brand-logo img[src*="Aputure"],
.brand-logo img[src*="benro"],
.brand-logo img[src*="Benro"],
.brand-logo img[src*="7artisans"],
.brand-logo img[src*="desview"],
.brand-logo img[src*="Desview"] {
    min-height: 40px;
    min-width: 75px;
    transform: scale(1.15);
}

/* Responsive adjustments for brands */
@media (max-width: 768px) {
    /* Mobile Menu for tablets */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1.1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Brands styling for mobile */
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-md);
        padding: var(--space-lg);
    }
    
    .brand-item {
        height: 80px;
        padding: var(--space-md);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 45px;
        min-height: 28px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na mobile */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.3);
        min-height: 35px !important;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .brand-item {
        height: 70px;
        padding: var(--space-sm);
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 40px;
        min-height: 24px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) contrast(1.1);
    }
    
    /* Małe logotypy na bardzo małych ekranach */
    .brand-logo img[src*="hoya"],
    .brand-logo img[src*="joby"],
    .brand-logo img[src*="kenko"],
    .brand-logo img[src*="nitecore"],
    .brand-logo img[src*="Hoya"],
    .brand-logo img[src*="Joby"],
    .brand-logo img[src*="Kenko"],
    .brand-logo img[src*="Nitecore"],
    .brand-logo img[src*="pmi"],
    .brand-logo img[src*="kanda"],
    .brand-logo img[src*="MOG"],
    .brand-logo img[src*="irix"] {
        transform: scale(1.25);
        min-height: 30px !important;
    }
}

/* Ultra-Luxe Stats Section */
.stats {
    position: relative;
    padding: var(--space-3xl) 0;
    color: var(--white);
    background: var(--black-pure);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23333333" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    z-index: 2;
}

.stats-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.stat-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-glow-orange), var(--shadow-strong);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card .stat-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--orange-start);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 2rem;
    border: 2px solid rgba(245, 158, 11, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--orange-start);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-orange);
}

.stat-card .stat-number {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stat-plus {
    font-size: 2.5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 4px;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xs);
}

.stat-card .stat-number {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin: var(--space-lg) 0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-description {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
    font-weight: var(--font-weight-light);
}

/* Ultra-Modern Services Section */
.services {
    padding: var(--space-3xl) 0;
    background: var(--gray-900);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--space-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(245, 158, 11, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(245, 158, 11, 0.15);
    box-shadow: var(--shadow-glow-orange), var(--shadow-strong);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    background: var(--gradient-orange);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
    box-shadow: var(--shadow-glow-orange);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--orange-start);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-orange);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: var(--font-weight-light);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    display: grid;
    gap: var(--space-sm);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-300);
    font-size: 1rem;
    padding: var(--space-xs) 0;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--white);
    transform: translateX(4px);
}

.service-features i {
    color: var(--green-accent);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.service-coverage {
    font-size: 0.95rem;
    color: var(--orange-start);
    font-weight: var(--font-weight-medium);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--border-radius-sm);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--space-3xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-orange);
    opacity: 0.02;
    border-radius: var(--border-radius-xl);
    z-index: -1;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.cta-content p {
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-light);
}

/* Ultra-Luxe Testimonials Section */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--black-pure);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><defs><pattern id="hexagon" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M40 0L80 20L80 60L40 80L0 60L0 20Z" fill="none" stroke="%23111111" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagon)"/></svg>');
    z-index: 1;
}

.testimonial-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.testimonial-content {
    position: relative;
    max-width: 700px;
}

.quote-icon {
    font-size: 5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
    opacity: 0.8;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: var(--space-xl);
    font-weight: var(--font-weight-light);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-glow-orange);
}

.author-info h4 {
    margin: 0;
}

.author-name {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
}

.author-title {
    color: var(--gray-300);
    font-size: 1rem;
    font-weight: var(--font-weight-light);
}

.testimonial-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.testimonial-image .image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.testimonial-image .image-placeholder {
    background: var(--gradient-card);
    color: var(--white);
    position: relative;
}

.testimonial-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-orange);
    opacity: 0.1;
}

.client-logos {
    text-align: center;
    position: relative;
    z-index: 2;
}

.client-logos h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
    color: var(--gray-300);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.01em;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg) var(--space-xl);
    width: 100%;
    text-align: center;
    color: var(--gray-400);
    font-weight: var(--font-weight-medium);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.6s ease;
}

.logo-placeholder:hover {
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--orange-start);
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.logo-placeholder:hover::before {
    left: 100%;
}

/* Ultra-Luxe Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.footer-main {
    padding: calc(var(--space-3xl) / 2) 0 calc(var(--space-xl) / 2);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.footer-description {
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 400px;
    font-weight: var(--font-weight-light);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-orange);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-glow-orange);
    border-color: transparent;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-orange);
    border-radius: 1px;
}

.footer-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-centered .footer-brand {
    margin-bottom: var(--space-xl);
}

.footer-centered .social-links {
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.footer-centered .newsletter-section {
    width: 100%;
    max-width: 400px;
}

.footer-centered .newsletter-section h4::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: var(--space-sm);
}

.footer-links li {
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(4px);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: var(--font-weight-light);
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange-start);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 100%;
}

.contact-info {
    display: grid;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.contact-item i {
    color: var(--orange-start);
    margin-top: 2px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item div,
.contact-item p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form Styles - Ciemny design pasujący do reszty strony */
.contact {
    background: var(--black-pure);
    padding: var(--space-3xl) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: var(--gray-300);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.form-row {
    margin-bottom: var(--space-xl);
}

.contact-form .form-group {
    width: 100%;
    display: block;
}

.contact-form .form-group label {
    display: block;
    font-weight: var(--font-weight-medium);
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input[type="email"] {
    padding: var(--space-md);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange-start);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
    font-weight: var(--font-weight-normal);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-primary);
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: 1.1rem;
    margin-top: var(--space-lg);
}

.contact-form button i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: var(--space-xl);
    }
    
    .form-row {
        margin-bottom: var(--space-lg);
    }
}

.newsletter-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-section h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.newsletter-section p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--gray-300);
    font-weight: var(--font-weight-light);
}

.newsletter-section .form-group {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--orange-start);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.newsletter-form button {
    padding: var(--space-md) var(--space-lg);
    min-width: 50px;
}

/* Alert messages */
.alert {
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-lg);
    font-weight: var(--font-weight-medium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--green-accent);
    color: var(--green-accent);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ff6b6b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: calc(var(--space-xl) / 2) 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: var(--font-weight-light);
    position: relative;
}

.footer-bottom-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange-start);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links a:hover::before {
    width: 100%;
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #0f172a;
    color: white;
}

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

.newsletter-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.newsletter-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Alert messages */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Newsletter form */

.form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #334155;
    border-radius: 6px;
    background: rgba(51, 65, 85, 0.3);
    color: white;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    padding: 0.8rem 1rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ==========================================================================
   RESPONSIVE DESIGN - Ultra Elegant Mobile Support
   ========================================================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

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

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

/* Large Tablet (992px-1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 var(--space-lg);
    }

    .nav-menu {
        gap: var(--space-lg);
    }

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

    .about-content {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xl);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .footer-content {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

/* Medium Tablet - MOBILE MENU START (768px-991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 var(--space-md);
    }

    /* Header Mobile */
    .header {
        padding: var(--space-md) 0;
    }
    
    .logo {
        height: 40px;
    }

    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    /* Hero Stats Mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        margin-top: var(--space-lg);
    }

    .stat-item {
        min-height: 90px;
        padding: var(--space-sm);
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: var(--space-xs);
    }

    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .about-features {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        justify-content: center;
        justify-items: center;
        align-items: center;
    }

    .feature-item {
        width: 120px;
        height: 120px;
    }

    .feature-item:hover {
        height: 180px;
        width: 240px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-item:hover .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 25px;
    }

    .feature-content {
        padding: var(--space-md);
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.8rem;
        max-width: 200px;
    }

    .about-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: var(--space-2xl);
    }

    .footer-description {
        max-width: none;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-bottom-links {
        gap: var(--space-lg);
    }
}

/* Small Mobile (576px-767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 var(--space-md);
    }

    /* Mobile Menu for small screens */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-sm);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .contact-info {
        gap: var(--space-md);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .form-group {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Header Ultra Mobile */
    .logo {
        height: 36px;
    }

    /* Mobile Menu for extra small screens */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: var(--space-sm);
        width: 100%;
        border-radius: var(--border-radius-md);
        font-size: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Hero Mobile Small */
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }

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

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    /* Hero Stats Mobile Small */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
        margin-top: var(--space-md);
    }

    .stat-item {
        min-height: 80px;
        padding: var(--space-xs);
    }

    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
    }

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

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

    .btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.95rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* Redukcja animacji dla urządzeń o niższej wydajności */
@media (prefers-reduced-motion: reduce) {
    .ambassadors-track {
        animation-duration: 200s !important;
    }
    
    .ambassador-card {
        transition-duration: 0.2s;
    }
    
    .ambassador-overlay,
    .ambassador-name-top,
    .ambassador-details {
        transition-duration: 0.2s;
    }
}

/* ==========================================================================
   AMBASSADORS SECTION - Ultra-Luxe Design
   ========================================================================== */

.ambassadors {
    padding: var(--space-3xl) 0;
    background: var(--black-pure);
    position: relative;
    overflow: hidden;
}

.ambassadors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
    z-index: 1;
}

.ambassadors .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-3xl);
}

.ambassadors-scroll-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 700px;
}

.ambassadors-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 340px;
    mask: linear-gradient(
        to right,
        transparent,
        black 3%,
        black 97%,
        transparent
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent,
        black 3%,
        black 97%,
        transparent
    );
}

.ambassadors-track {
    display: flex;
    gap: var(--space-lg);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Początkowe pozycje dla różnych tracków */
.scroll-left .ambassadors-track {
    transform: translateX(0);
}

.scroll-right .ambassadors-track {
    transform: translateX(-50%); /* Dolny track zaczyna się w środku */
}

/* Animacje przewijania */
.scroll-left .ambassadors-track {
    animation: scrollLeftLoop 480s linear infinite;
    transform: translateX(0); /* Górny track zaczyna się od lewej */
}

.scroll-right .ambassadors-track {
    animation: scrollRightLoop 480s linear infinite;
    transform: translateX(-50%); /* Dolny track zaczyna się w środku */
}

/* Prawdziwa nieskończona animacja z duplikatami JS */
.ambassadors-track {
    position: relative;
    /* JavaScript zduplikuje elementy dla nieskończonej pętli */
}

.ambassadors-row {
    overflow: visible; /* DEBUGGING: zmiana z hidden na visible */
    /* DEBUGGING: wyłączenie maski CSS */
    /* 
    mask: linear-gradient(
        to right,
        transparent,
        black 3%,
        black 97%,
        transparent
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent,
        black 3%,
        black 97%,
        transparent
    );
    */
}

@keyframes scrollLeftLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Przesunięcie o całą szerokość tracka */
    }
}

@keyframes scrollRightLoop {
    0% {
        transform: translateX(-50%); /* Zaczyna od środka */
    }
    100% {
        transform: translateX(50%); /* Kończy po prawej stronie */
    }
}

/* Pauzowanie animacji przy kliknięciu - kontrolowane przez JavaScript */
.ambassadors-scroll-container.paused .ambassadors-track {
    animation-play-state: paused;
}

/* Dodatkowe efekty wizualne */
.ambassadors-row::before,
.ambassadors-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 10;
}

.ambassadors-row::before {
    left: 0;
    background: linear-gradient(to right, var(--black-pure), transparent);
}

.ambassadors-row::after {
    right: 0;
    background: linear-gradient(to left, var(--black-pure), transparent);
}

/* Optymalizacja wydajności - usunięte will-change z elementów które mogą powodować problemy */
.ambassadors-track {
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}

.ambassador-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Dodatkowa optymalizacja dla hover effects */
.ambassador-card:hover {
    transform: translateY(-12px) scale(1.02) translateZ(0);
    box-shadow: 
        var(--shadow-glow-orange),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.ambassador-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-shrink: 0;
    width: 320px;
    height: 320px;
}

.ambassador-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        var(--shadow-glow-orange),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.ambassador-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.ambassador-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    display: block;
    backface-visibility: hidden;
}

.ambassador-card:hover .ambassador-image img {
    transform: scale(1.1);
    filter: brightness(0.4) contrast(1.1);
}

.ambassador-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.85) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-lg); /* Zmniejszono z var(--space-xl) */
    color: var(--white);
    backface-visibility: hidden;
}

.ambassador-card:hover .ambassador-overlay {
    opacity: 1;
}

.ambassador-name-top {
    flex-shrink: 0;
    font-size: 1.4rem; /* Zmniejszono z 2rem */
    font-weight: var(--font-weight-bold);
    color: var(--white);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.01em;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-bottom: var(--space-sm); /* Zmniejszono z var(--space-md) */
    backface-visibility: hidden;
    line-height: 1.2; /* Dodano dla lepszego dopasowania wysokości */
    white-space: normal; /* Pozwala na zawijanie tekstu */
    overflow: visible;
    text-overflow: unset;
    word-break: break-word; /* Zawija długie nazwy */
    height: auto;
}

.ambassador-card:hover .ambassador-name-top {
    transform: translateY(0);
    opacity: 1;
}

.ambassador-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.ambassador-details {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backface-visibility: hidden;
}

.ambassador-card:hover .ambassador-details {
    transform: translateY(0);
    opacity: 1;
}

.ambassador-details p {
    font-size: 0.85rem; /* Zmniejszono z 0.95rem */
    line-height: 1.4; /* Zmniejszono z 1.6 */
    margin-bottom: var(--space-md); /* Zmniejszono z var(--space-lg) */
    color: var(--gray-200);
    font-weight: var(--font-weight-light);
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Ogranicza do maksymalnie 3 linii */
    line-clamp: 3; /* Standardowa właściwość */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ambassador-links {
    display: flex;
    gap: var(--space-xs); /* Zmniejszono z var(--space-sm) */
    justify-content: center; /* Wyśrodkowanie ikon */
    margin-top: var(--space-xs); /* Dodano mały odstęp od góry */
}

.ambassador-links a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-200);
    width: 36px; /* Zmniejszono z 40px */
    height: 36px; /* Zmniejszono z 40px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem; /* Zmniejszono z 1rem */
    text-decoration: none;
}

.ambassador-links a:hover {
    background: var(--gradient-orange);
    color: var(--white);
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Responsive Design for Ambassadors */
@media (max-width: 1400px) {
    .ambassador-card {
        width: 300px;
        height: 300px;
    }
    
    .ambassadors-track {
        gap: var(--space-lg);
    }
    
    /* Responsywne keyframes */
    @keyframes scrollLeftLoop {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes scrollRightLoop {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(50%);
        }
    }
}

@media (max-width: 991px) {
    .ambassador-card {
        width: 280px;
        height: 280px;
    }
    
    .ambassadors-track {
        gap: var(--space-md);
    }
    
    .ambassador-overlay {
        padding: var(--space-lg);
    }
    
    .ambassador-name-top {
        font-size: 1.6rem;
        margin-bottom: var(--space-sm);
    }
    
    .ambassador-details p {
        font-size: 0.9rem;
    }
    
    /* Szybsze przewijanie na mniejszych ekranach */
    /* Tablet - ten sam czas co desktop dla spójności */
    .scroll-left .ambassadors-track {
        animation: scrollLeftLoop 480s linear infinite;
        transform: translateX(0);
    }

    .scroll-right .ambassadors-track {
        animation: scrollRightLoop 480s linear infinite;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .ambassadors-scroll-container {
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }
    
    .ambassador-card {
        width: 250px;
        height: 250px;
    }
    
    /* Responsywne keyframes dla mobile */
    @keyframes scrollLeftLoop {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes scrollRightLoop {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(50%);
        }
    }
    
    /* Show info on mobile without hover */
    .ambassador-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
        padding: var(--space-md);
    }
    
    .ambassador-name-top {
        transform: translateY(0);
        opacity: 1;
        font-size: 1.2rem; /* Zmniejszono z 1.4rem */
        margin-bottom: var(--space-xs); /* Zmniejszono z var(--space-sm) */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .ambassador-details {
        transform: translateY(0);
        opacity: 1;
    }
    
    .ambassador-details p {
        font-size: 0.8rem; /* Mniejszy tekst na mobile */
        line-height: 1.3;
        margin-bottom: var(--space-sm);
        -webkit-line-clamp: 2; /* Tylko 2 linie na mobile */
        line-clamp: 2;
    }
    
    /* Jeszcze szybsze przewijanie na mobile */
    /* Mobile - ten sam czas co desktop dla spójności */
    .scroll-left .ambassadors-track {
        animation: scrollLeftLoop 480s linear infinite;
        transform: translateX(0);
    }

    .scroll-right .ambassadors-track {
        animation: scrollRightLoop 480s linear infinite;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .ambassador-card {
        width: 220px;
        height: 220px;
    }
    
    /* Responsywne keyframes dla najmniejszych ekranach */
    @keyframes scrollLeftLoop {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes scrollRightLoop {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(50%);
        }
    }
    
    .ambassador-overlay {
        padding: var(--space-md);
    }
    
    .ambassador-name-top {
        font-size: 1rem; /* Jeszcze mniejszy na najmniejszych ekranach */
        margin-bottom: var(--space-xs);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .ambassador-details p {
        font-size: 0.75rem; /* Bardzo mały tekst */
        line-height: 1.2;
        margin-bottom: var(--space-xs);
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .ambassador-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .ambassador-details p {
        font-size: 0.85rem;
        margin-bottom: var(--space-md);
    }
    
    .ambassador-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    /* Najszybsze przewijanie na najmniejszych ekranach */
    /* Small mobile - ten sam czas co desktop dla spójności */
    .scroll-left .ambassadors-track {
        animation: scrollLeftLoop 480s linear infinite;
        transform: translateX(0);
    }

    .scroll-right .ambassadors-track {
        animation: scrollRightLoop 480s linear infinite;
        transform: translateX(-50%);
    }
}

/* Redukcja animacji dla urządzeń o niższej wydajności */
@media (prefers-reduced-motion: reduce) {
    .ambassadors-track {
        animation-duration: 200s !important;
    }
    
    .ambassador-card {
        transition-duration: 0.2s;
    }
    
    .ambassador-overlay,
    .ambassador-name-top,
    .ambassador-details {
        transition-duration: 0.2s;
    }
}
