/* Suppliers page — page-specific styles */
.page-suppliers {
    --yellow: #FFC107;
    --yellow-dark: #FFB300;
    --gray-lighter: #F1F3F5;
}

        .btn-cta-header {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
            font-family: inherit;
        }

        .btn-cta-header:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(229,57,53,0.4);
        }

        .mobile-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background: var(--gray-light);
        }

        .mobile-toggle svg {
            width: 26px;
            height: 26px;
            display: block;
        }

        /* ===== SIDEBAR ===== */
        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index: 1998;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .sidebar-overlay.active {
            display: block;
            opacity: 1;
        }

        .sidebar-menu {
            transform: translate3d(100%, 0, 0);
            overflow-x: hidden;
            backface-visibility: hidden;
            pointer-events: none;
            visibility: hidden;
        }

        .sidebar-menu.active {
            transform: translate3d(0, 0, 0);
            pointer-events: auto;
            visibility: visible;
        }

        .sidebar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            border-bottom: 1px solid var(--gray-light);
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 3px;
            flex-wrap: wrap;
        }

        .sidebar-logo .sl-name {
            display: flex;
            align-items: baseline;
            gap: 1px;
        }

        .sidebar-logo .sl-ya {
            font-weight: 800;
            font-size: 20px;
            color: var(--primary);
        }

        .sidebar-logo .sl-snab {
            font-weight: 800;
            font-size: 20px;
            color: var(--dark);
        }

        .sidebar-logo .sl-business {
            font-weight: 700;
            font-size: 9px;
            color: var(--white);
            background: var(--dark);
            padding: 2px 7px;
            border-radius: 7px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .sidebar-logo .sl-found {
            font-weight: 500;
            font-size: 9px;
            color: var(--dark);
            white-space: nowrap;
        }

        .sidebar-close {
            width: 36px;
            height: 36px;
            border: none;
            background: var(--gray-light);
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .sidebar-close:hover {
            background: var(--primary);
            color: white;
        }

        .sidebar-close svg {
            width: 18px;
            height: 18px;
        }

        .sidebar-nav {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--dark);
            font-size: 15px;
            font-weight: 500;
            padding: 14px 14px;
            border-radius: 12px;
            transition: var(--transition);
        }


        .sidebar-nav a .nav-icon {
            width: 26px;
            height: 26px;
            flex-shrink: 0;
        }

        .sidebar-nav a .nav-icon svg {
            width: 100%;
            height: 100%;
        }

        .sidebar-divider {
            height: 1px;
            background: var(--gray-light);
            margin: 8px 16px;
        }

        .sidebar-contact {
            padding: 16px 20px;
            border-top: 1px solid var(--gray-light);
            margin-top: 4px;
        }

        .sidebar-contact a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 0;
        }

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

        .sidebar-cta {
            padding: 16px 20px 24px;
        }

        .sidebar-cta button {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

        .sidebar-cta button:hover {
            background: var(--primary-dark);
        }

        /* ===== PANORAMA SECTION ===== */
        .panorama-section {
            padding-top: 68px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .panorama-img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 400px;
            object-fit: cover;
            object-position: center;
        }

        .panorama-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(transparent, rgba(255,255,255,0.95));
            pointer-events: none;
        }

        /* ===== HERO LOGO SECTION ===== */
        .hero-logo-section {
            background: var(--white);
            padding: 40px 24px 30px;
            text-align: center;
            position: relative;
        }

        .logo-large-wrap {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .logo-large-name {
            display: flex;
            align-items: baseline;
        }

        .logo-large-name .ll-ya {
            font-weight: 800;
            font-size: 52px;
            color: var(--primary);
            line-height: 1;
        }

        .logo-large-name .ll-snab {
            font-weight: 800;
            font-size: 52px;
            color: var(--dark);
            line-height: 1;
        }

        .logo-large-business {
            font-weight: 700;
            font-size: 16px;
            color: var(--white);
            background: var(--dark);
            padding: 5px 14px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            line-height: 1.3;
            white-space: nowrap;
        }

        .logo-large-found {
            font-weight: 500;
            font-size: 16px;
            color: var(--dark);
            line-height: 1.3;
            white-space: nowrap;
        }

        /* ===== PAGE BANNER ===== */
        .page-banner {
            background: var(--light);
            padding-bottom: 60px;
        }

        .page-banner-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px 0;
        }

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

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

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

        .breadcrumb svg {
            width: 14px;
            height: 14px;
        }

        /* ===== COMPACT TOP SECTION ===== */
        .compact-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
            margin-bottom: 0;
        }

        .compact-left .page-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 14px;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .compact-left .page-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -1.5px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .compact-left .page-desc {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--dark);
            font-weight: 500;
        }

        .features-list li .check-icon {
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .features-list li .check-icon svg {
            width: 12px;
            height: 12px;
            color: white;
        }

        .btn-become {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-family: inherit;
        }

        .btn-become:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(229,57,53,0.35);
        }

        /* ===== STATS CARD ===== */
        .stats-card {
            background: var(--white);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .stats-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .stats-card > p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 16px;
        }

        .stat-item {
            background: var(--light);
            border-radius: 14px;
            padding: 16px;
            text-align: center;
            border: 1px solid var(--gray-light);
        }

        .stat-value {
            font-size: 26px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 2px;
            line-height: 1;
        }

        .stat-value span {
            color: var(--primary);
        }

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

        .stats-extra {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            background: var(--primary-light);
            border-radius: 12px;
            border: 1px solid rgba(229,57,53,0.15);
        }

        .stats-extra-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .stats-extra-icon svg {
            width: 18px;
            height: 18px;
            color: white;
        }

        .stats-extra-text .stats-extra-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
        }

        .stats-extra-text .stats-extra-label {
            font-size: 11px;
            color: var(--gray);
        }

        /* ===== VIDEO / ABOUT PLATFORM SECTION ===== */
        .video-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .video-inner {
            max-width: 960px;
            margin: 0 auto;
        }

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

        .video-header .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .video-header .section-label::before,
        .video-header .section-label::after {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        .video-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        .video-header p {
            font-size: 15px;
            color: var(--gray);
        }

        .video-player {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--dark);
            aspect-ratio: 16/9;
            cursor: pointer;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .video-player img,
        .video-player .video-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .video-player:hover img,
        .video-player:hover .video-thumb {
            opacity: 0.5;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 0 0 0 rgba(229,57,53,0.4);
            animation: playPulse 2s ease-in-out infinite;
        }

        .video-player:hover .video-play-btn {
            transform: translate(-50%, -50%) scale(1.1);
        }

        @keyframes playPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.4); }
            50% { box-shadow: 0 0 0 18px rgba(229,57,53,0); }
        }

        .video-play-btn svg {
            width: 28px;
            height: 28px;
            color: white;
            margin-left: 3px;
        }

        .video-info {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 20px;
            padding: 18px;
            background: var(--light);
            border-radius: 14px;
            border: 1px solid var(--gray-light);
        }

        .video-info-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .video-info-avatar svg {
            width: 24px;
            height: 24px;
            color: var(--dark);
        }

        .video-info-text h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1px;
        }

        .video-info-text p {
            font-size: 12px;
            color: var(--gray);
        }

        .video-duration {
            margin-left: auto;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray);
            background: var(--white);
            padding: 5px 12px;
            border-radius: 16px;
            border: 1px solid var(--gray-light);
        }

        /* ===== SECTION TITLE WITH DASHES ===== */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .section-header .section-label::before,
        .section-header .section-label::after {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 15px;
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto;
        }

        /* ===== REGISTRATION FORM ===== */
        .reg-section {
            padding: 80px 24px;
            background: var(--light);
        }

        .reg-inner {
            max-width: 720px;
            margin: 0 auto;
        }

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

        .reg-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .reg-header p {
            font-size: 15px;
            color: var(--gray);
        }

        /* Progress Steps — равные промежутки между кружками */
        .progress-steps {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
            width: 100%;
            max-width: 640px;
            margin: 0 auto 40px;
            padding: 0 12px;
            box-sizing: border-box;
        }

        .step-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            border: 2px solid var(--gray-light);
            color: var(--gray);
            background: var(--white);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .step-circle.active {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

        .step-circle.completed {
            border-color: var(--green);
            background: var(--green);
            color: white;
        }

        .step-line {
            flex: 1 1 0;
            min-width: 10px;
            max-width: 48px;
            height: 2px;
            background: var(--gray-light);
            transition: var(--transition);
            margin-top: 17px;
            align-self: flex-start;
        }

        .step-line.completed {
            background: var(--green);
        }

        .step-label {
            font-size: 10px;
            line-height: 1.25;
            color: var(--gray);
            text-align: center;
            margin-top: 6px;
            white-space: normal;
            max-width: 4.75rem;
            hyphens: auto;
        }

        .step-label.active {
            color: var(--primary);
            font-weight: 600;
        }

        .step-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 0 0 4.75rem;
            width: 4.75rem;
            min-width: 0;
        }

        /* Form Card */
        .form-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            border: 1px solid var(--gray-light);
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-step-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .form-step-desc {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 28px;
        }

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

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            /* margin-bottom: 8px; */
        }

        .form-group label .required {
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            background: var(--light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(229,57,53,0.1);
        }

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

        .form-group .hint {
            font-size: 12px;
            color: var(--gray);
            margin-top: 6px;
        }

        /* File Upload */
        .file-upload {
            border: 2px dashed var(--gray-light);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            background: var(--light);
        }

        .file-upload:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .file-upload svg {
            width: 40px;
            height: 40px;
            color: var(--gray);
            margin-bottom: 12px;
        }

        .file-upload p {
            font-size: 14px;
            color: var(--gray);
        }

        .file-upload .upload-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
        }

        .file-upload .file-name {
            display: none;
            margin-top: 8px;
            font-size: 13px;
            color: var(--green);
            font-weight: 600;
        }

        .file-upload.has-file .file-name {
            display: block;
        }

        /* Category Checkboxes - Inline for "Other" */
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-height: 400px;
            overflow-y: auto;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            background: var(--light);
        }

        .category-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            color: var(--dark);
            border-bottom: 1px solid var(--gray-lighter);
        }

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

        .category-item:hover {
            background: var(--primary-light);
        }

        .category-item.selected {
            background: var(--primary-light);
            border-left: 3px solid var(--primary);
        }

        .category-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .category-item label {
            cursor: pointer;
            flex: 1;
            font-size: 14px;
            margin-bottom: 0;
        }

        /* Inline Other Input */
        .category-other-inline {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            padding: 14px 18px;
            border-bottom: 1px solid var(--gray-lighter);
            background: var(--light);
        }

        .category-other-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .category-other-inline input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .category-other-inline > label,
        .category-other-row label {
            font-size: 14px;
            color: var(--dark);
            cursor: pointer;
            white-space: nowrap;
        }

        .category-other-input-inline {
            display: none;
            /* padding: 10px 0 0 34px; */
        }

        .category-other-input-inline.is-visible {
            display: block;
        }

        .category-other-input-inline input {
            width: 100%;
            padding: 8px 12px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }

        .category-other-input-inline input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
        }

        .category-other-input-inline input:disabled {
            background: var(--gray-lighter);
            cursor: not-allowed;
        }

        /* Warehouse map */
        .warehouse-map-wrap {
            width: 100%;
            margin-bottom: 16px;
        }

        .warehouse-map-stage {
            position: relative;
            width: 100%;
        }

        .warehouse-map {
            width: 100%;
            height: 220px;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            display: block;
            background: var(--light);
        }

        .warehouse-map-pin {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 30px;
            height: 30px;
            margin-left: -15px;
            margin-top: -30px;
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .warehouse-map-pin.is-visible {
            opacity: 1;
            transform: scale(1);
        }

        .warehouse-map-pin::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
        }

        .warehouse-map-pin::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            left: 10px;
            top: 10px;
            background: #fff;
            border-radius: 50%;
        }

        .warehouse-map-hint {
            font-size: 12px;
            color: var(--gray);
            margin-top: 8px;
        }

        /* Range Slider with Input */
        .range-group {
            margin-bottom: 24px;
            padding: 16px;
            background: var(--light);
            border-radius: 12px;
            border: 1px solid var(--gray-light);
        }

        .range-group-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .range-group-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }

        .range-input-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .range-input {
            width: 140px;
            padding: 8px 12px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            text-align: right;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }

        .range-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
        }

        .range-slider {
            width: 100%;
            height: 6px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--gray-light);
            border-radius: 3px;
            outline: none;
            transition: var(--transition);
            margin-top: 8px;
        }

        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(229,57,53,0.3);
            transition: var(--transition);
        }

        .range-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }

        .range-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            border: none;
        }

        .range-hint {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--gray);
            margin-top: 6px;
        }

        /* Checkbox */
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 14px;
            color: var(--dark);
            cursor: pointer;
            margin-bottom: 0;
        }

        /* Navigation Buttons */
        .form-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            gap: 16px;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--light);
            color: var(--gray);
            border: 2px solid var(--gray-light);
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

        .btn-back:hover {
            border-color: var(--gray);
            color: var(--dark);
        }

        .btn-next {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--yellow);
            color: var(--dark);
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

        .btn-next:hover {
            background: var(--yellow-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255,193,7,0.4);
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(229,57,53,0.4);
        }

        /* Success Step */
        .success-step {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: successPop 0.5s ease;
        }

        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .success-step h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .success-step p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .success-step .success-details {
            background: var(--light);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
            text-align: left;
        }

        .success-step .success-details p {
            font-size: 14px;
            margin-bottom: 0;
        }

        .btn-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            text-decoration: none;
        }

        .btn-home:hover {
            background: var(--primary-dark);
        }

        /* ===== NEWS SECTION ===== */
        .news-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .news-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .news-card {
            background: var(--white);
            border: 1px solid var(--gray-light);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
        }

        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.1);
        }

        .news-card-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            background: var(--gray-light);
        }

        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .news-card-date {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255,255,255,0.95);
            padding: 5px 10px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            color: var(--dark);
            z-index: 1;
        }

        .news-card-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--primary);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 1;
        }

        .news-card-body {
            padding: 22px;
        }

        .news-card-body .news-company {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .news-card-body h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .news-card-body p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ===== BIDS SECTION ===== */
        .bids-section {
            padding: 80px 24px;
            background: var(--light);
        }

        .bids-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .bids-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 500px;
            overflow-y: auto;
            padding-right: 8px;
            scrollbar-width: thin;
            scrollbar-color: var(--gray-light) transparent;
        }

        .bids-list::-webkit-scrollbar {
            width: 6px;
        }

        .bids-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .bids-list::-webkit-scrollbar-thumb {
            background: var(--gray-light);
            border-radius: 3px;
        }

        .bids-list::-webkit-scrollbar-thumb:hover {
            background: var(--gray);
        }

        .bid-item {
            background: var(--white);
            border: 1px solid var(--gray-light);
            border-radius: 12px;
            padding: 16px 20px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 16px;
            align-items: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .bid-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 16px rgba(229,57,53,0.08);
            transform: translateY(-1px);
        }

        .bid-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .bid-icon svg {
            width: 20px;
            height: 20px;
            min-width: 20px;
            min-height: 20px;
            max-width: 20px;
            max-height: 20px;
            display: block;
            color: var(--primary);
        }

        .bid-main {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .bid-top {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .bid-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
        }

        .bid-tag {
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bid-tag.active {
            background: rgba(46,125,50,0.1);
            color: var(--green);
        }

        .bid-tag.file {
            background: rgba(21,101,192,0.1);
            color: #1565C0;
        }

        .bid-address {
            font-size: 13px;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .bid-address svg {
            width: 14px;
            height: 14px;
            min-width: 14px;
            min-height: 14px;
            max-width: 14px;
            max-height: 14px;
            flex-shrink: 0;
            display: block;
            color: var(--gray);
        }

        .btn-view svg {
            width: 14px;
            height: 14px;
            min-width: 14px;
            min-height: 14px;
            flex-shrink: 0;
            display: block;
        }

        .bid-action {
            flex-shrink: 0;
        }

        .btn-view {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--dark);
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            white-space: nowrap;
        }

        .btn-view:hover:not(.disabled) {
            background: var(--primary);
            transform: translateY(-1px);
        }

        .btn-view.disabled {
            background: var(--gray-light);
            color: var(--gray);
            cursor: not-allowed;
            opacity: 0.85;
        }

        .cta-form .cta-submit-btn {
            padding: 15px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            font-family: inherit;
        }

        .cta-form .cta-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(229, 57, 53, 0.35);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 80px 24px;
            background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(229,57,53,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-inner {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-inner h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -1.5px;
            margin-bottom: 18px;
            line-height: 1.15;
        }

        .cta-inner h2 span {
            color: var(--primary);
        }

        .cta-inner p {
            font-size: 17px;
            color: var(--gray);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto 14px;
        }

        .cta-form input {
            flex: 1;
            padding: 15px 18px;
            border: 2px solid var(--gray-light);
            background: var(--white);
            border-radius: 12px;
            color: var(--dark);
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
        }

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

        .cta-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(229,57,53,0.1);
        }

        .cta-form button {
            padding: 15px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            font-family: inherit;
        }

        .cta-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(229,57,53,0.35);
        }

        .cta-phone {
            font-size: 14px;
            color: var(--gray);
        }

        .cta-phone a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
        }

        .cta-phone a:hover {
            text-decoration: underline;
        }

        /* ===== BID DETAIL MODAL ===== */
        .bid-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .bid-modal-overlay.active {
            display: flex;
        }

        .bid-modal {
            background: white;
            border-radius: 20px;
            padding: 36px;
            max-width: 700px;
            width: 100%;
            position: relative;
            animation: modalIn 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .bid-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 34px;
            height: 34px;
            border: none;
            background: var(--gray-light);
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .bid-modal-close:hover {
            background: var(--primary);
            color: white;
        }

        .bid-modal-close svg {
            width: 16px;
            height: 16px;
        }

        .bid-modal h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
            padding-right: 40px;
        }

        .bid-modal .bid-modal-subtitle {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .bid-modal .bid-modal-info {
            background: var(--light);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .bid-modal .bid-modal-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-lighter);
            font-size: 14px;
            gap: 12px;
        }

        .bid-modal .bid-modal-info-row:last-child {
            border-bottom: none;
        }

        .bid-modal .bid-modal-info-row span:first-child {
            color: var(--gray);
            white-space: nowrap;
        }

        .bid-modal .bid-modal-info-row span:last-child {
            font-weight: 600;
            color: var(--dark);
            text-align: right;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--light);
            color: var(--dark);
            border: 2px solid var(--gray-light);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            white-space: nowrap;
        }

        .btn-download:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-map {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            white-space: nowrap;
        }

        .btn-map:hover {
            background: var(--primary-dark);
        }

        /* Items table in bid modal */
        .bid-items-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 24px;
        }

        .bid-items-table thead th {
            background: var(--light);
            padding: 12px 14px;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--gray-light);
        }

        .bid-items-table tbody td {
            padding: 12px 14px;
            font-size: 14px;
            border-bottom: 1px solid var(--gray-lighter);
            color: var(--dark);
        }

        .bid-items-table tbody tr:hover {
            background: var(--primary-light);
        }

        /* Offer form in bid modal */
        .offer-form {
            background: var(--light);
            border-radius: 12px;
            padding: 24px;
        }

        .offer-form h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .offer-form .form-group {
            margin-bottom: 14px;
        }

        .offer-form .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .offer-form .form-group input,
        .offer-form .form-group textarea {
            width: 100%;
            padding: 11px 14px;
            border: 2px solid var(--gray-light);
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }

        .offer-form .form-group input:focus,
        .offer-form .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
        }

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

        .offer-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            padding: 12px 16px;
            background: var(--white);
            border-radius: 10px;
            border: 2px solid var(--gray-light);
            cursor: pointer;
            transition: var(--transition);
        }

        .offer-checkbox:hover {
            border-color: var(--primary);
        }

        .offer-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .offer-checkbox label {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            margin: 0;
        }

        .btn-offer-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-offer-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(229,57,53,0.4);
        }

        /* ===== WAREHOUSE SELECTION MODAL ===== */
        .warehouse-modal {
            background: white;
            border-radius: 20px;
            padding: 36px;
            max-width: 600px;
            width: 100%;
            position: relative;
            animation: modalIn 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        .warehouse-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .warehouse-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
            background: var(--light);
        }

        .warehouse-item:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .warehouse-item.selected {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .warehouse-item input[type="radio"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .warehouse-item .wh-info {
            flex: 1;
        }

        .warehouse-item .wh-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }

        .warehouse-item .wh-address {
            font-size: 12px;
            color: var(--gray);
            margin-top: 2px;
        }

        .warehouse-item .btn-view-map {
            background: none;
            border: 1px solid var(--gray-light);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .warehouse-item .btn-view-map:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .warehouse-form {
            background: var(--light);
            border-radius: 12px;
            padding: 20px;
            margin-top: 16px;
        }

        .warehouse-form h5 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .warehouse-form .form-group {
            margin-bottom: 12px;
        }

        .warehouse-form .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .warehouse-form .form-group input {
            width: 100%;
            padding: 11px 14px;
            border: 2px solid var(--gray-light);
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }

        .warehouse-form .form-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
        }

        .btn-check-address {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--dark);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            margin-bottom: 12px;
        }

        .btn-check-address:hover {
            background: var(--primary);
        }

        .btn-confirm-warehouse {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-confirm-warehouse:hover {
            background: var(--primary-dark);
        }

        /* ===== FOOTER ===== */
        .footer-logo-section {
            background: var(--white);
            padding: 50px 24px 40px;
            text-align: center;
        }

        .footer-logo-wrap {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-logo-name {
            display: flex;
            align-items: baseline;
        }

        .footer-logo-name .fl-ya {
            font-weight: 800;
            font-size: 40px;
            color: var(--primary);
            line-height: 1;
        }

        .footer-logo-name .fl-snab {
            font-weight: 800;
            font-size: 40px;
            color: var(--dark);
            line-height: 1;
        }

        .footer-logo-business {
            font-weight: 700;
            font-size: 14px;
            color: var(--white);
            background: var(--dark);
            padding: 4px 12px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            line-height: 1.3;
            white-space: nowrap;
        }

        .footer-logo-found {
            font-weight: 500;
            font-size: 14px;
            color: var(--dark);
            line-height: 1.3;
            white-space: nowrap;
        }

        .footer-tagline {
            font-size: 15px;
            color: var(--gray);
            margin-top: 12px;
            font-weight: 500;
        }

        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            padding: 40px 24px 24px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            margin-top: 14px;
        }

        .footer h4 {
            color: white;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-contact a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: var(--transition);
        }

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

        /* ===== CONTACT MODAL ===== */
        .contact-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .contact-modal-overlay.active {
            display: flex;
        }

        .contact-modal {
            background: white;
            border-radius: 20px;
            padding: 48px 32px 32px;
            max-width: 480px;
            width: 100%;
            position: relative;
            animation: modalIn 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        .contact-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            border: none;
            background: var(--light);
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: var(--transition);
        }

        .contact-modal-close:hover {
            background: var(--gray-light);
        }

        .contact-modal-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .contact-modal h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
            text-align: center;
        }

        .contact-modal .contact-subtitle {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 24px;
            text-align: center;
        }

        .contact-modal .form-group {
            margin-bottom: 16px;
        }

        .contact-modal .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .contact-modal .form-group input,
        .contact-modal .form-group select,
        .contact-modal .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            background: var(--white);
            box-sizing: border-box;
        }

        .contact-modal .form-group input:focus,
        .contact-modal .form-group select:focus,
        .contact-modal .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
        }

        .contact-modal-submit {
            width: 100%;
            margin-top: 8px;
            padding: 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
        }

        .contact-modal-submit:hover {
            background: var(--primary-dark);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .compact-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

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

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .compact-left .page-title {
                font-size: 26px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .bid-item {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .bid-action {
                align-items: flex-start;
            }

            .form-card {
                padding: 28px 20px;
            }

            .reg-section {
                padding-left: 16px;
                padding-right: 16px;
            }

            .reg-header {
                margin-bottom: 28px;
            }

            .reg-header h2 {
                font-size: 22px;
                line-height: 1.2;
                padding: 0 4px;
            }

            .reg-header p {
                font-size: 14px;
            }

            .progress-steps {
                max-width: 100%;
                padding: 0 4px;
                margin-bottom: 28px;
            }

            .step-wrapper {
                flex: 0 0 3.25rem;
                width: 3.25rem;
            }

            .step-line {
                min-width: 6px;
                max-width: 32px;
                margin-top: 14px;
            }

            .step-circle {
                width: 30px;
                height: 30px;
                font-size: 11px;
            }

            .step-label {
                font-size: 8px;
                max-width: 3.25rem;
                line-height: 1.2;
            }

            .category-item {
                padding: 10px 12px;
                gap: 10px;
                font-size: 12px;
            }

            .category-item label {
                font-size: 12px;
                line-height: 1.35;
            }

            .category-item input[type="checkbox"] {
                width: 18px;
                height: 18px;
            }

            .category-list {
                max-height: 260px;
            }

            .category-other-inline {
                padding: 10px 12px;
                gap: 10px;
            }

            .category-other-inline label {
                font-size: 12px;
            }

            .category-other-input-inline input {
                font-size: 13px;
                padding: 8px 10px;
            }

            .form-step-title {
                font-size: 18px;
            }

            .form-step-desc {
                font-size: 13px;
            }

            .form-nav {
                flex-direction: column;
            }

            .form-nav .btn-back,
            .form-nav .btn-next,
            .form-nav .btn-submit {
                width: 100%;
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .page-banner-inner {
                padding: 0 16px 0;
            }

            .cta-inner h2 {
                font-size: 26px;
            }

            .cta-form {
                flex-direction: column;
            }

            .section-header h2 {
                font-size: 26px;
            }

            .video-header h2 {
                font-size: 24px;
            }

            .range-input {
                width: 100px;
            }

            .panorama-img {
                max-height: 250px;
            }

            .logo-large-name .ll-ya, .logo-large-name .ll-snab {
                font-size: 38px;
            }

            .logo-large-business {
                font-size: 12px;
                padding: 4px 10px;
            }

            .logo-large-found {
                font-size: 12px;
            }
        }

        @media (max-width: 420px) {
            .header-inner {
                padding: 0 12px;
                height: 60px;
            }

            .logo-name .logo-ya, .logo-name .logo-snab {
                font-size: 20px;
            }

            .logo-business { font-size: 8px; padding: 2px 6px; }
            .logo-found { font-size: 8px; }

            .compact-left .page-title {
                font-size: 22px;
            }

            .stat-value {
                font-size: 22px;
            }

            .form-card {
                padding: 20px 16px;
            }

            .footer-logo-name .fl-ya, .footer-logo-name .fl-snab {
                font-size: 30px;
            }

            .footer-logo-business { font-size: 11px; }
            .footer-logo-found { font-size: 11px; }

            .bid-items-table {
                font-size: 12px;
            }

            .bid-items-table thead th,
            .bid-items-table tbody td {
                padding: 8px 10px;
            }

            .bid-modal, .warehouse-modal, .contact-modal {
                padding: 24px 18px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .range-group {
                padding: 12px;
            }

            .range-input {
                width: 90px;
                font-size: 13px;
                padding: 6px 8px;
            }

            .logo-large-name .ll-ya, .logo-large-name .ll-snab {
                font-size: 30px;
            }

            .logo-large-business {
                font-size: 10px;
                padding: 3px 8px;
            }

            .logo-large-found {
                font-size: 10px;
            }

            .category-other-input-inline {
                padding-left: 34px;
            }
        }

        @media (max-width: 375px) {
            .compact-left .page-title { font-size: 20px; }
            .cta-inner h2 { font-size: 22px; }
            .footer-logo-name .fl-ya, .footer-logo-name .fl-snab { font-size: 26px; }
            .logo-large-name .ll-ya, .logo-large-name .ll-snab { font-size: 26px; }
        }

        @media (max-width: 320px) {
            .compact-left .page-title { font-size: 18px; }
            .logo-large-name .ll-ya, .logo-large-name .ll-snab { font-size: 22px; }
        }
