        :root {
            --red: #DA1A32;
            --red-dark: #b8152a;
            --yellow: #FFC857;
            --yellow-dark: #e6b34d;
            --navy: #1E3A5F;
            --navy-light: #2a4d7a;
            --cyan: #3AAFD9;
            --cyan-dark: #2d8bb3;
            --white: #FFFFFF;
            --gray-light: #F0F0F0;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-dark: #333333;
            --success: #16a34a;
            --success-light: #dcfce7;
            --warning: #ea580c;
            --warning-light: #fff7ed;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
            --shadow-lg: 0 10px 30px rgba(30, 58, 95, 0.15);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--gray-dark);
            line-height: 1.6;
        }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--navy) 0%, #152a45 100%);
            color: var(--white);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 50%; height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(58, 175, 217, 0.1) 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
        }

        .hero-content h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
        .hero-content h1 span { color: var(--yellow); }
        .hero-content p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; }

        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
        @media (max-width: 900px) { .hero-buttons { justify-content: center; } }

        .btn-primary {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
            color: var(--navy); border: none; border-radius: 30px;
            font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
            cursor: pointer; transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
            text-decoration: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(218, 26, 50, 0.4);
        }

        .btn-secondary {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 1rem 2rem;
            background: transparent; color: var(--white);
            border: 2px solid rgba(255,255,255,0.3); border-radius: 30px;
            font-size: 1rem; font-weight: 600;
            cursor: pointer; transition: all 0.3s ease; text-decoration: none;
        }

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

        .hero-image { position: relative; z-index: 1; }
        .hero-image img { width: 100%; max-width: 500px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

        @media (max-width: 900px) {
            .hero-image { display: flex; justify-content: center; }
            .hero-content h1 { font-size: 2.25rem; }
        }

        /* Main Content */
        .main-content { padding: 3rem 0; background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%); }

        .main-grid { display: grid; grid-template-columns: 1fr 420px; gap: 2rem; }
        @media (max-width: 1100px) { .main-grid { grid-template-columns: 1fr; } }

        /* Card - БЛАКИТНА верхня лінія замість червоної */
        .card {
            background: var(--white); border-radius: var(--radius);
            box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.5rem;
            border-top: 3px solid var(--cyan);
        }

        /* Card Title - БЛАКИТНА іконка */
        .card-title {
            font-size: 1.25rem; font-weight: 700; color: var(--navy);
            margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
        }

        .card-title svg { width: 24px; height: 24px; color: var(--cyan); }

        /* Mode Tabs - БЛАКИТНИЙ активний */
        .mode-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; background: var(--gray-100); padding: 4px; border-radius: 10px; }

        .mode-tab {
            flex: 1; padding: 0.75rem 1rem; border: none; background: transparent;
            border-radius: 8px; cursor: pointer; font-size: 0.95rem; font-weight: 600;
            color: var(--gray-600); transition: all 0.2s;
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
        }

        .mode-tab svg { flex-shrink: 0; transition: all 0.2s; }

        .mode-tab:hover { color: var(--navy); }
        
        /* Активний таб - БЛАКИТНИЙ */
        .mode-tab.active { background: var(--white); color: var(--cyan); box-shadow: var(--shadow); }
        .mode-tab.active svg { color: var(--cyan); }

        /* Upload Zone - БЛАКИТНИЙ акцент */
        .upload-zone {
            border: 2px dashed var(--gray-300); border-radius: var(--radius);
            padding: 2.5rem 2rem; text-align: center;
            transition: all 0.3s ease; cursor: pointer; background: var(--gray-50);
        }

        .upload-zone:hover, .upload-zone.dragover { border-color: var(--cyan); background: rgba(58, 175, 217, 0.05); }
        .upload-zone svg { width: 56px; height: 56px; color: var(--gray-400); margin-bottom: 1rem; }
        .upload-zone.dragover svg { color: var(--cyan); }
        .upload-zone h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
        .upload-zone p { color: var(--gray-500); font-size: 0.9rem; }

        /* Кнопка Browse - БЛАКИТНА */
        .upload-zone .btn-browse {
            display: inline-block; margin-top: 1rem; padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
            color: white; border-radius: 8px; font-weight: 600; transition: all 0.3s;
        }

        .upload-zone:hover .btn-browse { box-shadow: 0 6px 20px rgba(58, 175, 217, 0.3); }
        #file-input { display: none; }

        /* Manual Input Grid */
        .format-row-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.5rem; margin-top: 1rem; }
        .format-row-label:first-of-type { margin-top: 0; }
        .format-inputs { display: grid; gap: 0.75rem; margin-bottom: 1rem; }
        .format-inputs-row1 { grid-template-columns: repeat(4, 1fr); }
        .format-inputs-row2 { grid-template-columns: repeat(6, 1fr); }
        @media (max-width: 768px) {
            .format-inputs-row1 { grid-template-columns: repeat(2, 1fr); }
            .format-inputs-row2 { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 480px) {
            .format-inputs-row1, .format-inputs-row2 { grid-template-columns: repeat(2, 1fr); }
        }
        .format-input-group { text-align: center; }
        .format-input-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
        .format-input-group input { width: 100%; padding: 0.6rem; border: 2px solid var(--gray-200); border-radius: 8px; text-align: center; font-size: 1rem; font-weight: 600; transition: border-color 0.2s; }
        .format-input-group input:focus { outline: none; border-color: var(--cyan); }

        .custom-formats { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }

        .custom-format-item {
            display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem;
            background: var(--gray-50); border-radius: 8px; margin-bottom: 0.5rem; flex-wrap: wrap;
        }

        .custom-format-item input { width: 80px; padding: 0.5rem; border: 1px solid var(--gray-300); border-radius: 6px; text-align: center; font-size: 0.9rem; }
        .custom-format-item input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(58, 175, 217, 0.1); }
        .custom-format-item span { color: var(--gray-500); font-size: 0.9rem; }
        .custom-format-item .area { color: var(--cyan); font-weight: 600; }
        .custom-format-item .price { color: var(--success); font-weight: 700; margin-left: auto; }
        .custom-format-item .remove-btn { background: none; border: none; color: var(--gray-400); cursor: pointer; padding: 0.25rem; font-size: 1.1rem; }
        .custom-format-item .remove-btn:hover { color: var(--red); }

        /* Btn Add Custom - БЛАКИТНИЙ акцент */
        .btn-add-custom {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.6rem 1rem; background: var(--gray-100);
            border: 2px dashed var(--gray-300); border-radius: 8px;
            color: var(--gray-600); font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
        }

        .btn-add-custom:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(58, 175, 217, 0.05); }

        /* File List */
        .file-list { margin-top: 1rem; }
        .file-list-empty { text-align: center; padding: 1.5rem; color: var(--gray-400); }

        /* File Item - БЛАКИТНА рамка замість червоної */
        .file-item {
            display: grid; grid-template-columns: auto 1fr auto auto;
            gap: 0.75rem; align-items: center; padding: 0.875rem;
            background: var(--gray-50); border-radius: 8px; margin-bottom: 0.5rem;
            transition: all 0.2s; border-left: 3px solid var(--cyan);
        }

        .file-item:hover { background: var(--gray-100); }
        
        /* Size override dropdown */
        .file-size-override { display: flex; align-items: center; }
        .size-override-select {
            font-size: 0.8rem;
            padding: 0.4rem 0.5rem;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            background: var(--white);
            color: var(--gray-700);
            cursor: pointer;
            transition: all 0.2s;
            min-width: 130px;
            font-family: 'Inter', sans-serif;
        }
        .size-override-select:hover { border-color: var(--cyan); }
        .size-override-select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(58, 175, 217, 0.2); }
        .size-override-select option { padding: 0.3rem; }
        
        /* File Icon - БЛАКИТНИЙ */
        .file-icon { 
            width: 40px; height: 40px; 
            background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%); 
            border-radius: 8px; display: flex; align-items: center; justify-content: center; 
        }
        .file-icon svg { width: 24px; height: 24px; color: var(--white); }
        .file-info { min-width: 0; }
        .file-name { font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.95rem; }
        .file-meta { font-size: 0.8rem; color: var(--gray-500); display: flex; gap: 0.75rem; margin-top: 0.15rem; flex-wrap: wrap; }
        
        /* File Remove - залишається ЧЕРВОНИЙ (видалення) */
        .file-remove { background: none; border: none; color: var(--gray-400); cursor: pointer; padding: 0.35rem; border-radius: 6px; transition: all 0.2s; }
        .file-remove:hover { background: rgba(218, 26, 50, 0.1); color: var(--red); }

        /* Copies selector - ЖОВТИЙ акцент */
        .copies-selector {
            display: flex; align-items: center; gap: 1rem; padding: 1rem;
            background: linear-gradient(135deg, rgba(255, 200, 87, 0.15) 0%, rgba(58, 175, 217, 0.1) 100%);
            border-radius: 8px; margin-top: 1rem; flex-wrap: wrap; border-left: 3px solid var(--yellow);
        }

        .copies-selector label { font-weight: 600; color: var(--navy); }
        .copies-selector input { width: 80px; padding: 0.5rem; border: 2px solid var(--yellow); border-radius: 6px; text-align: center; font-size: 1.1rem; font-weight: 700; }
        .copies-selector input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.3); }
        .copies-info { color: var(--gray-600); font-size: 0.9rem; }

        /* Calculator Options */
        .option-group { margin-bottom: 1.5rem; }
        .option-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-size: 0.95rem; }
        .option-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

        /* Option Buttons - ЖОВТИЙ активний */
        .option-btn {
            padding: 0.625rem 1rem; border: 2px solid var(--gray-200); background: white;
            border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600;
            color: var(--gray-600); transition: all 0.2s; flex: 1; min-width: 100px; text-align: center;
        }

        .option-btn:hover { border-color: var(--cyan); color: var(--cyan); }
        
        /* Активна кнопка - ЖОВТИЙ */
        .option-btn.active { 
            background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%); 
            border-color: var(--yellow); 
            color: var(--navy);
            font-weight: 700;
        }
        .option-btn:disabled { opacity: 0.5; cursor: not-allowed; }

        .checkbox-group { display: flex; flex-direction: column; gap: 0.75rem; }

        .checkbox-item {
            display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem;
            background: var(--gray-50); border-radius: 8px; cursor: pointer; transition: background 0.2s;
        }

        .checkbox-item:hover { background: var(--gray-100); }
        .checkbox-item.disabled { opacity: 0.5; cursor: not-allowed; }
        .checkbox-item input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--cyan); }
        .checkbox-item label { flex: 1; cursor: pointer; font-size: 0.95rem; font-weight: 500; }
        .checkbox-item .note { font-size: 0.8rem; color: var(--gray-500); font-style: italic; }

        .custom-select { width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 0.95rem; color: var(--gray-700); background: white; cursor: pointer; transition: border-color 0.2s; }
        .custom-select:focus { outline: none; border-color: var(--cyan); }

        /* Service Selector - БЛАКИТНИЙ активний */
        .service-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; background: var(--gray-100); padding: 0.375rem; border-radius: 10px; }
        .service-tab { flex: 1; padding: 0.75rem 0.5rem; border: none; background: transparent; border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--gray-600); transition: all 0.2s; text-align: center; white-space: nowrap; display: flex; align-items: center; justify-content: center; }
        .service-tab:hover { color: var(--navy); }
        .service-tab.active { background: var(--white); color: var(--cyan); box-shadow: var(--shadow); }

        /* Summary Card */
        .summary-card { background: linear-gradient(135deg, var(--navy) 0%, #152a45 100%); color: white; position: sticky; top: 1rem; }
        .summary-card .card-title { color: white; border-top: none; }
        .summary-card .card-title svg { color: var(--yellow); }

        .summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
        .summary-row:last-child { border-bottom: none; }
        .summary-row .label { color: rgba(255,255,255,0.7); }
        .summary-row .value { font-weight: 600; }

        /* Pricing options */
        .pricing-options { margin-top: 1.5rem; padding-top: 1rem; border-top: 2px solid rgba(255,255,255,0.2); }
        .pricing-options h4 { font-size: 1rem; margin-bottom: 1rem; color: rgba(255,255,255,0.9); }

        .price-option {
            display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem;
            background: rgba(255,255,255,0.1); border-radius: 8px; margin-bottom: 0.5rem;
            cursor: pointer; transition: all 0.2s;
        }

        .price-option:hover { background: rgba(255,255,255,0.15); }
        .price-option.selected { background: rgba(255, 200, 87, 0.2); box-shadow: 0 0 0 2px var(--yellow); }
        .price-option input[type="radio"] { width: 18px; height: 18px; accent-color: var(--yellow); }
        .price-option-info { flex: 1; }
        .price-option-label { font-weight: 600; font-size: 0.95rem; }
        .price-option-time { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
        .price-option-value { font-size: 1.25rem; font-weight: 700; color: var(--yellow); }

        /* Order Button - ЖОВТИЙ */
        .btn-order {
            width: 100%; padding: 1rem; margin-top: 1.5rem;
            background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
            color: var(--navy); border: none; border-radius: 10px;
            font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
            cursor: pointer; transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
        }

        .btn-order:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 200, 87, 0.5); }
        .btn-order:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        /* Bind options */
        .bind-options { margin-left: 2rem; margin-top: 0.5rem; }
        .bind-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; background: var(--gray-100); border-radius: 6px; margin-bottom: 0.5rem; }
        .bind-option input[type="radio"] { accent-color: var(--cyan); }
        .bind-option label { font-size: 0.9rem; cursor: pointer; }
        .bind-option .note { font-size: 0.8rem; color: var(--gray-500); }

        .bind-mode-options { margin-left: 2rem; margin-top: 0.5rem; padding: 0.75rem; background: var(--warning-light); border-radius: 8px; border-left: 3px solid var(--warning); }
        .bind-mode-options .bind-mode-title { font-size: 0.85rem; font-weight: 600; color: var(--warning); margin-bottom: 0.5rem; }
        .bind-mode-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0; }
        .bind-mode-option label { font-size: 0.9rem; cursor: pointer; }
        .bind-mode-option input[type="radio"] { accent-color: var(--cyan); }

        .auto-fold-notice { margin-left: 2rem; margin-top: 0.5rem; padding: 0.5rem 0.75rem; background: var(--success-light); border-radius: 6px; font-size: 0.85rem; color: var(--success); border-left: 3px solid var(--success); }

        /* Info Section */
        .info-section { 
            padding: 4rem 0;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--white); 
        }

        .section-title { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem; position: relative; padding-bottom: 1rem; }
        .section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: linear-gradient(90deg, var(--cyan), var(--yellow)); border-radius: 2px; }

        .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
        @media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

        .info-text { font-size: 1.05rem; color: var(--gray-700); }
        .info-text p { margin-bottom: 1rem; }
        .info-text ol { padding-left: 1.5rem; }
        .info-text li { margin-bottom: 1rem; }
        .info-text strong { color: var(--navy); }
        .info-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }

        /* Features Cards - БЛАКИТНА верхня лінія */
        .features-section { padding: 3rem 0; background: var(--gray-light); }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

        .feature-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: all 0.3s; border-top: 4px solid var(--cyan); }
        .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .feature-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
        .feature-card p { color: var(--gray-600); font-size: 0.95rem; }

        /* Format Table */
        .format-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
        .format-table th, .format-table td { padding: 0.4rem 0.5rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .format-table th { font-weight: 600; color: var(--gray-500); }

        /* Formats Reference Block */
        .formats-reference {
            max-width: 800px; margin: 2rem auto; padding: 1.5rem 2rem;
            background: var(--gray-50); border-radius: var(--radius);
            text-align: center;
        }
        .formats-reference-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
        .formats-reference-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
        .format-ref-item { display: flex; flex-direction: column; align-items: center; }
        .format-ref-item .format-name { font-weight: 700; color: var(--cyan); font-size: 1.1rem; }
        .format-ref-item .format-size { font-size: 0.85rem; color: var(--gray-500); }

        /* Price Tables Section - БЛАКИТНА верхня лінія */
        .price-tables-section {
            padding: 4rem 0;
            background: var(--white);
        }

        .price-tables-section .container {
            max-width: 1200px;
        }

        .price-table-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-top: 4px solid var(--cyan);
        }

        .price-table-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .price-table-title svg {
            width: 24px;
            height: 24px;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .price-table-note {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 1rem;
        }

        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 600px;
        }

        .price-table th,
        .price-table td {
            padding: 0.75rem 0.5rem;
            text-align: center;
            border-bottom: 1px solid var(--gray-200);
        }

        .price-table th {
            background: var(--gray-100);
            font-weight: 600;
            color: var(--navy);
            font-size: 0.85rem;
        }

        .price-table th:first-child,
        .price-table td:first-child {
            text-align: center;
            width: 60px;
        }

        .price-table th:nth-child(2),
        .price-table td:nth-child(2) {
            text-align: center;
            width: 60px;
        }

        .price-table tbody tr:hover {
            background-color: rgba(58, 175, 217, 0.05);
        }

        .price-table .row-highlight {
            background-color: var(--gray-50);
        }

        .price-table .row-highlight:hover {
            background-color: rgba(58, 175, 217, 0.08);
        }

        .price-table td strong {
            color: var(--cyan);
            font-weight: 700;
        }

        .additional-prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .additional-price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            background: var(--gray-50);
            border-radius: 8px;
            border-left: 3px solid var(--cyan);
        }

        .additional-price-label {
            font-size: 0.9rem;
            color: var(--gray-700);
        }

        .additional-price-value {
            font-weight: 700;
            color: var(--navy);
        }

        /* FAQ Section - БЛАКИТНІ акценти */
        .faq-section {
            padding: 4rem 0;
            background: var(--gray-light);
        }

        .faq-section .container {
            max-width: 1200px;
        }

        .faq-group {
            margin-bottom: 2rem;
        }

        .faq-group-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--cyan);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--cyan);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .faq-group-title svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .faq-item {
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 0.75rem;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .faq-question {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--white);
            border: none;
            text-align: left;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--gray-50);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.25rem;
            color: var(--cyan);
            transition: transform 0.2s;
        }

        .faq-item.active .faq-question::after {
            content: '−';
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 1rem 1.25rem 1rem;
            font-size: 0.9rem;
            color: var(--gray-700);
            line-height: 1.6;
        }

        .faq-answer-content ul {
            margin: 0.5rem 0;
            padding-left: 1.25rem;
        }

        .faq-answer-content li {
            margin-bottom: 0.25rem;
        }

        @media (max-width: 768px) {
            .price-tables-section { padding: 2rem 0; }
            .price-table-card { padding: 1rem; }
            .price-table { font-size: 0.8rem; }
            .price-table th, .price-table td { padding: 0.5rem 0.35rem; }
            .additional-prices-grid { grid-template-columns: 1fr; }
            .faq-section { padding: 2rem 0; }
        }

        /* Conditional sections */
        .scan-options, .copy-options { display: none; }
        .scan-options.active, .copy-options.active { display: block; }
        .upload-mode, .manual-mode { display: none; }
        .upload-mode.active, .manual-mode.active { display: block; }

        /* Delivery Section - БЛАКИТНИЙ верхній бордер */
        .delivery-section {
            display: none;
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: var(--shadow-lg);
            border-top: 4px solid var(--cyan);
        }
        .delivery-section.active { display: block; }
        .delivery-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
        
        .delivery-options { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
        @media (max-width: 600px) { .delivery-options { flex-direction: column; } }
        
        /* Delivery Option - БЛАКИТНИЙ акцент */
        .delivery-option {
            flex: 1; padding: 1.25rem; border: 2px solid var(--gray-200); border-radius: 12px;
            cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; text-align: center;
        }
        .delivery-option:hover { border-color: var(--cyan); }
        .delivery-option.active { border-color: var(--cyan); background: rgba(58, 175, 217, 0.05); }
        .delivery-option-icon { width: 48px; height: 48px; margin-bottom: 0.75rem; }
        .delivery-option-icon svg { width: 100%; height: 100%; fill: var(--navy); }
        .delivery-option.active .delivery-option-icon svg { fill: var(--cyan); }
        .delivery-option-name { font-weight: 600; color: var(--navy); font-size: 1.05rem; }
        .delivery-option-desc { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.25rem; line-height: 1.4; }

        .pickup-form, .novaposhta-form { display: none; margin-top: 1.5rem; padding: 1.5rem; background: var(--gray-50); border-radius: 12px; }
        .pickup-form.active, .novaposhta-form.active { display: block; }
        .pickup-form-title, .novaposhta-form-title { font-weight: 600; color: var(--navy); margin-bottom: 1rem; font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; }
        .novaposhta-form-title svg { width: 24px; height: 24px; fill: var(--cyan); }

        /* Specific styles for NP form inputs */
        .novaposhta-form .np-form-group { margin-bottom: 1rem; position: relative; }
        .novaposhta-form .np-form-group label { display: block; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; font-size: 0.9rem; }
        .novaposhta-form .np-form-group label .required { color: var(--red); }
        .novaposhta-form .np-form-group input[type="text"],
        .novaposhta-form .np-form-group input[type="tel"],
        .novaposhta-form .np-form-group input[type="email"] { 
            width: 100%; 
            padding: 0.75rem 1rem; 
            border: 2px solid var(--gray-200); 
            border-radius: 8px; 
            font-size: 1rem; 
            transition: border-color 0.2s; 
            box-sizing: border-box;
            background: white;
        }
        .novaposhta-form .np-form-group input:focus { outline: none; border-color: var(--cyan); }
        .novaposhta-form .np-form-group input:disabled { background: var(--gray-100); cursor: not-allowed; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
        @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; font-size: 0.9rem; }
        .form-group .required { color: var(--red); }
        .form-group input, .form-group select, .form-group textarea { 
            width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--gray-200); 
            border-radius: 8px; font-size: 1rem; transition: border-color 0.2s; 
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cyan); }

        .np-loader { position: absolute; right: 12px; top: 38px; width: 20px; height: 20px; border: 2px solid var(--gray-200); border-top-color: var(--cyan); border-radius: 50%; animation: spin 0.8s linear infinite; display: none; }
        .np-loader.active { display: block; }
        .np-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid var(--gray-200); border-radius: 8px; max-height: 200px; overflow-y: auto; z-index: 100; display: none; box-shadow: var(--shadow); }
        .np-suggestions.active { display: block; }
        .np-suggestion-item { padding: 0.75rem 1rem; cursor: pointer; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; }
        .np-suggestion-item:hover { background: var(--gray-50); }
        .np-suggestion-item:last-child { border-bottom: none; }

        /* NP Tabs - БЛАКИТНИЙ активний */
        .np-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; background: var(--gray-100); padding: 0.25rem; border-radius: 8px; }
        .np-tab { flex: 1; padding: 0.6rem 1rem; border: none; background: transparent; border-radius: 6px; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--gray-600); transition: all 0.2s; text-align: center; }
        .np-tab:hover { color: var(--navy); }
        .np-tab.active { background: white; color: var(--cyan); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

        .np-selected-warehouse { display: none; background: rgba(122, 183, 43, 0.1); padding: 1rem; border-radius: 8px; margin-top: 0.5rem; border-left: 3px solid var(--success); }
        .np-selected-warehouse.active { display: block; }
        .np-warehouse-title { font-size: 0.8rem; color: var(--success); margin-bottom: 0.25rem; }
        .np-warehouse-address { font-weight: 600; color: var(--navy); }

        .np-info { display: flex; gap: 0.75rem; padding: 1rem; background: rgba(58, 175, 217, 0.1); border-radius: 8px; margin: 1rem 0; }
        .np-info svg { width: 20px; height: 20px; fill: var(--cyan); flex-shrink: 0; margin-top: 2px; }
        .np-info-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }

        /* Pay Button - ЖОВТИЙ */
        .pay-btn {
            width: 100%; padding: 1rem 2rem; margin-top: 1rem;
            background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
            border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 700; color: var(--navy);
            cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
        }
        .pay-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4); }
        .pay-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .pay-btn svg { width: 24px; height: 24px; }

        .loading-spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid var(--gray-200); border-top-color: var(--navy); border-radius: 50%; animation: spin 1s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Responsive */
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            .hero-content h1 { font-size: 2rem; }
            .format-inputs { grid-template-columns: repeat(2, 1fr); }
            .file-item { 
                grid-template-columns: auto 1fr auto; 
                grid-template-rows: auto auto;
            }
            .file-size-override { 
                grid-column: 1 / -1; 
            }
            .size-override-select { width: 100%; }
        }
        
.print-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
}

.gallery-title {
  font-size: 26px;
  font-weight: 700;
  color: #1f3b64;
  margin-bottom: 28px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-grid figure {
  background: #f6f6f6;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  font-size: 14px;
  color: #2e2e2e;
  text-align: center;
  background: #ffffff;
}

/* адаптив */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

        /* CTA Button - ЧЕРВОНИЙ (головний заклик до дії) */
        .services-cta {
            text-align: center;
            margin: 2rem 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(218, 26, 50, 0.35);
        }

        .cta-button svg {
            width: 22px;
            height: 22px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
            color: var(--navy);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 200, 87, 0.4);
        }

        .cta-button:hover svg {
            transform: translateY(-2px);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }
        

.other-services-section {
    padding: 50px 0 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.other-services-section .section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

#otherPrintSubcategories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Subcategory Card - БЛАКИТНИЙ hover */
.subcategory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
    transition: all 0.3s ease;
}

.subcategory-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 12px 32px rgba(58, 175, 217, 0.2);
}

.subcategory-card:hover .subcategory-icon {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
}

.subcategory-card:hover .subcategory-icon svg .st0 {
    fill: var(--white);
}

.subcategory-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.subcategory-icon svg {
    width: 36px;
    height: 36px;
}

.subcategory-icon svg .st0 {
    fill: var(--navy);
    transition: fill 0.3s ease;
}

.subcategory-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* Responsive subcategories */
@media (max-width: 900px) {
    #otherPrintSubcategories {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    #otherPrintSubcategories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 16px;
        margin: 40px auto;
    }
    
    .subcategory-card {
        padding: 18px 12px;
    }
    
    .subcategory-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 10px;
    }
    
    .subcategory-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .subcategory-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    #otherPrintSubcategories {
        grid-template-columns: repeat(2, 1fr);
    }
}
.fold-options-group,
.bind-options-group {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.sub-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--cyan);
}

.radio-option label {
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-option.disabled {
    opacity: 0.5;
    pointer-events: none;
}
        
        /* Нові стилі для послуг */
.service-option-group {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.service-option-title {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.service-radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.service-radio-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-radio-item input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--cyan);
}

.service-radio-item label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.service-radio-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.service-radio-item .note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-left: 0.3rem;
}

.bind-type-options {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

/* Коментар */
.comment-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

/* Адаптив для мобільних */
@media (max-width: 600px) {
    .service-radio-options {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    width: auto;
    min-width: 300px;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Warning - як bind-mode-options */
.toast-warning {
    background: var(--warning-light);
    border-left: 4px solid var(--warning);
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.2);
}

.toast-warning .toast-icon svg {
    color: var(--warning);
}

/* Error - ЧЕРВОНИЙ (важливі помилки) */
.toast-error {
    background: #fef2f2;
    border-left: 4px solid var(--red);
    box-shadow: 0 8px 30px rgba(218, 26, 50, 0.2);
}

.toast-error .toast-icon svg {
    color: var(--red);
}

/* Success - як auto-fold-notice */
.toast-success {
    background: var(--success-light);
    border-left: 4px solid var(--success);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.2);
}

.toast-success .toast-icon svg {
    color: var(--success);
}

/* Info - як np-info */
.toast-info {
    background: rgba(58, 175, 217, 0.1);
    border-left: 4px solid var(--cyan);
    box-shadow: 0 8px 30px rgba(58, 175, 217, 0.2);
}

.toast-info .toast-icon svg {
    color: var(--cyan);
}

.toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0 0 0 12px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--gray-700);
}

 