:root {
	--dusty-rose: #C08081;
	--dusty-rose-dark: #A96B6B;
	--peach: #FAD5A5;
	--cream: #FDFBF7;
	--warm-gray: #5C4B40;
	--text-main: #4A3728;
	--text-muted: #8B7E74;
	--border-soft: rgba(220, 174, 150, 0.2);
	--glass-bg: rgba(255, 255, 255, 0.6);
	--transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	--max-width: 1280px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: var(--cream);
	color: var(--warm-gray);
	overflow-x: hidden;
	background-image:
			radial-gradient(circle at 70% 0%, rgba(192, 128, 129, 0.08), transparent 40%),
			radial-gradient(circle at 10% 100%, rgba(250, 213, 165, 0.1), transparent 40%);
	background-attachment: fixed;
}

h1, h2, h3, .font-futuristic {
	font-family: 'Space Grotesk', sans-serif;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.glass {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-soft);
}

.btn {
	display: inline-block;
	padding: 1.25rem 2.5rem;
	border-radius: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	font-size: 1.125rem;
	text-align: center;
}

.btn-primary {
	background-color: var(--dusty-rose);
	color: white;
	box-shadow: 0 20px 25px -5px rgba(192, 128, 129, 0.1), 0 10px 10px -5px rgba(192, 128, 129, 0.04);
	border-radius: 20px;
	width: 14rem;
	line-height: 26px;
}

.btn-primary:hover {
	background-color: var(--dusty-rose-dark);
	transform: scale(1.01);
}

.btn-outline {
	background: var(--glass-bg);
	color: var(--dusty-rose);
	border: 1px solid rgba(220, 174, 150, 0.4);
	backdrop-filter: blur(20px);
}

.btn-outline:hover {
	background: white;
}

/* Навигация и мобильное меню */
.navbar {
	position: fixed;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: var(--max-width);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	border-radius: 1rem;
	box-shadow: 0 4px 24px rgba(192, 128, 129, 0.05);
	border: 1px solid rgba(220, 174, 150, 0.3);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	z-index: 1001;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	background: linear-gradient(to bottom right, var(--dusty-rose), var(--peach));
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.125rem;
}

.logo-text {
	font-family: 'Space Grotesk';
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--warm-gray);
}

.nav-list {
	display: flex;
	gap: 0.5rem;
	list-style: none;
}

.nav-link {
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 0.75rem;
	color: var(--text-muted);
	text-decoration: none;
	transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
	color: var(--dusty-rose);
	background: rgba(192, 128, 129, 0.1);
}

.nav-btn {
	padding: 0.6rem 1.5rem;
	border-radius: 0.75rem;
	text-decoration: none;
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 700;
	background-color: var(--dusty-rose);
	color: white;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--warm-gray);
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(253, 251, 247, 0.98);
	backdrop-filter: blur(10px);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-list {
	list-style: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.mobile-nav-link {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-main);
	text-decoration: none;
	transition: color 0.3s;
	font-family: 'Space Grotesk', sans-serif;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
	color: var(--dusty-rose);
}

.close-menu-btn {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--warm-gray);
	cursor: pointer;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 6rem;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	background: rgba(192, 128, 129, 0.1);
	color: var(--dusty-rose);
	border-radius: 9999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: 1px solid rgba(192, 128, 129, 0.2);
	margin-bottom: 1rem;
}

.hero-badge .dot {
	width: 0.375rem;
	height: 0.375rem;
	background: var(--dusty-rose);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(192, 128, 129, 0.4);
}

.hero-title {
	font-size: 6rem;
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: var(--text-main);
	margin-bottom: 1rem;
}

.hero-title span {
	background: linear-gradient(to right, var(--dusty-rose), #DCAE96, var(--peach));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 15px rgba(192, 128, 129, 0.2);
}

.hero-desc {
	font-size: 1.5rem;
	color: var(--text-muted);
	line-height: 1.625;
	font-weight: 300;
	max-width: 32rem;
	margin-bottom: 2.5rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	align-items: center;
	margin-top: 1.5rem;
}

.stat-item h4 {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--text-main);
	letter-spacing: -0.05em;
}

.stat-item p {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #A99F96;
	font-weight: 700;
}

.divider {
	width: 1px;
	height: 2.5rem;
	background-color: #E9E1D6;
}

.hero-topic-cards {
	display: grid;
	gap: 1rem;
}

.topic-card {
	padding: 2rem;
	border-radius: 2rem;
	border: 1px solid #E9E1D6;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.6);
}

.topic-card:hover {
	border-color: rgba(192, 128, 129, 0.4);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.topic-icon-num {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	background: rgba(192, 128, 129, 0.1);
	border: 1px solid rgba(192, 128, 129, 0.2);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dusty-rose);
	font-weight: 700;
	font-size: 1.25rem;
	transition: var(--transition);
}

.topic-card:hover .topic-icon-num {
	background: var(--dusty-rose);
	color: white;
}

.topic-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 0.25rem;
	transition: color 0.3s;
}

.topic-card:hover .topic-title {
	color: var(--dusty-rose);
}

.topic-text {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
}

/* Общие стили секций */
.section-padding {
	padding: 5rem 0;
}

@media (min-width: 768px) {
	.section-padding {
		padding: 8rem 0;
	}
}

.section-header {
	margin-bottom: 4rem;
}

.section-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-title span {
	color: var(--dusty-rose);
}

.title-line {
	width: 5rem;
	height: 0.25rem;
	background: linear-gradient(to right, var(--dusty-rose), transparent);
	margin-bottom: 4rem;
}

/* Улучшенная адаптивность для раздела "Профессиональный путь" */
.edu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.edu-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.edu-card {
	padding: 2rem;
	border-radius: 1.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	border: 1px solid #E9E1D6;
}

.edu-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--warm-gray);
	margin-bottom: 2rem;
}

.timeline-item {
	position: relative;
	padding-left: 1.5rem;
	border-left: 2px solid var(--peach);
	margin-bottom: 2rem;
}

.timeline-dot {
	position: absolute;
	left: -9px;
	top: 0;
	width: 1rem;
	height: 1rem;
	background: white;
	border: 2px solid var(--dusty-rose);
	border-radius: 50%;
}

.timeline-year {
	color: #A99F96;
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.timeline-inst {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-main);
	line-height: 1.25;
}

.quote-card {
	padding: 2rem;
	border-radius: 1.5rem;
	background-color: rgba(250, 213, 165, 0.05);
	border: 1px solid rgba(250, 213, 165, 0.2);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--text-muted);
	line-height: 1.625;
	font-weight: 500;
	margin-top: 2rem;
}

/* Улучшенная адаптивность для раздела "Специализации" */
.spec-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.spec-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.spec-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

.spec-item {
	padding: 1.25rem;
	border-radius: 1rem;
	border: 1px solid #E9E1D6;
	background: rgba(255, 255, 255, 0.6);
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.625;
	transition: var(--transition);
}

.spec-item:hover {
	border-color: rgba(192, 128, 129, 0.3);
	color: var(--dusty-rose);
	background: white;
}

.spec-item.full-width {
	grid-column: 1 / -1;
	border-style: dashed;
	text-align: center;
	font-style: italic;
}

.spec-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dusty-rose);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
	text-align: center;
}

@media (min-width: 1024px) {
	.spec-title {
		text-align: left;
	}
}

/* Services Section */
.services-header {
	text-align: center;
	margin-bottom: 4rem;
}

.services-header h2 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1rem;
}

.services-header h2 span {
	color: var(--dusty-rose);
}

.services-header p {
	font-size: 1.125rem;
	color: var(--text-muted);
	font-weight: 500;
	max-width: 42rem;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.service-card {
	padding: 2.5rem;
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border: 1px solid #E9E1D6;
	transition: var(--transition);
	position: relative;
}

.service-card:hover {
	border-color: rgba(220, 174, 150, 0.5);
	transform: translateY(-5px);
}

.service-icon {
	width: 4.5rem;
	height: 4.5rem;
	background: var(--dusty-rose);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 10px 15px -3px rgba(192, 128, 129, 0.2);
}

.service-type {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #DCAE96;
}

.service-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--text-main);
	margin-top: 0.5rem;
}

.service-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.625;
	font-weight: 500;
	flex-grow: 1;
}

.service-footer {
	padding-top: 1.5rem;
	border-top: 1px solid #E9E1D6;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.address-box {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--warm-gray);
	font-size: 0.875rem;
	font-weight: 600;
}

.address-box .dot {
	width: 0.5rem;
	height: 0.5rem;
	background: var(--peach);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--peach);
}

.service-btn {
	padding: 1rem;
	border-radius: 1rem;
	cursor: pointer;
	font-weight: 700;
	width: 100%;
	background: var(--glass-bg);
	color: var(--dusty-rose);
	border: 1px solid rgba(220, 174, 150, 0.4);
	backdrop-filter: blur(20px);
	transition: var(--transition);
}

.service-btn:hover {
	background: white;
}

/* Group Analysis Section */
.groups-section {
	background-color: rgba(192, 128, 129, 0.05);
}

.groups-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.groups-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.groups-left {
	display: flex;
	flex-direction: column;
}

.groups-conditions {
	padding: 2rem;
	border-radius: 2rem;
	background-color: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(220, 174, 150, 0.3);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cond-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-main);
}

.cond-icon {
	width: 2rem;
	height: 2rem;
	background: rgba(250, 213, 165, 0.2);
	color: #DCAE96;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	font-style: italic;
	font-weight: 700;
}

.cond-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.cond-info-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.cond-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #A99F96;
	margin-bottom: 0.25rem;
}

.cond-val {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--warm-gray);
}

.benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.benefit-card {
	padding: 1.5rem;
	border-radius: 1.5rem;
	background-color: rgba(255, 255, 255, 0.3);
	border: 1px solid #E9E1D6;
	transition: var(--transition);
}

.benefit-card:hover {
	border-color: rgba(250, 213, 165, 0.6);
}

.benefit-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 0.5rem;
}

.benefit-card p {
	color: var(--text-muted);
	font-size: 0.875rem;
	line-height: 1.625;
	font-weight: 500;
}

/* Pricing Section */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: stretch;
}

@media (min-width: 768px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.pricing-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.plan-card {
	position: relative;
	padding: 0.25rem;
	border-radius: 2rem;
	transition: var(--transition);
	background: var(--glass-bg);
	border: 1px solid #E9E1D6;
}

.plan-card.featured {
	border-color: #DCAE96;
	z-index: 10;
	box-shadow: 0 25px 50px -12px rgba(192, 128, 129, 0.05);
}

@media (min-width: 1024px) {
	.plan-card.featured {
		transform: scale(1.05);
	}
}

.badge-popular {
	position: absolute;
	top: -1px;
	right: -1px;
	background: var(--dusty-rose);
	color: white;
	padding: 9px 1rem;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-bottom-left-radius: 9px;
	border-top-right-radius: 26px;
}

.plan-inner {
	padding: 2rem;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 1.75rem;
	display: flex;
	flex-direction: column;
}

.plan-header {
	margin-bottom: 1.5rem;
}

.plan-title {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #A99F96;
	margin-bottom: 1.5rem;
}

.plan-price-row {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	margin-bottom: 2rem;
}

.price-val {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-main);
	letter-spacing: -0.05em;
}

.price-curr {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-muted);
}

.plan-features {
	list-style: none;
	margin-bottom: 2.5rem;
	flex-grow: 1;
}

.plan-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--warm-gray);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.feat-icon {
	width: 1.25rem;
	height: 1.25rem;
	background: var(--cream);
	border: 1px solid rgba(220, 174, 150, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dusty-rose);
}

.plan-btn {
	width: 100%;
	padding: 1rem;
	border-radius: 1rem;
	font-weight: 700;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.plan-btn-featured {
	background-color: var(--dusty-rose);
	color: white;
	box-shadow: 0 10px 15px -3px rgba(192, 128, 129, 0.1);
}

.plan-btn-featured:hover {
	background-color: var(--dusty-rose-dark);
}

.plan-btn-outline {
	background-color: var(--cream);
	color: var(--text-muted);
	border: 1px solid #E9E1D6;
}

.plan-btn-outline:hover {
	background-color: white;
}

/* Contact Section */
.contact-box {
	border-radius: 2rem;
	overflow: hidden;
	border: 1px solid #E9E1D6;
	box-shadow: 0 25px 50px -12px rgba(220, 174, 150, 0.1);
	display: grid;
	grid-template-columns: 1fr;
	background: rgba(255, 255, 255, 0.4);
}

@media (min-width: 1024px) {
	.contact-box {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-left {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

@media (min-width: 768px) {
	.contact-left {
		padding: 4rem;
	}
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.method-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.method-icon {
	width: 3.5rem;
	height: 3.5rem;
	background: rgba(192, 128, 129, 0.1);
	border: 1px solid rgba(192, 128, 129, 0.2);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dusty-rose);
}

.method-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #A99F96;
	margin-bottom: 0.25rem;
}

.method-val {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-main);
	text-decoration: none;
	transition: color 0.3s;
}

.method-val:hover {
	color: var(--dusty-rose);
}

.email-val {
	font-size: 1.25rem;
}

@media (max-width: 640px) {
	.method-val {
		font-size: 1.25rem;
	}
	.email-val {
		font-size: 1rem;
	}
}

.contact-right {
	background-color: rgba(250, 247, 242, 0.5);
	padding: 2rem;
}

@media (min-width: 768px) {
	.contact-right {
		padding: 4rem;
	}
}

.form-row {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #A99F96;
	margin-bottom: 0.5rem;
	padding: 0 0.5rem;
}

.form-input, .form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #E9E1D6;
	border-radius: 1rem;
	font-family: inherit;
	font-size: 1rem;
	color: var(--text-main);
	transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--dusty-rose);
	box-shadow: 0 0 0 4px rgba(192, 128, 129, 0.05);
}

/* Footer */
.footer {
	padding: 5rem 0 2.5rem;
	background-color: rgba(255, 255, 255, 0.5);
	border-top: 1px solid #E9E1D6;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.footer-top {
		grid-template-columns: 2fr 1fr 1fr;
		gap: 4rem;
	}
}

.footer-brand {
	max-width: 100%;
}

@media (min-width: 768px) {
	.footer-brand {
		max-width: 20rem;
	}
}

.footer-brand h4 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-weight: 500;
	line-height: 1.6;
}

.footer-col h5 {
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #A99F96;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	text-decoration: none;
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--dusty-rose);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #E9E1D6;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
}

@media (min-width: 640px) {
	.footer-bottom {
		flex-direction: row;
		gap: 0;
	}
}

.copyright {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #A99F96;
}

.tagline {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #DCAE96;
	font-style: italic;
}

/* Microdata структурированные данные для SEO */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Стили для страницы приватности */
.privacy-page {
	background: linear-gradient(135deg, #fdf8f5 0%, #f8f2ed 100%);
	min-height: 100vh;
}

.privacy-hero {
	background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--peach) 100%);
	color: white;
	padding: 6rem 0 4rem;
	position: relative;
	overflow: hidden;
}

.privacy-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="white" fill-opacity="0.05" d="M0,0 L100,0 L100,100 Z"/></svg>');
	background-size: cover;
}

.privacy-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.privacy-hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.privacy-hero h1 span {
}

.privacy-hero-subtitle {
	font-size: 1.25rem;
	opacity: 0.95;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	font-weight: 500;
}

.privacy-hero-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.privacy-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-meta-item i {
	font-size: 1.25rem;
}

/* Контент секция */
.privacy-content-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 4rem;
	position: relative;
}

@media (max-width: 992px) {
	.privacy-content-wrapper {
		grid-template-columns: 1fr;
	}
}

/* Сайдбар */
.privacy-sidebar {
	position: relative;
}

.privacy-sidebar-sticky {
	position: sticky;
	top: 120px;
}

.privacy-sidebar h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--peach);
}

.privacy-nav {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.privacy-nav li {
	margin-bottom: 0.75rem;
}

.privacy-nav-link {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--text-muted);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-weight: 500;
	border-left: 3px solid transparent;
}

.privacy-nav-link:hover {
	color: var(--dusty-rose);
	background: rgba(198, 165, 151, 0.1);
	border-left-color: var(--dusty-rose);
}

.privacy-nav-link.active {
	color: var(--dusty-rose);
	background: rgba(198, 165, 151, 0.15);
	border-left-color: var(--dusty-rose);
	font-weight: 600;
}

.privacy-sidebar-note {
	background: rgba(161, 194, 187, 0.1);
	border: 1px solid rgba(161, 194, 187, 0.3);
	border-radius: 12px;
	padding: 1.25rem;
	margin-top: 2rem;
}

.privacy-sidebar-note i {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	display: block;
}

.privacy-sidebar-note p {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--text-muted);
	margin: 0;
}

/* Основной контент */
.privacy-main-content {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
	.privacy-main-content {
		padding: 2rem 1.5rem;
	}
}

.privacy-section {
	margin-bottom: 4rem;
	scroll-margin-top: 100px;
}

.privacy-section:last-child {
	margin-bottom: 0;
}

.privacy-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1.5rem;
	line-height: 1.3;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-number {
	color: var(--dusty-rose);
	font-size: 1.5rem;
	font-weight: 800;
	min-width: 2.5rem;
}

.privacy-section > p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: 2rem;
}

/* Сетки и карточки */
.principles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.principle-card {
	background: var(--glass-bg);
	border: 1px solid var(--border-soft);
	border-radius: 16px;
	padding: 1.75rem;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.principle-icon {
	width: 3.5rem;
	height: 3.5rem;
	background: linear-gradient(135deg, var(--dusty-rose), var(--peach));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: white;
	font-size: 1.5rem;
}

.principle-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-main);
}

.principle-card p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0;
}

/* Таблица */
.data-table-container {
	overflow-x: auto;
	margin: 2rem 0;
	border-radius: 12px;
	border: 1px solid #E9E1D6;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.data-table th {
	background: rgba(161, 194, 187, 0.15);
	font-weight: 600;
	text-align: left;
	padding: 1.25rem;
}

.data-table td {
	padding: 1.25rem;
	border-bottom: 1px solid #E9E1D6;
	vertical-align: top;
}

.data-table tr:last-child td {
	border-bottom: none;
}

.data-table tr:hover {
	background: rgba(198, 165, 151, 0.05);
}

/* Заметки */
.privacy-note {
	background: rgba(161, 194, 187, 0.1);
	padding: 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 2rem 0;
}

.privacy-note h4 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
}

.privacy-note p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Сетка защиты */
.protection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.protection-item {
	background: white;
	border: 1px solid #E9E1D6;
	border-radius: 16px;
	padding: 1.75rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.protection-item h4 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-main);
	margin-bottom: 1.25rem;
	font-size: 1.25rem;
}

.protection-item h4 i {
	color: var(--dusty-rose);
}

.protection-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.protection-item li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.5;
	color: var(--text-muted);
}

.protection-item li:before {
	content: '•';
	color: var(--dusty-rose);
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* Аккордеон */
.secrets-accordion {
	margin-top: 2rem;
}

.accordion-item {
	border: 1px solid #E9E1D6;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	background: white;
}

.accordion-header {
	width: 100%;
	padding: 1.5rem;
	text-align: left;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-main);
	transition: background 0.3s ease;
}

.accordion-header:hover {
	background: rgba(198, 165, 151, 0.05);
}

.accordion-header i {
	transition: transform 0.3s ease;
}

.accordion-content {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
	padding-bottom: 1.5rem;
	margin: 0;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Права */
.rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.right-card {
	background: var(--glass-bg);
	border: 1px solid #E9E1D6;
	border-radius: 16px;
	padding: 1.75rem;
	position: relative;
	transition: transform 0.3s ease;
}

.right-card:hover {
	transform: translateY(-5px);
}

.right-number {
	position: absolute;
	top: -1rem;
	left: 1.5rem;
	background: var(--dusty-rose);
	color: white;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
}

.right-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0.5rem 0 1rem 0;
	color: var(--text-main);
}

.right-card p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0;
}

.rights-action {
	background: rgba(198, 165, 151, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 2rem;
	border-left: 4px solid var(--dusty-rose);
}

.rights-action p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Исключения */
.exceptions-list {
	margin-top: 2rem;
}

.exception-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.75rem;
	border-radius: 16px;
	margin-bottom: 1.25rem;
	align-items: flex-start;
}

.exception-item.warning {
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
}

.exception-item.info {
	background: rgba(33, 150, 243, 0.1);
	border: 1px solid rgba(33, 150, 243, 0.3);
}

.exception-icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.exception-item.warning .exception-icon {
	background: rgba(255, 193, 7, 0.2);
	color: #ff9800;
}

.exception-item.info .exception-icon {
	background: rgba(33, 150, 243, 0.2);
	color: #2196f3;
}

.exception-item h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-main);
}

.exception-item p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Контакты */
.contact-privacy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.contact-privacy-card {
	background: white;
	border: 1px solid #E9E1D6;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-privacy-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
	width: 4rem;
	height: 4rem;
	background: linear-gradient(135deg, var(--dusty-rose), var(--peach));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 1.5rem;
}

.contact-privacy-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-main);
}

.contact-privacy-card p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
}

.contact-link {
	display: inline-block;
	color: var(--dusty-rose);
	font-weight: 600;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border: 2px solid var(--dusty-rose);
	border-radius: 50px;
	transition: all 0.3s ease;
}

.contact-link:hover {
	background: var(--dusty-rose);
	color: white;
}

.privacy-update {
	background: rgba(161, 194, 187, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 3rem;
	border: 1px solid rgba(161, 194, 187, 0.3);
}

.privacy-update h4 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
}

.privacy-update p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-muted);
}

/* CTA секция */
.privacy-cta {
	color: white;
	padding: 5rem 0;
	text-align: center;
}

.privacy-cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.privacy-cta h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #4a3728;
}

.privacy-cta p {
	font-size: 1.25rem;
	opacity: 0.9;
	margin-bottom: 2.5rem;
	line-height: 1.6;
	color: #4a3728;
}

.privacy-cta .btn {
	background: #c08081;
	font-weight: 700;
	padding: 1rem 3rem;
	font-size: 1.125rem;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.privacy-cta .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Адаптивность для страницы приватности */
@media (max-width: 768px) {
	.privacy-hero {
		padding: 4rem 0 3rem;
	}

	.privacy-hero h1 {
		font-size: 2.5rem;
	}

	.privacy-hero-subtitle {
		font-size: 1.125rem;
	}

	.privacy-hero-meta {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.privacy-section h2 {
		font-size: 1.75rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.privacy-cta h2 {
		font-size: 2rem;
	}

	.privacy-cta p {
		font-size: 1.125rem;
	}
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.hero-title {
		font-size: 4rem;
		margin: 2rem 0 0 0;
	}
	.hero-actions {
		justify-content: center;
	}
	.section-title {
		font-size: 2.5rem;
	}
	.hero-desc {
		margin: 2.5rem auto;
	}
	.navbar {
		width: 95%;
		top: 1rem;
		padding: 0.75rem 1rem;
	}
	.nav-list {
		display: none;
	}
	.mobile-menu-btn {
		display: block;
	}
	.hero-content {
		text-align: center;
	}
	.hero-stats {
		justify-content: center;
	}
	.privacy-cta .btn {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.hero-stats {
		justify-content: center;
	}
	.hero-title {
		font-size: 3rem;
	}
	.hero-desc {
		font-size: 1.25rem;
	}
	.services-header h2, .section-title {
		font-size: 2rem;
	}
	.hero-actions {
		flex-direction: column;
	}
	.hero-actions .btn {
		width: 100%;
	}
	.section-padding {
		padding: 3rem 0;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-grid {
		gap: 2rem;
	}
	.section-padding {
		padding: 3rem 0;
	}
	.service-card, .plan-inner {
		padding: 1.5rem;
	}
	.contact-box {
		border-radius: 1rem;
	}
	.method-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}