.elementor-3517 .elementor-element.elementor-element-ee6ba8a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1e7c45c */:root {
	--primary-green: #13AB7B;
	--secondary-green: #16c786;
	--light-green: rgba(19, 171, 123, 0.08);
	--dark-green: #0f8c63;
	
	--text-primary: #2d3748;
	--text-secondary: #4a5568;
	--text-muted: #718096;
	--border-light: #e2e8f0;
	--bg-white: #ffffff;
	--bg-gray: #f7fafc;
	--bg-section: #fafbfc;
	
	--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--border-radius: 16px;
}
.hero-section {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
	color: white !important;
	padding: 30px 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-text {
	max-width: 600px;
}

.hero-title {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	color:white;
	letter-spacing: -0.02em;
	text-transform: none;
}

.hero-subtitle {
	font-size: 20px;
	opacity: 0.95;
	margin-bottom: 30px;
	line-height: 1.6;
	font-weight: 400;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number-1 {
	display: block;
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 4px;
}

.stat-label-1 {
	font-size: 14px;
	opacity: 0.9;
	font-weight: 500;
}

.hero-image {
	width: 280px;
	height: 280px;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	border: 3px solid rgba(255, 255, 255, 0.2);
}

.main-content {
	padding: 80px 0;
}

/* Секции */
.content-section {
	margin-bottom: 80px;
}

.content-section:last-child {
	margin-bottom: 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* О нас */
.about-content {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 60px;
	box-shadow: var(--shadow-light);
	position: relative;
}

.about-text {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.about-text:last-child {
	margin-bottom: 0;
}

.highlight {
	color: var(--primary-green);
	font-weight: 600;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.advantage-card {
	background: var(--bg-white);
	padding: 40px 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-light);
	text-align: center;
	position: relative;
	transition: all 0.4s ease;
	border-top: 4px solid transparent;
}

.advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	border-top-color: var(--primary-green);
}

.advantage-number {
	position: absolute;
	top: -15px;
	left: 30px;
	width: 30px;
	height: 30px;
	background: var(--primary-green);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.advantage-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 16px;
	margin-top: 10px;
}

.advantage-text {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Блоки оборудования в шахматном порядке */
.equipment-list {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.equipment-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	opacity: 0;
	transform: translateY(30px);
	animation: slideUp 0.8s ease forwards;
}

.equipment-item:nth-child(1) { animation-delay: 0.2s; }
.equipment-item:nth-child(2) { animation-delay: 0.4s; }
.equipment-item:nth-child(3) { animation-delay: 0.6s; }

/* Чередование: четные элементы - изображение справа */
.equipment-item:nth-child(even) {
	direction: rtl;
}

.equipment-item:nth-child(even) .equipment-content,
.equipment-item:nth-child(even) .equipment-image {
	direction: ltr;
}

/* Контент */
.equipment-content {
	padding: 20px 0;
}

.equipment-number {
	display: inline-block;
	padding: 6px 12px;
	background: var(--light-green);
	color: var(--primary-green);
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.equipment-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
	line-height: 1.3;
}

.equipment-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 20px;
}

.equipment-features {
	list-style: none;
	margin-bottom: 25px;
}

.equipment-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	font-size: 15px;
	color: var(--text-secondary);
}

.equipment-features li::before {
	content: '✓';
	width: 18px;
	height: 18px;
	background: var(--primary-green);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	flex-shrink: 0;
}

.equipment-link {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.equipment-link:hover {
	color: var(--dark-green);
	text-decoration: underline;
}

/* Изображения */
.equipment-image {
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
}

.equipment-image:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.equipment-photo {
	width: 100%;
	height: 350px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.equipment-image:hover .equipment-photo {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: white;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.equipment-image:hover .image-overlay {
	transform: translateY(0);
}

.overlay-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.overlay-description {
	font-size: 13px;
	opacity: 0.9;
}

/* Статистика внизу */
.stats-section {
	margin-top: 80px;
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--shadow-light);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	display: block;
	font-size: 36px;
	font-weight: 800;
	color: var(--primary-green);
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 500;
}

.stat-description {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 4px;
}

/* Адаптивность */
@media (max-width: 1024px) {
	.equipment-item {
		gap: 30px;
	}
	
	.equipment-photo {
		height: 300px;
	}
	
	.equipment-title {
		font-size: 24px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.section-subtitle {
		font-size: 16px;
	}
	
	.equipment-list {
		gap: 50px;
	}
	
	.equipment-item {
		grid-template-columns: 1fr;
		gap: 25px;
		text-align: center;
	}
	
	.equipment-item:nth-child(even) {
		direction: ltr;
	}
	
	.equipment-photo {
		height: 250px;
	}
	
	.equipment-title {
		font-size: 22px;
	}
	
	.equipment-description {
		font-size: 15px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-number {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	body {
		padding: 30px 15px;
	}
	
	.section-header {
		margin-bottom: 40px;
	}
	
	.equipment-list {
		gap: 40px;
	}
	
	.equipment-content {
		padding: 15px 0;
	}
	
	.equipment-title {
		font-size: 20px;
	}
	
	.equipment-features li {
		font-size: 14px;
	}
	
	.stats-section {
		padding: 30px 20px;
	}
	
	.stat-item {
		padding: 15px;
	}
}

/* Анимации */
@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Дополнительные эффекты */
.equipment-content {
	transition: all 0.3s ease;
}

.equipment-item:hover .equipment-content {
	transform: translateX(5px);
}

.equipment-item:nth-child(even):hover .equipment-content {
	transform: translateX(-5px);
}
.licenses-section {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 60px;
	box-shadow: var(--shadow-light);
}

.licenses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.license-card {
	background: var(--bg-section);
	padding: 25px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--border-light);
	transition: all 0.3s ease;
}

.license-card:hover {
	border-color: var(--primary-green);
	background: var(--light-green);
}

.license-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.license-number {
	font-size: 13px;
	color: var(--text-muted);
	font-family: 'Courier New', monospace;
}

.license-status {
	margin-top: 8px;
	font-size: 12px;
	color: var(--primary-green);
	font-weight: 500;
}


/* Адаптивность */
@media (max-width: 1024px) {
	.hero-content {
		gap: 40px;
	}
	
	.hero-image {
		width: 240px;
		height: 240px;
	}
	
	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.hero-section {
		padding: 60px 0;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
	
	.hero-title {
		font-size: 32px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
	
	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	
	.hero-image {
		width: 200px;
		height: 200px;
		margin: 0 auto;
	}
	
	.main-content {
		padding: 60px 0;
	}
	
	.content-section {
		margin-bottom: 60px;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.section-subtitle {
		font-size: 16px;
	}
	
	.about-content,
	.equipment-section,
	.licenses-section {
		padding: 40px 30px;
	}
	
	.advantages-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.history-section {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.achievement-number {
		font-size: 36px;
	}
}

@media (max-width: 480px) {
	.hero-section {
		padding: 40px 0;
	}
	
	.hero-title {
		font-size: 28px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.about-content,
	.equipment-section,
	.licenses-section {
		padding: 30px 20px;
	}
	
	.advantage-card {
		padding: 25px 20px;
	}
	
	.achievement-card {
		padding: 30px 20px;
	}
}

/* Анимации */
.advantage-card,
.equipment-card,
.license-card {
	opacity: 0;
	transform: translateY(30px);
	animation: slideUp 0.8s ease forwards;
}

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(4) { animation-delay: 0.4s; }
.advantage-card:nth-child(5) { animation-delay: 0.5s; }
.advantage-card:nth-child(6) { animation-delay: 0.6s; }

.equipment-card:nth-child(1) { animation-delay: 0.1s; }
.equipment-card:nth-child(2) { animation-delay: 0.3s; }
.equipment-card:nth-child(3) { animation-delay: 0.5s; }

.license-card:nth-child(1) { animation-delay: 0.1s; }
.license-card:nth-child(2) { animation-delay: 0.2s; }
.license-card:nth-child(3) { animation-delay: 0.3s; }
.license-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Современные микро-анимации */
.advantage-card:hover .advantage-title {
	color: var(--primary-green);
}

.equipment-card:hover .equipment-title {
	color: var(--primary-green);
}
/* Заголовок */
.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-title {
	font-size: 32px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.section-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 500px;
	margin: 0 auto;
}

/* Основной блок лицензий */
.licenses-container {
	background: var(--bg-white);
	border-radius: 12px;
	padding: 40px;
	box-shadow: var(--shadow-light);
	border: 1px solid var(--border-light);
}

/* Сетка в 4 колонки */
.licenses-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.license-card {
	text-align: center;
	padding: 20px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.license-card:hover {
	background: var(--light-green);
	border-color: var(--primary-green);
}

.license-title {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 6px;
}

.license-number {
	font-size: 12px;
	color: var(--text-muted);
	font-family: 'SF Mono', monospace;
}

.license-status {
	margin-top: 6px;
	font-size: 11px;
	font-weight: 500;
	color: var(--primary-green);
}

/* Разделитель */
.divider {
	height: 1px;
	background: var(--border-light);
	margin: 30px 0;
}

/* Фото лицензий */
.licenses-photos {
	margin-top: 30px;
}

.photos-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 20px;
	text-align: center;
}

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

.photo-item {
    max-width: 500px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--border-light);
	cursor: pointer;
	transition: all 0.3s ease;
}

.photo-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.license-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.photo-item:hover .license-image {
	transform: scale(1.02);
}

/* Нижний блок */
.bottom-info {
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--border-light);
}

.info-text {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 15px;
}

.download-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--primary-green);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.download-link:hover {
	background: var(--dark-green);
	transform: translateY(-1px);
}

/* Исправленное модальное окно */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.modal-image {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 90vh;
	display: block;
	object-fit: contain;
}

.close {
	position: absolute;
	top: 15px;
	right: 20px;
	color: white;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	background: rgba(0,0,0,0.6);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 1001;
}

.close:hover {
	background: rgba(0,0,0,0.8);
	transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 1024px) {
	.licenses-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.photos-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 24px;
	}
	
	.licenses-container {
		padding: 30px 25px;
	}
	
	.licenses-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.license-card {
		padding: 15px 10px;
	}
	
	.license-title {
		font-size: 13px;
	}
	
	.photos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.modal-content {
		max-width: 95vw;
		max-height: 85vh;
	}
	
	.modal-image {
		max-height: 85vh;
	}
}

@media (max-width: 480px) {
	body {
		padding: 30px 15px;
	}
	
	.licenses-container {
		padding: 25px 20px;
	}
	
	.licenses-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.photos-grid {
		grid-template-columns: 1fr;
	}
	
	.modal-content {
		max-width: 95vw;
		max-height: 80vh;
	}
	
	.modal-image {
		max-height: 80vh;
	}
	
	.close {
		top: 10px;
		right: 15px;
		width: 35px;
		height: 35px;
		font-size: 20px;
	}
}

/* Плавное появление */
.license-card,
.photo-item {
	opacity: 0;
	animation: fadeIn 0.6s ease forwards;
}

.license-card:nth-child(1) { animation-delay: 0.1s; }
.license-card:nth-child(2) { animation-delay: 0.2s; }
.license-card:nth-child(3) { animation-delay: 0.3s; }
.license-card:nth-child(4) { animation-delay: 0.4s; }

.photo-item:nth-child(1) { animation-delay: 0.5s; }
.photo-item:nth-child(2) { animation-delay: 0.6s; }
.photo-item:nth-child(3) { animation-delay: 0.7s; }
.photo-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
/* ===== Licenses: аккуратная двухколоночная раскладка ===== */
.lic-layout{
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-light);
  display: grid;
  grid-template-columns: 1.15fr 1fr; /* слева чуть шире */
  gap: 32px;
}

/* Левая колонка */
.lic-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  align-items: stretch;
}
.lic-badge{
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lic-badge:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
  background: var(--light-green);
}
.lic-badge__title{
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.lic-badge__number{
  font-size: 12px;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  letter-spacing: .2px;
}
.lic-badge__status{
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
}
.lic-badge__status.is-ok::before{
  content: "●";
  display: inline-block;
  margin-right: 6px;
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
}

/* Правая колонка */
.lic-right{ display:flex; flex-direction:column; gap:14px; }
.lic-photos-title{
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
  text-align: left;
}

/* Превью документа */
.lic-figure{
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-light);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lic-figure:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lic-figure__img{
  width: 100%;
  height: clamp(220px, 36vh, 360px);
  object-fit: cover;
  display: block;
}
.lic-figure__caption{
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.95));
  border-top: 1px solid var(--border-light);
}

/* Низ блока */
.lic-bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.lic-note{
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Адаптивность */
@media (max-width: 1024px){
  .lic-layout{ grid-template-columns: 1fr; gap: 22px; }
  .lic-badges{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lic-figure__img{ height: clamp(220px, 34vh, 340px); }
}
@media (max-width: 640px){
  .lic-badges{ grid-template-columns: 1fr; }
  .lic-bottom{ flex-direction: column; align-items: stretch; gap: 10px; }
  .download-link{ width: 100%; justify-content: center; }
}/* End custom CSS */