:root {
	--color-obsidian: #40183f;
	--color-plum: #733986;
	--color-berry: #ab59c6;
	--color-orchid: #c79dd7;
	--color-pearl: #fdf8f5;

	--transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-pearl);
	background: var(--color-obsidian);
	overflow-x: hidden;
}

.navbar-fixed {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(14, 14, 17, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 0.5px solid rgba(199, 91, 145, 0.15);
	z-index: 1000;
	padding: 1.2rem 0;
	transition: var(--transition);
}

.navbar-brand img {
	filter: drop-shadow(0 0 8px rgba(199, 91, 145, 0.3));
	transition: var(--transition);
}

.navbar-brand img:hover {
	filter: drop-shadow(0 0 12px rgba(199, 91, 145, 0.5));
}

.nav-link {
	color: var(--color-pearl);
	font-weight: 400;
	padding: 0.5rem 1.2rem;
	transition: var(--transition);
	border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
	color: var(--color-orchid);
	border-bottom-color: var(--color-orchid);
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 10rem 0 6rem;
	background: linear-gradient(
		135deg,
		rgba(44, 19, 41, 0.4) 0%,
		rgba(121, 29, 92, 0.2) 100%
	);
	position: relative;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(14, 14, 17, 0.7) 0%,
		rgba(44, 19, 41, 0.5) 100%
	);
	z-index: 1;
}

.hero-visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.3;
}

.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(1px);
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
	color: var(--color-pearl);
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.35rem;
	line-height: 1.6;
	color: rgba(244, 239, 242, 0.85);
	margin-bottom: 2.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.btn-hero {
	display: inline-block;
	padding: 1rem 3rem;
	background: transparent;
	color: var(--color-orchid);
	border: 2px solid var(--color-orchid);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.btn-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(199, 91, 145, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.btn-hero:hover::before {
	left: 100%;
}

.btn-hero:hover {
	background: var(--color-berry);
	border-color: var(--color-berry);
	color: var(--color-pearl);
	box-shadow: 0 0 20px rgba(121, 29, 92, 0.5);
}

.chaos-section {
	padding: 6rem 0;
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.chaos-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.chaos-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(14, 14, 17, 0.85) 0%,
		rgba(44, 19, 41, 0.75) 100%
	);
	z-index: 1;
}

.chaos-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	filter: grayscale(30%);
}

.chaos-section .container {
	position: relative;
	z-index: 2;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
	color: var(--color-pearl);
}

.section-subtitle {
	font-size: 1.2rem;
	color: rgba(244, 239, 242, 0.75);
	margin-bottom: 3rem;
}

.section-lead {
	font-size: 1.25rem;
	line-height: 1.8;
	color: rgba(244, 239, 242, 0.9);
	margin-bottom: 2rem;
}

.precision-section {
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		var(--color-obsidian) 0%,
		rgba(44, 19, 41, 0.2) 100%
	);
}

.precision-card {
	background: rgba(44, 19, 41, 0.3);
	border: 0.5px solid rgba(199, 91, 145, 0.2);
	padding: 3rem 2rem;
	text-align: center;
	transition: var(--transition);
	height: 100%;
}

.precision-card:hover {
	border-color: var(--color-orchid);
	background: rgba(44, 19, 41, 0.5);
	box-shadow: 0 10px 40px rgba(121, 29, 92, 0.2);
	transform: translateY(-5px);
}

.precision-card.highlight {
	border-color: var(--color-berry);
	background: rgba(121, 29, 92, 0.15);
}

.precision-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--color-orchid);
	border-radius: 50%;
	position: relative;
}

.precision-icon::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(199, 91, 145, 0.3) 0%,
		transparent 70%
	);
	filter: blur(10px);
}

.precision-icon i {
	font-size: 2.5rem;
	color: var(--color-orchid);
	position: relative;
	z-index: 1;
}

.error-icon {
	border-color: rgba(199, 91, 145, 0.4);
}

.error-icon i {
	color: rgba(199, 91, 145, 0.6);
}

.precision-card h3 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-pearl);
}

.precision-card p {
	color: rgba(244, 239, 242, 0.8);
	line-height: 1.7;
}

.dashboard-section {
	padding: 6rem 0;
	background: var(--color-obsidian);
}

.dashboard-visual {
	position: relative;
}

.dashboard-visual img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(121, 29, 92, 0.3);
	border: 0.5px solid rgba(199, 91, 145, 0.2);
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
}

.feature-list li {
	padding: 0.75rem 0;
	display: flex;
	align-items: center;
	color: rgba(244, 239, 242, 0.9);
	font-size: 1.1rem;
}

.feature-list i {
	color: var(--color-orchid);
	margin-right: 1rem;
	font-size: 1.3rem;
}

.social-section {
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		rgba(44, 19, 41, 0.2) 0%,
		var(--color-obsidian) 100%
	);
}

.social-visual img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(121, 29, 92, 0.3);
	border: 0.5px solid rgba(199, 91, 145, 0.2);
}

.social-quote {
	border-left: 4px solid var(--color-orchid);
	padding: 1.5rem 2rem;
	margin: 2rem 0;
	font-style: italic;
	font-size: 1.2rem;
	background: rgba(44, 19, 41, 0.3);
	color: rgba(244, 239, 242, 0.95);
}

.vision-section {
	padding: 6rem 0;
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.vision-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.vision-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(14, 14, 17, 0.9) 0%,
		rgba(44, 19, 41, 0.8) 100%
	);
	z-index: 1;
}

.vision-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
}

.vision-section .container {
	position: relative;
	z-index: 2;
}

.vision-text {
	font-size: 1.4rem;
	line-height: 1.8;
	color: rgba(244, 239, 242, 0.95);
}

.form-section {
	padding: 6rem 0;
	background: var(--color-plum);
}

.form-wrapper {
	background: rgba(14, 14, 17, 0.5);
	border: 0.5px solid rgba(199, 91, 145, 0.3);
	padding: 3rem;
	border-radius: 4px;
}

.form-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-pearl);
	text-align: center;
}

.form-subtitle {
	text-align: center;
	color: rgba(244, 239, 242, 0.8);
	margin-bottom: 2.5rem;
}

.form-label {
	color: var(--color-pearl);
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: block;
}

.form-control {
	background: rgba(14, 14, 17, 0.6);
	border: 1px solid rgba(199, 91, 145, 0.3);
	color: var(--color-pearl);
	padding: 0.9rem 1.2rem;
	font-size: 1rem;
	transition: var(--transition);
}

.form-control:focus {
	background: rgba(14, 14, 17, 0.8);
	border-color: var(--color-orchid);
	color: var(--color-pearl);
	box-shadow: 0 0 0 0.2rem rgba(199, 91, 145, 0.2);
	outline: none;
}

.error-message {
	color: #ff6b6b;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: block;
}

.btn-submit {
	width: 100%;
	padding: 1rem;
	background: var(--color-berry);
	color: var(--color-pearl);
	border: none;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: var(--transition);
	margin-top: 1rem;
}

.btn-submit:hover {
	background: var(--color-orchid);
	box-shadow: 0 10px 30px rgba(121, 29, 92, 0.4);
	transform: translateY(-2px);
}

.site-footer {
	background: rgba(14, 14, 17, 0.95);
	border-top: 0.5px solid rgba(199, 91, 145, 0.2);
	padding: 4rem 0 2rem;
	color: rgba(244, 239, 242, 0.8);
}

.site-footer h4 {
	color: var(--color-pearl);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(244, 239, 242, 0.8);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--color-orchid);
}

.site-footer i {
	color: var(--color-orchid);
	margin-right: 0.5rem;
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 0.5px solid rgba(199, 91, 145, 0.1);
	text-align: center;
	color: rgba(244, 239, 242, 0.6);
}

.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(44, 19, 41, 0.98);
	border-top: 2px solid var(--color-orchid);
	padding: 1.5rem 0;
	z-index: 9999;
	display: none;
	opacity: 0;
	transform: translateY(100%);
	transition: var(--transition);
}

.cookie-notice.show {
	opacity: 1;
	transform: translateY(0);
}

.cookie-notice.hide {
	opacity: 0;
	transform: translateY(100%);
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.cookie-content p {
	margin: 0;
	color: var(--color-pearl);
	flex: 1;
	min-width: 300px;
}

.cookie-content a {
	color: var(--color-orchid);
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.btn-cookie {
	padding: 0.7rem 1.5rem;
	border: 2px solid;
	background: transparent;
	color: var(--color-pearl);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.btn-cookie.accept {
	border-color: var(--color-orchid);
	color: var(--color-orchid);
}

.btn-cookie.accept:hover {
	background: var(--color-orchid);
	color: var(--color-pearl);
}

.btn-cookie.decline {
	border-color: rgba(244, 239, 242, 0.4);
}

.btn-cookie.decline:hover {
	background: rgba(244, 239, 242, 0.1);
}

.page-hero {
	padding: 12rem 0 5rem;
	background: linear-gradient(
		135deg,
		rgba(44, 19, 41, 0.5) 0%,
		rgba(121, 29, 92, 0.3) 100%
	);
	text-align: center;
}

.page-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-pearl);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.page-subtitle {
	font-size: 1.2rem;
	color: rgba(244, 239, 242, 0.8);
}

.observatory-section {
	padding: 6rem 0;
	background: var(--color-obsidian);
}

.observatory-content {
	text-align: center;
}

.observatory-visual {
	max-width: 400px;
	margin: 0 auto 3rem;
}

.observatory-visual svg {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 20px rgba(199, 91, 145, 0.3));
}

.values-section {
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		var(--color-obsidian) 0%,
		rgba(44, 19, 41, 0.2) 100%
	);
}

.value-item {
	text-align: center;
}

.value-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.value-icon i {
	font-size: 3rem;
	background: linear-gradient(
		135deg,
		var(--color-berry) 0%,
		var(--color-orchid) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 1;
}

.value-icon::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(199, 91, 145, 0.2) 0%,
		transparent 70%
	);
	filter: blur(15px);
}

.value-item h3 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-pearl);
}

.value-item p {
	color: rgba(244, 239, 242, 0.85);
	line-height: 1.7;
}

.mission-section {
	padding: 6rem 0;
	background: var(--color-obsidian);
}

.mission-text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(244, 239, 242, 0.9);
	margin-bottom: 1.5rem;
}

.contact-section {
	padding: 6rem 0;
	background: var(--color-obsidian);
}

.contact-info {
	background: rgba(44, 19, 41, 0.3);
	border: 0.5px solid rgba(199, 91, 145, 0.2);
	padding: 2.5rem;
	height: 100%;
}

.contact-info h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-pearl);
	margin-bottom: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: rgba(121, 29, 92, 0.2);
	border: 1px solid var(--color-orchid);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.5rem;
	flex-shrink: 0;
}

.contact-icon i {
	color: var(--color-orchid);
	font-size: 1.3rem;
}

.contact-details h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-pearl);
	margin-bottom: 0.5rem;
}

.contact-details p {
	color: rgba(244, 239, 242, 0.85);
	margin: 0;
	line-height: 1.6;
}

.contact-form-wrapper {
	background: rgba(44, 19, 41, 0.3);
	border: 0.5px solid rgba(199, 91, 145, 0.2);
	padding: 2.5rem;
}

.contact-form-wrapper h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-pearl);
	margin-bottom: 1rem;
}

.contact-form-wrapper > p {
	color: rgba(244, 239, 242, 0.8);
	margin-bottom: 2rem;
}

.thanks-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding: 12rem 0 6rem;
	background: linear-gradient(
		135deg,
		rgba(44, 19, 41, 0.4) 0%,
		rgba(121, 29, 92, 0.2) 100%
	);
}

.thanks-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--color-orchid);
	border-radius: 50%;
}

.thanks-icon i {
	font-size: 4rem;
	color: var(--color-orchid);
}

.thanks-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-pearl);
	margin-bottom: 1.5rem;
}

.thanks-text {
	font-size: 1.25rem;
	color: rgba(244, 239, 242, 0.9);
	margin-bottom: 1rem;
}

.thanks-subtext {
	font-size: 1.1rem;
	color: rgba(244, 239, 242, 0.75);
	margin-bottom: 2.5rem;
}

.thanks-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition);
}

.btn-primary {
	background: var(--color-berry);
	color: var(--color-pearl);
	border: 2px solid var(--color-berry);
}

.btn-primary:hover {
	background: var(--color-orchid);
	border-color: var(--color-orchid);
	box-shadow: 0 10px 30px rgba(121, 29, 92, 0.4);
	transform: translateY(-2px);
}

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

.btn-secondary:hover {
	background: rgba(199, 91, 145, 0.1);
}

.legal-content {
	padding: 5rem 0;
	background: var(--color-obsidian);
}

.legal-content h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-pearl);
	margin-top: 3rem;
	margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-pearl);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-content p {
	color: rgba(244, 239, 242, 0.85);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.legal-content ul {
	color: rgba(244, 239, 242, 0.85);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.8rem;
}

@media (max-width: 991px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.15rem;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.page-title {
		font-size: 2.3rem;
	}

	.navbar-nav {
		background: rgba(14, 14, 17, 0.95);
		padding: 1rem;
		margin-top: 1rem;
		border-radius: 4px;
	}

	.social-section .col-lg-6 {
		margin-bottom: 3rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn-cookie {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.form-wrapper {
		padding: 2rem 1.5rem;
	}

	.thanks-actions {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}
}
