.elementor-6379 .elementor-element.elementor-element-3baddb6{--display:flex;}@media(min-width:768px){.elementor-6379 .elementor-element.elementor-element-3baddb6{--content-width:1370px;}}/* Start custom CSS for html, class: .elementor-element-b286961 */:root {
	--primary-green: #13AB7B;
	--secondary-green: #16c786;
	--light-green: rgba(19, 171, 123, 0.08);
	--dark-green: #095f44;
	
	--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: 12px;
}

.hero-section {
	background: var(--bg-white);
	padding: 50px 0;
	border-bottom: 1px solid var(--border-light);
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

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

.hero-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 25px;
	line-height: 1.6;
}

.hero-features {
	display: flex;
	gap: 25px;
	margin-bottom: 25px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-secondary);
}

.feature-icon {
	width: 20px;
	height: 20px;
	background: var(--primary-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.hero-cta {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
}

.btn-primary {
	background: var(--primary-green);
	color: white;
	border: none;
}

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

.btn-secondary {
	background: transparent;
	color: var(--primary-green);
	border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
	background: var(--primary-green);
	color: white;
}

.hero-price {
	background: var(--light-green);
	padding: 25px;
	border-radius: var(--border-radius);
	text-align: center;
	min-width: 200px;
}

.price-label {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.price-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 8px;
}

.price-note {
	font-size: 12px;
	color: var(--text-secondary);
}

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

.content-wrapper {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 50px;
}

.content-area {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--shadow-light);
}

/* Типы УЗИ */
.uzi-types {
	margin-bottom: 50px;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

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

.type-card {
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 25px;
	transition: all 0.3s ease;
}

.type-card:hover {
	border-color: var(--primary-green);
	background: var(--light-green);
	transform: translateY(-2px);
}

.type-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.type-description {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 15px;
	line-height: 1.5;
}

.type-price {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-green);
	margin-bottom: 15px;
}

.type-link {
	color: var(--primary-green);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.type-link:hover {
	text-decoration: underline;
}

/* Подготовка */
.preparation-section {
	margin-bottom: 50px;
}

.prep-list {
	margin-top: 20px;
	padding-left: 20px;
}

.prep-list li {
	margin-bottom: 10px;
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 16px;
}

/* Преимущества */
.advantages-section {
	margin-bottom: 50px;
}

.advantages-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 25px;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 15px;
	background: var(--bg-section);
	border-radius: 8px;
}

.advantage-icon {
	width: 24px;
	height: 24px;
	background: var(--primary-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	font-weight: bold;
	flex-shrink: 0;
	margin-top: 2px;
}

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

/* FAQ */
.faq-section h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 25px;
}

.faq-item {
	border: 1px solid var(--border-light);
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: var(--bg-section);
}

.faq-icon {
	font-size: 18px;
	color: var(--primary-green);
	transition: transform 0.3s ease;
}

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

.faq-answer.open {
	max-height: 200px;
	padding: 0 20px 20px;
}

.faq-answer p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.5;
}

/* Боковая панель - ИСПРАВЛЕНО */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
	position: sticky;
	top: 20px;
	height: fit-content;
}

.sidebar-card {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 25px;
	box-shadow: var(--shadow-light);
}

.sidebar-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-secondary);
}

.contact-value {
	font-weight: 600;
	color: var(--text-primary);
}

.contact-link {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 600;
}

.contact-link:hover {
	text-decoration: underline;
}

.cta-button {
	width: 100%;
	padding: 14px 20px;
	background: var(--primary-green);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	display: block;
	margin-bottom: 15px;
}

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

.cta-button.secondary {
	background: transparent;
	color: var(--primary-green);
	border: 2px solid var(--primary-green);
	margin-bottom: 0;
}

.cta-button.secondary:hover {
	background: var(--primary-green);
	color: white;
}

.locations-list {
	list-style: none;
	margin-top: 15px;
}

.locations-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-light);
	font-size: 13px;
	color: var(--text-secondary);
}

.locations-list li:last-child {
	border-bottom: none;
}

.location-name {
	font-weight: 500;
	color: var(--text-primary);
}

.promo-card {
	background: var(--light-green);
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
}

.promo-title {
	font-weight: 600;
	color: var(--primary-green);
	margin-bottom: 5px;
	font-size: 14px;
}

.promo-text {
	font-size: 13px;
	color: var(--text-secondary);
}

.promo-card.secondary {
	background: var(--bg-section);
}

.promo-card.secondary .promo-title {
	color: var(--text-primary);
}

/* Адаптивность */
@media (max-width: 1200px) {
	.content-wrapper {
		grid-template-columns: 1fr 280px;
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.content-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.sidebar {
		order: 1;
		position: static;
		flex-direction: row;
		gap: 20px;
		margin-top: 30px;
	}
	
	.sidebar-card {
		flex: 1;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.hero-section {
		padding: 30px 0;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 25px;
		text-align: center;
	}
	
	.hero-text h1 {
		font-size: 28px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-features {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.content-area {
		padding: 30px 25px;
	}
	
	.section-title {
		font-size: 24px;
	}
	
	.types-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.advantages-list {
		grid-template-columns: 1fr;
	}
	
	.sidebar {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.hero-features {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	
	.hero-cta {
		flex-direction: column;
	}
	
	.content-area {
		padding: 25px 20px;
	}
	
	.type-card {
		padding: 20px;
	}
}

/* Анимации */
.type-card,
.advantage-item,
.faq-item {
	opacity: 0;
	transform: translateY(20px);
	animation: slideUp 0.6s ease forwards;
}

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

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}/* End custom CSS */