        /* ============================================
           ELMARK v2 - MOBILE-FIRST Industrial Design
           ============================================ */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Colors */
            --primary: #009de1;
            --primary-dark: #007ac1;
            --primary-gradient: linear-gradient(135deg, #009de1 0%, #007ac1 100%);

            /* Accent Bar Colors */
            --accent-yellow: #fff102;
            --accent-orange: #f7921c;
            --accent-red: #ee1c24;

            /* Neutrals */
            --white: #ffffff;
            --gray-50: #f8f9fa;
            --gray-100: #f1f3f5;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
            --gray-900: #212529;
            --black: #0a0a0a;

            /* Typography */
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Barlow', sans-serif;

            /* Spacing - Mobile First */
            --section-gap: 60px;
            --container-padding: 20px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Skip Link - Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            z-index: 10000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
        }

        .screen-reader-text {
            clip: rect(1px, 1px, 1px, 1px);
            position: absolute !important;
            height: 1px;
            width: 1px;
            overflow: hidden;
        }

        .screen-reader-text:focus {
            clip: auto !important;
            display: block;
            height: auto;
            width: auto;
            z-index: 100000;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ============================================
           UTILITY CLASSES - MOBILE FIRST
           ============================================ */

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

        .container-fluid {
            width: 100%;
            padding: 0 var(--container-padding);
        }

        /* Accent Bars */
        .accent-bars {
            display: flex;
            height: 4px;
            width: 50px;
        }

        .accent-bars span {
            flex: 1;
        }

        .accent-bars span:nth-child(1) { background: var(--accent-yellow); }
        .accent-bars span:nth-child(2) { background: var(--accent-orange); }
        .accent-bars span:nth-child(3) { background: var(--accent-red); }

        .accent-bars--large {
            height: 5px;
            width: 75px;
        }

        /* Section Headers */
        .section-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 32px;
            line-height: 1.05;
            letter-spacing: 1px;
            color: var(--gray-900);
            text-transform: uppercase;
        }

        .section-title span {
            color: var(--primary);
        }

        /* Buttons - Mobile Optimized */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 24px;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            min-height: 48px; /* Touch-friendly */
        }

        .btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
        }

        .btn-primary:hover {
            box-shadow: 0 8px 30px rgba(0, 157, 225, 0.4);
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-outline {
            background: transparent;
            color: var(--gray-900);
            border: 2px solid var(--gray-900);
        }

        .btn-outline:hover {
            background: var(--gray-900);
            color: var(--white);
        }

        .btn-white {
            background: var(--white);
            color: var(--gray-900);
        }

        .btn-white:hover {
            background: var(--gray-100);
        }

        /* ============================================
           HEADER - MOBILE FIRST
           ============================================ */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .header--scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        /* Top Bar - Hidden on Mobile */
        .header-top {
            display: none;
            background: var(--gray-900);
            padding: 8px 0;
        }

        .header-top-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-contacts {
            display: flex;
            gap: 24px;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-300);
        }

        .header-contact svg {
            width: 14px;
            height: 14px;
            color: var(--primary);
        }

        .header-contact a,
        .header-contact span {
            color: var(--white);
        }

        .header-contact a:hover {
            color: var(--primary);
        }

        .header-socials {
            display: flex;
            gap: 4px;
        }

        .header-social {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            transition: all 0.2s ease;
        }

        .header-social:hover {
            color: var(--white);
            background: var(--primary);
        }

        .header-social svg {
            width: 16px;
            height: 16px;
        }

        /* Main Header - Mobile */
        .header-main {
            padding: 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .header-main-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 36px;
            width: auto;
            display: block;
        }

        /* Navigation - Hidden on Mobile, Shown via Menu */
        .nav {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            flex-direction: column;
            padding: 20px;
            overflow-y: auto;
            z-index: 999;
        }

        .nav.nav--open {
            display: flex;
        }

        .nav > a,
        .nav-link-dropdown {
            display: flex;
            align-items: center;
            padding: 16px 0;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-800);
            border-bottom: 1px solid var(--gray-200);
        }

        .nav > a:hover,
        .nav > a.active {
            color: var(--primary);
        }

        /* Mobile Nav Extras */
        .nav-mobile-extras {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--gray-200);
        }

        .nav-mobile-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .nav-mobile-contact a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-700);
            border-bottom: none;
        }

        .nav-mobile-contact svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        .nav-mobile-cta {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .nav-mobile-cta .btn {
            width: 100%;
        }

        /* Dropdown Menu - Mobile First */
        .nav-item {
            width: 100%;
        }

        .nav-item.has-dropdown {
            position: relative;
        }

        .nav-link-dropdown {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-800);
            border-bottom: 1px solid var(--gray-200);
            cursor: pointer;
        }

        .nav-link-dropdown.active {
            color: var(--primary);
        }

        .dropdown-chevron {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .nav-item.has-dropdown.open .dropdown-chevron {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            display: none;
            flex-direction: column;
            background: var(--gray-50);
            padding: 8px 0;
        }

        .nav-item.has-dropdown.open .dropdown-menu {
            display: flex;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            border-bottom: none !important;
            transition: background 0.2s ease;
        }

        .dropdown-item:hover {
            background: var(--gray-100);
        }

        .dropdown-item-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            flex-shrink: 0;
        }

        .dropdown-item-icon svg {
            width: 22px;
            height: 22px;
            color: var(--primary);
        }

        .dropdown-item-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .dropdown-item-text strong {
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-900);
            text-transform: none;
        }

        .dropdown-item-text small {
            font-size: 13px;
            font-weight: 400;
            color: var(--gray-600);
            text-transform: none;
        }

        /* Dropdown Category Mobile */
        .dropdown-category {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .dropdown-category > a {
            flex: 1;
            display: block;
            padding: 14px 0 14px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-800);
        }

        .dropdown-category > svg {
            display: block;
            width: 18px;
            height: 18px;
            color: var(--gray-400);
            margin-right: 12px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .dropdown-category.open > svg {
            transform: rotate(90deg);
        }

        .dropdown-submenu {
            display: none;
            flex-direction: column;
            background: var(--gray-100);
            padding: 8px 0;
        }

        .dropdown-category.open > .dropdown-submenu {
            display: flex;
        }

        .dropdown-subitem {
            display: block;
            padding: 12px 20px 12px 32px;
            font-size: 14px;
            color: var(--gray-600);
            border-bottom: none;
        }

        .dropdown-subitem:hover {
            color: var(--primary);
        }

        /* L3 mobile submenu */
        .dropdown-subcategory {
            display: flex;
            flex-direction: column;
        }

        .dropdown-subcategory.has-submenu > .dropdown-subitem {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dropdown-subcategory > .submenu-arrow {
            width: 16px;
            height: 16px;
            color: var(--gray-400);
            transition: transform 0.2s;
        }

        .dropdown-subcategory.open > .submenu-arrow {
            transform: rotate(90deg);
        }

        .dropdown-subitem--category {
            font-weight: 600;
            color: var(--gray-700);
        }

        .dropdown-submenu--l3 {
            display: none;
            flex-direction: column;
            background: var(--gray-200);
            padding: 8px 0;
        }

        .dropdown-subcategory.open > .dropdown-submenu--l3 {
            display: flex;
        }

        .dropdown-submenu--l3 .dropdown-subitem {
            padding-left: 48px;
        }

        /* Header Actions - Hidden on Mobile */
        .header-actions {
            display: none;
        }

        .header-shop {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--gray-800);
            border-left: 1px solid var(--gray-200);
            transition: all 0.2s ease;
        }

        .header-shop svg {
            width: 20px;
            height: 20px;
        }

        .header-shop:hover {
            color: var(--primary);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 28px;
            background: var(--primary-gradient);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .header-cta svg {
            width: 18px;
            height: 18px;
        }

        .header-cta:hover {
            filter: brightness(1.1);
        }

        /* Mobile Menu Button */
        .menu-btn {
            display: flex;
            width: 48px;
            height: 48px;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .menu-btn-inner {
            width: 24px;
            height: 16px;
            position: relative;
        }

        .menu-btn-inner span {
            display: block;
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--gray-900);
            transition: all 0.3s ease;
        }

        .menu-btn-inner span:nth-child(1) { top: 0; }
        .menu-btn-inner span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .menu-btn-inner span:nth-child(3) { bottom: 0; }

        .menu-btn.active .menu-btn-inner span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

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

        .menu-btn.active .menu-btn-inner span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* ============================================
           WORDPRESS ADMIN BAR OFFSET
           ============================================ */

        /* Mobile: Admin bar is 46px */
        .admin-bar .header {
            top: 46px;
        }

        .admin-bar .nav {
            top: calc(64px + 46px);
            height: calc(100vh - 64px - 46px);
        }

        .admin-bar .hero {
            padding-top: calc(64px + 46px);
        }

        @media (min-width: 783px) {
            /* Desktop: Admin bar is 32px */
            .admin-bar .header {
                top: 32px;
            }

            .admin-bar .nav {
                top: auto;
                height: auto;
            }

            .admin-bar .hero {
                padding-top: calc(64px + 32px);
            }
        }

        @media (min-width: 1024px) {
            .admin-bar .hero {
                padding-top: calc(120px + 32px);
            }
        }

        /* ============================================
           HERO SECTION - MOBILE FIRST
           ============================================ */

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: 64px;
            background: var(--gray-100);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-gradient);
            opacity: 0.08;
        }

        .hero-container {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .hero-content {
            padding: 40px 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .hero-label span {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-600);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 42px;
            line-height: 0.95;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hero-buttons .btn {
            width: 100%;
        }

        /* Hero Visual - Hidden on Mobile */
        .hero-visual {
            display: none;
        }

        /* Hero Stats - Mobile */
        .hero-stats {
            background: var(--white);
            margin-top: auto;
        }

        .hero-stats-inner {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .hero-stat {
            padding: 24px 16px;
            text-align: center;
            border-bottom: 1px solid var(--gray-200);
        }

        .hero-stat:nth-child(odd) {
            border-right: 1px solid var(--gray-200);
        }

        .hero-stat:nth-child(3),
        .hero-stat:nth-child(4) {
            border-bottom: none;
        }

        .hero-stat-num {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--primary);
            display: block;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 6px;
            display: block;
        }

        /* ============================================
           HERO VIDEO VERSION
           ============================================ */

        .hero--video {
            background: var(--gray-900);
            min-height: auto;
        }

        .hero--video::before {
            display: none;
        }

        .hero-video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, calc(var(--overlay-opacity, 30) / 100 + 0.1)) 0%,
                rgba(0, 0, 0, calc(var(--overlay-opacity, 30) / 100)) 100%
            );
        }

        .hero-container--video {
            z-index: 2;
        }

        .hero-content--video {
            width: 100%;
        }

        .hero-content--video .hero-title,
        .hero-content--video .hero-desc {
            max-width: 600px;
        }

        .hero--video .hero-label span {
            color: rgba(255, 255, 255, 0.8);
        }

        .hero--video .hero-title {
            color: var(--white);
        }

        .hero--video .hero-title span {
            color: var(--accent);
        }

        .hero--video .hero-desc {
            color: rgba(255, 255, 255, 0.85);
        }

        .btn-outline--light {
            border-color: rgba(255, 255, 255, 0.5);
            color: var(--white);
        }

        .btn-outline--light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        /* Hero Video - Stats bar */
        .hero--video .hero-stats {
            background: #009de1;
        }

        .hero--video .hero-stat {
            border-color: #007ec4;
        }

        .hero--video .hero-stat:hover {
            background: #007ec4;
        }

        .hero--video .hero-stat-num {
            color: var(--white);
        }

        .hero--video .hero-stat-label {
            color: var(--white);
        }

        .hero--video .hero-stat:last-child {
            border-right: none;
        }

        /* ============================================
           LOGISTICS SECTION - Timeline Style
           ============================================ */

        .logistics {
            padding: 80px 0;
            background: var(--gray-50);
        }

        .logistics-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        /* Image Area */
        .logistics-images {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .logistics-img-main {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: var(--gray-200);
            aspect-ratio: 4/3;
        }

        .logistics-img-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logistics-img-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            height: 100%;
            color: var(--gray-400);
        }

        .logistics-img-placeholder svg {
            width: 48px;
            height: 48px;
            opacity: 0.5;
        }

        .logistics-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            padding: 16px 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 157, 225, 0.3);
            z-index: 2;
        }

        .logistics-badge-num {
            display: block;
            font-family: var(--font-display);
            font-size: 36px;
            line-height: 1;
        }

        .logistics-badge-unit {
            font-family: var(--font-display);
            font-size: 16px;
            letter-spacing: 2px;
        }

        .logistics-badge-text {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            margin-top: 4px;
        }

        /* Content */
        .logistics-content {
            padding: 20px 0;
        }

        .logistics-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 24px;
        }

        /* Timeline Comparison */
        .logistics-compare {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 28px;
        }

        .compare-row {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 12px;
            align-items: center;
        }

        .compare-badge {
            font-family: var(--font-display);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            background: var(--primary-gradient);
            padding: 8px 12px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0, 157, 225, 0.25);
            text-align: center;
        }

        .compare-badge--muted {
            background: var(--gray-400);
            box-shadow: none;
        }

        .compare-track {
            position: relative;
            height: 48px;
            background: var(--gray-100);
            border-radius: 8px;
            overflow: visible;
            margin-right: 100px;
        }

        .compare-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: var(--duration);
            display: flex;
            align-items: center;
        }

        .compare-bar-fill {
            position: absolute;
            inset: 0;
            border-radius: 8px;
        }

        .compare-row--elmark .compare-bar-fill {
            background: linear-gradient(90deg, rgba(0, 157, 225, 0.12) 0%, rgba(0, 157, 225, 0.22) 100%);
            border: 2px solid var(--primary);
        }

        .compare-row--competitor .compare-bar-fill {
            background: linear-gradient(90deg, rgba(156, 163, 175, 0.08) 0%, rgba(156, 163, 175, 0.12) 100%);
            border: 2px dashed var(--gray-300);
        }

        .compare-truck {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 22px;
            color: var(--primary);
            z-index: 2;
            opacity: 0.7;
        }

        .compare-truck--muted {
            color: var(--gray-400);
            opacity: 0.5;
        }

        .compare-endpoint {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) translateX(100%);
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 16px;
        }

        .compare-endpoint-time {
            font-family: var(--font-display);
            font-size: 20px;
            letter-spacing: 1px;
            color: var(--primary);
            white-space: nowrap;
        }

        .compare-endpoint--muted .compare-endpoint-time {
            color: var(--gray-500);
            font-size: 16px;
        }

        .compare-endpoint-check {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0, 157, 225, 0.3);
        }

        .compare-endpoint-check svg {
            width: 12px;
            height: 12px;
            stroke: var(--white);
        }

        /* Features */
        .logistics-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 24px;
        }

        .logistics-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .logistics-feature:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(0, 157, 225, 0.1);
        }

        .logistics-feature-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 157, 225, 0.1);
            border-radius: 8px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .logistics-feature-icon svg {
            width: 20px;
            height: 20px;
        }

        .logistics-feature h4 {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 2px;
        }

        .logistics-feature p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.4;
        }

        .logistics-buttons {
            margin-top: 8px;
        }

        /* Desktop styles */
        @media (min-width: 900px) {
            .logistics {
                padding: 100px 0;
            }

            .logistics-grid {
                grid-template-columns: 1fr 1.1fr;
                gap: 60px;
                align-items: center;
            }

            .logistics-images {
                max-width: none;
            }

            .logistics-badge {
                padding: 20px 24px;
                right: 30px;
                bottom: -20px;
            }

            .logistics-badge-num {
                font-size: 48px;
            }

            .logistics-badge-unit {
                font-size: 20px;
            }

            .compare-row {
                grid-template-columns: 110px 1fr;
                gap: 16px;
            }

            .compare-badge {
                font-size: 12px;
                padding: 8px 14px;
            }

            .compare-track {
                margin-right: 120px;
            }

            .compare-endpoint-time {
                font-size: 22px;
            }

            .compare-endpoint--muted .compare-endpoint-time {
                font-size: 18px;
            }

            .compare-endpoint-check {
                width: 26px;
                height: 26px;
            }

            .logistics-features {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

        /* ============================================
           E-COMMERCE SECTION - INDUSTRIAL NUMBERED
           ============================================ */

        .ecommerce-section {
            padding: var(--section-gap) 0;
            position: relative;
            background: var(--gray-100);
            overflow: hidden;
        }

        .ecommerce-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gray-300);
        }

        .ecommerce-header {
            margin-bottom: 40px;
        }

        .ecommerce-header .section-label {
            margin-bottom: 12px;
        }

        .ecommerce-desc {
            font-size: 15px;
            color: var(--gray-600);
            margin-top: 16px;
            max-width: 600px;
            line-height: 1.7;
        }

        .ecommerce-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 32px;
            counter-reset: ecommerce-counter;
        }

        .ecommerce-card {
            position: relative;
            background: var(--white);
            border: 1px solid var(--gray-200);
            margin-top: -1px;
            padding: 24px;
            padding-left: 80px;
            transition: all 0.3s ease;
            counter-increment: ecommerce-counter;
        }

        /* Number counter */
        .ecommerce-card::before {
            content: '0' counter(ecommerce-counter);
            position: absolute;
            top: 24px;
            left: 24px;
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: var(--gray-200);
            line-height: 1;
            transition: color 0.3s ease;
        }

        /* Left accent bar */
        .ecommerce-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }

        .ecommerce-card:hover {
            background: var(--white);
            z-index: 1;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .ecommerce-card:hover::before {
            color: var(--primary);
        }

        .ecommerce-card:hover::after {
            transform: scaleY(1);
        }

        .ecommerce-card-icon {
            display: none;
        }

        .ecommerce-card-badge {
            display: inline-block;
            background: var(--gray-900);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .ecommerce-card h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .ecommerce-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .ecommerce-docs {
            background: var(--white);
            border: 1px solid var(--gray-200);
            padding: 24px;
        }

        .ecommerce-docs h4 {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gray-200);
        }

        .ecommerce-docs-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .ecommerce-doc-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid var(--gray-100);
            color: var(--gray-800);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .ecommerce-doc-link:last-child {
            border-bottom: none;
        }

        .ecommerce-doc-link:hover {
            color: var(--primary);
            transform: translateX(8px);
        }

        .ecommerce-doc-link svg:first-child {
            width: 18px;
            height: 18px;
            color: var(--gray-400);
            flex-shrink: 0;
            transition: color 0.25s ease;
        }

        .ecommerce-doc-link:hover svg:first-child {
            color: var(--primary);
        }

        .ecommerce-doc-link span {
            flex: 1;
        }

        .ecommerce-doc-link svg:last-child {
            width: 16px;
            height: 16px;
            color: var(--gray-300);
            flex-shrink: 0;
            transition: all 0.25s ease;
        }

        .ecommerce-doc-link:hover svg:last-child {
            color: var(--primary);
            transform: translateX(4px);
        }

        /* Tablet+ */
        @media (min-width: 768px) {
            .ecommerce-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0;
            }

            .ecommerce-card {
                margin: -1px 0 0 -1px;
            }

            .ecommerce-docs-grid {
                flex-direction: row;
                gap: 32px;
            }

            .ecommerce-doc-link {
                flex: 1;
                padding: 12px 16px;
                border: 1px solid var(--gray-100);
                border-bottom: 1px solid var(--gray-100);
            }

            .ecommerce-doc-link:last-child {
                border-bottom: 1px solid var(--gray-100);
            }

            .ecommerce-doc-link:hover {
                border-color: var(--primary);
                background: rgba(0, 157, 225, 0.03);
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            .ecommerce-section {
                padding: 100px 0;
            }

            .ecommerce-header {
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                gap: 40px;
                margin-bottom: 48px;
            }

            .ecommerce-header > div:first-child {
                flex: 1;
            }

            .ecommerce-desc {
                margin-top: 12px;
            }

            .ecommerce-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .ecommerce-card {
                padding: 28px;
                padding-left: 28px;
                padding-top: 72px;
            }

            .ecommerce-card::before {
                top: 20px;
                left: 20px;
                font-size: 40px;
            }

            .ecommerce-card h3 {
                font-size: 17px;
            }

            .ecommerce-docs {
                margin-top: 0;
                padding: 28px;
            }

            .ecommerce-docs h4 {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .ecommerce-doc-link {
                padding: 14px 20px;
            }
        }

        /* ============================================
           SERVICES SECTION - MOBILE FIRST
           ============================================ */

        .services {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .services-header .accent-bars {
            margin: 0 auto 16px;
        }

        .services-header .section-label {
            justify-content: center;
        }

        .services-header p {
            font-size: 15px;
            color: var(--gray-600);
            margin-top: 16px;
        }

        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .service-card {
            position: relative;
            padding: 32px 24px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            margin-top: -1px;
            transition: all 0.4s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }

        .service-card:hover::before,
        .service-card:active::before {
            transform: scaleY(1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 22px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .service-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
            margin-bottom: 16px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--primary);
        }

        .service-link svg {
            width: 16px;
            height: 16px;
        }

        /* ============================================
           3x NAJ SECTION - MOBILE FIRST
           ============================================ */

        .naj-section {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
            position: relative;
            overflow: hidden;
        }

        .naj-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            opacity: 0.04;
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
            pointer-events: none;
        }

        .naj-layout {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .naj-visual {
            position: relative;
            text-align: center;
        }

        .naj-big-text {
            font-family: var(--font-display);
            font-size: 100px;
            font-weight: 700;
            line-height: 0.85;
            letter-spacing: -2px;
            color: var(--primary);
        }

        .naj-big-text span {
            display: block;
            font-size: 0.5em;
            letter-spacing: 8px;
            color: var(--gray-300);
        }

        .naj-visual-accent {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 20px;
        }

        .naj-visual-accent span {
            width: 32px;
            height: 4px;
            border-radius: 2px;
        }

        .naj-visual-accent span:nth-child(1) { background: var(--accent-yellow); }
        .naj-visual-accent span:nth-child(2) { background: var(--accent-orange); }
        .naj-visual-accent span:nth-child(3) { background: var(--accent-red); }

        .naj-visual-subtitle {
            margin-top: 16px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gray-500);
        }

        .naj-content {
            position: relative;
            z-index: 1;
        }

        .naj-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .naj-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .naj-card:last-child {
            border-bottom: none;
        }

        .naj-card:hover {
            transform: translateX(8px);
        }

        .naj-card-num {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
            font-size: 42px;
            line-height: 1;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .naj-card-num::after {
            content: '';
            width: 24px;
            height: 3px;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .naj-card:nth-child(1) .naj-card-num::after { background: var(--accent-yellow); }
        .naj-card:nth-child(2) .naj-card-num::after { background: var(--accent-orange); }
        .naj-card:nth-child(3) .naj-card-num::after { background: var(--accent-red); }

        .naj-card:hover .naj-card-num::after {
            width: 32px;
        }

        .naj-card-content {
            flex: 1;
        }

        .naj-card-title {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

        .naj-card-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
        }

        /* ============================================
           ABOUT SECTION - MOBILE FIRST
           ============================================ */

        .about {
            padding: var(--section-gap) 0;
            background: var(--gray-900);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .about-images {
            position: relative;
            height: 300px;
        }

        .about-img-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 80%;
            height: 200px;
            background: var(--gray-700) center/cover;
        }

        .about-img-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 65%;
            height: 160px;
            background: var(--gray-600) center/cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        }

        .about-badge {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 2;
        }

        .about-badge-num {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--white);
            line-height: 1;
        }

        .about-badge-text {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.8);
        }

        .about-content .section-label {
            color: var(--primary);
        }

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

        .about-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-300);
            margin-top: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 32px;
        }

        .about-feature {
            display: flex;
            gap: 14px;
        }

        .about-feature-icon {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon svg {
            width: 22px;
            height: 22px;
            color: var(--primary);
        }

        .about-feature h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 2px;
        }

        .about-feature p {
            font-size: 13px;
            color: var(--gray-400);
        }

        .about-buttons {
            margin-top: 32px;
        }

        .about-buttons .btn {
            width: 100%;
        }

        /* ============================================
           PRODUCTS SECTION - MOBILE FIRST
           ============================================ */

        .products {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .products-header {
            margin-bottom: 32px;
        }

        .products-header-left {
            margin-bottom: 20px;
        }

        .products-header .btn {
            width: 100%;
        }

        .products-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .product-card {
            position: relative;
            display: flex;
            flex-direction: column;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
            margin-top: -1px;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: var(--gray-200) center/cover;
            position: relative;
        }

        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange), var(--accent-red));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-image::after,
        .product-card:active .product-image::after {
            opacity: 1;
        }

        .product-content {
            padding: 24px;
        }

        .product-tag {
            display: inline-block;
            padding: 5px 10px;
            background: var(--primary);
            color: var(--white);
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .product-title {
            font-family: var(--font-display);
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .product-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
        }

        .product-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--primary);
        }

        .product-link svg {
            width: 16px;
            height: 16px;
        }

        /* ============================================
           PROJECTS SECTION - MOBILE FIRST
           ============================================ */

        .projects {
            padding: var(--section-gap) 0 0;
            background: var(--gray-100);
        }

        .projects-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .projects-header .accent-bars {
            margin: 0 auto 16px;
        }

        .projects-header .section-label {
            justify-content: center;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2px;
        }

        .project-card {
            position: relative;
            height: 220px;
            overflow: hidden;
            cursor: pointer;
        }

        .project-card--large {
            height: 300px;
        }

        .project-bg {
            position: absolute;
            inset: 0;
            background: var(--gray-400) center/cover;
            transition: transform 0.6s ease;
        }

        .project-card:active .project-bg {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
        }

        .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
        }

        .project-tag {
            display: inline-block;
            padding: 4px 8px;
            background: var(--primary);
            color: var(--white);
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .project-title {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ============================================
           FEATURES SECTION - MOBILE FIRST
           ============================================ */

        .features {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .features-intro p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-600);
            margin-top: 20px;
        }

        .features-intro .btn {
            width: 100%;
            margin-top: 24px;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .feature-item {
            padding: 32px 24px;
            border: 1px solid var(--gray-200);
            margin-top: -1px;
            position: relative;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange), var(--accent-red));
        }

        .feature-num {
            font-family: var(--font-display);
            font-size: 40px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 16px;
        }

        .feature-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .feature-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
        }

        /* ============================================
           TESTIMONIALS SECTION - MOBILE FIRST
           ============================================ */

        .testimonials {
            padding: var(--section-gap) 0;
            background: var(--gray-900);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .testimonials::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--primary);
            opacity: 0.08;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .testimonials-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 40px;
        }

        .testimonials-header .accent-bars {
            margin: 0 auto 16px;
        }

        .testimonials-header .section-label {
            justify-content: center;
            color: var(--primary);
        }

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

        .testimonials-grid {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .testimonial-card {
            position: relative;
            padding: 32px 24px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            backdrop-filter: blur(4px);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.12);
            transform: translateY(-4px);
        }

        .testimonial-quote-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 16px;
            color: var(--primary);
            opacity: 0.6;
        }

        .testimonial-quote-icon svg {
            width: 100%;
            height: 100%;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin: 0 0 20px;
            font-style: italic;
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-rating svg {
            width: 18px;
            height: 18px;
            color: var(--accent-yellow);
            stroke-width: 1.5;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .testimonial-author-name {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
        }

        .testimonial-author-company {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        /* ============================================
           CTA SECTION - MOBILE FIRST
           ============================================ */

        .cta {
            padding: 48px 0;
            background: var(--primary-gradient);
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .cta-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .cta-content h2 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-content p {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            margin-top: 8px;
        }

        .cta .btn-white {
            width: 100%;
        }

        /* ============================================
           CONTACT SECTION - MOBILE FIRST
           ============================================ */

        .contact {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
        }

        .contact-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .contact-info {
            background: var(--gray-900);
            padding: 40px 24px;
            color: var(--white);
        }

        .contact-info .section-title {
            color: var(--white);
            font-size: 28px;
        }

        .contact-details {
            margin-top: 32px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon svg {
            width: 22px;
            height: 22px;
            color: var(--white);
        }

        .contact-item h4 {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-400);
            margin-bottom: 4px;
        }

        .contact-item p,
        .contact-item a {
            font-size: 15px;
            color: var(--white);
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        /* Department phones list */
        .contact-item--phones {
            align-items: flex-start;
        }

        .contact-phones-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-phone-row {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .contact-phone-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-500);
        }

        .contact-phone-row a {
            font-size: 15px;
            color: var(--white);
            transition: color 0.2s ease;
        }

        .contact-phone-row a:hover {
            color: var(--primary);
        }

        .contact-phone-details {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }

        .contact-separator {
            color: var(--gray-500);
            font-size: 12px;
        }

        /* Contact Form */
        .contact-form-wrap {
            background: var(--white);
            padding: 0;
            position: relative;
            border: 1px solid var(--gray-200);
        }

        .contact-form-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
        }

        .contact-form-wrap h3 {
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin: 0;
            padding: 20px 24px 16px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
            position: relative;
        }

        .contact-form-wrap h3::before {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 24px;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .contact-form-wrap .wpcf7-form {
            padding: 24px;
        }

        .contact-form-wrap .wpcf7-form p {
            margin: 0 0 20px 0;
        }

        .contact-form-wrap .wpcf7-form p:last-of-type {
            margin-bottom: 0;
            margin-top: 12px;
        }

        .contact-form-wrap .wpcf7-form label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .contact-form-wrap input[type="text"],
        .contact-form-wrap input[type="email"],
        .contact-form-wrap input[type="tel"],
        .contact-form-wrap textarea,
        .contact-form-wrap select {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--gray-200);
            background: var(--white);
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--gray-900);
            transition: all 0.25s ease;
        }

        .contact-form-wrap input:focus,
        .contact-form-wrap textarea:focus,
        .contact-form-wrap select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 157, 225, 0.1);
        }

        .contact-form-wrap textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-form-wrap input[type="submit"] {
            width: 100%;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 14px 24px;
            font-family: var(--font-display);
            font-size: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-form-wrap input[type="submit"]:hover {
            background: var(--gray-900);
        }

        .contact-form-wrap .wpcf7-response-output {
            margin: 16px 0 0 !important;
            padding: 14px !important;
            border: none !important;
            font-size: 13px;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-600);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--gray-200);
            background: var(--white);
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--gray-900);
            transition: all 0.2s ease;
            min-height: 48px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-check {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .form-check input[type="checkbox"] {
            width: 24px;
            height: 24px;
            margin-top: 0;
            accent-color: var(--primary);
            flex-shrink: 0;
        }

        .form-check label {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        .form-check a {
            color: var(--primary);
        }

        .contact-form .btn {
            width: 100%;
        }

        /* ============================================
           PARTNERS SECTION - MOBILE FIRST
           ============================================ */

        .partners {
            padding: 40px 0;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
        }

        .partners-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .partners-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-600);
        }

        .partners-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 24px;
        }

        .partner-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-300);
            letter-spacing: 1px;
        }

        /* ============================================
           FOOTER - MOBILE FIRST
           ============================================ */

        .footer {
            background: var(--gray-900);
            color: var(--white);
        }

        .footer-top {
            padding: 48px 0 40px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo img {
            filter: brightness(0) invert(1);
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-400);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--gray-400);
            padding: 6px 0;
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--gray-500);
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .footer-legal a {
            font-size: 12px;
            color: var(--gray-500);
        }

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

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .footer-social {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--gray-400);
            transition: all 0.3s ease;
        }

        .footer-social:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
        }

        /* ============================================
           TABLET BREAKPOINT (min-width: 640px)
           ============================================ */

        @media (min-width: 640px) {
            :root {
                --section-gap: 80px;
                --container-padding: 24px;
            }

            .section-title {
                font-size: 40px;
            }

            .btn {
                padding: 16px 28px;
                font-size: 14px;
            }

            /* Hero */
            .hero-title {
                font-size: 56px;
            }

            .hero-buttons {
                flex-direction: row;
            }

            .hero-buttons .btn {
                width: auto;
            }

            .hero-stats-inner {
                grid-template-columns: repeat(4, 1fr);
            }

            .hero-stat {
                border-bottom: none;
                border-right: 1px solid var(--gray-200);
            }

            /* Hero Video - Tablet */
            .hero--video .hero-buttons {
                flex-direction: row;
            }

            .hero--video .hero-buttons .btn {
                width: auto;
            }

            .hero-stat:last-child {
                border-right: none;
            }

            .hero-stat:nth-child(odd) {
                border-right: 1px solid var(--gray-200);
            }

            .hero--video .hero-stat {
                border-right: 1px solid #007ec4;
            }

            .hero--video .hero-stat:last-child {
                border-right: none;
            }

            .hero-stat-num {
                font-size: 42px;
            }

            /* Services */
            .services-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card {
                margin: -1px 0 0 -1px;
            }

            /* 3x NAJ */
            .naj-layout {
                flex-direction: row;
                align-items: center;
                gap: 60px;
            }

            .naj-visual {
                flex: 0 0 280px;
                text-align: center;
            }

            .naj-big-text {
                font-size: 120px;
            }

            .naj-content {
                flex: 1;
            }

            .naj-card-title {
                font-size: 22px;
            }

            /* About */
            .about-images {
                height: 380px;
            }

            .about-img-1 {
                height: 250px;
            }

            .about-img-2 {
                height: 200px;
            }

            .about-badge {
                width: 120px;
                height: 120px;
            }

            .about-badge-num {
                font-size: 44px;
            }

            .about-features {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Products */
            .products-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
            }

            .products-header .btn {
                width: auto;
            }

            .products-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .product-card {
                margin: -1px 0 0 -1px;
            }

            /* Projects */
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .project-card--large {
                grid-column: span 2;
            }

            /* Features */
            .features-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-item {
                margin: -1px 0 0 -1px;
            }

            /* Testimonials */
            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .testimonial-card {
                padding: 28px 24px;
            }

            /* CTA */
            .cta-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }

            .cta .btn-white {
                width: auto;
            }

            /* Contact */
            .contact-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .form-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            /* Department phones - single column with inline layout */
            .contact-phone-row {
                flex-direction: row;
                align-items: baseline;
                gap: 8px;
            }

            .contact-phone-label {
                min-width: 100px;
            }

            /* Footer */
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .footer-socials {
                order: 0;
            }
        }

        /* ============================================
           DESKTOP BREAKPOINT (min-width: 1024px)
           ============================================ */

        @media (min-width: 1024px) {
            :root {
                --section-gap: 100px;
            }

            .section-title {
                font-size: 50px;
            }

            /* Header - Desktop */
            .header-top {
                display: block;
            }

            .header-main {
                border-bottom: none;
            }

            .header-main-inner {
                height: 80px;
            }

            .logo {
                padding-right: 40px;
            }

            .logo img {
                height: 44px;
            }

            .nav {
                display: flex;
                position: static;
                flex-direction: row;
                padding: 0;
                margin-left: auto;
                overflow: visible;
                background: transparent;
                height: 100%;
            }

            .nav > a {
                padding: 30px 20px;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 0.5px;
                border-bottom: none;
                display: flex;
                align-items: center;
                position: relative;
                color: var(--gray-700);
                transition: color 0.2s ease;
                text-transform: uppercase;
            }

            .nav > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 20px;
                right: 20px;
                height: 3px;
                background: var(--primary-gradient);
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }

            .nav > a:hover {
                color: var(--gray-900);
            }

            .nav > a:hover::after,
            .nav > a.active::after {
                transform: scaleX(1);
            }

            .nav > a.active {
                color: var(--primary);
            }

            .nav-mobile-extras {
                display: none;
            }

            /* Dropdown - Desktop */
            .nav-item {
                width: auto;
                height: 100%;
                display: flex;
                align-items: stretch;
            }

            .nav-item.has-dropdown {
                position: relative;
            }

            .nav-link-dropdown {
                padding: 30px 20px;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 0.5px;
                border-bottom: none;
                display: flex;
                align-items: center;
                gap: 6px;
                color: var(--gray-700);
                transition: color 0.2s ease;
                text-transform: uppercase;
            }

            .nav-link-dropdown:hover {
                color: var(--gray-900);
            }

            .nav-link-dropdown.active {
                color: var(--primary);
            }

            .dropdown-chevron {
                width: 14px;
                height: 14px;
            }

            /* DROPDOWN MENU DESKTOP */
            .dropdown-menu {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                min-width: 280px;
                background: var(--white);
                box-shadow: 0 20px 50px rgba(0,0,0,0.15);
                border-top: 3px solid var(--primary);
                padding: 8px 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }

            .nav-item.has-dropdown:hover > .dropdown-menu {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-item.has-dropdown:hover .dropdown-chevron {
                transform: rotate(180deg);
            }

            .nav-item.has-dropdown:hover > .nav-link-dropdown {
                color: var(--primary);
            }

            /* SIMPLE DROPDOWN ITEMS (for Dla biznesu) */
            .dropdown-item {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 14px 20px;
                transition: all 0.2s;
            }

            .dropdown-item:hover {
                background: var(--gray-50);
            }

            .dropdown-item:hover .dropdown-item-icon {
                background: var(--primary);
                border-color: var(--primary);
            }

            .dropdown-item:hover .dropdown-item-icon svg {
                color: var(--white);
            }

            .dropdown-item-icon {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--white);
                border: 1px solid var(--gray-200);
                transition: all 0.2s ease;
                flex-shrink: 0;
            }

            .dropdown-item-icon svg {
                width: 20px;
                height: 20px;
                color: var(--primary);
                transition: color 0.2s ease;
            }

            .dropdown-item-text {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            .dropdown-item-text strong {
                font-size: 14px;
                font-weight: 600;
                color: var(--gray-900);
            }

            .dropdown-item-text small {
                font-size: 12px;
                color: var(--gray-500);
            }

            /* FLYOUT SUBMENU */
            .dropdown-category {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0;
                font-size: 14px;
                font-weight: 500;
                color: var(--gray-800);
                transition: all 0.2s;
                border-left: 3px solid transparent;
                border-bottom: none;
            }

            .dropdown-category:hover {
                background: var(--gray-50);
                color: var(--primary);
                border-left-color: var(--primary);
            }

            .dropdown-category > a {
                flex: 1;
                display: block;
                padding: 12px 8px 12px 17px;
                color: inherit;
            }

            .dropdown-category > svg {
                display: block;
                width: 16px;
                height: 16px;
                color: var(--gray-400);
                transition: all 0.2s;
                margin-right: 12px;
                flex-shrink: 0;
            }

            .dropdown-category:hover > svg {
                color: var(--primary);
                transform: translateX(2px);
            }

            .dropdown-submenu {
                display: block;
                position: absolute;
                left: 100%;
                top: -3px;
                min-width: 280px;
                background: var(--white);
                box-shadow: 0 20px 50px rgba(0,0,0,0.15);
                border-top: 3px solid var(--primary);
                padding: 8px 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateX(10px);
                transition: all 0.25s ease;
                z-index: 1001;
            }

            .dropdown-category:hover > .dropdown-submenu {
                display: block;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateX(0);
            }

            .dropdown-subitem {
                display: block;
                padding: 10px 20px;
                font-size: 13px;
                color: var(--gray-600);
                transition: all 0.2s;
                border-left: 3px solid transparent;
            }

            .dropdown-subitem:hover {
                background: var(--gray-50);
                color: var(--primary);
                border-left-color: var(--primary);
                padding-left: 24px;
            }

            /* L2 subcategory with nested L3 products */
            .dropdown-subcategory {
                position: relative;
                display: block;
            }

            .dropdown-subcategory.has-submenu {
                display: grid;
                grid-template-columns: 1fr auto;
                align-items: center;
                padding-right: 12px;
            }

            .dropdown-subcategory.has-submenu > .dropdown-subitem {
                padding-right: 8px;
            }

            /* Override the default hover padding shift for subcategory headers */
            .dropdown-subcategory.has-submenu > .dropdown-subitem:hover {
                padding-left: 20px;
                padding-right: 8px;
            }

            .dropdown-subcategory > .submenu-arrow {
                width: 14px;
                height: 14px;
                color: var(--gray-400);
                transition: all 0.2s;
            }

            .dropdown-subcategory:hover > .submenu-arrow {
                color: var(--primary);
                transform: translateX(2px);
            }

            .dropdown-subitem--category {
                font-weight: 600;
                color: var(--gray-700);
            }

            .dropdown-submenu--l3 {
                display: block;
                position: absolute;
                left: 100%;
                top: 0;
                min-width: 200px;
                background: var(--white);
                box-shadow: 0 20px 50px rgba(0,0,0,0.15);
                border-top: 3px solid var(--primary);
                padding: 8px 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateX(10px);
                transition: all 0.25s ease;
                z-index: 1002;
            }

            .dropdown-subcategory:hover > .dropdown-submenu--l3 {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateX(0);
            }

            .header-actions {
                display: flex;
                align-items: stretch;
                height: 100%;
                margin-left: 10px;
            }

            .header-shop {
                height: 100%;
            }

            .header-cta {
                height: 100%;
            }

            .menu-btn {
                display: none;
            }

            /* Hero */
            .hero {
                padding-top: 120px;
            }

            .hero::before {
                left: 55%;
                clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
                opacity: 1;
            }

            .hero-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
                padding-bottom: 140px; /* Reserve space for absolutely positioned stats bar */
            }

            .hero-content {
                padding: 60px 0;
            }

            .hero-title {
                font-size: 72px;
            }

            .hero-desc {
                font-size: 18px;
                max-width: 480px;
            }

            .hero-visual {
                display: block;
                position: relative;
                height: 550px;
                margin-bottom: 40px; /* Account for hero-image-float extending below */
            }

            .hero-image-main {
                position: absolute;
                top: 0;
                left: 40px;
                right: 0;
                height: 100%;
                background-color: var(--gray-300);
                overflow: hidden;
            }

            .hero-image-main img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero-image-main::before {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
                z-index: 1;
                pointer-events: none;
            }

            .hero-image-float {
                position: absolute;
                bottom: -40px;
                left: -20px;
                width: 280px;
                height: 200px;
                background-color: var(--gray-400);
                box-shadow: 0 20px 60px rgba(0,0,0,0.3);
                overflow: hidden;
            }

            .hero-image-float img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero-image-float::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 6px;
                height: 100%;
                background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-orange), var(--accent-red));
                z-index: 1;
                pointer-events: none;
            }

            .hero-stats {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
            }

            .hero-stat {
                padding: 20px;
            }

            .hero-stat:hover {
                background: var(--gray-50);
            }

            .hero-stat-num {
                font-size: 48px;
            }

            /* Hero Video - Desktop */
            .hero--video {
                min-height: 90vh;
            }

            .hero--video::before {
                display: none;
            }

            .hero-container--video {
                display: flex;
                align-items: center;
                padding-bottom: 140px;
            }

            .hero-content--video {
                width: 100%;
                padding: 60px 0;
            }

            .hero-content--video .hero-title,
            .hero-content--video .hero-desc {
                max-width: 650px;
            }

            .hero--video .hero-title {
                font-size: 72px;
            }

            .hero--video .hero-buttons {
                flex-direction: row;
            }

            .hero--video .hero-buttons .btn {
                width: auto;
            }

            /* Services */
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .service-card {
                padding: 40px 28px;
            }

            .service-card::before {
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                transform: scaleX(0);
                transform-origin: left;
            }

            .service-card:hover {
                background: var(--gray-50);
                box-shadow: 0 20px 60px rgba(0,0,0,0.1);
                z-index: 2;
            }

            .service-card:hover .service-icon {
                background: var(--primary);
            }

            .service-card:hover .service-icon svg {
                color: var(--white);
            }

            .service-link {
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }

            .service-card:hover .service-link {
                opacity: 1;
                transform: translateY(0);
            }

            /* 3x NAJ - Desktop */
            .naj-section {
                padding: 100px 0;
            }

            .naj-section::before {
                clip-path: polygon(100% 0, 100% 100%, 0 100%, 55% 0);
            }

            .naj-layout {
                gap: 100px;
            }

            .naj-visual {
                flex: 0 0 340px;
            }

            .naj-big-text {
                font-size: 150px;
            }

            .naj-card {
                padding: 28px 0;
            }

            .naj-card:hover {
                transform: translateX(12px);
            }

            .naj-card-num {
                font-size: 48px;
            }

            .naj-card-num::after {
                width: 28px;
            }

            .naj-card:hover .naj-card-num::after {
                width: 36px;
            }

            .naj-card-title {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .naj-card-desc {
                font-size: 15px;
            }

            /* About */
            .about::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 40%;
                height: 100%;
                background: var(--primary);
                opacity: 0.1;
                clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            }

            .about-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: center;
            }

            .about-images {
                height: 500px;
            }

            .about-img-1 {
                width: 70%;
                height: 350px;
            }

            .about-img-2 {
                width: 60%;
                height: 280px;
            }

            .about-badge {
                width: 140px;
                height: 140px;
                bottom: 60px;
            }

            .about-badge-num {
                font-size: 48px;
            }

            .about-text {
                font-size: 17px;
            }

            .about-buttons .btn {
                width: auto;
            }

            /* Products */
            .product-card {
                flex-direction: row;
            }

            .product-image {
                width: 45%;
                min-height: 280px;
            }

            .product-image::after {
                top: 0;
                right: 0;
                left: auto;
                width: 6px;
                height: 100%;
            }

            .product-content {
                flex: 1;
                padding: 40px;
                display: flex;
                flex-direction: column;
            }

            .product-desc {
                margin-bottom: auto;
            }

            /* Projects */
            .projects-grid {
                grid-template-columns: repeat(5, 1fr);
                grid-template-rows: repeat(2, 300px);
            }

            .project-card {
                height: auto;
            }

            .project-card--large {
                grid-column: span 2;
                grid-row: span 2;
            }

            .project-card:hover .project-bg {
                transform: scale(1.1);
            }

            .project-content {
                transform: translateY(20px);
                transition: transform 0.3s ease;
            }

            .project-card:hover .project-content {
                transform: translateY(0);
            }

            .project-card--large .project-title {
                font-size: 28px;
            }

            /* Features */
            .features-grid {
                display: grid;
                grid-template-columns: 380px 1fr;
                gap: 60px;
            }

            .features-intro {
                position: sticky;
                top: 140px;
                height: fit-content;
            }

            .features-intro .btn {
                width: auto;
            }

            .feature-item {
                padding: 48px;
            }

            .feature-item::before {
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }

            .feature-item:hover {
                background: var(--gray-50);
            }

            .feature-item:hover::before {
                transform: scaleX(1);
            }

            .feature-num {
                font-size: 48px;
                color: var(--gray-200);
                transition: color 0.3s ease;
            }

            .feature-item:hover .feature-num {
                color: var(--primary);
            }

            /* Testimonials */
            .testimonials-grid {
                gap: 32px;
            }

            .testimonial-card {
                padding: 36px 32px;
            }

            .testimonial-text {
                font-size: 16px;
            }

            .testimonial-author-name {
                font-size: 18px;
            }

            /* CTA */
            .cta {
                padding: 80px 0;
            }

            .cta-content h2 {
                font-size: 42px;
            }

            /* Contact */
            .contact-info {
                padding: 60px;
            }

            .contact-info .section-title {
                font-size: 40px;
            }

            .contact-form-wrap .wpcf7-form {
                padding: 32px;
            }

            .contact-form-wrap h3 {
                font-size: 24px;
                padding: 24px 32px;
            }

            .contact-form-wrap h3::after {
                left: 32px;
            }

            .contact-form-wrap input[type="submit"] {
                padding: 16px 32px;
            }

            /* Partners */
            .partners {
                padding: 60px 0;
            }

            .partners-inner {
                flex-direction: row;
                justify-content: space-between;
                gap: 60px;
            }

            .partners-logos {
                flex: 1;
                justify-content: space-between;
                gap: 40px;
            }

            .partner-logo {
                font-size: 24px;
            }

            /* Footer */
            .footer-top {
                padding: 80px 0 60px;
                display: grid;
                grid-template-columns: 1.5fr repeat(3, 1fr);
                gap: 60px;
            }

            .footer-links {
                display: contents;
            }
        }

        /* ============================================
           LARGE DESKTOP (min-width: 1280px)
           ============================================ */

        @media (min-width: 1280px) {
            .section-title {
                font-size: 56px;
            }

            .hero-title {
                font-size: 80px;
            }

            .hero-visual {
                height: 600px;
            }
        }

        /* ============================================
           ANIMATIONS
           ============================================ */

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

        .hero-content {
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        @media (min-width: 1024px) {
            .hero-visual {
                animation: fadeInUp 0.8s ease 0.4s both;
            }

            .hero-stats {
                animation: fadeInUp 0.8s ease 0.6s both;
            }
        }

        /* ============================================
           ABOUT PAGE STYLES
           ============================================ */

        /* Page Hero */
        .page-hero {
            position: relative;
            padding: 100px 0 60px;
            background: var(--gray-900);
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            opacity: 0.1;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .page-hero .section-label {
            color: var(--primary);
        }

        .page-hero-title {
            font-family: var(--font-display);
            font-size: 48px;
            line-height: 0.95;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 20px;
        }

        .page-hero-title span {
            color: var(--primary);
        }

        .page-hero-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-400);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 24px;
        }

        .breadcrumb a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb-current {
            color: var(--primary);
        }

        /* Intro Section */
        .intro {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .intro-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .intro-content .section-title {
            margin-bottom: 24px;
        }

        .intro-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-600);
        }

        .intro-text + .intro-text {
            margin-top: 16px;
        }

        .intro-text strong {
            color: var(--gray-900);
            font-weight: 600;
        }

        .intro-highlight {
            margin-top: 32px;
            padding: 24px;
            background: var(--gray-50);
            border-left: 4px solid var(--primary);
        }

        .intro-highlight p {
            font-size: 16px;
            font-weight: 500;
            color: var(--gray-800);
            font-style: italic;
            line-height: 1.7;
        }

        .intro-images {
            position: relative;
            height: 300px;
            order: -1;
        }

        .intro-img-main {
            position: absolute;
            top: 0;
            right: 0;
            width: 85%;
            height: 200px;
            background: var(--gray-300) center/cover;
        }

        .intro-img-secondary {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60%;
            height: 150px;
            background: var(--gray-400) center/cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .intro-img-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-orange), var(--accent-red));
        }

        .intro-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 2;
        }

        .intro-badge-num {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--white);
            line-height: 1;
        }

        .intro-badge-text {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.8);
        }

        /* YouTube Promo Section */
        .youtube-promo {
            position: relative;
            padding: var(--section-gap) 0;
            background: var(--gray-900);
            overflow: hidden;
        }

        .youtube-promo-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .youtube-promo-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .youtube-promo-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        /* Video Frame */
        .youtube-promo-video {
            order: 1;
        }

        .youtube-promo-video-frame {
            position: relative;
        }

        .youtube-promo-video-accent {
            position: absolute;
            top: -8px;
            left: -8px;
            right: 24px;
            bottom: 24px;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            border-radius: 12px;
            z-index: 0;
        }

        .youtube-promo-video-inner {
            position: relative;
            z-index: 1;
            aspect-ratio: 16/9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            background: var(--black);
        }

        .youtube-promo-video-inner iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .youtube-promo-video-badge {
            position: absolute;
            bottom: -16px;
            right: -16px;
            width: 64px;
            height: 64px;
            background: #ff0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 8px 24px rgba(255,0,0,0.4);
            animation: ytPulse 2s ease-in-out infinite;
        }

        .youtube-promo-video-badge svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        @keyframes ytPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(255,0,0,0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 32px rgba(255,0,0,0.6);
            }
        }

        /* Content Side */
        .youtube-promo-content {
            order: 2;
        }

        .youtube-promo-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255,0,0,0.15);
            border: 1px solid rgba(255,0,0,0.3);
            border-radius: 24px;
            margin-bottom: 20px;
        }

        .youtube-promo-label .youtube-icon {
            width: 20px;
            height: 20px;
            color: #ff0000;
        }

        .youtube-promo-label span {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ff4444;
        }

        .youtube-promo-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 5vw, 42px);
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .youtube-promo-title span {
            color: var(--primary);
        }

        .youtube-promo-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-400);
            margin-bottom: 24px;
            max-width: 480px;
        }

        .youtube-promo-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .youtube-promo-stat {
            display: flex;
            flex-direction: column;
        }

        .youtube-promo-stat-num {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--white);
            letter-spacing: 1px;
            line-height: 1;
        }

        .youtube-promo-stat-label {
            font-size: 13px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .youtube-promo-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: #ff0000;
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(255,0,0,0.3);
        }

        .youtube-promo-btn svg {
            width: 20px;
            height: 20px;
        }

        .youtube-promo-btn:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,0,0,0.4);
        }

        /* Timeline Section (About Page) */
        .timeline {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
            position: relative;
            overflow: hidden;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .timeline-header .accent-bars {
            margin: 0 auto 16px;
        }

        .timeline-header .section-label {
            justify-content: center;
        }

        .timeline-track {
            position: relative;
            padding-left: 30px;
        }

        .timeline-track::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10px;
            width: 2px;
            height: 100%;
            background: var(--gray-300);
        }

        .timeline-item {
            position: relative;
            padding: 0 0 24px 0;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 8px;
            left: -25px;
            width: 12px;
            height: 12px;
            background: var(--white);
            border: 3px solid var(--primary);
            z-index: 2;
        }

        .timeline-content {
            margin-bottom: 20px;
        }

        .timeline-year {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 12px;
        }

        .timeline-title {
            font-family: var(--font-display);
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .timeline-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-600);
        }

        .timeline-img {
            width: 100%;
            height: 260px;
            background: var(--gray-300) center/cover;
        }

        /* Values Section */
        .values {
            padding: var(--section-gap) 0;
            background: var(--gray-900);
            color: var(--white);
        }

        .values-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

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

        .values-intro p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-400);
            margin-top: 20px;
        }

        .values-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .value-card {
            padding: 32px 24px;
            border: 1px solid rgba(255,255,255,0.1);
            margin-top: -1px;
            position: relative;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange), var(--accent-red));
        }

        .value-icon {
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .value-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .value-title {
            font-family: var(--font-display);
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
            margin-bottom: 10px;
        }

        .value-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-400);
        }

        /* Stats Section */
        .stats {
            padding: 48px 0;
            background: var(--primary-gradient);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--white);
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.8);
            margin-top: 8px;
            display: block;
        }

        /* Team Section */
        .team {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .team-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .team-header .section-label {
            justify-content: center;
        }

        .team-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-600);
            max-width: 600px;
            margin: 16px auto 0;
        }

        .team-photo {
            border-radius: 12px;
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 16/7;
            object-fit: cover;
        }

        .team-photo-placeholder {
            aspect-ratio: 16/7;
            background: var(--gray-100);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--gray-400);
        }

        .team-photo-placeholder svg {
            width: 48px;
            height: 48px;
        }

        .team-photo-placeholder span {
            font-size: 14px;
        }

        /* Capabilities Section */
        .capabilities {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
        }

        .capabilities-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .capabilities-header .accent-bars {
            margin: 0 auto 16px;
        }

        .capabilities-header .section-label {
            justify-content: center;
        }

        .capabilities-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .capability-card {
            position: relative;
            padding: 32px 24px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            margin-top: -1px;
        }

        .capability-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .capability-num {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 16px;
            display: block;
        }

        .capability-title {
            font-family: var(--font-display);
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .capability-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 20px;
        }

        .capability-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .capability-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 13px;
            color: var(--gray-700);
        }

        .capability-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary);
            flex-shrink: 0;
        }

        /* Certifications Section */
        .certifications {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
            position: relative;
        }

        .certifications::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .certifications-layout {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .certifications-header {
            text-align: center;
        }

        .certifications-header .accent-bars {
            margin: 0 auto 16px;
        }

        .certifications-header .section-label {
            justify-content: center;
        }

        .certifications-desc {
            max-width: 600px;
            margin: 16px auto 0;
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-600);
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .cert-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }

        .cert-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .cert-image {
            position: relative;
            padding-top: 75%; /* 4:3 landscape ratio - more compact */
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
            overflow: hidden;
        }

        .cert-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .cert-card:hover .cert-image img {
            transform: scale(1.05);
        }

        .cert-lightbox {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .cert-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 56px;
            height: 56px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .cert-zoom svg {
            width: 24px;
            height: 24px;
            color: var(--white);
        }

        .cert-card:hover .cert-zoom {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .cert-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
        }

        .cert-placeholder svg {
            width: 64px;
            height: 64px;
            color: var(--gray-300);
        }

        .cert-content {
            padding: 24px 20px;
            position: relative;
        }

        .cert-badge {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 157, 225, 0.3);
        }

        .cert-number {
            font-family: var(--font-display);
            font-size: 16px;
            color: var(--white);
            letter-spacing: 1px;
        }

        .cert-title {
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 8px;
            padding-right: 50px;
        }

        .cert-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .cert-issuer {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cert-year {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            background: var(--gray-800);
            padding: 2px 8px;
            border-radius: 4px;
        }

        .cert-desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Certificate Lightbox */
        .cert-lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cert-lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cert-lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            color: var(--white);
            font-size: 28px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .cert-lightbox-close:hover {
            background: var(--white);
            color: var(--gray-900);
            border-color: var(--white);
        }

        .cert-lightbox-content {
            max-width: 90vw;
            max-height: 85vh;
            text-align: center;
        }

        .cert-lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .cert-lightbox-title {
            color: var(--white);
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 20px;
        }

        /* Awards & Membership Section */
        .awards-section {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
            position: relative;
        }

        .awards-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .awards-layout {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .awards-header {
            text-align: center;
        }

        .awards-header .accent-bars {
            margin: 0 auto 16px;
        }

        .awards-header .section-label {
            justify-content: center;
        }

        .awards-desc {
            max-width: 600px;
            margin: 16px auto 0;
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-600);
        }

        .awards-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        /* Membership Box */
        .membership-box {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            border: 2px solid var(--gray-100);
        }

        .membership-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .membership-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .membership-link:hover {
            transform: translateY(-2px);
        }

        .membership-logo {
            max-width: 200px;
            max-height: 100px;
        }

        .membership-logo img {
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
        }

        .membership-logo--text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .membership-org {
            font-family: var(--font-display);
            font-size: 42px;
            color: var(--primary);
            letter-spacing: 3px;
        }

        .membership-full {
            font-size: 13px;
            color: var(--gray-600);
            font-weight: 500;
        }

        .membership-url {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            padding: 8px 16px;
            background: var(--primary-light);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .membership-url svg {
            width: 14px;
            height: 14px;
        }

        .membership-link:hover .membership-url {
            background: var(--primary);
            color: var(--white);
        }

        /* Awards Gallery */
        .awards-gallery {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

        .awards-gallery-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            text-align: center;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .award-item {
            text-align: center;
        }

        .award-image {
            position: relative;
            width: 100%;
            padding-top: 100%;
            background: var(--gray-50);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .award-item:hover .award-image {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .award-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 16px;
            transition: transform 0.3s ease;
        }

        .award-item:hover .award-image img {
            transform: scale(1.05);
        }

        .award-image--placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .award-image--placeholder svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            color: var(--gray-300);
        }

        .award-lightbox {
            display: block;
        }

        .award-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .award-zoom svg {
            width: 20px;
            height: 20px;
            color: var(--white);
        }

        .award-item:hover .award-zoom {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .award-title {
            font-family: var(--font-display);
            font-size: 16px;
            color: var(--gray-900);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* CTA Section */
        .cta {
            padding: 48px 0;
            background: var(--gray-900);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .cta-content h2 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .cta-content h2 span {
            color: var(--primary);
        }

        .cta-content p {
            font-size: 15px;
            color: var(--gray-400);
            margin-top: 12px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cta-buttons .btn {
            width: 100%;
        }

        /* ============================================
           ABOUT PAGE - TABLET (min-width: 640px)
           ============================================ */

        @media (min-width: 640px) {
            .page-hero {
                padding: 140px 0 80px;
            }

            .page-hero-title {
                font-size: 64px;
            }

            .page-hero-desc {
                font-size: 17px;
            }

            .intro-images {
                height: 400px;
            }

            .intro-img-main {
                height: 280px;
            }

            .intro-img-secondary {
                height: 200px;
            }

            .intro-badge {
                width: 130px;
                height: 130px;
            }

            .intro-badge-num {
                font-size: 48px;
            }

            .timeline-year {
                font-size: 56px;
            }

            .timeline-img {
                height: 300px;
            }

            .values-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .value-card {
                margin: -1px 0 0 -1px;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .stat-num {
                font-size: 56px;
            }

            .capabilities-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .capability-card {
                margin: -1px 0 0 -1px;
            }

            .certifications-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .awards-content {
                grid-template-columns: 300px 1fr;
                gap: 32px;
                align-items: start;
            }

            .membership-box {
                position: sticky;
                top: 120px;
            }

            .awards-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .cta-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }

            .cta-buttons {
                flex-direction: row;
            }

            .cta-buttons .btn {
                width: auto;
            }
        }

        /* ============================================
           ABOUT PAGE - DESKTOP (min-width: 1024px)
           ============================================ */

        @media (min-width: 1024px) {
            .page-hero {
                padding: 200px 0 120px;
            }

            .page-hero::before {
                width: 50%;
                clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            }

            .page-hero-title {
                font-size: 80px;
            }

            .page-hero-desc {
                font-size: 18px;
                max-width: 600px;
            }

            .intro-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: center;
            }

            .intro-images {
                height: 550px;
                order: 0;
            }

            .intro-img-main {
                height: 400px;
            }

            .intro-img-secondary {
                height: 250px;
            }

            .intro-badge {
                width: 160px;
                height: 160px;
            }

            .intro-badge-num {
                font-size: 56px;
            }

            .intro-text {
                font-size: 17px;
            }

            .intro-highlight {
                padding: 32px;
            }

            .intro-highlight p {
                font-size: 18px;
            }

            /* YouTube Promo - Desktop */
            .youtube-promo-grid {
                grid-template-columns: 1.1fr 1fr;
                gap: 60px;
            }

            .youtube-promo-video {
                order: 0;
            }

            .youtube-promo-content {
                order: 0;
            }

            .youtube-promo-video-accent {
                top: -12px;
                left: -12px;
                right: 32px;
                bottom: 32px;
            }

            .youtube-promo-video-badge {
                width: 80px;
                height: 80px;
                bottom: -20px;
                right: -20px;
            }

            .youtube-promo-video-badge svg {
                width: 36px;
                height: 36px;
            }

            .youtube-promo-stat-num {
                font-size: 48px;
            }

            .timeline-header {
                margin-bottom: 80px;
            }

            .timeline-track {
                padding-left: 0;
            }

            .timeline-track::before {
                left: 50%;
                transform: translateX(-50%);
            }

            .timeline-item {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                padding: 24px 0;
            }

            .timeline-item::before {
                left: 50%;
                transform: translate(-50%, 0);
                top: 50%;
                width: 20px;
                height: 20px;
                border-width: 4px;
            }

            .timeline-item:nth-child(odd) .timeline-content {
                text-align: right;
                padding-right: 60px;
            }

            .timeline-item:nth-child(odd) .timeline-image {
                order: 2;
                padding-left: 60px;
            }

            .timeline-item:nth-child(even) .timeline-content {
                order: 2;
                padding-left: 60px;
            }

            .timeline-item:nth-child(even) .timeline-image {
                padding-right: 60px;
            }

            .timeline-year {
                font-size: 64px;
            }

            .timeline-title {
                font-size: 28px;
            }

            .timeline-img {
                height: 320px;
            }

            .values-grid {
                display: grid;
                grid-template-columns: 400px 1fr;
                gap: 80px;
            }

            .values-intro p {
                font-size: 17px;
            }

            .value-card {
                padding: 48px;
            }

            .value-card::before {
                width: 0;
                height: 4px;
                transition: width 0.3s ease;
            }

            .value-card:hover {
                background: rgba(255,255,255,0.03);
            }

            .value-card:hover::before {
                width: 100%;
            }

            .value-card:hover .value-icon {
                background: var(--primary);
            }

            .value-card:hover .value-icon svg {
                color: var(--white);
            }

            .stats {
                padding: 80px 0;
            }

            .stat-item {
                position: relative;
            }

            .stat-item::after {
                content: '';
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                width: 1px;
                height: 60px;
                background: rgba(255,255,255,0.2);
            }

            .stat-item:last-child::after {
                display: none;
            }

            .stat-num {
                font-size: 72px;
            }

            .capability-card {
                padding: 60px;
            }

            .capability-card::before {
                width: 0;
                transition: width 0.3s ease;
            }

            .capability-card:hover {
                z-index: 2;
                box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            }

            .capability-card:hover::before {
                width: 100%;
            }

            .capability-num {
                font-size: 64px;
                color: var(--gray-200);
                transition: color 0.3s ease;
            }

            .capability-card:hover .capability-num {
                color: var(--primary);
            }

            .certifications-layout {
                gap: 50px;
            }

            .certifications-desc {
                max-width: 700px;
            }

            .certifications-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }

            .cert-content {
                padding: 24px 16px;
            }

            .cert-title {
                font-size: 18px;
                padding-right: 40px;
            }

            .cert-desc {
                font-size: 13px;
            }

            .cta {
                padding: 100px 0;
            }

            .cta::after {
                content: '';
                position: absolute;
                top: 50%;
                right: -200px;
                transform: translateY(-50%);
                width: 500px;
                height: 500px;
                background: var(--primary);
                opacity: 0.1;
                clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            }

            .cta-content h2 {
                font-size: 48px;
            }

            .cta-content p {
                max-width: 500px;
            }
        }

        /* ============================================
           ABOUT PAGE - LARGE DESKTOP (min-width: 1280px)
           ============================================ */

        @media (min-width: 1280px) {
            .page-hero-title {
                font-size: 100px;
            }
        }

        /* ============================================
           PRODUCTS ARCHIVE STYLES
           ============================================ */

        .products-hero {
            position: relative;
            padding: 120px 0 60px;
            background: var(--gray-900);
            color: var(--white);
            overflow: hidden;
        }

        .products-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .products-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .products-hero-content {
            position: relative;
            z-index: 1;
        }

        .products-hero .breadcrumb {
            margin-bottom: 24px;
        }

        .products-hero .breadcrumb a {
            color: var(--gray-400);
        }

        .products-hero .breadcrumb a:hover {
            color: var(--white);
        }

        .products-hero .breadcrumb-current {
            color: var(--primary);
        }

        .products-hero h1 {
            font-family: var(--font-display);
            font-size: 48px;
            line-height: 0.95;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .products-hero h1 span {
            color: var(--primary);
        }

        .products-hero-lead {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-300);
            max-width: 600px;
            margin-bottom: 32px;
        }

        .products-hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .products-hero-stat {
            display: flex;
            flex-direction: column;
        }

        .products-hero-stat-num {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--primary);
            line-height: 1;
        }

        .products-hero-stat-label {
            font-size: 13px;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Categories Grid */
        .categories {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .categories-header {
            margin-bottom: 48px;
        }

        .categories-header p {
            font-size: 16px;
            color: var(--gray-600);
            margin-top: 16px;
            max-width: 600px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .category-card {
            position: relative;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .category-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

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

        .category-card-image {
            position: relative;
            height: 200px;
            background: var(--gray-100);
            overflow: hidden;
        }

        .category-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .category-card:hover .category-card-image img {
            transform: scale(1.05);
        }

        .category-card-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
        }

        .category-card-image-placeholder svg {
            width: 64px;
            height: 64px;
            color: var(--gray-400);
        }

        .category-card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 12px;
            background: var(--primary);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-card-content {
            padding: 24px;
        }

        .category-card-content h3 {
            font-family: var(--font-display);
            font-size: 26px;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .category-card:hover .category-card-content h3 {
            color: var(--primary);
        }

        .category-card-content p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
            margin-bottom: 16px;
        }

        .category-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--primary);
        }

        .category-card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .category-card:hover .category-card-link svg {
            transform: translateX(4px);
        }

        /* Featured Products */
        .featured {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

        .featured-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 48px;
        }

        .featured-header-text p {
            font-size: 16px;
            color: var(--gray-600);
            margin-top: 16px;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .featured-card {
            display: flex;
            flex-direction: column;
            background: var(--white);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .featured-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }

        .featured-card-image {
            height: 180px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .featured-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .featured-card:hover .featured-card-image img {
            transform: scale(1.05);
        }

        .featured-card-image svg {
            width: 48px;
            height: 48px;
            color: var(--gray-400);
        }

        .featured-card-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-card-category {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .featured-card-content h4 {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .featured-card-content p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            flex: 1;
        }

        .featured-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            margin-top: 16px;
            border-top: 1px solid var(--gray-200);
        }

        .featured-card-specs {
            display: flex;
            gap: 16px;
        }

        .featured-card-spec {
            font-size: 12px;
            color: var(--gray-500);
        }

        .featured-card-arrow {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            transition: all 0.3s;
        }

        .featured-card-arrow svg {
            width: 18px;
            height: 18px;
            color: var(--gray-600);
        }

        .featured-card:hover .featured-card-arrow {
            background: var(--primary);
        }

        .featured-card:hover .featured-card-arrow svg {
            color: var(--white);
        }

        /* Why Elmark */
        .why-elmark {
            padding: var(--section-gap) 0;
            background: var(--primary-gradient);
            color: var(--white);
            position: relative;
        }

        .why-elmark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .why-elmark-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .why-elmark-header .section-label {
            color: rgba(255,255,255,0.7);
            justify-content: center;
        }

        .why-elmark-header .section-title {
            color: var(--white);
        }

        .why-elmark-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .why-elmark-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .why-elmark-icon {
            width: 64px;
            height: 64px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-elmark-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }

        .why-elmark-item h4 {
            font-family: var(--font-display);
            font-size: 22px;
            margin-bottom: 8px;
        }

        .why-elmark-item p {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
        }

        /* Products CTA */
        .products-cta {
            padding: var(--section-gap) 0;
            background: var(--gray-900);
            color: var(--white);
            text-align: center;
        }

        .products-cta h2 {
            font-family: var(--font-display);
            font-size: 36px;
            margin-bottom: 16px;
        }

        .products-cta p {
            font-size: 17px;
            color: var(--gray-400);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .products-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }

        /* ============================================
           CATEGORY PAGE STYLES
           ============================================ */

        .category-hero {
            position: relative;
            padding: 120px 0 60px;
            background: linear-gradient(135deg, var(--gray-900) 0%, #1a2a3a 100%);
            color: var(--white);
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(0,157,225,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .category-hero-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .category-hero-content {
            flex: 1;
        }

        .category-hero .breadcrumb {
            margin-bottom: 24px;
        }

        .category-hero .breadcrumb a {
            color: var(--gray-400);
        }

        .category-hero .breadcrumb a:hover {
            color: var(--white);
        }

        .category-hero .breadcrumb-current {
            color: var(--primary);
        }

        .category-hero h1 {
            font-family: var(--font-display);
            font-size: 42px;
            line-height: 0.95;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .category-hero h1 span {
            color: var(--primary);
        }

        .category-hero-lead {
            font-size: 17px;
            line-height: 1.7;
            color: var(--gray-300);
            max-width: 600px;
            margin-bottom: 32px;
        }

        .category-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .category-hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .category-hero-feature svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }

        .category-hero-feature span {
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
        }

        .category-hero-image {
            display: none;
        }

        /* Filter Bar */
        .filter-bar {
            padding: 20px 0;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 64px;
            z-index: 100;
        }

        .filter-bar-inner {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .filter-bar-count {
            font-size: 14px;
            color: var(--gray-600);
        }

        .filter-bar-count strong {
            color: var(--gray-900);
        }

        .filter-bar-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: var(--white);
            border: 1px solid var(--gray-300);
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-700);
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        /* Products Grid (Category Page) */
        .products-section {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .products-section .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .products-section .product-card {
            display: flex;
            flex-direction: column;
            background: var(--white);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .products-section .product-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .products-section .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .products-section .product-card:hover::before {
            transform: scaleX(1);
        }

        .products-section .product-card-image {
            position: relative;
            height: 200px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-bottom: 1px solid var(--gray-200);
        }

        .product-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-card-image img {
            transform: scale(1.05);
        }

        .product-card-image svg {
            width: 64px;
            height: 64px;
            color: var(--gray-300);
            transition: all 0.4s;
        }

        .product-card:hover .product-card-image svg {
            color: var(--primary);
            transform: scale(1.1);
        }

        .product-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 6px 12px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: var(--primary);
            color: var(--white);
        }

        .product-card-badge.bestseller {
            background: var(--accent-orange);
        }

        .product-card-badge.new,
        .product-card-badge.nowosc {
            background: var(--primary);
        }

        .product-card-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-card-category {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .product-card-content h3 {
            font-family: var(--font-display);
            font-size: 24px;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .product-card:hover .product-card-content h3 {
            color: var(--primary);
        }

        .product-card-content p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
            margin-bottom: 16px;
            flex: 1;
        }

        .product-card-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .product-card-spec {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            background: var(--gray-100);
            font-size: 12px;
            color: var(--gray-700);
        }

        .product-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--gray-200);
        }

        .product-card-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--primary);
        }

        .product-card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .product-card:hover .product-card-link svg {
            transform: translateX(4px);
        }

        .product-card-download {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .product-card-download svg {
            width: 18px;
            height: 18px;
            color: var(--gray-600);
        }

        .product-card-download:hover {
            background: var(--primary);
        }

        .product-card-download:hover svg {
            color: var(--white);
        }

        /* Category SEO Section */
        .category-seo {
            padding: 60px 0;
            background: var(--gray-50);
        }

        .category-seo-title {
            font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--gray-900);
        }

        .category-seo-content {
            max-width: 900px;
            font-size: 16px;
            line-height: 1.8;
            color: var(--gray-600);
        }

        .category-seo-content p {
            margin-bottom: 16px;
        }

        .category-seo-content h3,
        .category-seo-content h4 {
            font-family: var(--font-display);
            color: var(--gray-900);
            margin: 24px 0 12px;
        }

        .category-seo-content ul,
        .category-seo-content ol {
            margin: 16px 0;
            padding-left: 24px;
        }

        .category-seo-content li {
            margin-bottom: 8px;
        }

        /* Applications Section (Category page) */
        .applications {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
        }

        .applications-header {
            margin-bottom: 48px;
        }

        .applications-header p {
            font-size: 16px;
            color: var(--gray-600);
            margin-top: 16px;
        }

        .applications-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .application-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .application-item:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }

        .application-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .application-icon svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        .application-item h4 {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .application-item p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        /* Category CTA */
        .category-cta {
            padding: var(--section-gap) 0;
            background: var(--primary-gradient);
            color: var(--white);
            position: relative;
        }

        .category-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .category-cta-inner {
            display: flex;
            flex-direction: column;
            gap: 32px;
            text-align: center;
        }

        .category-cta h2 {
            font-family: var(--font-display);
            font-size: 36px;
        }

        .category-cta p {
            font-size: 17px;
            color: rgba(255,255,255,0.85);
            max-width: 500px;
            margin: 0 auto;
        }

        .category-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }

        /* ============================================
           SINGLE PRODUCT STYLES
           ============================================ */

        .product-hero {
            padding: 84px 0 40px;
            background: var(--gray-50);
            position: relative;
        }

        .product-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
        }

        .product-hero .breadcrumb {
            margin-bottom: 24px;
        }

        .product-hero-grid {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* Product Gallery */
        .product-gallery {
            position: relative;
        }

        .product-gallery-main {
            aspect-ratio: 4/3;
            background: var(--white);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .product-gallery-main img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .product-gallery-placeholder {
            width: 100%;
            height: 100%;
            background: var(--gray-100);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            color: var(--gray-400);
        }

        .product-gallery-placeholder svg {
            width: 64px;
            height: 64px;
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 8px 16px;
            background: var(--primary);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .product-gallery-thumbs {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .product-thumb {
            width: 64px;
            height: 64px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            flex-shrink: 0;
            cursor: pointer;
            transition: border-color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-thumb.active,
        .product-thumb:hover {
            border-color: var(--primary);
        }

        .product-thumb img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        /* Product Info (Single Product Page) */
        .product-hero .product-info {
            display: flex;
            flex-direction: column;
        }

        .product-hero .product-category {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .product-hero .product-title {
            font-family: var(--font-display);
            font-size: 36px;
            line-height: 1;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .product-hero .product-subtitle {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .product-features-quick {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .product-feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-700);
        }

        .product-feature-tag svg {
            width: 14px;
            height: 14px;
            color: var(--primary);
        }

        .product-highlights {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            margin-bottom: 24px;
        }

        .product-highlight {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .product-highlight-icon {
            width: 24px;
            height: 24px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .product-highlight-icon svg {
            width: 14px;
            height: 14px;
            color: var(--white);
        }

        .product-highlight p {
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.5;
        }

        .product-highlight strong {
            color: var(--gray-900);
        }

        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .product-actions .btn {
            width: 100%;
        }

        .product-stock {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 12px 16px;
            background: rgba(40, 167, 69, 0.1);
            border-left: 3px solid var(--success);
        }

        .product-stock-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
        }

        .product-stock span {
            font-size: 13px;
            font-weight: 600;
            color: var(--success);
        }

        /* Product Details Tabs */
        .product-details {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .product-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            border-bottom: 2px solid var(--gray-200);
            margin-bottom: 32px;
            overflow-x: auto;
        }

        .product-tab {
            padding: 16px 20px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-600);
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            white-space: nowrap;
            transition: color 0.2s ease;
        }

        .product-tab::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.2s ease;
        }

        .product-tab:hover {
            color: var(--gray-900);
        }

        .product-tab.active {
            color: var(--primary);
        }

        .product-tab.active::after {
            transform: scaleX(1);
        }

        .product-tab-content {
            display: none;
        }

        .product-tab-content.active {
            display: block;
        }

        /* Description Tab */
        .product-description h3 {
            font-family: var(--font-display);
            font-size: 26px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .product-description p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-600);
            margin-bottom: 20px;
        }

        .product-description ul {
            list-style: none;
            margin-bottom: 24px;
            padding: 0;
        }

        .product-description ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 15px;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-100);
        }

        .product-description ul li:last-child {
            border-bottom: none;
        }

        .product-description ul li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            flex-shrink: 0;
            margin-top: 8px;
        }

        /* Specs Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }

        .specs-table tr {
            border-bottom: 1px solid var(--gray-200);
        }

        .specs-table th,
        .specs-table td {
            padding: 16px;
            text-align: left;
            font-size: 14px;
        }

        .specs-table th {
            background: var(--gray-50);
            font-weight: 600;
            color: var(--gray-700);
            width: 40%;
        }

        .specs-table td {
            color: var(--gray-800);
        }

        .specs-table .spec-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        /* Variants Table - styles ANY table inside this wrapper */
        .variants-table-wrap {
            overflow-x: auto;
            margin-top: 32px;
        }

        .variants-table-wrap h3 {
            font-family: var(--font-display);
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .variants-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            background: var(--white);
        }

        .variants-table-wrap thead,
        .variants-table-wrap table tr:first-child {
            background: var(--gray-900);
        }

        .variants-table-wrap th,
        .variants-table-wrap thead td {
            padding: 14px 16px;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
            background: var(--gray-900);
            border: none;
        }

        .variants-table-wrap tbody tr,
        .variants-table-wrap table tr:not(:first-child) {
            border-bottom: 1px solid var(--gray-200);
            transition: background 0.2s ease;
        }

        /* Zebra striping - every other row */
        .variants-table-wrap tbody tr:nth-child(even),
        .variants-table-wrap table tr:nth-child(even) {
            background: var(--gray-50);
        }

        .variants-table-wrap tbody tr:hover,
        .variants-table-wrap table tr:not(:first-child):hover {
            background: var(--gray-100);
        }

        .variants-table-wrap td {
            padding: 14px 16px;
            font-size: 14px;
            color: var(--gray-700);
            border: none;
            background: transparent;
            text-align: center;
        }

        .variants-table-wrap tbody td:first-child,
        .variants-table-wrap table tr:not(:first-child) td:first-child {
            font-weight: 600;
            color: var(--gray-900);
        }

        /* Reset any inline styles or old classes from imported tables */
        .variants-table-wrap table[class],
        .variants-table-wrap tr[class],
        .variants-table-wrap td[class],
        .variants-table-wrap th[class] {
            border: none !important;
            background: inherit;
        }

        /* Ensure second header row (subheaders) looks different */
        .variants-table-wrap tbody tr:first-child td,
        .variants-table-wrap table tr:nth-child(2) td {
            font-weight: 600;
            color: var(--gray-600);
            font-size: 12px;
            text-transform: uppercase;
            background: var(--gray-100);
        }

        /* Applications Tab - Single Product */
        .product-details .applications-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .application-card {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--gray-50);
            border-left: 4px solid var(--primary);
        }

        .application-card .application-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .application-card .application-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .application-content h4 {
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .application-content p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
        }

        /* Downloads Tab */
        .downloads-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .download-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            transition: all 0.2s ease;
        }

        .download-item:hover {
            border-color: var(--primary);
            background: var(--white);
        }

        .download-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .download-icon svg {
            width: 24px;
            height: 24px;
            color: var(--white);
        }

        .download-info {
            flex: 1;
        }

        .download-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .download-info span {
            font-size: 12px;
            color: var(--gray-500);
        }

        .download-btn {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }

        .download-item:hover .download-btn {
            background: var(--primary);
        }

        .download-btn svg {
            width: 20px;
            height: 20px;
            color: var(--gray-600);
            transition: color 0.2s ease;
        }

        .download-item:hover .download-btn svg {
            color: var(--white);
        }

        /* Related Products */
        .related-products {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
        }

        .related-header {
            margin-bottom: 32px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .related-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .related-card:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .related-card-image {
            aspect-ratio: 4/3;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid var(--gray-200);
            overflow: hidden;
        }

        .related-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-card:hover .related-card-image img {
            transform: scale(1.05);
        }

        .related-card-image svg {
            width: 48px;
            height: 48px;
            color: var(--gray-300);
        }

        .related-card-content {
            padding: 20px;
        }

        .related-card-title {
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .related-card-desc {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .related-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--primary);
        }

        .related-card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }

        .related-card:hover .related-card-link svg {
            transform: translateX(4px);
        }

        /* ============================================
           PRODUCTS RESPONSIVE - TABLET
           ============================================ */

        @media (min-width: 640px) {
            .products-hero {
                padding: 160px 0 80px;
            }

            .products-hero h1 {
                font-size: 64px;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-elmark-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-cta-buttons {
                flex-direction: row;
            }

            .category-hero {
                padding: 160px 0 80px;
            }

            .category-hero h1 {
                font-size: 56px;
            }

            .filter-bar {
                top: 80px;
            }

            .filter-bar-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .products-section .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-cta-buttons {
                flex-direction: row;
            }

            .applications-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-hero {
                padding: 100px 0 48px;
            }

            .product-hero .product-title {
                font-size: 44px;
            }

            .product-actions {
                flex-direction: row;
            }

            .product-actions .btn {
                width: auto;
                flex: 1;
            }

            .product-details .applications-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           PRODUCTS RESPONSIVE - DESKTOP
           ============================================ */

        @media (min-width: 1024px) {
            .products-hero {
                padding: 180px 0 100px;
            }

            .products-hero h1 {
                font-size: 80px;
            }

            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .featured-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-end;
            }

            .featured-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .why-elmark-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .why-elmark-item {
                flex-direction: column;
                text-align: center;
            }

            .why-elmark-icon {
                margin: 0 auto 16px;
            }

            .filter-bar {
                top: 112px;
            }

            .category-hero {
                padding: 180px 0 100px;
            }

            .category-hero h1 {
                font-size: 72px;
            }

            .category-hero-inner {
                flex-direction: row;
                align-items: center;
            }

            .category-hero-image {
                display: flex;
                flex: 0 0 400px;
                height: 300px;
                background: rgba(255,255,255,0.05);
                border: 1px solid rgba(255,255,255,0.1);
                align-items: center;
                justify-content: center;
            }

            .category-hero-image img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

            .category-hero-image svg {
                width: 120px;
                height: 120px;
                color: var(--primary);
                opacity: 0.5;
            }

            .products-section .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .applications-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .application-item {
                flex-direction: column;
                text-align: center;
            }

            .application-icon {
                margin: 0 auto 12px;
            }

            .category-cta-inner {
                flex-direction: row;
                text-align: left;
                align-items: center;
                justify-content: space-between;
            }

            .product-hero {
                padding: 160px 0 60px;
            }

            .product-hero-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: start;
            }

            .product-gallery-main {
                aspect-ratio: 1;
            }

            .product-thumb {
                width: 80px;
                height: 80px;
            }

            .product-hero .product-title {
                font-size: 52px;
            }

            .product-hero .product-subtitle {
                font-size: 17px;
            }

            .product-tab {
                padding: 18px 28px;
                font-size: 14px;
            }

            .product-description h3 {
                font-size: 32px;
            }

            .downloads-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .related-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .related-card:hover {
                transform: translateY(-4px);
            }
        }

        /* ============================================
           PRODUCTS RESPONSIVE - LARGE DESKTOP
           ============================================ */

        @media (min-width: 1280px) {
            .products-hero h1 {
                font-size: 96px;
            }

            .category-hero h1 {
                font-size: 80px;
            }

            .products-section .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .product-hero-grid {
                gap: 80px;
            }

            .product-hero .product-title {
                font-size: 60px;
            }
        }

        /* ============================================
           NEWS / AKTUALNOSCI - MOBILE FIRST
           ============================================ */

        .news {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
        }

        .news-header {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 40px;
        }

        .news-header-left {
            flex: 1;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .news-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .news-card:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .news-card-image {
            display: block;
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--gray-100);
        }

        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-card-image img {
            transform: scale(1.05);
        }

        .news-card-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
        }

        .news-card-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--gray-400);
        }

        .news-card-content {
            padding: 24px;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-500);
        }

        .news-card-cat {
            color: var(--primary);
        }

        .news-card-title {
            font-family: var(--font-display);
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .news-card-title a {
            transition: color 0.3s ease;
        }

        .news-card-title a:hover {
            color: var(--primary);
        }

        .news-card-excerpt {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 16px;
        }

        .news-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
            transition: gap 0.3s ease;
        }

        .news-card-link:hover {
            gap: 12px;
        }

        .news-card-link svg {
            width: 16px;
            height: 16px;
        }

        /* News Archive Page */
        .news-archive {
            min-height: 100vh;
        }

        .news-listing {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .news-grid--archive {
            gap: 32px;
        }

        .news-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .news-pagination a,
        .news-pagination span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-700);
            background: var(--white);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .news-pagination a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .news-pagination .current {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .news-pagination svg {
            width: 20px;
            height: 20px;
        }

        .news-empty {
            text-align: center;
            padding: 80px 20px;
        }

        .news-empty-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 50%;
        }

        .news-empty-icon svg {
            width: 40px;
            height: 40px;
            color: var(--gray-400);
        }

        .news-empty h2 {
            font-family: var(--font-display);
            font-size: 32px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .news-empty p {
            font-size: 16px;
            color: var(--gray-600);
        }

        /* ============================================
           NEWS RESPONSIVE - TABLET
           ============================================ */

        @media (min-width: 640px) {
            .news-header {
                flex-direction: row;
                align-items: flex-end;
                justify-content: space-between;
            }

            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-card-image {
                height: 220px;
            }
        }

        /* ============================================
           NEWS RESPONSIVE - DESKTOP
           ============================================ */

        @media (min-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .news-card-image {
                height: 240px;
            }

            .news-card-title {
                font-size: 26px;
            }
        }

        /* ============================================
           SINGLE POST PAGE
           ============================================ */

        .single-post {
            padding-bottom: 80px;
        }

        /* Post Hero */
        .post-hero {
            background: var(--gray-50);
            padding: 100px 0 60px;
        }

        .post-hero-content {
            max-width: 800px;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .post-meta time {
            color: var(--gray-600);
        }

        .post-category {
            display: inline-block;
            padding: 4px 12px;
            background: var(--primary);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
        }

        .post-title {
            font-family: var(--font-display);
            font-size: 36px;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .post-excerpt {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-600);
        }

        /* Post Content Section */
        .post-content-section {
            padding: 60px 0;
        }

        .post-layout {
            max-width: 800px;
            margin: 0 auto;
        }

        .post-featured-image {
            margin-bottom: 40px;
            border-radius: 12px;
            overflow: hidden;
        }

        .post-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .post-content {
            font-size: 17px;
            line-height: 1.8;
            color: var(--gray-700);
        }

        .post-content h2 {
            font-family: var(--font-display);
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin: 48px 0 20px;
        }

        .post-content h3 {
            font-family: var(--font-display);
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            margin: 36px 0 16px;
        }

        .post-content p {
            margin-bottom: 20px;
        }

        .post-content ul,
        .post-content ol {
            margin-bottom: 24px;
            padding-left: 24px;
        }

        .post-content li {
            margin-bottom: 8px;
        }

        .post-content blockquote {
            margin: 32px 0;
            padding: 24px 32px;
            background: var(--gray-50);
            border-left: 4px solid var(--primary);
            font-style: italic;
            color: var(--gray-700);
        }

        .post-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 24px 0;
        }

        .post-content a {
            color: var(--primary);
            text-decoration: underline;
        }

        .post-content a:hover {
            text-decoration: none;
        }

        /* Post Tags */
        .post-tags {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
        }

        .post-tags-label {
            font-weight: 600;
            color: var(--gray-700);
            font-size: 14px;
        }

        .post-tag {
            display: inline-block;
            padding: 6px 14px;
            background: var(--gray-100);
            color: var(--gray-700);
            font-size: 13px;
            border-radius: 20px;
            transition: all 0.2s ease;
        }

        .post-tag:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Post Navigation */
        .post-navigation {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
        }

        .post-nav-link {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .post-nav-link:hover {
            background: var(--gray-100);
        }

        .post-nav-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
        }

        .post-nav-label svg {
            width: 16px;
            height: 16px;
        }

        .post-nav-title {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--gray-900);
            line-height: 1.3;
        }

        .post-nav-next {
            text-align: right;
        }

        .post-nav-next .post-nav-label {
            justify-content: flex-end;
        }

        /* Related Posts */
        .related-posts {
            background: var(--gray-50);
            padding: 60px 0;
        }

        .related-posts-title {
            font-family: var(--font-display);
            font-size: 32px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 40px;
            text-align: center;
        }

        /* ============================================
           SINGLE POST RESPONSIVE - TABLET
           ============================================ */

        @media (min-width: 640px) {
            .post-title {
                font-size: 44px;
            }

            .post-navigation {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           SINGLE POST RESPONSIVE - DESKTOP
           ============================================ */

        @media (min-width: 1024px) {
            .post-hero {
                padding: 120px 0 80px;
            }

            .post-title {
                font-size: 52px;
            }

            .post-content-section {
                padding: 80px 0;
            }

            .related-posts {
                padding: 80px 0;
            }

            .related-posts-title {
                font-size: 40px;
            }
        }

        /* ============================================
           KARIERA PAGE - MOBILE FIRST
           ============================================ */

        /* Hero */
        .page-hero--kariera {
            background: linear-gradient(135deg, var(--gray-900) 0%, #1a2530 100%);
        }

        .page-hero--kariera::before {
            background: var(--primary);
            opacity: 0.1;
        }

        .page-hero--job {
            background: linear-gradient(135deg, var(--gray-900) 0%, #1a2530 100%);
            padding-bottom: 40px;
        }

        .page-hero--job::before {
            background: var(--primary);
            opacity: 0.1;
        }

        /* Career Breadcrumbs */
        .page-hero--kariera .breadcrumbs,
        .page-hero--job .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            margin-bottom: 24px;
        }

        .page-hero--kariera .breadcrumbs a,
        .page-hero--job .breadcrumbs a {
            color: rgba(255,255,255,0.6);
            transition: color 0.2s ease;
        }

        .page-hero--kariera .breadcrumbs a:hover,
        .page-hero--job .breadcrumbs a:hover {
            color: var(--primary);
        }

        .page-hero--kariera .breadcrumbs span,
        .page-hero--job .breadcrumbs span {
            color: rgba(255,255,255,0.4);
        }

        .page-hero--kariera .breadcrumbs > span:last-child,
        .page-hero--job .breadcrumbs > span:last-child {
            color: rgba(255,255,255,0.8);
        }

        .job-department-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .job-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 24px;
        }

        .job-hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .job-hero-meta-item svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }

        .job-deadline-notice {
            margin-top: 20px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.05);
            border-left: 3px solid var(--accent-orange);
            color: rgba(255,255,255,0.9);
            font-size: 14px;
        }

        .job-deadline-notice strong {
            color: var(--white);
        }

        /* Kariera Intro */
        .kariera-intro {
            padding: var(--section-gap) 0;
            background: var(--white);
        }

        .kariera-intro-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .kariera-intro-header .accent-bars {
            margin: 0 auto 16px;
        }

        .kariera-intro-text {
            max-width: 600px;
            margin: 16px auto 0;
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-600);
        }

        .kariera-benefits {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .kariera-benefit {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--gray-50);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .kariera-benefit:hover {
            background: var(--white);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }

        .kariera-benefit-icon {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            border-radius: 12px;
        }

        .kariera-benefit-icon svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        .kariera-benefit h3 {
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

        .kariera-benefit p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Job Offers Section */
        .kariera-offers {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
        }

        .kariera-offers-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .kariera-offers-header .accent-bars {
            margin: 0 auto 16px;
        }

        .kariera-offers-header .section-label {
            justify-content: center;
        }

        /* Job List */
        .job-list-wrapper {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .job-list-item {
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid var(--gray-100);
        }

        .job-list-item:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .job-list-main {
            flex: 1;
        }

        .job-list-header {
            margin-bottom: 8px;
        }

        .job-list-department {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            background: rgba(227, 6, 19, 0.08);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .job-list-title {
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-900);
            transition: color 0.2s ease;
        }

        .job-list-item:hover .job-list-title {
            color: var(--primary);
        }

        .job-list-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-600);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .job-list-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-100);
        }

        .job-list-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .job-list-location,
        .job-list-type,
        .job-list-salary {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--gray-700);
            font-weight: 500;
        }

        .job-list-location svg,
        .job-list-type svg,
        .job-list-salary svg {
            width: 16px;
            height: 16px;
            color: var(--gray-400);
        }

        .job-list-salary {
            color: var(--gray-900);
            font-weight: 600;
        }

        .job-list-salary svg {
            color: var(--primary);
        }

        .job-list-deadline {
            font-size: 12px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .job-list-deadline {
            color: var(--gray-500);
            font-size: 12px;
        }

        .job-list-arrow {
            display: none;
        }

        .job-list-arrow svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
            transition: transform 0.2s ease;
        }

        .job-list-item:hover .job-list-arrow svg {
            transform: translateX(4px);
        }

        /* No offers */
        .kariera-no-offers {
            text-align: center;
            padding: 60px 20px;
            background: var(--white);
            border-radius: 16px;
        }

        .kariera-no-offers-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 50%;
        }

        .kariera-no-offers-icon svg {
            width: 40px;
            height: 40px;
            color: var(--gray-400);
        }

        .kariera-no-offers h3 {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .kariera-no-offers p {
            color: var(--gray-600);
        }

        /* Single Job Content */
        .job-content {
            padding: var(--section-gap) 0;
            background: var(--gray-50);
        }

        .job-layout {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .job-main {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .job-chars-box,
        .job-description,
        .job-requirements,
        .job-we-offer {
            background: var(--white);
            border-radius: 16px;
            padding: 28px 24px;
        }

        .job-chars-box h3,
        .job-description h3,
        .job-requirements h3,
        .job-we-offer h3 {
            font-family: var(--font-display);
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--gray-100);
        }

        .job-chars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .job-char {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 16px;
            background: var(--gray-50);
            border-radius: 8px;
        }

        .job-char-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-500);
        }

        .job-char-value {
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .job-description-content {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-700);
        }

        .job-description-content p {
            margin-bottom: 16px;
        }

        .job-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .job-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-700);
        }

        .job-list li svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .job-list--requirements li svg {
            color: var(--primary);
        }

        .job-list--offer li svg {
            color: var(--accent-yellow);
        }

        /* Job Sidebar */
        .job-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .job-apply-box,
        .job-benefits-box,
        .job-share-box {
            background: var(--white);
            border-radius: 16px;
            padding: 28px 24px;
        }

        .job-apply-box {
            background: var(--primary);
            color: var(--white);
        }

        .job-apply-box h4 {
            font-family: var(--font-display);
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .job-apply-box p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .job-apply-box .btn {
            margin-bottom: 16px;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        .job-apply-email {
            font-size: 13px;
            text-align: center;
            opacity: 0.8;
        }

        .job-apply-email a {
            color: var(--white);
            text-decoration: underline;
        }

        .job-benefits-box h4,
        .job-share-box h4 {
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .job-benefits-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .job-benefits-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--gray-700);
        }

        .job-benefits-list li svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .job-share-links {
            display: flex;
            gap: 12px;
        }

        .job-share-link {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 8px;
            color: var(--gray-600);
            transition: all 0.2s ease;
        }

        .job-share-link:hover {
            background: var(--primary);
            color: var(--white);
        }

        .job-share-link svg {
            width: 20px;
            height: 20px;
        }

        .job-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-600);
            transition: color 0.2s ease;
        }

        .job-back-link:hover {
            color: var(--primary);
        }

        .job-back-link svg {
            width: 18px;
            height: 18px;
        }

        /* ============================================
           KARIERA PAGE - TABLET (min-width: 768px)
           ============================================ */

        @media (min-width: 768px) {
            .kariera-benefits {
                grid-template-columns: repeat(2, 1fr);
            }

            .job-list-item {
                flex-direction: row;
                align-items: stretch;
                padding: 24px 28px;
                gap: 24px;
            }

            .job-list-main {
                flex: 1;
                min-width: 0;
            }

            .job-list-excerpt {
                -webkit-line-clamp: 1;
            }

            .job-list-details {
                flex-direction: row;
                align-items: center;
                gap: 24px;
                padding-top: 0;
                border-top: none;
                border-left: 1px solid var(--gray-100);
                padding-left: 24px;
                flex-shrink: 0;
            }

            .job-list-meta {
                gap: 20px;
            }

            .job-list-deadline {
                white-space: nowrap;
            }

            .job-list-arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

            .job-chars-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ============================================
           KARIERA PAGE - DESKTOP (min-width: 1024px)
           ============================================ */

        @media (min-width: 1024px) {
            .page-hero--kariera,
            .page-hero--job {
                padding: 180px 0 100px;
            }

            .kariera-benefits {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }

            .kariera-benefit {
                flex-direction: column;
                text-align: center;
                padding: 32px 24px;
            }

            .kariera-benefit-icon {
                margin: 0 auto 16px;
            }

            .job-list-wrapper {
                max-width: 1000px;
                margin: 0 auto;
            }

            .job-list-title {
                font-size: 22px;
            }

            .job-list-item {
                padding: 28px 32px;
            }

            .job-layout {
                flex-direction: row;
                align-items: flex-start;
            }

            .job-main {
                flex: 1;
            }

            .job-sidebar {
                flex: 0 0 340px;
                position: sticky;
                top: 120px;
            }

            .job-chars-box,
            .job-description,
            .job-requirements,
            .job-we-offer {
                padding: 36px;
            }

            .job-chars-box h3,
            .job-description h3,
            .job-requirements h3,
            .job-we-offer h3 {
                font-size: 26px;
            }

            .job-chars-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ============================================
           LANGUAGE SWITCHER
           ============================================ */

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-left: 16px;
            padding-left: 16px;
            border-left: 1px solid var(--gray-600);
        }

        .lang-switcher-item {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-400);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .lang-switcher-item:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        .lang-switcher-item.is-active {
            color: var(--white);
            background: var(--primary);
        }

        .lang-switcher-flag {
            width: 16px;
            height: 12px;
            border-radius: 2px;
            object-fit: cover;
        }

        .lang-switcher-code {
            font-family: var(--font-heading);
        }

        /* Dropdown style */
        .lang-switcher--dropdown {
            position: relative;
            margin-left: 16px;
            padding-left: 16px;
            border-left: 1px solid var(--gray-600);
        }

        .lang-switcher-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-300);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
            background: transparent;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .lang-switcher-toggle:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        .lang-switcher-arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.2s ease;
        }

        .lang-switcher--dropdown:hover .lang-switcher-arrow {
            transform: rotate(180deg);
        }

        .lang-switcher-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s ease;
            z-index: 100;
        }

        .lang-switcher--dropdown:hover .lang-switcher-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-switcher-menu .lang-switcher-item {
            display: flex;
            width: 100%;
            padding: 6px 12px;
            border-radius: 0;
            justify-content: center;
        }

        .lang-switcher-menu .lang-switcher-item:first-child {
            border-radius: 6px 6px 0 0;
        }

        .lang-switcher-menu .lang-switcher-item:last-child {
            border-radius: 0 0 6px 6px;
        }

        .lang-switcher-menu .lang-switcher-item:hover {
            background: var(--gray-800);
        }

        .lang-switcher-menu .lang-switcher-item.is-active {
            background: var(--primary);
        }

        /* Mobile: hide in header-top, show in mobile menu */
        @media (max-width: 767px) {
            .header-top .lang-switcher,
            .header-top .lang-switcher--inline,
            .header-top .lang-switcher--dropdown {
                display: none;
            }
        }

        /* Mobile menu language switcher (inline style) */
        .nav-mobile-extras .lang-switcher,
        .nav-mobile-extras .lang-switcher--inline {
            margin: 16px 0 0;
            padding: 16px 0 0;
            border-left: none;
            border-top: 1px solid var(--gray-200);
            justify-content: center;
        }

        .nav-mobile-extras .lang-switcher-item {
            padding: 8px 16px;
            font-size: 14px;
            color: var(--gray-600);
        }

        .nav-mobile-extras .lang-switcher-item:hover {
            background: var(--gray-100);
            color: var(--gray-900);
        }

        .nav-mobile-extras .lang-switcher-item.is-active {
            background: var(--primary);
            color: var(--white);
        }
