@font-face {
	font-family: 'PT Sans';
	src: url('/shrifty/PT-Sans-Regular.woff2') format('woff2'),url('/shrifty/PT-Sans-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'PT Sans';
	src: url('/shrifty/PT-Sans-Italic.woff2') format('woff2'),url('/shrifty/PT-Sans-Italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'PT Sans';
	src: url('/shrifty/PT-Sans-Bold.woff2') format('woff2'),url('/shrifty/PT-Sans-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'PT Sans Caption';
	src: url('/shrifty/PT-Sans-Caption-Regular.woff2') format('woff2'),url('/shrifty/PT-Sans-Caption-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'PT Sans Caption';
	src: url('/shrifty/PT-Sans-Caption-Bold.woff2') format('woff2'),url('/shrifty/PT-Sans-Caption-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

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

html {
	font-size: 100%;
}

body {
	font-family: 'PT Sans';
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	color: #264653;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: #3a86ff;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #2a76ef;
	text-decoration: underline;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 16px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

nav a {
	font-family: 'PT Sans Caption';
	color: #ffffff;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 6px;
	transition: all 0.25s ease;
	font-size: 1rem;
}

nav a:hover {
	text-decoration: none;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'PT Sans Caption';
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 1.5rem;
}

h2 {
	font-size: 1.25rem;
}

h3 {
	font-size: 1rem;
}

button, input, textarea, select {
	font-family: 'PT Sans';
	font-size: inherit;
}

p {
	hyphens: auto;
	text-rendering: optimizeLegibility;
}

header {
	background: #3a86ff;
	color: #ffffff;
	padding: 18px 0;
	margin-bottom: 10px;
}

footer {
	background: #264653;
	color: #ffffff;
	padding: 20px 0;
	text-align: center;
	margin-top: 10px;
}

.container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 15px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.logo-img {
	height: 56px;
	width: auto;
	max-width: 56px;
	object-fit: contain;
}

.logo-text h1 {
	font-family: 'PT Sans Caption';
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 4px;
}

.logo-text .tagline {
	font-size: 1rem;
	opacity: 0.95;
	font-weight: 400;
}

.footer-content {
	padding: 20px 0;
}

.copyright {
	font-size: 1rem;
	color: #ffffff;
	padding: 15px 0;
	font-weight: 400;
	opacity: 0.9;
}

#cookie-notification {
	position: fixed;
	box-sizing: border-box;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 950px;
	background: #264653;
	color: #ffffff;
	border-radius: 8px;
	padding: 20px 25px;
	z-index: 10000;
	display: none;
}

.cookie-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	flex-wrap: wrap;
}

.cookie-text {
	flex: 1;
	min-width: 300px;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.cookie-btn {
	padding: 12px 30px;
	background: #3a86ff;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.cookie-btn:hover {
	background: #2a76ef;
	transform: translateY(-1px);
}

.content-1 {
	max-width: 980px;
	margin: 0 auto;
	text-align: justify;
}

.content-1 h1 {
	text-align: center;
}

.content-1 h3 {
	margin-top: 1rem;
}

.content-1 h4 {
	margin-top: 1rem;
	font-size: 0.95rem;
}

.content-1 section {
	margin-bottom: 1rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
}

.blocks-1 {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.blocks-1-small {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.blocks-1-medium {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.block-1, .block-2 {
	padding: 0 1rem 1rem 1rem;
	background: #ffffff;
	border-radius: 8px;
	border-left: 4px solid #3a86ff;
}

.block-1-no-bottom {
	padding: 0 1rem;
}

.block-1 a {
	color: #264653;
	text-decoration: none;
	display: block;
}

.block-1 a:hover {
	color: #3a86ff;
}

.block-1 p {
	text-align: left;
}

.block-2 p {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 4px;
	white-space: nowrap;
}

.appeal {
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.price-intro {
	text-align: center;
	color: #666;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.price-blocks {
	display: grid;
	gap: 1rem;
}

.price-blocks-wide {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-blocks-narrow {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.price-block {
	background: #ffffff;
	padding: 1.5rem;
	border-radius: 8px;
	border: 2px solid #e9ecef;
	position: relative;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price-block.popular {
	border-color: #3a86ff;
	box-shadow: 0 5px 15px rgba(58, 134, 255, 0.2);
}

.price-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #3a86ff;
	color: #ffffff;
	padding: 4px 15px;
	border-radius: 8px;
	font-size: 0.85rem;
}

.price-header {
	margin-bottom: 1rem;
}

.price-header h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.3rem;
}

.price-cash {
	font-size: 2.2rem;
	font-weight: bold;
	color: #3a86ff;
	line-height: 1;
}

.price-unit {
	font-size: 1rem;
	color: #264653;
	margin-left: 3px;
}

.price-block p {
	line-height: 1.5;
	margin-bottom: 1rem;
}

.price-note {
	font-size: 0.9rem;
	padding-top: 0.5rem;
	border-top: 1px dashed #e9ecef;
}

.price-note-total {
	background: #e7f1ff;
	padding: 1rem;
	border-radius: 8px;
	border-left: 4px solid #3a86ff;
	margin-top: 1rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.price-note-total p {
	margin: 0;
	max-width: 100%;
}

.price-note-total p:last-child {
	margin-bottom: 0;
}

.price-note-total a {
	color: #2a76ef;
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
}

.price-note-total a:hover {
	color: #2a76ef;
	border-bottom-color: #2a76ef;
	text-decoration: none;
}

.action-buttons-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.action-buttons-row-two {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.action-buttons-row-two .action-btn {
	flex: 1;
	max-width: 295px;
}

.action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1.5rem 1rem;
	background: #3a86ff;
	border: 2px solid #3a86ff;
	border-radius: 8px;
	text-decoration: none;
	color: #ffffff;
	transition: all 0.3s ease;
	text-align: center;
	height: 100%;
}

.action-btn:hover {
	background: #2667d6;
	border-color: #2667d6;
	transform: translateY(-5px);
	background: linear-gradient(135deg, #3a86ff 0%, #2667d6 100%);
	box-shadow: 0 10px 20px rgba(58, 134, 255, 0.25);
}

.btn-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.btn-text strong {
	display: block;
	font-size: 1.1rem;
	line-height: 1.3;
}

.btn-text a,a:hover {
	color: #ffffff;
	text-decoration: none;
}

.step {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.step-number {
	background: #3a86ff;
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.step-content h3 {
	margin-top: 0;
	margin-bottom: 0;
}

.step-content p {
	margin-bottom: 1rem;
}

.step-content a {
	color: #2a76ef;
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
}

.step-content a:hover {
	border-bottom-color: #2a76ef;
	text-decoration: none;
}

.step-content ul {
	padding-left: 20px;
	margin: 10px 0;
	list-style-position: outside;
}

.step-content li {
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.page-nav-card {
	display: flex;
	align-items: center;
	gap: 12px;
	width: auto;
	background: #f8f9fa;
	border-left: 4px solid #2a76ef;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.page-nav-card:hover {
	background: #e7f1ff;
	box-shadow: 0 4px 12px rgba(42, 118, 239, 0.1);
	transform: translateY(-1px);
	text-decoration: none;
	color: #1a56cf;
}

.page-nav-card span {
	font-size: 1.3rem;
	transition: transform 0.2s ease;
}

.page-nav-card:hover span {
	transform: translateX(-3px);
}

.page-nav-card small {
	color: #264653;
}

.price-option {
	position: relative;
}

.price-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.price-option label {
	display: block;
	background: #ffffff;
	padding: 1rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	height: 100%;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.price-option input[type="radio"]:checked + label {
	border-color: #3a86ff;
	background: #e7f1ff;
	box-shadow: 0 5px 15px rgba(58, 134, 255, 0.15);
}

.price-option label:hover {
	border-color: #3a86ff;
}

.option-title {
	display: block;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.option-price {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	color: #3a86ff;
	margin-bottom: 0.25rem;
}

.option-price small {
	font-size: 0.9rem;
}

.option-note {
	display: block;
	font-size: 0.85rem;
}

.option-discount {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #ff6b6b;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
}

.custom-count {
	background: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
}

.custom-count label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.custom-count input {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.custom-count input:focus {
	border-color: #3a86ff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.custom-calc {
	text-align: center;
	font-size: 1.2rem;
	color: #3a86ff;
	font-weight: 600;
	padding: 0.5rem;
	background: #f8f9fa;
	border-radius: 8px;
}

.custom-calc small {
	display: block;
	font-size: 0.9rem;
	color: #264653;
	margin-top: 0.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	padding: 0.75rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3a86ff;
}

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

.form-total {
	background: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	border: 2px solid #e9ecef;
}

.total-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.total-line:last-child {
	font-size: 1.3rem;
	font-weight: 600;
	color: #3a86ff;
	border-top: 1px solid #e9ecef;
	padding-top: 0.5rem;
	margin-bottom: 0;
}

.payment-button {
	background: #3a86ff;
	color: #ffffff;
	border: none;
	padding: 1rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	width: 100%;
}

.payment-button:hover {
	background: #2667d6;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(58, 134, 255, 0.2);
}

.payment-button:disabled {
	opacity: 0.8;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

.payment-button.success {
	background: #28a745 !important;
}

.qr-container {
	display: grid;
	grid-template-columns: 206px 2fr;
	gap: 1rem;
	align-items: stretch;
}

.qr-code {
	background: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	min-height: 175px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 2px solid #e9ecef;
	height: 100%;
}

.qr-instructions {
	background: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	border: 2px solid #e9ecef;
	height: 100%;
}

.qr-instructions h3 {
	margin-top: 0;
}

.qr-instructions ol {
	padding-left: 1rem;
}

.qr-instructions li {
	line-height: 1.5;
	padding-left: 0.25rem;
}

.field-error {
	border-color: #dc3545 !important;
	background-color: #fff5f5;
}

.qr-code-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.qr-code-image,
.qr-code,
.qr-container img {
	width: 100%;
	height: auto;
	max-width: 300px;
	min-width: 150px;
	display: block;
	margin: 0 auto;
	transition: all 0.3s ease;
}

.filters-bar-1 {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	padding: 10px 0;
}

.filter-tab-1 {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	color: #264653;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.filter-tab-1:hover {
	background: #e7f1ff;
	border-color: #2a76ef;
	color: #2a76ef;
}

.filter-tab-1.active {
	background: #2a76ef;
	border-color: #2a76ef;
	color: #ffffff;
}

.publications-block-1 {
	width: 100%;
	margin: 0 auto;
	padding: 1rem;
}

.publication-item-1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #e9ecef;
	text-decoration: none;
	color: #264653;
	transition: color 0.2s ease;
}

.publication-item-1:hover {
	color: #2a76ef;
}

.publication-title-1 {
	flex: 1;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: normal;
	word-wrap: break-word;
}

.pagination-block-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	padding: 10px 0 1rem 0;
}

.pagination-btn-1 {
	display: inline-block;
	padding: 8px 20px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	color: #2a76ef;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.pagination-btn-1:hover {
	background: #2a76ef;
	color: #ffffff;
	border-color: #2a76ef;
	transform: translateY(-2px);
}

.pagination-btn-1.disabled {
	background: #e9ecef;
	color: #6c757d;
	border-color: #e9ecef;
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.6;
}

.pagination-info-1 {
	color: #999;
	font-size: 0.95rem;
}

.empty-state-1 {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	color: #999;
}

.empty-state-1 h3 {
	font-size: 1.2rem;
	color: #264653;
	font-weight: normal;
}

.publication-block-1 {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.publication-item-2 {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.publication-value-1 {
	color: #264653;
	font-weight: 500;
	word-break: break-word;
}

.publication-item-2:first-of-type .publication-value-1 {
	font-weight: 700;
}

.publication-content-1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.publication-label-1 {
	font-size: 0.9rem;
	color: #6c757d;
	font-weight: 500;
	min-width: 70px;
}

.publication-list-1 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}


.publication-card-1 {
	background: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 8px;
	padding: 16px;
	transition: all 0.2s ease;
}

.publication-card-1:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	border-color: #2a76ef;
}

.publication-name-1 {
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e9ecef;
	font-weight: 600;
}

.publication-details-1 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.publication-detail-row-1 {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.95rem;
	color: #264653;
}

.publication-detail-text-1 {
	flex: 1;
	line-height: 1.5;
}

.publication-detail-label-1 {
	font-weight: 500;
	color: #6c757d;
	margin-right: 8px;
}

.pdf-1 {
	margin-top: 10px;
}

.pdf-viewer-1 {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
}

.pdf-embed-1 {
	display: block;
	border: none;
	width: 100%;
	height: 85vh;
}

.modal-block {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 50px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.2s ease;
	z-index: 1001;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	line-height: 1;
}

.modal-close:hover {
	color: #3a86ff;
	background: rgba(255, 255, 255, 0.1);
}

.modal-content {
	margin: auto;
	display: block;
	width: auto;
	height: auto;
	max-width: 95%;
	max-height: 95%;
	object-fit: contain;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
}

.modal-caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ffffff;
	padding: 15px 0;
	font-size: 1.1rem;
}

.modal-content, .modal-caption {
	animation-name: zoom;
	animation-duration: 0.3s;
}

@keyframes zoom {
	from {transform: scale(0.1); opacity: 0;}
	to {transform: scale(1); opacity: 1;}
}

.samples-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.sample-card {
	flex: 1 1 280px;
	max-width: 306px;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
	position: relative;
}

.sample-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(58, 134, 255, 0.15);
	border-color: #3a86ff;
}

.sample-image {
	width: 100%;
	background: #f8f9fa;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.sample-image img {
	width: auto;
	height: auto;
	max-width: 100%;
	display: block;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	transition: transform 0.3s ease;
	object-fit: contain;
}

.sample-card:hover .sample-image img {
	transform: scale(1.02);
}

.sample-info {
	padding: 20px;
}

.sample-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 10px 0;
	text-align: center;
	width: 100%;
}

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

.sample-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
	font-size: 0.9rem;
	color: #264653;
}

.sample-features li span {
	color: #3a86ff;
	font-weight: bold;
}

.sample-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	padding-top: 15px;
	border-top: 1px solid #e9ecef;
	width: 100%;
}

.sample-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f8f9fa;
	color: #264653;
	font-weight: 600;
	padding: 8px 24px;
	border-radius: 8px;
	border: 1px solid #e9ecef;
	min-width: 123px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
}

.sample-price:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sample-price.free {
	background: #e7f5e9;
	color: #2b8c4b;
	border-color: #a3d9b1;
}

.sample-price span {
	font-size: 1.2rem;
}

.issues-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 25px;
	margin-bottom: 1rem;
}

.issue-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
}

.issue-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(58, 134, 255, 0.15);
	border-color: #3a86ff;
}
		
.issue-header {
	background: #f8f9fa;
	padding: 10px;
	text-align: center;
}

.issue-number {
	font-size: 1.2rem;
	font-weight: 700;
}

.issue-stats {
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
}

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

.stat-number {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
}

.stat-label {
	font-size: 0.8rem;
	color: #6c757d;
	margin-top: 5px;
}

.issue-status {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 12px;
	text-align: center;
	font-size: 0.9rem;
	color: #264653;
}

.issue-status.open {
	background: #e7f5e9;
	color: #2b8c4b;
}

.issue-status.closed {
	background: #f8f9fa;
	color: #6c757d;
}

.issue-status.preparing {
	background: #fff9e6;
	color: #856404;
}

.issue-buttons {
	display: flex;
	gap: 12px;
	padding-top: 15px;
}

.issue-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 15px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.2s ease;
	text-align: center;
}

.issue-btn-primary {
	background: #3a86ff;
	color: #ffffff;
}

.issue-btn-primary:hover {
	background: #1a56cf;
	transform: translateY(-2px);
	text-decoration: none;
	color: #ffffff;
}

.issue-btn-secondary {
	background: #f8f9fa;
	color: #264653;
	border: 1px solid #e9ecef;
}

.issue-btn-secondary:hover {
	background: #e9ecef;
	transform: translateY(-2px);
	text-decoration: none;
	color: #264653;
}

.issue-btn-secondary.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.services-section {
	margin-top: 1rem;
}

.material-info-block {
	display: none;
	padding: 20px;
	background: #e8f5e9;
	border-radius: 8px;
}

.material-info-title {
	margin: 0 0 10px 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.material-info-text {
	font-size: 1rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	line-height: 1.4;
}

/* index */

.index-section {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.index-p-1 {
	font-size: 1.2rem;
	text-align: center;
}

.index-blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.index-block {
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
	transition: transform 0.3s;
}

.index-block:hover {
	transform: translateY(-5px);
}

.index-p-2 {
	text-align: justify;
	text-align-last: left;
	hyphens: auto;
	word-wrap: break-word;
}

/* index */

/* uslugi */

.uslugi-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	background: #ffffff;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-height: 60px;
}

.uslugi-btn:hover {
	border-color: #3a86ff;
	background: #f8f9fa;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(58, 134, 255, 0.1);
}

.uslugi-btn::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: #3a86ff;
	transform: translateX(-4px);
	transition: transform 0.3s ease;
}

.uslugi-btn:hover::before {
	transform: translateX(0);
}

.uslugi-btn-title {
	font-size: 1.1rem;
	color: #264653;
	line-height: 1.3;
	flex-grow: 1;
	text-align: left;
}

.uslugi-btn-arrow {
	font-size: 1.3rem;
	color: #3a86ff;
	opacity: 0.7;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.uslugi-btn:hover .uslugi-btn-arrow {
	transform: translateX(5px);
	opacity: 1;
}

/* uslugi */

/* kpp */

.kpp-error {
	background: #fff5f5;
	color: rgb(220, 53, 69);
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.kpp-blocked {
	background: #fff5f5;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 1rem;
	text-align: center;
}

.kpp-icon {
	font-size: 3rem;
}

.kpp-blocked h3 {
	margin: 0.5rem 0;
}

.kpp-timer {
	font-size: 1.5rem;
	font-weight: 600;
}

.kpp-form {
	max-width: 400px;
	margin: 0 auto;
}

.kpp-form .kpp-group {
	margin-bottom: 0.5rem;
}

.kpp-form label {
	display: block;
	margin-bottom: 0.3125rem;
}

.kpp-form input {
	width: 100%;
	padding: 12px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.kpp-form input:focus {
	border-color: #2a76ef;
	outline: none;
}

.kpp-btn {
	width: 100%;
	padding: 14px;
	background: #2a76ef;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.kpp-btn:hover {
	background: #1a56cf;
}

/* kpp */

/* error page */

.error-page-container {
	text-align: center;
	padding: 1rem 1rem;
	max-width: 600px;
	margin: 0 auto;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.error-page-code {
	font-size: 8rem;
	font-weight: 800;
	color: #2a76ef;
	line-height: 1;
	margin-bottom: 1rem;
}

.error-page-title {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.error-page-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.error-page-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.error-page-btn {
	display: inline-block;
	padding: 12px 30px;
	min-width: 179px;
	background: #2a76ef;
	color: #ffffff;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.error-page-btn:hover {
	background: #1a56cf;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(42, 118, 239, 0.3);
}

.error-page-btn-outline {
	background: transparent;
	border-color: #2a76ef;
	color: #2a76ef;
}

.error-page-btn-outline:hover {
	background: #2a76ef;
	color: #ffffff;
}

/* error page */

/* ===== АДАПТАЦИЯ ===== */

/* Планшеты */
@media (max-width: 768px) {

	.header-content {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		gap: 15px;
	}

	.logo {
		flex-direction: column;
		width: 100%;
	}

	nav ul {
		justify-content: center;
	}

	h1 {
		font-size: 1.4rem;
	}

	h2 {
		font-size: 1.2rem;
	}

	h3 {
		font-size: 1.05rem
	}

	#cookie-notification {
		width: 95%;
		padding: 18px 22px;
		bottom: 15px;
	}

	.cookie-container {
		flex-direction: column;
		text-align: center;
		gap: 18px;
	}

	.cookie-text {
		min-width: auto;
		font-size: 0.875rem;
	}

	.cookie-btn {
		width: 100%;
		max-width: 280px;
		padding: 10px 25px;
		font-size: 0.875rem;
	}

	.content-1 {
		max-width: 95%;
		padding: 0 15px;
		text-align: left;
	}

	.content-1 h1 {
		font-size: 1.5rem;
	}

	.content-1 section {
		padding: 0.875rem;
		margin-bottom: 0.875rem;
	}

	.blocks-1 {
		gap: 1.25rem;
	}

	.blocks-1-small,
	.blocks-1-medium {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.block-1 {
		padding: 0 0.875rem 0.875rem;
	}

	.block-1-no-bottom {
		padding: 0 0.875rem;
	}

	.index-section {
		max-width: 95%;
		padding: 0 15px;
	}

	.index-p-1 {
		font-size: 1.1rem;
		line-height: 1.4;
	}

	.index-blocks {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 1.5rem;
		margin: 1.5rem 0;
	}

	.index-block {
		padding: 1.25rem;
	}

	.index-p-2 {
		text-align: left;
		text-align-last: left;
		font-size: 0.9375rem;
		line-height: 1.5;
	}

	.appeal {
		font-size: 1.1rem;
		line-height: 1.5;
	}

	.price-intro {
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}

	.price-blocks {
		gap: 1.25rem;
	}

	.price-blocks-wide {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.price-block {
		padding: 1.25rem;
	}

	.price-blocks-narrow {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 1rem;
	}

	.price-note-total {
		padding: 0.875rem;
		margin-top: 0.875rem;
	}

	.price-note-total p {
		font-size: 0.95rem;
	}

	.price-header h3 {
		font-size: 1.15rem;
	}

	.price-cash {
		font-size: 1.8rem;
	}

	.action-buttons-row {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 1.25rem;
	}

	.action-btn {
		padding: 1.2rem 0.8rem;
		gap: 0.6rem;
		font-size: 0.95rem;
	}

	.btn-text strong {
		font-size: 1.05rem;
	}

	.step {
		gap: 0.875rem;
	}

	.step-number {
		width: 36px;
		height: 36px;
		font-size: 1.1rem;
	}

	.step-content h3 {
		font-size: 1.1rem;
	}

	.step-content p,
	.step-content li,
	.step-content li a {
		font-size: 0.95rem;
		line-height: 1.5;
	}
	
	.step-content ul {
		padding-left: 18px;
		margin: 8px 0;
	}
	
	.step-content li {
		margin-bottom: 6px;
		padding-left: 2px;
	}

	.uslugi-btn {
		padding: 0.875rem;
		min-height: 55px;
		gap: 0.875rem;
	}

	.uslugi-btn-title {
		font-size: 1.05rem;
		line-height: 1.3;
	}

	.uslugi-btn-arrow {
		font-size: 1.2rem;
	}

	.kpp-error {
		padding: 10px 14px;
		margin-bottom: 0.875rem;
	}

	.kpp-blocked {
		padding: 18px;
		margin-bottom: 0.875rem;
	}

	.kpp-icon {
		font-size: 2.5rem;
	}

	.kpp-blocked h3 {
		font-size: 1.1rem;
		margin: 0.4rem 0;
	}

	.kpp-timer {
		font-size: 1.3rem;
	}

	.kpp-form {
		max-width: 350px;
	}

	.kpp-form input {
		padding: 10px;
		font-size: 0.95rem;
	}

	.kpp-btn {
		padding: 12px;
		font-size: 0.95rem;
	}

	.error-page-code {
		font-size: 6rem;
	}

	.error-page-title {
		font-size: 1.8rem;
	}

	.error-page-description {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.error-page-btn {
		padding: 10px 25px;
		font-size: 0.95rem;
		min-width: 160px;
	}

	.page-nav-card {
		padding: 10px 14px;
		gap: 10px;
		margin-bottom: 0.875rem;
	}

	.page-nav-card span {
		font-size: 1.2rem;
	}

	.page-nav-card small {
		font-size: 0.8rem;
	}

	.price-option label {
		min-height: 110px;
		padding: 0.875rem;
	}

	.option-title {
		font-size: 1rem;
	}

	.option-price {
		font-size: 1.3rem;
	}

	.option-price small {
		font-size: 0.85rem;
	}

	.option-note {
		font-size: 0.8rem;
	}

	.option-discount {
		top: -8px;
		right: -8px;
		padding: 3px 8px;
		font-size: 0.75rem;
	}

	.custom-count {
		padding: 0.875rem;
	}

	.custom-count input {
		padding: 0.625rem;
		font-size: 0.95rem;
	}

	.custom-calc {
		font-size: 1.1rem;
		padding: 0.5rem;
	}

	.custom-calc small {
		font-size: 0.85rem;
	}

	.form-group input {
		padding: 0.625rem;
		font-size: 0.95rem;
	}

	.form-total {
		padding: 0.875rem;
	}

	.total-line {
		font-size: 1rem;
	}

	.total-line:last-child {
		font-size: 1.2rem;
	}

	.payment-button {
		padding: 0.875rem;
		font-size: 1rem;
	}

	.qr-container {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.qr-code {
		min-height: 150px;
		padding: 0.875rem;
	}

	.qr-instructions {
		padding: 0.875rem;
	}

	.qr-instructions h3 {
		font-size: 1rem;
	}

	.qr-instructions ol {
		font-size: 0.9rem;
	}

	.qr-instructions li {
		line-height: 1.5;
	}

	.qr-code-image,
	.qr-code,
	.qr-container img {
		max-width: 250px;
	}

	.filters-bar-1 {
		gap: 6px;
		padding: 8px 0;
	}

	.filter-tab-1 {
		padding: 6px 12px;
		font-size: 0.85rem;
	}

	.publication-item-1 {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		padding: 10px 0;
	}

	.publication-title-1 {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.pagination-block-1 {
		flex-wrap: wrap;
		gap: 10px;
		padding: 8px 0 0.875rem 0;
	}

	.pagination-btn-1 {
		padding: 6px 16px;
		font-size: 0.9rem;
	}

	.pagination-info-1 {
		font-size: 0.9rem;
	}

	.empty-state-1 {
		padding: 15px;
	}

	.empty-state-1 h3 {
		font-size: 1.1rem;
	}

	.publication-block-1 {
		padding: 16px;
		gap: 12px;
	}

	.publication-item-2 {
		gap: 10px;
	}

	.publication-content-1 {
		gap: 10px;
	}

	.publication-label-1 {
		font-size: 0.85rem;
		min-width: 65px;
	}

	.publication-value-1 {
		font-size: 0.95rem;
	}

	.publication-list-1 {
		gap: 16px;
	}

	.publication-card-1 {
		padding: 14px;
	}

	.publication-name-1 {
		font-size: 1rem;
		margin-bottom: 10px;
		padding-bottom: 6px;
	}

	.publication-detail-row-1 {
		font-size: 0.9rem;
		gap: 8px;
	}

	.publication-detail-label-1 {
		font-size: 0.85rem;
	}

	.pdf-embed-1 {
		height: 70vh;
	}

	.modal-block {
		display: none;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.modal-block[style*="display: block"] {
		display: flex !important;
	}

	.modal-close {
		top: 25px;
		right: 25px;
		width: 48px;
		height: 48px;
		font-size: 36px;
		background: rgba(0, 0, 0, 0.5);
		border: 2px solid rgba(255, 255, 255, 0.2);
		z-index: 1010;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	}

	.modal-content {
		max-width: 94%;
		max-height: 85vh;
		width: auto;
		height: auto;
		object-fit: contain;
		margin: 0 auto;
	}

	.modal-caption {
		position: fixed;
		bottom: 25px;
		left: 0;
		width: 100%;
		text-align: center;
		color: #ffffff;
		font-size: 1rem;
		padding: 12px 24px;
		background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
		z-index: 1009;
		pointer-events: none;
	}

	.samples-container {
		gap: 0.8rem;
	}

	.sample-card {
		flex: 1 1 240px;
		max-width: 280px;
	}

	.sample-info {
		padding: 15px;
	}

	.sample-title {
		font-size: 1.1rem;
		margin: 0 0 8px 0;
	}

	.sample-features li {
		font-size: 0.85rem;
		padding: 3px 0;
		gap: 6px;
	}

	.sample-footer {
		margin-top: 8px;
		padding-top: 12px;
	}

	.sample-price {
		padding: 6px 20px;
		min-width: 110px;
		font-size: 0.95rem;
	}

	.issues-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.875rem;
		margin-top: 20px;
		margin-bottom: 0.875rem;
	}

	.issue-header {
		padding: 8px;
	}

	.issue-number {
		font-size: 1.1rem;
	}

	.issue-body {
		padding: 15px;
	}

	.stat-number {
		font-size: 1.2rem;
	}

	.stat-label {
		font-size: 0.75rem;
	}

	.issue-status {
		padding: 10px;
		font-size: 0.85rem;
	}

	.issue-buttons {
		gap: 10px;
		padding-top: 12px;
	}

	.issue-btn {
		padding: 8px 12px;
		font-size: 0.85rem;
	}

	.action-buttons-row-two {
		gap: 0.875rem;
	}

	.action-buttons-row-two .action-btn {
		max-width: 240px;
	}

	.material-info-block {
		margin-top: 0.875rem;
		padding: 18px;
	}

	.material-info-title {
		font-size: 1rem;
		margin-bottom: 8px;
	}

	.material-info-text {
		font-size: 0.9375rem;
		line-height: 1.35;
	}

}

/* Мобильные */
@media (max-width: 480px) {

	nav ul {
		justify-content: center;
		align-items: center;
		gap: 10px;
	}

	nav a {
		width: 100%;
		text-align: center;
		font-size: 0.9rem;
		padding: 10px;
	}

	.logo-text h1 {
		font-size: 1.15rem;
	}

	.logo-text .tagline {
		font-size: 0.875rem;
	}

	.container {
		padding: 0 10px;
	}

	h1 {
		font-size: 1.3rem;
	}

	h2 {
		font-size: 1.1rem;
	}

	h3 {
		font-size: 0.95rem;
	}

	#cookie-notification {
		width: calc(100% - 20px);
		padding: 15px 18px;
		bottom: 10px;
	}

	.cookie-container {
		gap: 15px;
	}

	.cookie-text {
		font-size: 0.8125rem;
		line-height: 1.4;
	}

	.cookie-btn {
		max-width: 100%;
		padding: 10px 20px;
		font-size: 0.8125rem;
	}

	.content-1 {
		max-width: 100%;
		padding: 0 10px;
	}

	.content-1 h1 {
		font-size: 1.3rem;
	}

	.content-1 h3 {
		margin-top: 0.75rem;
		font-size: 1.05rem;
	}

	.content-1 h4 {
		margin-top: 0.75rem;
		font-size: 0.9rem;
	}

	.content-1 section {
		padding: 0.75rem;
		margin-bottom: 0.75rem;
	}

	.blocks-1 {
		gap: 1rem;
		margin-top: 0.75rem;
	}

	.blocks-1-small,
	.blocks-1-medium {
		grid-template-columns: 1fr;
	}

	.block-1 {
		padding: 0 0.75rem 0.75rem;
		border-left-width: 3px;
	}

	.block-1-no-bottom {
		padding: 0 0.75rem;
	}

	.index-section {
		max-width: 100%;
		padding: 0 10px;
	}

	.index-p-1 {
		font-size: 1rem;
		line-height: 1.4;
	}

	.index-blocks {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin: 1.25rem 0;
	}

	.index-block {
		padding: 1.25rem;
	}

	.index-block:hover {
		transform: translateY(-3px);
	}

	.index-p-2 {
		font-size: 0.875rem;
		line-height: 1.5;
		text-align: left;
		hyphens: auto;
		word-wrap: break-word;
	}

	.o-nas-transfer {
		font-size: 1.3rem;
		display: inline-block;
	}

	.appeal {
		font-size: 1rem;
		margin-bottom: 0.875rem;
	}

	.price-intro {
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}

	.price-blocks {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.price-block {
		padding: 1rem;
		border-width: 1px;
	}

	.price-blocks-narrow {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.price-badge {
		font-size: 0.8rem;
		padding: 3px 12px;
	}

	.price-header h3 {
		font-size: 1.1rem;
	}

	.price-cash {
		font-size: 1.7rem;
	}

	.price-block p {
		font-size: 0.95rem;
		line-height: 1.4;
	}

	.price-note {
		font-size: 0.85rem;
	}

	.price-note-total {
		padding: 0.75rem;
		margin-top: 0.75rem;
	}

	.price-note-total p {
		font-size: 0.9rem;
	}

	.action-buttons-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.action-btn {
		padding: 1rem 0.6rem;
		gap: 0.5rem;
		font-size: 0.9rem;
		border-width: 1.5px;
	}

	.btn-text {
		flex-grow: 1;
	}

	.btn-text strong {
		font-size: 1rem;
	}

	.btn-text small {
		font-size: 0.85rem;
	}

	.step {
		flex-direction: column;
		gap: 0.75rem;
	}

	.step-number {
		align-self: flex-start;
	}

	.step-content h3 {
		font-size: 1.05rem;
	}
	
	.step-content p,
	.step-content li,
	.step-content li a {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	
	.step-content ul {
		padding-left: 16px;
		margin: 6px 0;
	}
	
	.step-content li {
		margin-bottom: 5px;
		padding-left: 2px;
	}
	
	.step-content li a {
		word-break: break-word;
	}

	.uslugi-btn {
		padding: 0.75rem;
		min-height: 50px;
		gap: 0.75rem;
	}

	.uslugi-btn-title {
		font-size: 1rem;
		line-height: 1.25;
	}

	.uslugi-btn-arrow {
		font-size: 1.1rem;
	}

	.kpp-error {
		padding: 8px 12px;
		margin-bottom: 0.75rem;
		font-size: 0.9rem;
	}

	.kpp-blocked {
		padding: 15px;
		margin-bottom: 0.75rem;
	}

	.kpp-icon {
		font-size: 2.2rem;
	}

	.kpp-blocked h3 {
		font-size: 1rem;
		margin: 0.3rem 0;
	}

	.kpp-timer {
		font-size: 1.2rem;
	}

	.kpp-form {
		max-width: 100%;
	}

	.kpp-form .kpp-group {
		margin-bottom: 0.4rem;
	}

	.kpp-form label {
		font-size: 0.9rem;
		margin-bottom: 0.25rem;
	}

	.kpp-form input {
		padding: 8px;
		font-size: 0.9rem;
		border-width: 1px;
	}

	.kpp-btn {
		padding: 10px;
		font-size: 0.9rem;
	}

	.error-page-code {
		font-size: 4.5rem;
		margin-bottom: 0.5rem;
	}

	.error-page-title {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}

	.error-page-description {
		font-size: 0.95rem;
		margin-bottom: 1.25rem;
		line-height: 1.5;
	}

	.error-page-actions {
		gap: 0.75rem;
		flex-direction: column;
		align-items: center;
	}

	.error-page-btn {
		width: 100%;
		max-width: 280px;
		min-width: 160px;
		padding: 10px 20px;
		font-size: 0.9rem;
		text-align: center;
	}

	@keyframes float {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-5px); }
	}

	.page-nav-card {
		padding: 8px 12px;
		gap: 8px;
		margin-bottom: 0.75rem;
		border-left-width: 3px;
	}

	.page-nav-card span {
		font-size: 1.1rem;
	}

	.page-nav-card > div > div {
		font-size: 0.9rem;
	}

	.page-nav-card small {
		font-size: 0.7rem;
		line-height: 1.2;
	}

	.price-option label {
		min-height: 100px;
		padding: 0.75rem;
		border-width: 1px;
	}

	.price-option input[type="radio"]:checked + label {
		box-shadow: 0 3px 10px rgba(58, 134, 255, 0.1);
	}

	.option-title {
		font-size: 0.95rem;
		margin-bottom: 0.375rem;
	}

	.option-price {
		font-size: 1.2rem;
		margin-bottom: 0.2rem;
	}

	.option-price small {
		font-size: 0.8rem;
	}

	.option-note {
		font-size: 0.75rem;
	}

	.option-discount {
		top: -6px;
		right: -6px;
		padding: 2px 6px;
		font-size: 0.7rem;
	}

	.custom-count {
		padding: 0.75rem;
		margin-top: 0.75rem;
	}

	.custom-count label {
		font-size: 0.9rem;
		margin-bottom: 0.375rem;
	}

	.custom-count input {
		padding: 0.5rem;
		font-size: 0.9rem;
		border-width: 1px;
		margin-bottom: 0.5rem;
	}

	.custom-calc {
		font-size: 1rem;
		padding: 0.5rem;
	}

	.custom-calc small {
		font-size: 0.8rem;
		margin-top: 0.2rem;
	}

	.form-group label {
		font-size: 0.9rem;
		margin-bottom: 0.375rem;
	}

	.form-group input,
	.form-group textarea {
		padding: 0.5rem;
		font-size: 0.9rem;
		border-width: 1px;
	}

	.form-total {
		padding: 0.75rem;
		border-width: 1px;
	}

	.total-line {
		font-size: 0.95rem;
	}

	.total-line:last-child {
		font-size: 1.1rem;
	}

	.payment-button {
		padding: 0.75rem;
		font-size: 0.95rem;
	}

	.payment-button:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(58, 134, 255, 0.15);
	}

	.qr-container {
		gap: 0.75rem;
	}

	.qr-code {
		min-height: 140px;
		padding: 0.75rem;
		border-width: 1px;
	}

	.qr-instructions {
		padding: 0.75rem;
		border-width: 1px;
	}

	.qr-instructions h3 {
		font-size: 0.95rem;
		margin-bottom: 0.5rem;
	}

	.qr-instructions ol {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.qr-instructions li {
		line-height: 1.4;
		padding-left: 0.2rem;
	}

	.qr-code-image,
	.qr-code,
	.qr-container img {
		max-width: 200px;
		min-width: 120px;
	}

	.filters-bar-1 {
		gap: 8px;
		padding: 8px 0;
	}

	.filter-tab-1 {
		padding: 8px 5px;
		font-size: 0.8rem;
		gap: 4px;
		width: calc(50% - 4px);
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		min-height: 58px;
		display: inline-flex;
		align-items: center;
		white-space: normal;
		word-break: break-word;
	}

	.filter-tab-1:last-child:nth-child(odd) {
		width: 100%;
	}

	.publications-block-1 {
		padding: 0.5rem;
	}

	.publication-item-1 {
		padding: 10px 0;
	}

	.publication-title-1 {
		font-size: 0.9rem;
		line-height: 1.4;
	}

	.pagination-block-1 {
		flex-wrap: wrap;
		gap: 10px;
		padding: 8px 0 0.8rem 0;
	}

	.pagination-btn-1 {
		padding: 6px 15px;
		font-size: 0.85rem;
		min-width: 120px;
		text-align: center;
	}

	.pagination-info-1 {
		width: 100%;
		text-align: center;
		order: -1;
		font-size: 0.85rem;
		margin-bottom: 5px;
	}

	.empty-state-1 {
		padding: 15px;
	}

	.empty-state-1 h3 {
		font-size: 1rem;
	}

	.publication-block-1 {
		padding: 14px;
		gap: 12px;
	}

	.publication-item-2 {
		flex-direction: column;
		gap: 6px;
	}

	.publication-content-1 {
		gap: 6px;
		width: 100%;
	}

	.publication-label-1 {
		font-size: 0.8rem;
		min-width: auto;
		color: #6c757d;
	}

	.publication-value-1 {
		font-size: 0.95rem;
		line-height: 1.4;
	}

	.publication-list-1 {
		gap: 14px;
	}

	.publication-card-1 {
		padding: 12px;
	}

	.publication-name-1 {
		font-size: 1rem;
		margin-bottom: 8px;
		padding-bottom: 6px;
		font-weight: 600;
	}

	.publication-details-1 {
		gap: 8px;
	}

	.publication-detail-row-1 {
		flex-direction: column;
		gap: 4px;
		font-size: 0.9rem;
	}

	.publication-detail-label-1 {
		font-size: 0.8rem;
		margin-right: 0;
		color: #8a9aa8;
	}

	.publication-detail-text-1 {
		line-height: 1.4;
	}

	.pdf-embed-1 {
		height: 60vh;
	}

	.modal-block {
		display: none;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.modal-block[style*="display: block"] {
		display: flex !important;
	}

	.modal-close {
		top: 20px;
		right: 20px;
		width: 44px;
		height: 44px;
		font-size: 32px;
		background: rgba(0, 0, 0, 0.6);
		border: 2px solid rgba(255, 255, 255, 0.3);
		z-index: 1010;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	}

	.modal-content {
		max-width: 92%;
		max-height: 80vh;
		width: auto;
		height: auto;
		object-fit: contain;
		margin: 0 auto;
	}

	.modal-caption {
		position: fixed;
		bottom: 20px;
		left: 0;
		width: 100%;
		text-align: center;
		color: #ffffff;
		font-size: 0.95rem;
		padding: 12px 20px;
		background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
		z-index: 1009;
		pointer-events: none;
	}

	.samples-container {
		gap: 0.6rem;
	}

	.sample-card {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.sample-info {
		padding: 12px;
	}

	.sample-title {
		font-size: 1rem;
	}

	.sample-features li {
		font-size: 0.8rem;
		padding: 2px 0;
		gap: 5px;
	}

	.sample-features li span {
		font-size: 0.9rem;
	}

	.sample-footer {
		margin-top: 6px;
		padding-top: 10px;
	}

	.sample-price {
		padding: 5px 16px;
		min-width: 100px;
		font-size: 0.9rem;
		gap: 5px;
	}

	.sample-price span {
		font-size: 1rem;
	}

	.issues-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin-top: 15px;
		margin-bottom: 0.75rem;
	}

	.issue-card {
		max-width: 100%;
	}

	.issue-header {
		padding: 10px;
	}

	.issue-number {
		font-size: 1.1rem;
	}

	.issue-body {
		padding: 15px;
	}

	.issue-stats {
		padding-bottom: 12px;
	}

	.stat-number {
		font-size: 1.3rem;
	}

	.stat-label {
		font-size: 0.8rem;
	}

	.issue-status {
		padding: 10px;
		font-size: 0.85rem;
	}

	.issue-buttons {
		flex-direction: row;
		gap: 10px;
		padding-top: 12px;
	}

	.issue-btn {
		flex: 1;
		padding: 10px 12px;
		font-size: 0.9rem;
		width: auto;
	}

	.action-buttons-row-two {
		flex-direction: column;
		gap: 0.75rem;
	}

	.action-buttons-row-two .action-btn {
		width: 100%;
		max-width: 100%;
		flex: none;
	}

	.material-info-block {
		margin-top: 0.75rem;
		padding: 16px;
	}

	.material-info-title {
		font-size: 0.9375rem;
		margin-bottom: 6px;
	}

	.material-info-text {
		font-size: 0.875rem;
		line-height: 1.3;
	}

}

/* Очень маленькие экраны (смартфоны) */
@media (max-width: 360px) {

	nav a {
		font-size: 0.85rem;
		padding: 8px;
	}

	.logo-img {
		height: 48px;
		max-width: 48px;
	}

	h1 {
		font-size: 1.2rem;
	}

	h2 {
		font-size: 1rem;
	}

	h3 {
		font-size: 0.875rem;
	}

	#cookie-notification {
		padding: 12px 15px;
	}

	.cookie-text {
		font-size: 0.75rem;
	}

	.cookie-btn {
		padding: 8px 16px;
		font-size: 0.75rem;
	}

	.content-1 {
		padding: 0 8px;
	}

	.content-1 h1 {
		font-size: 1.2rem;
	}

	.content-1 h3 {
		margin-top: 0.625rem;
		font-size: 1rem;
	}

	.content-1 h4 {
		margin-top: 0.625rem;
		font-size: 0.85rem;
	}

	.content-1 section {
		padding: 0.625rem;
		margin-bottom: 0.625rem;
	}

	.blocks-1 {
		gap: 0.875rem;
	}

	.block-1 {
		padding: 0 0.625rem 0.625rem;
		border-left-width: 2px;
	}

	.block-1-no-bottom {
		padding: 0 0.625rem;
	}

	.index-p-1 {
		font-size: 0.9375rem;
	}

	.index-blocks {
		gap: 1rem;
		margin: 1rem 0;
	}

	.index-block {
		padding: 1rem;
	}

	.index-p-2 {
		font-size: 0.8125rem;
		line-height: 1.4;
	}

	.o-nas-transfer {
		font-size: 1.15rem;
		margin-top: 0.15rem;
	}

	.appeal {
		font-size: 0.95rem;
	}

	.price-intro {
		font-size: 0.9rem;
	}

	.price-block {
		padding: 0.875rem;
	}

	.price-blocks-narrow {
		gap: 0.75rem;
	}

	.price-note-total {
		padding: 0.625rem;
		margin-top: 0.625rem;
	}

	.price-note-total p {
		font-size: 0.85rem;
	}

	.price-header h3 {
		font-size: 1rem;
	}

	.price-cash {
		font-size: 1.6rem;
	}

	.price-block p {
		font-size: 0.9rem;
	}

	.price-note {
		font-size: 0.8rem;
	}

	.action-btn {
		padding: 0.8rem 0.5rem;
		gap: 0.4rem;
		font-size: 0.85rem;
		border-width: 1px;
	}

	.btn-text strong {
		font-size: 0.95rem;
	}

	.btn-text small {
		font-size: 0.8rem;
	}

	.step-number {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}

	.step-content h3 {
		font-size: 1rem;
	}
	
	.step-content p,
	.step-content li,
	.step-content li a {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	
	.step-content ul {
		padding-left: 14px;
		margin: 5px 0;
	}
	
	.step-content li {
		margin-bottom: 4px;
		padding-left: 1px;
	}

	.uslugi-btn {
		padding: 0.625rem;
		min-height: 45px;
		gap: 0.625rem;
	}

	.uslugi-btn-title {
		font-size: 0.95rem;
		line-height: 1.2;
	}

	.uslugi-btn-arrow {
		font-size: 1rem;
	}

	.kpp-error {
		padding: 6px 10px;
		margin-bottom: 0.625rem;
		font-size: 0.85rem;
	}

	.kpp-blocked {
		padding: 12px;
		margin-bottom: 0.625rem;
	}

	.kpp-icon {
		font-size: 2rem;
	}

	.kpp-blocked h3 {
		font-size: 0.95rem;
		margin: 0.2rem 0;
	}

	.kpp-timer {
		font-size: 1.1rem;
	}

	.kpp-form input {
		padding: 6px;
		font-size: 0.85rem;
	}

	.kpp-btn {
		padding: 8px;
		font-size: 0.85rem;
	}

	.error-page-code {
		font-size: 3.5rem;
	}

	.error-page-title {
		font-size: 1.3rem;
	}

	.error-page-description {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.error-page-btn {
		padding: 8px 16px;
		font-size: 0.85rem;
		max-width: 240px;
		min-width: 140px;
	}

	.page-nav-card {
		padding: 6px 10px;
		gap: 6px;
		margin-bottom: 0.625rem;
		border-left-width: 3px;
	}

	.page-nav-card span {
		font-size: 1rem;
	}

	.page-nav-card > div > div {
		font-size: 0.85rem;
	}

	.page-nav-card small {
		font-size: 0.65rem;
	}

	.price-option label {
		min-height: 90px;
		padding: 0.625rem;
	}

	.option-title {
		font-size: 0.9rem;
	}

	.option-price {
		font-size: 1.1rem;
	}

	.option-price small {
		font-size: 0.75rem;
	}

	.option-note {
		font-size: 0.7rem;
	}

	.option-discount {
		top: -4px;
		right: -4px;
		padding: 1px 5px;
		font-size: 0.65rem;
	}

	.custom-count {
		padding: 0.625rem;
	}

	.custom-count label {
		font-size: 0.85rem;
	}

	.custom-count input {
		padding: 0.375rem;
		font-size: 0.85rem;
	}

	.custom-calc {
		font-size: 0.95rem;
		padding: 0.375rem;
	}

	.custom-calc small {
		font-size: 0.75rem;
	}

	.form-group label {
		font-size: 0.85rem;
	}

	.form-group input {
		padding: 0.375rem;
		font-size: 0.85rem;
	}

	.form-total {
		padding: 0.625rem;
	}

	.total-line {
		font-size: 0.9rem;
	}

	.total-line:last-child {
		font-size: 1rem;
	}

	.payment-button {
		padding: 0.625rem;
		font-size: 0.9rem;
	}

	.qr-code {
		min-height: 130px;
		padding: 0.625rem;
	}

	.qr-instructions {
		padding: 0.625rem;
	}

	.qr-instructions h3 {
		font-size: 0.9rem;
	}

	.qr-instructions ol {
		font-size: 0.8rem;
	}

	.qr-instructions li {
		line-height: 1.4;
	}

	.qr-code-image,
	.qr-code,
	.qr-container img {
		max-width: 180px;
		min-width: 100px;
	}

	.filters-bar-1 {
		gap: 6px;
		padding: 6px 0;
	}

	.filter-tab-1 {
		padding: 6px 3px;
		font-size: 0.75rem;
		gap: 3px;
		width: calc(50% - 3px);
		min-height: 52px;
	}

	.filter-tab-1:last-child:nth-child(odd) {
		width: 100%;
	}

	.publications-block-1 {
		padding: 0.3rem;
	}

	.publication-item-1 {
		padding: 8px 0;
	}

	.publication-title-1 {
		font-size: 0.85rem;
		line-height: 1.3;
	}

	.pagination-block-1 {
		gap: 8px;
		padding: 6px 0 0.6rem 0;
	}

	.pagination-btn-1 {
		padding: 5px 12px;
		font-size: 0.8rem;
		min-width: 100px;
	}

	.pagination-info-1 {
		font-size: 0.8rem;
		margin-bottom: 4px;
	}

	.empty-state-1 {
		padding: 12px;
	}

	.empty-state-1 h3 {
		font-size: 0.95rem;
	}

	.publication-block-1 {
		padding: 12px;
		gap: 10px;
	}

	.publication-item-2 {
		gap: 4px;
	}

	.publication-content-1 {
		gap: 4px;
	}

	.publication-label-1 {
		font-size: 0.75rem;
	}

	.publication-value-1 {
		font-size: 0.9rem;
	}

	.publication-list-1 {
		gap: 12px;
	}

	.publication-card-1 {
		padding: 10px;
	}

	.publication-name-1 {
		font-size: 0.95rem;
		margin-bottom: 6px;
		padding-bottom: 4px;
	}

	.publication-detail-row-1 {
		font-size: 0.85rem;
		gap: 3px;
	}

	.publication-detail-label-1 {
		font-size: 0.75rem;
	}

	.pdf-embed-1 {
		height: 50vh;
	}

	.publication-card-1:hover {
		box-shadow: none;
		border-color: #ffffff;
	}

	.modal-block {
		display: none;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.modal-block[style*="display: block"] {
		display: flex !important;
	}

	.modal-close {
		top: 15px;
		right: 15px;
		width: 38px;
		height: 38px;
		font-size: 28px;
		background: rgba(0, 0, 0, 0.6);
		border: 2px solid rgba(255, 255, 255, 0.3);
		z-index: 1010;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	}

	.modal-content {
		max-width: 94%;
		max-height: 75vh;
		width: auto;
		height: auto;
		object-fit: contain;
		margin: 0 auto;
	}

	.modal-caption {
		position: fixed;
		bottom: 15px;
		left: 0;
		width: 100%;
		text-align: center;
		color: #ffffff;
		font-size: 0.85rem;
		padding: 10px 16px;
		background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
		z-index: 1009;
		pointer-events: none;
	}

	.samples-container {
		gap: 0.5rem;
	}

	.sample-info {
		padding: 10px;
	}

	.sample-title {
		font-size: 0.95rem;
		margin: 0 0 6px 0;
	}

	.sample-features li {
		font-size: 0.75rem;
		padding: 2px 0;
	}

	.sample-footer {
		margin-top: 5px;
		padding-top: 8px;
	}

	 .sample-price {
		padding: 4px 12px;
		min-width: 90px;
		font-size: 0.85rem;
	}

	.sample-price span {
		font-size: 0.9rem;
	}

	.sample-card:hover {
		transform: translateY(-3px);
	}

	.sample-price:hover {
		transform: translateY(-1px);
		box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	}

	.issues-grid {
		gap: 0.625rem;
		margin-top: 12px;
		margin-bottom: 0.625rem;
	}

	.issue-header {
		padding: 8px;
	}

	.issue-number {
		font-size: 1rem;
	}

	.issue-body {
		padding: 12px;
	}

	.issue-stats {
		padding-bottom: 10px;
	}

	.stat-number {
		font-size: 1.2rem;
	}

	.stat-label {
		font-size: 0.7rem;
	}

	.issue-status {
		padding: 8px;
		font-size: 0.8rem;
	}

	.issue-buttons {
		flex-direction: row;
		gap: 8px;
		padding-top: 10px;
	}

	.issue-btn {
		flex: 1;
		padding: 8px 10px;
		font-size: 0.85rem;
		width: auto;
	}

	.action-buttons-row-two {
		flex-direction: column;
		gap: 0.625rem;
	}

	.action-buttons-row-two .action-btn {
		width: 100%;
		max-width: 100%;
		flex: none;
	}

	.material-info-block {
		margin-top: 0.625rem;
		padding: 14px;
	}

	.material-info-title {
		font-size: 0.875rem;
		margin-bottom: 5px;
	}

	.material-info-text {
		font-size: 0.8125rem;
		line-height: 1.3;
	}

}




