/* Labels Page Styles - Professional Upgrade */
:root {
    --primary-color: #f4b51f; /* Złoto TG */
    --secondary-color: #1c2f52; /* Głęboki granat */
    --text-color: #ffffff; /* Biały tekst */
    --dark-bg: #05070d; /* Ciemne tło */
    --card-bg: #101827; /* Ciemny granat dla kart */
    --accent: #f4b51f; /* Złoty akcent */
    --logo-blue: #223a64; /* Granat zbliżony do TG */
    --document-color: #f0f0e0; /* Off-white dla dokumentu */
    --gradient-primary: linear-gradient(135deg, #f6c437, #d2d6dd, #9aa3af);
    --gradient-secondary: linear-gradient(135deg, #223a64, #1b2f4d, #122033);
    --gradient-tg-title: linear-gradient(100deg, #f7c948 0%, #f0b429 28%, #cfd5df 56%, #a7b0bc 78%, #f2bd3c 100%);
    --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: 'Sora', 'Manrope', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 16% 84%, rgba(22, 56, 112, 0.28) 0%, transparent 48%),
        radial-gradient(circle at 86% 14%, rgba(24, 47, 83, 0.22) 0%, transparent 44%),
        linear-gradient(165deg, #03050a 0%, #060b14 38%, #091224 70%, #04070e 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: block;
    overflow-y: auto;
    overflow-x: clip;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(36, 62, 101, 0.14) 1px, transparent 1px),
        linear-gradient(0deg, rgba(36, 62, 101, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.22;
    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;
    width: 100%;
    text-align: center;
    padding: 24px clamp(14px, 2.4vw, 32px) 56px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

[id] {
    scroll-margin-top: 92px;
}

.section-nav {
    position: sticky;
    top: 12px;
    z-index: 30;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 30px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(8, 14, 27, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.section-link {
    color: rgba(248, 250, 252, 0.92);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.55);
    transition: all 0.22s ease;
}

.section-link:hover {
    color: #0b1220;
    background: var(--gradient-primary);
    border-color: rgba(251, 191, 36, 0.8);
    transform: translateY(-1px);
}

.lang-switcher {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 60;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
    background: rgba(8, 14, 27, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.lang-btn {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.88);
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 6px 9px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: rgba(251, 191, 36, 0.8);
    color: var(--primary-color);
}

.lang-btn.is-active {
    color: #0b1220;
    border-color: rgba(251, 191, 36, 0.95);
    background: var(--gradient-primary);
}

.hero-intro {
    max-width: 1080px;
    margin: 0 auto 18px;
    padding: 28px 24px 24px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background:
        radial-gradient(1200px 260px at 50% -20%, rgba(244, 181, 31, 0.09), transparent 58%),
        linear-gradient(180deg, rgba(8, 12, 22, 0.88), rgba(8, 12, 22, 0.48));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-kicker {
    display: inline-block;
    margin: 0 0 18px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.48);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.88);
}

.label-cta {
    margin: 20px auto 16px;
    display: flex;
    justify-content: center;
}

.label-desktop-bot-trigger {
    display: none;
}

.label-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 0.84rem;
    font-weight: 800;
    color: #091224;
    border: 1px solid rgba(251, 191, 36, 0.9);
    background: linear-gradient(135deg, #f6c437, #f0b429 45%, #d2d6dd);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.label-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 36px rgba(251, 191, 36, 0.32);
}

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

.tg-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.tg-logo-link img {
    width: min(100%, 760px);
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.36);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tg-logo-link:hover img {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 20px 46px rgba(56, 189, 248, 0.2);
}

.youtube-videos-section {
    margin: 16px auto 10px auto;
    max-width: 1240px;
    padding: 0 20px;
}

.youtube-videos-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.youtube-video-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #f8fafc;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 12px;
    padding: 14px 12px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.25), rgba(30, 41, 59, 0.7));
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.youtube-video-card i {
    color: #ef4444;
}

.youtube-video-card:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 68, 68, 0.75);
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.2);
}

.movies-title {
    color: var(--primary-color);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.movies-section {
    max-width: 1080px;
    margin: 26px auto 0;
    padding: 0 12px;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.movie-card {
    margin: 0;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 14px;
    padding: 10px;
}

.movie-card video {
    width: 100%;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: #000;
}

.movie-card figcaption {
    margin-top: 8px;
    color: #e2e8f0;
}

.movie-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.movie-description {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: left;
}

.movie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    justify-content: flex-start;
}

.movie-links a {
    text-decoration: none;
    color: #f8fafc;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 8px;
    padding: 4px 7px;
    font-size: 0.72rem;
    font-weight: 700;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.movie-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(251, 191, 36, 0.8);
}

.partners-section {
    max-width: 1080px;
    margin: 18px auto 0;
    padding: 0 12px;
}

.partners-mini {
    border-top: 1px solid rgba(56, 189, 248, 0.22);
    border-left: 1px solid rgba(56, 189, 248, 0.15);
    border-right: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(7, 12, 23, 0.72), rgba(7, 12, 23, 0.45));
    padding: 10px 12px 12px;
}

.partners-title {
    text-align: left;
    color: var(--primary-color);
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.partners-mini-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.partner-logo-link {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: radial-gradient(circle at 35% 25%, rgba(38, 38, 38, 0.72), rgba(8, 8, 8, 0.98) 62%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo-link:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 8px 16px rgba(56, 189, 248, 0.16);
}

.partner-logo-link img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.35));
}

.label-footer {
    max-width: 1080px;
    margin: 14px auto 0;
    padding: 10px 12px 0;
    border-top: 1px solid rgba(56, 189, 248, 0.16);
}

.label-footer p {
    margin: 0;
    text-align: center;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.78rem;
    line-height: 1.52;
    letter-spacing: 0.18px;
}

@media (max-width: 900px) {
    .movies-grid {
        grid-template-columns: 1fr;
    }

    .partners-mini {
        padding: 10px;
    }

    .partners-mini-body {
        gap: 10px;
    }

    .partner-logo-link {
        width: 56px;
        height: 56px;
    }
}

.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: none;
    transition: all 0.3s ease;
    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: translateY(-3px) scale(1.01);
    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: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: none;
    animation: none;
    position: relative;
}

.labels-title .title-autonomous,
.labels-title .title-softwarehouse {
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.labels-title .title-autonomous {
    background-image: linear-gradient(100deg, #f7d04f 0%, #f4b51f 45%, #d89a12 100%);
}

.labels-title .title-softwarehouse {
    background-image: linear-gradient(100deg, #e4e8ee 0%, #cbd2dc 45%, #9ca6b4 100%);
}

.labels-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-tg-title);
    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: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 18px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.labels-message {
    font-size: clamp(0.98rem, 1.35vw, 1.15rem);
    line-height: 1.72;
    color: var(--text-color);
    margin-bottom: 8px;
    max-width: 860px;
    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: none;
    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);
}

/* Native & Customize section */
.native-customize-section {
    margin: 36px auto 24px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.native-customize-title {
    color: var(--primary-color);
    font-size: 1.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.native-customize-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.native-customize-box {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.94), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 18px;
    padding: 24px 22px;
    text-align: left;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.native-customize-box:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.65);
    box-shadow: 0 14px 38px rgba(251, 191, 36, 0.16);
}

.native-customize-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(40, 74, 120, 0.6));
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.native-customize-box h4 {
    color: #f8fafc;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.native-customize-box p {
    color: rgba(248, 250, 252, 0.9);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.fusion-section {
    margin: 28px auto 18px auto;
    max-width: 1240px;
    padding: 0 20px;
}

.native-apps-logos-section {
    margin: 8px auto 22px auto;
    max-width: 1240px;
    padding: 0 20px;
}

.native-apps-logos-container {
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.2);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.native-app-logo-link {
    display: inline-flex;
    width: 84px;
    height: 84px;
    border-radius: 14px;
    background: radial-gradient(circle at 35% 25%, rgba(38, 38, 38, 0.72), rgba(8, 8, 8, 0.98) 62%);
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(115, 115, 115, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.native-app-logo-link:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.85);
    box-shadow: 0 10px 22px rgba(56, 189, 248, 0.24);
}

.native-app-logo-link img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.45)) contrast(1.08) brightness(1.05);
}

.fusion-title {
    color: var(--primary-color);
    font-size: 1.45rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin: 0 0 14px 0;
    text-align: left;
}

.fusion-box {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
    align-items: stretch;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.fusion-left {
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 4px 0;
}

.fusion-left p {
    margin: 0;
    color: rgba(248, 250, 252, 0.94);
    font-size: 0.96rem;
    line-height: 1.7;
}

.fusion-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.model-chip {
    --model-accent: #38bdf8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--model-accent) 55%, #334155);
    background: transparent;
    color: #e2e8f0;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.model-chip i {
    color: var(--model-accent);
}

.model-chip:hover {
    transform: translateY(-1px);
    border-color: var(--model-accent);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--model-accent) 22%, transparent);
}

.model-chip.openai { --model-accent: #22c55e; }
.model-chip.anthropic { --model-accent: #f59e0b; }
.model-chip.google { --model-accent: #60a5fa; }
.model-chip.xai { --model-accent: #6b7280; }
.model-chip.meta { --model-accent: #3b82f6; }
.model-chip.deepseek { --model-accent: #38bdf8; }
.model-chip.qwen { --model-accent: #14b8a6; }
.model-chip.mistral { --model-accent: #fb7185; }
.model-chip.cohere { --model-accent: #a78bfa; }
.model-chip.amazon { --model-accent: #f97316; }
.model-chip.ai21 { --model-accent: #f43f5e; }
.model-chip.zhipu { --model-accent: #22d3ee; }

@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: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.category-box {
    --cat-accent: #fbbf24;
    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: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s ease;
    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: translateY(0);
}

.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.35s ease;
    z-index: 1;
    transform: scale(0.92);
}

.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: translateY(-8px) scale(1.01);
    border-radius: 16px;
    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 {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
    color: var(--cat-accent);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(40, 74, 120, 0.6));
    border: 1px solid var(--cat-accent);
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35));
    transform: translateZ(0);
}

.category-box:hover .category-icon {
    transform: scale(1.08) translateY(-2px);
    border-color: var(--cat-accent);
    color: var(--cat-accent);
    filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.4)) drop-shadow(0 0 10px var(--cat-accent));
}

.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 {
    --cat-accent: #3b82f6;
    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 {
    --cat-accent: #10b981;
    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 {
    --cat-accent: #ef4444;
    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 {
    --cat-accent: #8b5cf6;
    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 {
    --cat-accent: #f59e0b;
    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 {
    --cat-accent: #06b6d4;
    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 {
    --cat-accent: #84cc16;
    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 {
    --cat-accent: #ec4899;
    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 {
    --cat-accent: #8b5cf6;
    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 {
    --cat-accent: #f97316;
    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 {
    --cat-accent: #06b6d4;
    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 {
    --cat-accent: #a855f7;
    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;
    }

    .native-customize-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fusion-box {
        grid-template-columns: 1fr;
    }

    .native-apps-logos-container {
        justify-content: center;
    }

    .youtube-videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .label-desktop-bot-trigger {
        display: flex;
        justify-content: center;
        margin: 27px auto 8px;
    }
}

@media (max-width: 768px) {
    body.labels-page #webagent-widget {
        position: static;
        right: auto;
        top: auto;
        z-index: 25;
        margin: 14px auto 8px;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    body.labels-page #webagent-widget .wa-toggle,
    body.labels-page #webagent-widget .wa-avatar {
        width: 64px;
        height: 64px;
    }

    .hero-intro {
        padding: 18px 14px 16px;
        border-radius: 20px;
    }

    .hero-kicker {
        margin-bottom: 12px;
        font-size: 0.65rem;
        letter-spacing: 0.95px;
    }

    .lang-switcher {
        top: 10px;
        right: 10px;
        padding: 5px;
        gap: 5px;
    }

    .lang-btn {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .section-nav {
        gap: 7px;
        padding: 8px 10px;
        margin-bottom: 20px;
    }

    .section-link {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .category-box {
        padding: 12px;
        min-height: 120px;
    }
    
    .category-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        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;
    }

    .native-customize-section {
        margin-top: 26px;
        padding: 0 10px;
    }

    .native-customize-title {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .native-customize-box {
        padding: 18px 16px;
    }

    .native-customize-box h4 {
        font-size: 0.95rem;
    }

    .native-customize-box p {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .fusion-section {
        margin-top: 22px;
        padding: 0 10px;
    }

    .native-apps-logos-section {
        padding: 0 10px;
    }

    .native-apps-logos-container {
        padding: 12px;
    }

    .native-app-logo-link {
        width: 70px;
        height: 70px;
    }

    .youtube-videos-section {
        padding: 0 10px;
    }

    .youtube-videos-title {
        font-size: 1.05rem;
    }

    .tg-logo-link img {
        border-radius: 14px;
    }

    .fusion-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .fusion-box {
        padding: 0;
        gap: 12px;
    }

    .fusion-left {
        padding: 0;
    }

    .fusion-left p {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .fusion-right {
        grid-template-columns: 1fr;
    }

    .model-chip {
        font-size: 0.78rem;
        min-height: 38px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .section-nav {
        border-radius: 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 6px;
    }
    
    .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 {
    --tech-accent: #fbbf24;
    background: linear-gradient(135deg, var(--card-bg), rgba(26, 35, 50, 0.95));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.28s ease;
    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);
    border-color: var(--tech-accent);
    box-shadow: var(--shadow-secondary), var(--border-glow);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), var(--card-bg));
}

.tech-emoji {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 1.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.28s ease;
    color: var(--tech-accent);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.35);
}

.tech-emoji i {
    line-height: 1;
    color: var(--tech-accent);
    filter: drop-shadow(0 0 6px rgba(15, 23, 42, 0.35));
}

.tech-icon:hover .tech-emoji {
    transform: scale(1.06);
    border-color: var(--tech-accent);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92));
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.45), 0 0 22px rgba(251, 191, 36, 0.2);
}

.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(--tech-accent);
}

/* Brand-like accents per technology tile */
.tech-icon[title="Docker"] { --tech-accent: #2496ed; }
.tech-icon[title="Podman"] { --tech-accent: #892ca0; }
.tech-icon[title="Ollama"] { --tech-accent: #60a5fa; }
.tech-icon[title="LM Studio"] { --tech-accent: #c084fc; }
.tech-icon[title="Terminal"] { --tech-accent: #22c55e; }

.tech-icon[title="MySQL"] { --tech-accent: #00758f; }
.tech-icon[title="PostgreSQL"] { --tech-accent: #336791; }
.tech-icon[title="MongoDB"] { --tech-accent: #47a248; }
.tech-icon[title="Redis"] { --tech-accent: #dc382d; }

.tech-icon[title="Rust"] { --tech-accent: #dea584; }
.tech-icon[title="JavaScript"] { --tech-accent: #f7df1e; }
.tech-icon[title="Python"] { --tech-accent: #ffd43b; }
.tech-icon[title="C#"] { --tech-accent: #9b4f96; }
.tech-icon[title="PHP"] { --tech-accent: #777bb4; }
.tech-icon[title="Go"] { --tech-accent: #00add8; }
.tech-icon[title="Java"] { --tech-accent: #ea2d2e; }
.tech-icon[title="C++"] { --tech-accent: #00599c; }

.tech-icon[title="React"] { --tech-accent: #61dafb; }
.tech-icon[title="Vue.js"] { --tech-accent: #42b883; }
.tech-icon[title="Node.js"] { --tech-accent: #83cd29; }
.tech-icon[title="Laravel"] { --tech-accent: #ff2d20; }
.tech-icon[title="Tauri"] { --tech-accent: #ffc131; }
.tech-icon[title="Kubernetes"] { --tech-accent: #326ce5; }
.tech-icon[title="Git"] { --tech-accent: #f05032; }

.tech-icon[title="Symfony"] { --tech-accent: #e5e7eb; }
.tech-icon[title="WordPress"] { --tech-accent: #21759b; }
.tech-icon[title="PrestaShop"] { --tech-accent: #df0067; }
.tech-icon[title="Django"] { --tech-accent: #44b78b; }
.tech-icon[title="Umbraco"] { --tech-accent: #3544b1; }

/* 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;
    text-align: center;
}

.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 {
    margin: 0;
}

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

.labels-footer .footer-domain {
    display: inline-block;
    margin: 10px 0 8px 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: none;
    color: #e2e8f0;
    text-shadow: 0 0 16px rgba(15, 23, 42, 0.28);
    padding: 0 6px;
}

.labels-footer .footer-backoffice {
    color: #1f4aa8;
    -webkit-text-fill-color: currentColor;
}

.labels-footer .footer-pro {
    color: #7b879e;
    -webkit-text-fill-color: currentColor;
}

.labels-footer .footer-biz {
    color: #f4b51f;
    margin-left: 2px;
}

/* 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 {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
        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 {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .tech-name {
        font-size: 0.65rem;
    }
    
    .tech-title {
        font-size: 1.2rem;
    }
} 

/* Professional refinement: calmer, more cohesive visual language */
.labels-container .hero-intro {
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.labels-container .section-nav {
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.labels-container .section-link {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.5);
    color: rgba(241, 245, 249, 0.92);
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.labels-container .section-link:hover,
.labels-container .section-link:focus-visible {
    color: #f8fafc;
    background: rgba(30, 41, 59, 0.72);
    border-color: rgba(251, 191, 36, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.28);
    outline: none;
}

.labels-container .labels-status {
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
    letter-spacing: 1px;
}

.labels-container .labels-status:hover {
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.24);
}

.labels-container .category-box {
    border-radius: 14px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.labels-container .category-box::before,
.labels-container .category-box::after {
    display: none;
}

.labels-container .category-box:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.labels-container .category-box.enterprise,
.labels-container .category-box.networks,
.labels-container .category-box.security,
.labels-container .category-box.computer,
.labels-container .category-box.languages,
.labels-container .category-box.automation,
.labels-container .category-box.hardware,
.labels-container .category-box.mobile,
.labels-container .category-box.web,
.labels-container .category-box.database,
.labels-container .category-box.cloud,
.labels-container .category-box.ai {
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.labels-container .category-box.enterprise:hover,
.labels-container .category-box.networks:hover,
.labels-container .category-box.security:hover,
.labels-container .category-box.computer:hover,
.labels-container .category-box.languages:hover,
.labels-container .category-box.automation:hover,
.labels-container .category-box.hardware:hover,
.labels-container .category-box.mobile:hover,
.labels-container .category-box.web:hover,
.labels-container .category-box.database:hover,
.labels-container .category-box.cloud:hover,
.labels-container .category-box.ai:hover {
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.labels-container .category-box h3 {
    letter-spacing: 0.7px;
}

.labels-container .category-box p {
    opacity: 0.86;
}
