* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #0c0c0c;
	color: #eaeaea;
	line-height: 1.6;
	overflow-x: hidden;
}

.cv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.cv-section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.cv-section.cv-visible {
	opacity: 1;
	transform: translateY(0);
}

/* === ТИПОГРАФИКА === */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Lora', serif;
	font-weight: 600;
	margin-bottom: 20px;
	color: #6a5acd;
}

.cv-title-main {
	font-size: 3.5rem;
	text-align: center;
	background: linear-gradient(135deg, #6a5acd, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
}

.cv-title-section {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.cv-title-section::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #6a5acd, #00c853);
	margin: 20px auto;
	border-radius: 2px;
}

.cv-subtitle {
	font-size: 1.3rem;
	color: #eaeaea;
	text-align: center;
	margin-bottom: 40px;
	opacity: 0.9;
}

.cv-text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #eaeaea;
}

.cv-text-highlight {
	color: #ffd700;
	font-weight: 500;
}

/* === HEADER === */
.cv-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1200px;
	background: rgba(12, 12, 12, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	z-index: 1000;
	padding: 15px 30px;
	border: 1px solid rgba(106, 90, 205, 0.3);
	transition: all 0.3s ease;
}

.cv-header.cv-scrolled {
	border-bottom: 2px solid #6a5acd;
	box-shadow: 0 5px 30px rgba(106, 90, 205, 0.2);
}

.cv-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cv-logo {
	font-family: 'Lora', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: #6a5acd;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cv-logo:hover {
	color: #ffd700;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cv-nav-menu {
	display: flex;
	list-style: none;
	gap: 1.5rem;
}

.cv-nav-link {
	color: #eaeaea;
	text-decoration: none;
	font-weight: 400;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 0;
}

.cv-nav-link:hover {
	color: #00c853;
	text-shadow: 0 0 8px rgba(0, 200, 83, 0.4);
}

.cv-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #6a5acd, #00c853);
	transition: width 0.3s ease;
}

.cv-nav-link:hover::after {
	width: 100%;
}

.cv-burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	background: none;
	border: none;
}

.cv-burger-line {
	width: 25px;
	height: 3px;
	background: #eaeaea;
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* === HERO СЕКЦИЯ === */
.cv-hero {
	background: linear-gradient(
		135deg,
		rgba(12, 12, 12, 0.9),
		rgba(26, 26, 26, 0.9)
	);
	min-height: 100vh;
	display: flex !important;
	align-items: center;
	justify-content: center;

	position: relative;
	overflow: hidden;
}

.cv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/cv-hero.webp') center/cover;
	opacity: 0.3;
}

.cv-hero-content {
	text-align: center;
	z-index: 2;
	position: relative;
}

.cv-hero-buttons {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* === КНОПКИ === */
.cv-btn {
	display: inline-block;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cv-btn-primary {
	background: linear-gradient(135deg, #6a5acd, #00c853);
	color: white;
	box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.cv-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(106, 90, 205, 0.4);
}

.cv-btn-secondary {
	background: transparent;
	color: #ffd700;
	border: 2px solid #ffd700;
}

.cv-btn-secondary:hover {
	background: #ffd700;
	color: #0c0c0c;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cv-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
	transition: all 0.5s ease;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.cv-btn:hover::before {
	width: 300px;
	height: 300px;
}

/* === КАРТОЧКИ КОНТЕНТА === */
.cv-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.cv-card {
	background: linear-gradient(145deg, #1a1a1a, #141414);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(106, 90, 205, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6a5acd, #00c853, #ffd700);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.cv-card:hover::before {
	transform: scaleX(1);
}

.cv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(106, 90, 205, 0.2);
	border-color: rgba(106, 90, 205, 0.5);
}

.cv-card-icon {
	font-size: 3rem;
	color: #ffd700;
	margin-bottom: 20px;
	display: block;
}

.cv-card-title {
	font-size: 1.5rem;
	color: #6a5acd;
	margin-bottom: 15px;
}

.cv-card-text {
	color: #eaeaea;
	opacity: 0.9;
	line-height: 1.6;
}

/* === ОТЗЫВЫ === */
.cv-testimonials {
	background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
	border-radius: 20px;
	padding: 60px 40px;
	margin: 80px 0;
}

.cv-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.cv-testimonial {
	text-align: center;
	padding: 30px;
	background: rgba(106, 90, 205, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(106, 90, 205, 0.1);
	transition: all 0.3s ease;
}

.cv-testimonial:hover {
	border-color: rgba(106, 90, 205, 0.3);
	background: rgba(106, 90, 205, 0.1);
}

.cv-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #6a5acd, #00c853);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
}

.cv-testimonial-name {
	font-size: 1.3rem;
	color: #ffd700;
	margin-bottom: 10px;
}

.cv-testimonial-role {
	color: #6a5acd;
	font-size: 0.95rem;
	margin-bottom: 20px;
}

.cv-testimonial-text {
	font-style: italic;
	color: #eaeaea;
	opacity: 0.9;
}

/* === ФОРМЫ === */
.cv-form-section {
	background: linear-gradient(135deg, #1a1a1a, #141414);
	border-radius: 20px;
	padding: 50px;
	margin: 60px 0;
	border: 1px solid rgba(106, 90, 205, 0.2);
}

.cv-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 30px;
}

.cv-form-group {
	display: flex;
	flex-direction: column;
}

.cv-form-label {
	color: #ffd700;
	margin-bottom: 8px;
	font-weight: 500;
}

.cv-form-input,
.cv-form-textarea {
	background: rgba(26, 26, 26, 0.8);
	border: 2px solid rgba(106, 90, 205, 0.3);
	border-radius: 10px;
	padding: 15px;
	color: #eaeaea;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.cv-form-input:focus,
.cv-form-textarea:focus {
	outline: none;
	border-color: #6a5acd;
	box-shadow: 0 0 15px rgba(106, 90, 205, 0.2);
	background: rgba(26, 26, 26, 1);
}

.cv-form-textarea {
	resize: vertical;
	min-height: 120px;
	grid-column: 1 / -1;
}

.cv-form-submit {
	grid-column: 1 / -1;
	justify-self: center;
	margin-top: 20px;
}

.cv-form-error {
	color: #ff4757;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.cv-form-success {
	background: rgba(0, 200, 83, 0.1);
	border: 1px solid rgba(0, 200, 83, 0.3);
	color: #00c853;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	margin-top: 20px;
	display: none;
}

/* === КАРТА === */
.cv-map-container {
	margin: 40px 0;
	border-radius: 15px;
	overflow: hidden;
	height: 400px;
	border: 2px solid rgba(106, 90, 205, 0.3);
}

/* Map Section */
.cv-map {
	height: 100%;
	min-height: 400px;
	filter: grayscale(0.3) contrast(1.1);

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.cv-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.cv-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.cv-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 === */
.cv-footer {
	background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
	padding: 60px 0 30px;
	border-top: 1px solid rgba(106, 90, 205, 0.2);
}

.cv-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.cv-footer-section h3 {
	color: #ffd700;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.cv-footer-section p,
.cv-footer-section a {
	color: #eaeaea;
	opacity: 0.8;
	text-decoration: none;
	line-height: 1.8;
	transition: all 0.3s ease;
}

.cv-footer-section a:hover {
	color: #6a5acd;
	opacity: 1;
}

.cv-footer-menu {
	list-style: none;
}

.cv-footer-menu li {
	margin-bottom: 10px;
}

.cv-footer-menu a {
	display: block;
	padding: 5px 0;
	border-left: 3px solid transparent;
	padding-left: 15px;
	margin-left: -15px;
	transition: all 0.3s ease;
}

.cv-footer-menu a:hover {
	border-left-color: #6a5acd;
	padding-left: 20px;
}

.cv-footer-bottom {
	border-top: 1px solid rgba(106, 90, 205, 0.2);
	padding-top: 30px;
	text-align: center;
	color: #eaeaea;
	opacity: 0.7;
}

/* === СПЕЦИФИЧНЫЕ СТИЛИ СТРАНИЦ === */

/* Энциклопедия минералов */
.cv-minerals-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.cv-mineral-card {
	background: linear-gradient(145deg, #1a1a1a, #141414);
	border-radius: 15px;
	padding: 25px;
	border: 1px solid rgba(106, 90, 205, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.cv-mineral-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 200, 83, 0.4);
	box-shadow: 0 10px 30px rgba(0, 200, 83, 0.1);
}

.cv-mineral-title {
	color: #00c853;
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.cv-mineral-formula {
	background: rgba(106, 90, 205, 0.1);
	color: #6a5acd;
	padding: 8px 15px;
	border-radius: 20px;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	display: inline-block;
	margin-bottom: 15px;
}

.cv-mineral-props {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	margin: 20px 0;
}

.cv-mineral-prop {
	background: rgba(255, 215, 0, 0.1);
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 0.9rem;
	text-align: center;
}

.cv-mineral-prop-label {
	color: #ffd700;
	font-weight: 500;
	display: block;
}

.cv-mineral-prop-value {
	color: #eaeaea;
	font-size: 0.85rem;
}

/* Классификация кристаллов */
.cv-crystal-systems {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 50px 0;
}

.cv-crystal-system {
	background: linear-gradient(145deg, #1a1a1a, #141414);
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cv-crystal-system::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6a5acd, #00c853, #ffd700);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.cv-crystal-system:hover::before {
	transform: scaleX(1);
}

.cv-crystal-system:hover {
	border-color: rgba(106, 90, 205, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(106, 90, 205, 0.15);
}

.cv-crystal-icon {
	font-size: 4rem;
	color: #ffd700;
	margin-bottom: 20px;
	display: block;
}

.cv-crystal-name {
	color: #6a5acd;
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.cv-crystal-desc {
	color: #eaeaea;
	opacity: 0.9;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* О нас - команда */
.cv-team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin: 50px 0;
}

.cv-team-member {
	background: linear-gradient(145deg, #1a1a1a, #141414);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	border: 1px solid rgba(106, 90, 205, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.cv-team-member:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 200, 83, 0.4);
	box-shadow: 0 15px 40px rgba(0, 200, 83, 0.1);
}

.cv-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, #6a5acd, #00c853);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	border: 3px solid rgba(255, 215, 0, 0.3);
}

.cv-team-name {
	color: #ffd700;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.cv-team-role {
	color: #6a5acd;
	font-size: 1rem;
	margin-bottom: 15px;
}

.cv-team-bio {
	color: #eaeaea;
	opacity: 0.9;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* === АНИМАЦИИ === */
@keyframes cv-float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-10px) rotate(1deg);
	}
	66% {
		transform: translateY(5px) rotate(-1deg);
	}
}

@keyframes cv-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(106, 90, 205, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(106, 90, 205, 0.6);
	}
}

@keyframes cv-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cv-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cv-animate-slide-left {
	animation: cv-slide-in-left 0.8s ease-out;
}

.cv-animate-fade-up {
	animation: cv-fade-in-up 0.8s ease-out;
}

/* === COOKIE POPUP === */
.cv-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 500px;
	background: linear-gradient(135deg, #1a1a1a, #141414);
	border: 2px solid rgba(106, 90, 205, 0.3);
	border-radius: 15px;
	padding: 20px;
	z-index: 10000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.5s ease;
}

.cv-cookie-popup.cv-show {
	transform: translateY(0);
	opacity: 1;
}

.cv-cookie-text {
	color: #eaeaea;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 15px;
}

.cv-cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.cv-cookie-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 25px;
	font-family: 'Roboto', sans-serif;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cv-cookie-accept {
	background: linear-gradient(135deg, #6a5acd, #00c853);
	color: white;
}

.cv-cookie-accept:hover {
	box-shadow: 0 5px 15px rgba(106, 90, 205, 0.4);
}

.cv-cookie-settings {
	background: transparent;
	color: #ffd700;
	border: 1px solid #ffd700;
}

.cv-cookie-settings:hover {
	background: #ffd700;
	color: #0c0c0c;
}

/* === ДОПОЛНИТЕЛЬНЫЕ УТИЛИТЫ === */
.cv-text-center {
	text-align: center;
}
.cv-text-left {
	text-align: left;
}
.cv-text-right {
	text-align: right;
}

.cv-mb-10 {
	margin-bottom: 10px;
}
.cv-mb-20 {
	margin-bottom: 20px;
}
.cv-mb-30 {
	margin-bottom: 30px;
}
.cv-mb-40 {
	margin-bottom: 40px;
}
.cv-mb-50 {
	margin-bottom: 50px;
}

.cv-mt-10 {
	margin-top: 10px;
}
.cv-mt-20 {
	margin-top: 20px;
}
.cv-mt-30 {
	margin-top: 30px;
}
.cv-mt-40 {
	margin-top: 40px;
}
.cv-mt-50 {
	margin-top: 50px;
}

.cv-p-10 {
	padding: 10px;
}
.cv-p-20 {
	padding: 20px;
}
.cv-p-30 {
	padding: 30px;
}

.cv-hidden {
	display: none;
}
.cv-visible {
	display: block;
}

/* === СПЕЦИАЛЬНЫЕ ЭФФЕКТЫ === */
.cv-gradient-text {
	background: linear-gradient(135deg, #6a5acd, #00c853, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cv-glow-on-hover:hover {
	animation: cv-glow 2s ease-in-out infinite;
}

.cv-parallax {
	transform: translateZ(0);
	transition: transform 0.1s ease-out;
}

/* === ЗАГРУЗЧИК === */
.cv-loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0c0c0c;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
	transition: opacity 0.5s ease;
}

.cv-loader.cv-hidden {
	opacity: 0;
	pointer-events: none;
}

.cv-spinner {
	width: 60px;
	height: 60px;
	border: 3px solid rgba(106, 90, 205, 0.3);
	border-top: 3px solid #6a5acd;
	border-radius: 50%;
	animation: cv-spin 1s linear infinite;
}

@keyframes cv-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* === МОДАЛЬНЫЕ ОКНА === */
.cv-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}

.cv-modal.cv-active {
	opacity: 1;
	pointer-events: all;
}

.cv-modal-content {
	background: linear-gradient(135deg, #1a1a1a, #141414);
	border-radius: 20px;
	padding: 40px;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	border: 2px solid rgba(106, 90, 205, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.cv-modal.cv-active .cv-modal-content {
	transform: scale(1);
}

.cv-modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: #eaeaea;
	font-size: 2rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

.cv-modal-close:hover {
	color: #6a5acd;
}

/* === АККОРДЕОН === */
.cv-accordion {
	border: 1px solid rgba(106, 90, 205, 0.2);
	border-radius: 15px;
	overflow: hidden;
	margin: 20px 0;
}

.cv-accordion-item {
	border-bottom: 1px solid rgba(106, 90, 205, 0.1);
}

.cv-accordion-item:last-child {
	border-bottom: none;
}

.cv-accordion-header {
	background: linear-gradient(135deg, #1a1a1a, #141414);
	padding: 20px;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cv-accordion-header:hover {
	background: rgba(106, 90, 205, 0.1);
}

.cv-accordion-title {
	color: #6a5acd;
	font-size: 1.2rem;
	margin: 0;
}

.cv-accordion-icon {
	color: #ffd700;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.cv-accordion-item.cv-active .cv-accordion-icon {
	transform: rotate(180deg);
}

.cv-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(12, 12, 12, 0.5);
}

.cv-accordion-content.cv-active {
	max-height: 1000px;
}

.cv-accordion-text {
	padding: 20px;
	color: #eaeaea;
	line-height: 1.6;
}

/* === ТАБЫ === */
.cv-tabs {
	margin: 40px 0;
}

.cv-tabs-nav {
	display: flex;
	background: linear-gradient(135deg, #1a1a1a, #141414);
	border-radius: 15px 15px 0 0;
	overflow-x: auto;
	flex-wrap: wrap;
	border: 1px solid rgba(106, 90, 205, 0.2);
	border-bottom: none;
}

.cv-tab-button {
	flex: 1;
	background: none;
	border: none;
	padding: 20px;

	color: #eaeaea;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border-right: 1px solid rgba(106, 90, 205, 0.1);
}

.cv-tab-button:last-child {
	border-right: none;
}

.cv-tab-button:hover {
	background: rgba(106, 90, 205, 0.1);
	color: #6a5acd;
}

.cv-tab-button.cv-active {
	background: linear-gradient(135deg, #6a5acd, #00c853);
	color: white;
}

.cv-tabs-content {
	background: linear-gradient(135deg, #1a1a1a, #141414);
	border: 1px solid rgba(106, 90, 205, 0.2);
	border-radius: 0 0 15px 15px;
	padding: 30px;
}

.cv-tab-pane {
	display: none;
}

.cv-tab-pane.cv-active {
	display: block;
	animation: cv-fade-in-up 0.5s ease;
}

/* === ПРОГРЕСС БАР === */
.cv-progress {
	background: rgba(26, 26, 26, 0.8);
	border-radius: 10px;
	height: 8px;
	overflow: hidden;
	margin: 20px 0;
	border: 1px solid rgba(106, 90, 205, 0.2);
}

.cv-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #6a5acd, #00c853);
	border-radius: 10px;
	transition: width 0.3s ease;
	position: relative;
}

.cv-progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	animation: cv-progress-shine 2s ease-in-out infinite;
}

@keyframes cv-progress-shine {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* === СТАТИСТИКА === */
.cv-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.cv-stat {
	text-align: center;
	padding: 30px;
	background: linear-gradient(145deg, #1a1a1a, #141414);
	border-radius: 15px;
	border: 1px solid rgba(106, 90, 205, 0.2);
	transition: all 0.3s ease;
}

.cv-stat:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 200, 83, 0.4);
	box-shadow: 0 10px 30px rgba(0, 200, 83, 0.1);
}

.cv-stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: #ffd700;
	margin-bottom: 10px;
	display: block;
}

.cv-stat-label {
	color: #6a5acd;
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.cv-stat-desc {
	color: #eaeaea;
	opacity: 0.8;
	font-size: 0.9rem;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
	.cv-header {
		top: 10px;
		width: calc(100% - 20px);
		padding: 12px 20px;
	}

	.cv-nav-menu {
		position: fixed;
		top: -100%;
		left: 0;
		right: 0;
		bottom: 0;
		height: 100vh;
		width: 100%;
		background: rgba(12, 12, 12, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 40px;
		border-radius: 15px;
		transform: translateY(-100%);
		transition: transform 0.3s ease;
	}

	.cv-nav-menu.cv-active {
		transform: translateY(0);
		top: 0;
	}

	.cv-burger {
		display: flex;
	}

	.cv-burger.cv-active .cv-burger-line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 3px);
	}

	.cv-burger.cv-active .cv-burger-line:nth-child(2) {
		opacity: 0;
	}

	.cv-burger.cv-active .cv-burger-line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.cv-title-main {
		font-size: 2.5rem;
	}

	.cv-title-section {
		font-size: 2rem;
	}

	.cv-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cv-btn {
		width: 100%;
		max-width: 300px;
	}

	.cv-cards-grid {
		grid-template-columns: 1fr;
	}

	.cv-form {
		grid-template-columns: 1fr;
	}

	.cv-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cv-section {
		padding: 50px 0;
	}

	.cv-container {
		padding: 0 15px;
	}

	.cv-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.cv-cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.cv-title-main {
		font-size: 2rem;
	}

	.cv-title-section {
		font-size: 1.7rem;
	}

	.cv-form-section {
		padding: 30px 20px;
	}

	.cv-card {
		padding: 20px;
	}

	.cv-testimonials {
		padding: 40px 20px;
	}

	.cv-testimonials-grid,
	.cv-minerals-showcase {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.cv-tabs-nav {
		flex-direction: column;
	}
}

/* Медиа-запросы для очень маленьких экранов */
@media (max-width: 320px) {
	.cv-container {
		padding: 0 10px;
	}

	.cv-header {
		padding: 10px 15px;
	}

	.cv-title-main {
		font-size: 1.8rem;
	}

	.cv-btn {
		padding: 12px 25px;
		font-size: 1rem;
	}
}

.cv-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	background-color: #1a1a1a;
	min-height: 100vh;
	box-shadow: 0 0 30px rgba(106, 90, 205, 0.1);
}

.cv-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 30px 0;
	border-bottom: 2px solid #6a5acd;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.cv-legal-title {
	font-size: 2.5rem;
	color: #6a5acd;
	margin-bottom: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.cv-legal-company {
	font-size: 1.3rem;
	color: #ffd700;
	margin-bottom: 10px;
	font-weight: 600;
}

.cv-legal-date {
	font-size: 1rem;
	color: #eaeaea;
	opacity: 0.8;
}

.cv-legal-content {
	max-width: 900px;
	margin: 0 auto;
}

.cv-legal-section {
	margin-bottom: 45px;
	padding: 30px;
	background-color: #262626;
	border-radius: 12px;
	border-left: 4px solid #6a5acd;
	transition: all 0.3s ease;
}

.cv-legal-section:hover {
	background-color: #2a2a2a;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(106, 90, 205, 0.15);
}

.cv-legal-section-title {
	font-size: 1.6rem;
	color: #00c853;
	margin-bottom: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cv-legal-section-number {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #6a5acd, #00c853);
	color: #0c0c0c;
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
	font-weight: bold;
	font-size: 1.1rem;
}

.cv-legal-text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 15px;
	color: #eaeaea;
}

.cv-legal-subsection {
	margin-left: 30px;
	margin-top: 20px;
	padding: 20px;
	background-color: #1f1f1f;
	border-radius: 8px;
	border-left: 2px solid #ffd700;
}

.cv-legal-list {
	list-style: none;
	padding-left: 0;
}

.cv-legal-list li {
	padding: 10px 0;
	border-bottom: 1px solid #333;
	position: relative;
	padding-left: 30px;
}

.cv-legal-list li:before {
	content: '◆';
	color: #ffd700;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.cv-legal-list li:last-child {
	border-bottom: none;
}

.cv-legal-highlight {
	color: #00c853;
	font-weight: 600;
}

.cv-legal-emphasis {
	color: #ffd700;
	font-weight: 600;
}

.cv-legal-contact {
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	border: 2px solid #6a5acd;
	border-radius: 15px;
	padding: 30px;
	margin-top: 40px;
	text-align: center;
}

.cv-legal-contact-title {
	font-size: 1.8rem;
	color: #6a5acd;
	margin-bottom: 20px;
	font-weight: 700;
}

.cv-legal-contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.cv-legal-contact-item {
	padding: 15px;
	background-color: #1f1f1f;
	border-radius: 8px;
	border: 1px solid #333;
	transition: all 0.3s ease;
}

.cv-legal-contact-item:hover {
	background-color: #2a2a2a;
	border-color: #00c853;
	transform: translateY(-2px);
}

.cv-legal-contact-label {
	color: #ffd700;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

.cv-legal-contact-value {
	color: #eaeaea;
	font-size: 1.1rem;
	word-break: break-word;
}

.cv-legal-warning {
	background-color: #2a1a1a;
	border: 2px solid #ff6b6b;
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0;
	position: relative;
}

.cv-legal-warning:before {
	content: '⚠';
	color: #ff6b6b;
	font-size: 1.5rem;
	position: absolute;
	top: 15px;
	left: 15px;
}

.cv-legal-warning-text {
	margin-left: 40px;
	color: #eaeaea;
	font-weight: 500;
}

.cv-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #1f1f1f;
	border-radius: 8px;
	overflow: hidden;
}

.cv-legal-table th,
.cv-legal-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #333;
}

.cv-legal-table th {
	background-color: #6a5acd;
	color: #0c0c0c;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cv-legal-table tr:hover {
	background-color: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
	.cv-legal-title {
		font-size: 2rem;
	}

	.cv-legal-section {
		padding: 20px;
		margin-bottom: 30px;
	}

	.cv-legal-section-title {
		font-size: 1.4rem;
	}

	.cv-legal-text {
		font-size: 1rem;
	}

	.cv-legal-contact-info {
		grid-template-columns: 1fr;
	}

	.cv-legal-subsection {
		margin-left: 15px;
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.cv-legal-title {
		font-size: 1.1rem;
		letter-spacing: 1px;
	}

	.cv-legal-company {
		font-size: 1.1rem;
	}

	.cv-legal-section {
		padding: 15px;
	}

	.cv-legal-section-title {
		font-size: 1.2rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.cv-legal-contact {
		padding: 20px;
	}
}
