/* Labels Page Styles - Professional Upgrade */
:root {
    --primary-color: #fbbf24; /* Złoty/platyna jak w logo */
    --secondary-color: #284a78; /* Ciemniejszy niebieski jak w obrazku */
    --text-color: #ffffff; /* Biały tekst */
    --dark-bg: #0a0f1a; /* Bardziej ciemne tło */
    --card-bg: #1a2332; /* Ciemny niebieski dla kart */
    --accent: #fbbf24; /* Złoty akcent */
    --logo-blue: #284a78; /* Ciemniejszy niebieski z obrazka */
    --document-color: #f0f0e0; /* Off-white dla dokumentu */
    --gradient-primary: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    --gradient-secondary: linear-gradient(135deg, #284a78, #1e40af, #1e3a8a);
    --shadow-primary: 0 20px 40px rgba(251, 191, 36, 0.15);
    --shadow-secondary: 0 10px 30px rgba(40, 74, 120, 0.2);
    --border-glow: 0 0 20px rgba(251, 191, 36, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: 
        radial-gradient(circle at 20% 80%, rgba(40, 74, 120, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 35, 50, 0.2) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(40, 74, 120, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(40, 74, 120, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(40, 74, 120, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(40, 74, 120, 0.03) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.5;
    z-index: 1;
    animation: subtle-move 60s linear infinite;
}

@keyframes subtle-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.labels-container {
    max-width: 1600px;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* Logo styles - Professional Upgrade */
.labels-logo {
    margin-bottom: 50px;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-primary), 0 0 0 1px rgba(251, 191, 36, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.logo-container:hover {
    transform: rotateY(-10deg) rotateX(3deg) scale(1.02);
    box-shadow: var(--shadow-primary), 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.logo-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-secondary);
    transition: all 0.3s ease;
}

.logo-container:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary), var(--border-glow);
}

.house-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.house-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid white;
}

.document-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 18px;
    height: 22px;
    background: var(--document-color);
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.1);
}

.document-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 1px;
    background: rgba(0,0,0,0.3);
    box-shadow: 0 3px 0 rgba(0,0,0,0.3), 0 6px 0 rgba(0,0,0,0.3), 0 9px 0 rgba(0,0,0,0.3);
}

.logo-text {
    text-align: left;
}

.logo-title {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.logo-pro {
    background: linear-gradient(135deg, #9ca3af, #6b7280, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

.logo-subtitle {
    font-size: 16px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3px;
}

/* Title styles - Professional Upgrade */
.labels-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: none;
    animation: title-glow 3s ease-in-out infinite alternate;
    position: relative;
}

.labels-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: var(--border-glow);
}

@keyframes title-glow {
    from {
        filter: brightness(1) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
    }
    to {
        filter: brightness(1.1) drop-shadow(0 0 30px rgba(251, 191, 36, 0.5));
    }
}

.labels-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.labels-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    padding: 0 20px;
}

.labels-status {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-primary);
    animation: status-pulse 3s infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.labels-status:hover::before {
    left: 100%;
}

.labels-status:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary), 0 0 30px rgba(251, 191, 36, 0.4);
}

@keyframes status-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-primary);
    }
    50% {
        transform: scale(1.02);
        box-shadow: var(--shadow-primary), 0 0 40px rgba(251, 191, 36, 0.3);
    }
}

/* Grid kategorii - Stylowy Designerski Upgrade */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    margin: 45px 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.category-box {
    background: 
        linear-gradient(135deg, 
            rgba(26, 35, 50, 0.95) 0%, 
            rgba(15, 23, 42, 0.9) 30%, 
            rgba(26, 35, 50, 0.85) 70%, 
            rgba(15, 23, 42, 0.95) 100%);
    border: none;
    border-radius: 24px 8px 24px 8px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    isolation: isolate;
    transform: perspective(1000px) rotateX(2deg) rotateY(1deg);
}

.category-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(40, 74, 120, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 30%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    transform: scale(0.8) rotate(45deg);
}

.category-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(251, 191, 36, 0.02) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.category-box:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(0deg);
}

.category-box:hover::after {
    opacity: 1;
}

.category-box:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-12px) scale(1.04);
    border-radius: 16px 20px 16px 20px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(251, 191, 36, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    background: 
        linear-gradient(135deg, 
            rgba(251, 191, 36, 0.03) 0%, 
            rgba(26, 35, 50, 0.95) 25%, 
            rgba(15, 23, 42, 0.9) 75%, 
            rgba(40, 74, 120, 0.02) 100%);
}

.category-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4));
    transform: translateZ(0);
}

.category-box:hover .category-icon {
    transform: scale(1.2) translateY(-3px) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.4));
}

.category-box h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transform: translateZ(0);
}

.category-box:hover h3 {
    color: #f59e0b;
    text-shadow: 0 3px 12px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px) translateZ(10px);
    letter-spacing: 1.2px;
}

.category-box p {
    color: var(--text-color);
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    font-weight: 500;
    transform: translateZ(0);
}

.category-box:hover p {
    opacity: 1;
    transform: translateY(-2px) translateZ(5px);
    color: rgba(255, 255, 255, 0.95);
}

/* Stylowe cienkie obramowania zamiast grubych border-left */
.category-box.enterprise {
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.15),
        0 6px 20px rgba(59, 130, 246, 0.1);
}

.category-box.enterprise:hover {
    border-color: rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(59, 130, 246, 0.25),
        0 15px 50px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.category-box.networks {
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(16, 185, 129, 0.15),
        0 6px 20px rgba(16, 185, 129, 0.1);
}

.category-box.networks:hover {
    border-color: rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(16, 185, 129, 0.25),
        0 15px 50px rgba(16, 185, 129, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.2);
}

.category-box.security {
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(239, 68, 68, 0.15),
        0 6px 20px rgba(239, 68, 68, 0.1);
}

.category-box.security:hover {
    border-color: rgba(239, 68, 68, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(239, 68, 68, 0.25),
        0 15px 50px rgba(239, 68, 68, 0.15),
        0 0 0 1px rgba(239, 68, 68, 0.2);
}

.category-box.computer {
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.15),
        0 6px 20px rgba(139, 92, 246, 0.1);
}

.category-box.computer:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(139, 92, 246, 0.25),
        0 15px 50px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.2);
}

.category-box.languages {
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(245, 158, 11, 0.15),
        0 6px 20px rgba(245, 158, 11, 0.1);
}

.category-box.languages:hover {
    border-color: rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(245, 158, 11, 0.25),
        0 15px 50px rgba(245, 158, 11, 0.15),
        0 0 0 1px rgba(245, 158, 11, 0.2);
}

.category-box.automation {
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(6, 182, 212, 0.15),
        0 6px 20px rgba(6, 182, 212, 0.1);
}

.category-box.automation:hover {
    border-color: rgba(6, 182, 212, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(6, 182, 212, 0.25),
        0 15px 50px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(6, 182, 212, 0.2);
}

.category-box.hardware {
    border: 1px solid rgba(132, 204, 22, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(132, 204, 22, 0.15),
        0 6px 20px rgba(132, 204, 22, 0.1);
}

.category-box.hardware:hover {
    border-color: rgba(132, 204, 22, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(132, 204, 22, 0.25),
        0 15px 50px rgba(132, 204, 22, 0.15),
        0 0 0 1px rgba(132, 204, 22, 0.2);
}

.category-box.mobile {
    border: 1px solid rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(236, 72, 153, 0.15),
        0 6px 20px rgba(236, 72, 153, 0.1);
}

.category-box.mobile:hover {
    border-color: rgba(236, 72, 153, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(236, 72, 153, 0.25),
        0 15px 50px rgba(236, 72, 153, 0.15),
        0 0 0 1px rgba(236, 72, 153, 0.2);
}

.category-box.web {
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.15),
        0 6px 20px rgba(139, 92, 246, 0.1);
}

.category-box.web:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(139, 92, 246, 0.25),
        0 15px 50px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.2);
}

.category-box.database {
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(249, 115, 22, 0.15),
        0 6px 20px rgba(249, 115, 22, 0.1);
}

.category-box.database:hover {
    border-color: rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(249, 115, 22, 0.25),
        0 15px 50px rgba(249, 115, 22, 0.15),
        0 0 0 1px rgba(249, 115, 22, 0.2);
}

.category-box.cloud {
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(6, 182, 212, 0.15),
        0 6px 20px rgba(6, 182, 212, 0.1);
}

.category-box.cloud:hover {
    border-color: rgba(6, 182, 212, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(6, 182, 212, 0.25),
        0 15px 50px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(6, 182, 212, 0.2);
}

.category-box.ai {
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(15, 23, 42, 0.9) 30%, 
        rgba(26, 35, 50, 0.85) 70%, 
        rgba(15, 23, 42, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(168, 85, 247, 0.15),
        0 6px 20px rgba(168, 85, 247, 0.1);
}

.category-box.ai:hover {
    border-color: rgba(168, 85, 247, 0.6);
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(26, 35, 50, 0.95) 25%, 
        rgba(15, 23, 42, 0.9) 75%, 
        rgba(40, 74, 120, 0.02) 100%);
    box-shadow: 
        0 25px 80px rgba(168, 85, 247, 0.25),
        0 15px 50px rgba(168, 85, 247, 0.15),
        0 0 0 1px rgba(168, 85, 247, 0.2);
}

/* Responsive dla grid */
@media (max-width: 1400px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .category-box {
        padding: 12px;
        min-height: 120px;
    }
    
    .category-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .category-box h3 {
        font-size: 0.8rem;
    }
    
    .category-box p {
        font-size: 0.7rem;
    }
    
    .labels-title {
        font-size: 2rem;
    }
    
    .labels-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .category-box {
        padding: 15px;
        min-height: auto;
    }
    
    .labels-title {
        font-size: 1.8rem;
    }
} 

/* Sekcja ikon technologii - Professional Upgrade */
.tech-icons-section {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
}

.tech-icons-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    box-shadow: var(--border-glow);
}

.tech-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

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

.tech-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.tech-icon {
    background: linear-gradient(135deg, var(--card-bg), rgba(26, 35, 50, 0.95));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-secondary);
}

.tech-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.15), transparent);
    transition: left 0.6s ease;
}

.tech-icon:hover::before {
    left: 100%;
}

.tech-icon:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-secondary), var(--border-glow);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), var(--card-bg));
}

.tech-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.tech-icon:hover .tech-emoji {
    transform: scale(1.15);
}

.tech-name {
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.9;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.tech-icon:hover .tech-name {
    opacity: 1;
    color: var(--primary-color);
}

/* Footer - Professional Upgrade */
.labels-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    opacity: 0.8;
    position: relative;
}

.labels-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    box-shadow: var(--border-glow);
}

.labels-footer p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive dla tech icons - Professional Upgrade */
@media (max-width: 768px) {
    .tech-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
        padding: 0 20px;
    }
    
    .tech-icon {
        padding: 15px 10px;
        min-height: 80px;
    }
    
    .tech-emoji {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .tech-name {
        font-size: 0.7rem;
    }
    
    .tech-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .tech-icons-section {
        margin: 40px 0;
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .tech-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 12px;
    }
    
    .tech-icon {
        padding: 12px 8px;
        min-height: 70px;
    }
    
    .tech-emoji {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .tech-name {
        font-size: 0.65rem;
    }
    
    .tech-title {
        font-size: 1.2rem;
    }
} 