:root {
	--sh-bg-primary: #0d0f12;
	--sh-bg-secondary: #1a1c20;
	--sh-bg-tertiary: #14161a;
	--sh-accent-teal: #00c9a7;
	--sh-accent-gold: #ffd166;
	--sh-accent-purple: #5c6bc0;
	--sh-text-primary: #eaeaea;
	--sh-text-secondary: #b8b8b8;
	--sh-text-muted: #888888;
	--sh-border: #2a2c30;
	--sh-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	--sh-shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.5);
	--sh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--sh-text-primary);
	background-color: var(--sh-bg-primary);
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--sh-accent-teal);
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--sh-accent-teal);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--sh-text-primary);
}

h4 {
	font-size: 1.25rem;
	color: var(--sh-text-primary);
}

p {
	margin-bottom: 1rem;
	color: var(--sh-text-secondary);
}

a {
	color: var(--sh-accent-teal);
	text-decoration: none;
	transition: var(--sh-transition);
}

a:hover {
	color: var(--sh-accent-gold);
	text-shadow: 0 0 8px var(--sh-accent-gold);
}

/* Container */
.sh-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.sh-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.sh-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(13, 15, 18, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--sh-border);
	z-index: 1000;
	transition: var(--sh-transition);
}

.sh-header.sh-scrolled {
	background: rgba(13, 15, 18, 0.95);
	box-shadow: var(--sh-shadow);
	border-bottom: 1px solid var(--sh-accent-teal);
}

.sh-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.sh-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--sh-accent-teal);
	text-decoration: none;
	transition: var(--sh-transition);
}

.sh-logo:hover {
	color: var(--sh-accent-gold);
	text-shadow: 0 0 12px var(--sh-accent-gold);
}

.sh-nav {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.sh-nav-link {
	color: var(--sh-text-primary);
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: var(--sh-transition);
	position: relative;
}

.sh-nav-link:hover {
	color: var(--sh-accent-gold);
	background: rgba(255, 209, 102, 0.1);
	transform: translateY(-2px);
}

.sh-nav-link.sh-active {
	color: var(--sh-accent-teal);
	background: rgba(0, 201, 167, 0.1);
}

.sh-mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--sh-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--sh-transition);
}

.sh-mobile-menu-btn:hover {
	color: var(--sh-accent-teal);
}

/* Mobile Menu */
.sh-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 300px;
	height: 100vh;
	background: var(--sh-bg-secondary);
	padding: 2rem;
	transition: var(--sh-transition);
	z-index: 1001;
	border-left: 1px solid var(--sh-border);
}

.sh-mobile-menu.sh-active {
	right: 0;
}

.sh-mobile-menu-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--sh-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

.sh-mobile-nav {
	list-style: none;
	margin-top: 3rem;
}

.sh-mobile-nav li {
	margin-bottom: 1rem;
}

.sh-mobile-nav .sh-nav-link {
	display: block;
	padding: 1rem;
	border-radius: 8px;
}

.sh-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: var(--sh-transition);
	z-index: 999;
}

.sh-overlay.sh-active {
	opacity: 1;
	visibility: visible;
}

/* Hero Section */
.sh-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(135deg, var(--sh-bg-primary) 0%, #1a1d2e 100%);
	overflow: hidden;
}

.sh-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(0, 201, 167, 0.1) 0%,
		transparent 70%
	);
	z-index: 1;
}

.sh-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.sh-hero-text h1 {
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--sh-accent-teal),
		var(--sh-accent-gold)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sh-hero-subtitle {
	font-size: 1.25rem;
	color: var(--sh-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.4;
}

.sh-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.sh-hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.sh-hero-visual::before {
	content: '';
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(0, 201, 167, 0.3) 0%,
		transparent 70%
	);
	border-radius: 50%;
	position: absolute;
	animation: sh-pulse 3s infinite;
}

/* Buttons */
.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border: none;
	border-radius: 12px;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: var(--sh-transition);
	position: relative;
	overflow: hidden;
	min-width: 150px;
}

.sh-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: var(--sh-transition);
}

.sh-btn:hover::before {
	left: 100%;
}

.sh-btn-primary {
	background: linear-gradient(135deg, var(--sh-accent-teal), #00b396);
	color: white;
	box-shadow: 0 4px 16px rgba(0, 201, 167, 0.3);
}

.sh-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 201, 167, 0.4);
}

.sh-btn-secondary {
	background: transparent;
	color: var(--sh-accent-gold);
	border: 2px solid var(--sh-accent-gold);
}

.sh-btn-secondary:hover {
	background: var(--sh-accent-gold);
	color: var(--sh-bg-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 209, 102, 0.3);
}

/* Sections */
.sh-section {
	padding: 5rem 0;
	position: relative;
}

.sh-section:nth-child(even) {
	background: var(--sh-bg-secondary);
}

.sh-section-title,
.sh-section h1 {
	text-align: center;
	margin-bottom: 3rem;
}

.sh-section-subtitle {
	text-align: center;
	color: var(--sh-text-secondary);
	font-size: 1.125rem;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Cards */
.sh-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.sh-card {
	background: var(--sh-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	transition: var(--sh-transition);
	border: 1px solid var(--sh-border);
	position: relative;
	overflow: hidden;
}

.sh-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--sh-accent-teal),
		var(--sh-accent-gold)
	);
	transform: scaleX(0);
	transition: var(--sh-transition);
}

.sh-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--sh-shadow-heavy);
	border-color: var(--sh-accent-teal);
}

.sh-card:hover::before {
	transform: scaleX(1);
}

.sh-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--sh-accent-teal),
		var(--sh-accent-purple)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.sh-card h3 {
	color: var(--sh-accent-teal);
	margin-bottom: 1rem;
}

.sh-card p {
	color: var(--sh-text-secondary);
	line-height: 1.6;
}

/* Team Section */
.sh-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.sh-team-card {
	background: var(--sh-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: var(--sh-transition);
	border: 1px solid var(--sh-border);
}

.sh-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--sh-shadow-heavy);
	border-color: var(--sh-accent-teal);
}

.sh-team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--sh-accent-teal),
		var(--sh-accent-purple)
	);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	font-weight: bold;
}

.sh-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.sh-team-name {
	color: var(--sh-accent-teal);
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.sh-team-role {
	color: var(--sh-text-secondary);
	font-size: 0.9rem;
}

/* Form Styles */
.sh-form-section {
	background: var(--sh-bg-secondary);
	padding: 4rem 0;
}

.sh-form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.sh-form {
	background: var(--sh-bg-primary);
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid var(--sh-border);
}

.sh-form-group {
	margin-bottom: 1.5rem;
}

.sh-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--sh-text-primary);
	font-weight: 500;
}

.sh-form-input,
.sh-form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--sh-bg-secondary);
	border: 1px solid var(--sh-border);
	border-radius: 8px;
	color: var(--sh-text-primary);
	font-family: inherit;
	transition: var(--sh-transition);
}

.sh-form-input:focus,
.sh-form-textarea:focus {
	outline: none;
	border-color: var(--sh-accent-teal);
	box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

.sh-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.sh-form-error {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.sh-contact-info h3 {
	color: var(--sh-accent-teal);
	margin-bottom: 1.5rem;
}

.sh-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: var(--sh-text-secondary);
}

.sh-contact-item i {
	color: var(--sh-accent-teal);
	margin-right: 1rem;
	width: 20px;
}

.sh-map-container {
	margin-top: 2rem;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	background: var(--sh-bg-secondary);
	border: 1px solid var(--sh-border);
}

/* Map Section */
.sh-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.sh-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.sh-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.sh-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Footer */
.sh-footer {
	background: var(--sh-bg-tertiary);
	padding: 3rem 0 1rem;
	border-top: 1px solid var(--sh-border);
}

.sh-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.sh-footer-section h4 {
	color: var(--sh-accent-teal);
	margin-bottom: 1rem;
}

.sh-footer-section p,
.sh-footer-section li {
	color: var(--sh-text-secondary);
	margin-bottom: 0.5rem;
}

.sh-footer-section ul {
	list-style: none;
}

.sh-footer-section a {
	color: var(--sh-text-secondary);
	transition: var(--sh-transition);
}

.sh-footer-section a:hover {
	color: var(--sh-accent-teal);
}

.sh-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--sh-border);
	color: var(--sh-text-muted);
}

/* Cookie Banner */
.sh-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--sh-bg-secondary);
	border-top: 1px solid var(--sh-border);
	padding: 1rem;
	z-index: 1000;
	transform: translateY(100%);
	transition: var(--sh-transition);
}

.sh-cookie-banner.sh-active {
	transform: translateY(0);
}

.sh-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.sh-cookie-text {
	color: var(--sh-text-secondary);
	flex: 1;
}

.sh-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.sh-btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	min-width: auto;
}

/* Content Sections */
.sh-content-section {
	padding: 3rem 0;
}

.sh-content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 2rem;
}

.sh-content-block {
	background: var(--sh-bg-secondary);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--sh-border);
}

.sh-content-block h3 {
	color: var(--sh-accent-teal);
	margin-bottom: 1rem;
}

.sh-content-block p {
	color: var(--sh-text-secondary);
	line-height: 1.6;
}

/* Animations */
@keyframes sh-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

@keyframes sh-fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sh-slideIn {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sh-animate-fade {
	animation: sh-fadeIn 0.6s ease-out;
}

.sh-animate-slide {
	animation: sh-slideIn 0.6s ease-out;
}

/* Utility Classes */
.sh-text-center {
	text-align: center;
}
.sh-text-left {
	text-align: left;
}
.sh-text-right {
	text-align: right;
}

.sh-mb-1 {
	margin-bottom: 1rem;
}
.sh-mb-2 {
	margin-bottom: 2rem;
}
.sh-mb-3 {
	margin-bottom: 3rem;
}

.sh-mt-1 {
	margin-top: 1rem;
}
.sh-mt-2 {
	margin-top: 2rem;
}
.sh-mt-3 {
	margin-top: 3rem;
}

.sh-hidden {
	display: none;
}
.sh-visible {
	display: block;
}

.sh-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.sh-nav {
		gap: 0;
	}
}

@media (max-width: 850px) {
	.sh-nav {
		display: none;
	}

	.sh-mobile-menu-btn {
		display: block;
	}
}

@media (max-width: 768px) {
	.sh-hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.sh-hero {
		min-height: 120vh;
	}

	.sh-hero-buttons {
		justify-content: center;
	}

	.sh-form-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.sh-hero-image {
		max-height: 400px;
	}

	.sh-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.sh-container,
	.sh-container-wide {
		padding: 0 1rem;
	}

	.sh-cards-grid {
		grid-template-columns: 1fr;
	}

	.sh-team-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.sh-content-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 480px) {
	.sh-section-title,
	.sh-section h1 {
		font-size: 1.5rem;
	}

	.sh-hero-text h1 {
		font-size: 1.5rem;
	}

	.sh-content-block h3 {
		font-size: 1.3rem;
		word-wrap: break-word;
	}

	.sh-section {
		padding: 3rem 0;
	}

	.sh-card {
		padding: 1.5rem;
	}

	.sh-btn {
		padding: 0.75rem 1.5rem;
		min-width: 120px;
	}
}

/* Loading States */
.sh-loading {
	opacity: 0.6;
	pointer-events: none;
}

.sh-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid var(--sh-accent-teal);
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
:root {
	--sh-legal-bg-primary: #0d0f12;
	--sh-legal-bg-secondary: #1a1c20;
	--sh-legal-accent-primary: #00c9a7;
	--sh-legal-accent-secondary: #ffd166;
	--sh-legal-accent-tertiary: #5c6bc0;
	--sh-legal-text-primary: #eaeaea;
	--sh-legal-text-secondary: #b8bcc8;
	--sh-legal-text-muted: #9098a9;
	--sh-legal-border: #2a2d35;
	--sh-legal-shadow: rgba(0, 0, 0, 0.3);
	--sh-legal-glow: rgba(0, 201, 167, 0.2);
}

.sh-legal-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 120px 20px;
	min-height: 100vh;
}

.sh-legal-content {
	background: var(--sh-legal-bg-secondary);
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 8px 32px var(--sh-legal-shadow),
		0 0 0 1px var(--sh-legal-border);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.sh-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--sh-legal-accent-primary),
		transparent
	);
	opacity: 0.5;
}

/* Заголовки страниц */
.sh-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--sh-legal-border);
	position: relative;
}

.sh-legal-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--sh-legal-accent-primary),
		var(--sh-legal-accent-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.sh-legal-company-info {
	margin: 2rem 0;
}

.sh-legal-company-name {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--sh-legal-text-primary);
	margin-bottom: 0.5rem;
}

.sh-legal-tagline {
	font-size: 1.1rem;
	color: var(--sh-legal-text-secondary);
	font-style: italic;
	margin-bottom: 1.5rem;
}

.sh-legal-contact-block {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	font-size: 0.95rem;
	color: var(--sh-legal-text-muted);
}

.sh-legal-date {
	font-size: 0.9rem;
	color: var(--sh-legal-accent-tertiary);
	font-weight: 500;
	margin-top: 1.5rem;
	padding: 0.8rem 1.5rem;
	background: rgba(92, 107, 192, 0.1);
	border-radius: 25px;
	display: inline-block;
	border: 1px solid rgba(92, 107, 192, 0.2);
}

/* Секции документа */
.sh-legal-section {
	margin-bottom: 3rem;
	position: relative;
}

.sh-legal-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--sh-legal-accent-primary);
	margin-bottom: 1.5rem;
	padding-left: 1rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.sh-legal-section-title::before {
	content: '';
	width: 4px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--sh-legal-accent-primary),
		var(--sh-legal-accent-secondary)
	);
	border-radius: 2px;
	box-shadow: 0 0 10px var(--sh-legal-glow);
}

/* Текстовые блоки */
.sh-legal-text-block {
	padding: 1.5rem;
	background: rgba(26, 28, 32, 0.5);
	border-radius: 12px;
	border: 1px solid var(--sh-legal-border);
	position: relative;
}

.sh-legal-text-block p {
	margin-bottom: 1.2rem;
}

.sh-legal-text-block p:last-child {
	margin-bottom: 0;
}

/* Списки */
.sh-legal-list {
	list-style: none;
	margin: 1.5rem 0;
	padding-left: 0;
}

.sh-legal-list li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.sh-legal-list li::before {
	content: '▶';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--sh-legal-accent-primary);
	font-size: 0.8rem;
	transform: translateY(0.2rem);
}

.sh-legal-list li strong {
	color: var(--sh-legal-accent-secondary);
	font-weight: 600;
}

/* Cookie-специфичные стили */
.sh-legal-cookie-category {
	margin: 1.5rem 0;
	padding: 1.2rem;
	background: rgba(0, 201, 167, 0.05);
	border-left: 3px solid var(--sh-legal-accent-primary);
	border-radius: 0 8px 8px 0;
}

.sh-legal-cookie-category h4 {
	color: var(--sh-legal-accent-primary);
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
}

.sh-legal-cookie-table {
	margin: 1.5rem 0;
}

.sh-legal-cookie-item {
	padding: 1rem;
	margin-bottom: 0.8rem;
	background: rgba(92, 107, 192, 0.08);
	border-radius: 8px;
	border: 1px solid rgba(92, 107, 192, 0.15);
	font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
	font-size: 0.9rem;
}

.sh-legal-cookie-meta {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: var(--sh-legal-text-muted);
	font-style: italic;
}

/* Руководство по браузерам */
.sh-legal-browser-guide {
	margin: 1.5rem 0;
}

.sh-legal-browser-item {
	padding: 1rem;
	margin-bottom: 0.8rem;
	background: rgba(255, 209, 102, 0.08);
	border-left: 3px solid var(--sh-legal-accent-secondary);
	border-radius: 0 8px 8px 0;
	font-size: 0.95rem;
}

.sh-legal-browser-item strong {
	color: var(--sh-legal-accent-secondary);
	display: block;
	margin-bottom: 0.3rem;
}

/* Финальный контактный блок */
.sh-legal-contact-final {
	margin-top: 2rem;
	padding: 2rem;
	background: rgba(0, 201, 167, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(0, 201, 167, 0.2);
	text-align: center;
}

.sh-legal-contact-final p {
	margin-bottom: 0.5rem;
}

.sh-legal-contact-final strong {
	color: var(--sh-legal-accent-primary);
	display: block;
	margin: 1rem 0 0.5rem 0;
	font-size: 1.05rem;
}

/* Адаптивный дизайн */
@media (max-width: 768px) {
	.sh-legal-content {
		padding: 2rem 1.5rem;
		border-radius: 12px;
	}

	.sh-legal-title {
		font-size: 1.8rem;
	}

	.sh-legal-section-title {
		font-size: 1.3rem;
		padding-left: 0;

		align-items: flex-start;
		gap: 0.5rem;
	}

	.sh-legal-text-block {
		padding: 1rem;
	}

	.sh-legal-contact-block {
		font-size: 0.9rem;
	}

	.sh-legal-list li {
		padding-left: 1.5rem;
	}

	.sh-legal-cookie-item {
		font-size: 0.85rem;
		padding: 0.8rem;
	}
}

@media (max-width: 480px) {
	.sh-legal-content {
		padding: 1.5rem 1rem;
	}

	.sh-legal-title {
		font-size: 1.3rem;
		line-height: 1.2;
	}

	.sh-legal-company-name {
		font-size: 1.5rem;
	}

	.sh-legal-tagline {
		font-size: 1rem;
	}

	.sh-legal-section-title {
		font-size: 1.2rem;
	}

	.sh-legal-contact-final {
		padding: 1.5rem 1rem;
		text-align: left;
	}

	.sh-legal-text-block {
		padding: 1rem 0.8rem;
	}

	.sh-legal-browser-item {
		padding: 0.8rem;
		font-size: 0.9rem;
	}

	.sh-legal-cookie-category {
		padding: 1rem;
	}
}
