* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background-color: #0b0729;
	color: #f5f7fa;
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

a {
	color: #8b5cf6;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #06b6d4;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* === 2. CONTAINER & LAYOUT === */
.snk-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.snk-container-wide {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2rem;
}

.snk-container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.snk-grid {
	display: grid;
	gap: 2rem;
}

.snk-grid-2 {
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.snk-grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.snk-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* === 3. HEADER === */
.snk-header {
	position: fixed;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 4rem);
	max-width: 1400px;
	background: rgba(20, 16, 38, 0.85);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 1rem 2rem;
	z-index: 1000;
	box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
	transition: all 0.3s ease;
}

.snk-header-scrolled {
	top: 10px;
	box-shadow: 0 15px 50px rgba(139, 92, 246, 0.2);
}

.snk-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
}

.snk-logo-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
	position: relative;
	z-index: 1005;
}

.snk-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f5f7fa;
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.snk-logo-tagline {
	font-size: 0.75rem;
	color: #ffd166;
	opacity: 0.9;
	font-weight: 400;
	text-align: center;
}

.snk-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: flex-end;
}

.snk-nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #f5f7fa;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.snk-nav-link i {
	font-size: 0.85rem;
	opacity: 0.8;
}

.snk-nav-link:hover {
	color: #06b6d4;
	background: rgba(6, 182, 212, 0.1);
	transform: translateY(-2px);
}

.snk-nav-link.snk-active {
	color: #8b5cf6;
	background: rgba(139, 92, 246, 0.15);
}

.snk-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
}

.snk-hamburger span {
	width: 25px;
	height: 3px;
	background: #f5f7fa;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* === 4. HERO SECTION === */
.snk-hero {
	min-height: 100vh;
	display: grid;
	align-items: center;
	padding-top: 120px;
	position: relative;
	overflow: hidden;
}

.snk-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('assets/snk-hero.webp') center/cover;
	opacity: 0.3;
}

.snk-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
	animation: snk-float 15s infinite ease-in-out reverse;
}

.snk-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.snk-hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #f5f7fa, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: snk-fade-in-up 1s ease-out;
}

.snk-hero-subtitle {
	font-size: 1.25rem;
	color: #f5f7fa;
	opacity: 0.9;
	margin-bottom: 2.5rem;
	line-height: 1.8;
	animation: snk-fade-in-up 1s ease-out 0.2s backwards;
}

.snk-hero-cta {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	animation: snk-fade-in-up 1s ease-out 0.4s backwards;
}

.snk-hero-visual {
	position: relative;
	animation: snk-fade-in-up 1s ease-out 0.3s backwards;
}

.snk-hero-image {
	width: 100%;
	height: 500px;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.2),
		rgba(6, 182, 212, 0.2)
	);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.snk-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.snk-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.snk-tag {
	padding: 0.75rem 1.5rem;
	background: rgba(20, 16, 38, 0.8);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 50px;
	font-size: 0.9rem;
	color: #8b5cf6;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
}

.snk-tag:hover {
	background: rgba(139, 92, 246, 0.15);
	border-color: #8b5cf6;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

/* === 5. BUTTONS === */
.snk-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}

.snk-btn-primary {
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	color: #f5f7fa;
	box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.snk-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.snk-btn-secondary {
	background: rgba(20, 16, 38, 0.8);
	color: #f5f7fa;
	border: 2px solid #8b5cf6;
}

.snk-btn-secondary:hover {
	background: rgba(139, 92, 246, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.snk-btn-outline {
	background: transparent;
	color: #06b6d4;
	border: 2px solid #06b6d4;
}

.snk-btn-outline:hover {
	background: rgba(6, 182, 212, 0.1);
	transform: translateY(-3px);
}

/* === 6. SECTIONS === */
.snk-section {
	padding: 6rem 0;
	position: relative;
}

.snk-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.snk-section-title h2 {
	font-size: 2.75rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #f5f7fa, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.snk-section-title p {
	font-size: 1.15rem;
	color: #f5f7fa;
	opacity: 0.8;
	max-width: 700px;
	margin: 0 auto;
}

/* === 7. CARDS === */
.snk-card {
	background: rgba(20, 16, 38, 0.6);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.snk-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #8b5cf6, #06b6d4);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.snk-card:hover {
	transform: translateY(-8px);
	border-color: #8b5cf6;
	box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
}

.snk-card:hover::before {
	transform: scaleX(1);
}

.snk-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	color: #f5f7fa;
	margin-bottom: 1.5rem;
}

.snk-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #f5f7fa;
}

.snk-card-description {
	color: #f5f7fa;
	opacity: 0.85;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.snk-card-meta {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.snk-card-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffd166;
}

.snk-card-meta-item i {
	font-size: 0.85rem;
}

/* === 8. COURSE CARDS === */
.snk-course-card {
	background: rgba(20, 16, 38, 0.7);
	border: 1px solid rgba(139, 92, 246, 0.25);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.snk-course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(139, 92, 246, 0.3);
	border-color: #8b5cf6;
}

.snk-course-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.3),
		rgba(6, 182, 212, 0.3)
	);
	position: relative;
	overflow: hidden;
}

.snk-course-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.5rem 1rem;
	background: rgba(11, 7, 41, 0.9);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #ffd166;
	border: 1px solid rgba(255, 209, 102, 0.3);
}

.snk-course-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.snk-course-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #f5f7fa;
}

.snk-course-description {
	color: #f5f7fa;
	opacity: 0.85;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.snk-course-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-top: 1.5rem;
	margin-top: auto;
	border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.snk-course-stat {
	text-align: center;
}

.snk-course-stat-value {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	color: #06b6d4;
	margin-bottom: 0.25rem;
}

.snk-course-stat-label {
	font-size: 0.8rem;
	color: #f5f7fa;
	opacity: 0.7;
}

/* === 9. TABS === */
.snk-tabs {
	margin-bottom: 2rem;
}

.snk-tabs-nav {
	display: flex;
	gap: 1rem;
	border-bottom: 2px solid rgba(139, 92, 246, 0.2);
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.snk-tab-btn {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	color: #f5f7fa;
	opacity: 0.7;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
}

.snk-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #8b5cf6, #06b6d4);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.snk-tab-btn:hover {
	opacity: 1;
	color: #8b5cf6;
}

.snk-tab-btn.snk-active {
	opacity: 1;
	color: #8b5cf6;
}

.snk-tab-btn.snk-active::after {
	transform: scaleX(1);
}

.snk-tab-content {
	display: none;
	animation: snk-fade-in 0.5s ease;
}

.snk-tab-content.snk-active {
	display: block;
}

/* === 10. ACCORDION === */
.snk-accordion {
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 12px;
	overflow: hidden;
}

.snk-accordion-item {
	border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.snk-accordion-item:last-child {
	border-bottom: none;
}

.snk-accordion-header {
	width: 100%;
	padding: 1.5rem 2rem;
	background: rgba(20, 16, 38, 0.4);
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	color: #f5f7fa;
	font-weight: 600;
	font-size: 1.1rem;
	font-family: 'Poppins', sans-serif;
}

.snk-accordion-header:hover {
	background: rgba(139, 92, 246, 0.1);
}

.snk-accordion-header.snk-active {
	background: rgba(139, 92, 246, 0.15);
	color: #8b5cf6;
}

.snk-accordion-icon {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.snk-accordion-header.snk-active .snk-accordion-icon {
	transform: rotate(180deg);
}

.snk-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(20, 16, 38, 0.2);
}

.snk-accordion-content-inner {
	padding: 1rem 2rem 2rem;
	color: #f5f7fa;
	opacity: 0.9;
	line-height: 1.8;
}

/* === 11. FORMS === */
.snk-form {
	display: grid;
	gap: 1.5rem;
}

.snk-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.snk-form-label {
	font-weight: 600;
	color: #f5f7fa;
	font-size: 0.95rem;
}

.snk-form-label span {
	color: #ffd166;
}

.snk-form-input,
.snk-form-textarea,
.snk-form-select {
	padding: 1rem 1.5rem;
	background: rgba(20, 16, 38, 0.6);
	border: 2px solid rgba(139, 92, 246, 0.3);
	border-radius: 12px;
	color: #f5f7fa;
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	outline: none;
}

.snk-form-input::placeholder,
.snk-form-textarea::placeholder {
	color: #f5f7fa;
	opacity: 0.5;
}

.snk-form-input:focus,
.snk-form-textarea:focus,
.snk-form-select:focus {
	border-color: #8b5cf6;
	background: rgba(139, 92, 246, 0.05);
	transform: scale(1.02);
	box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.snk-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.snk-form-error {
	display: none;
	color: #ff6b6b;
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

.snk-form-group.snk-error .snk-form-error {
	display: block;
}

.snk-form-group.snk-error .snk-form-input,
.snk-form-group.snk-error .snk-form-textarea {
	border-color: #ff6b6b;
}

/* === 12. FOOTER === */
.snk-footer {
	background: rgba(11, 7, 41, 0.95);
	border-top: 1px solid rgba(139, 92, 246, 0.2);
	padding: 4rem 0 2rem;
	position: relative;
}

.snk-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 2fr 1.5fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.snk-footer-section h4 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: #8b5cf6;
}

.snk-footer-logo {
	font-size: 1.75rem;
	font-weight: 700;
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.snk-footer-mission {
	color: #f5f7fa;
	opacity: 0.8;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.snk-footer-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.snk-footer-link {
	color: #f5f7fa;
	opacity: 0.8;
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.snk-footer-link:hover {
	opacity: 1;
	color: #06b6d4;
	transform: translateX(5px);
}

.snk-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	color: #f5f7fa;
	opacity: 0.9;
}

.snk-footer-contact-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.snk-footer-contact-text strong {
	display: block;
	margin-bottom: 0.25rem;
	color: #06b6d4;
}

.snk-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(139, 92, 246, 0.2);
	color: #f5f7fa;
	opacity: 0.7;
}

/* === 13. COOKIE POPUP === */
.snk-cookie-popup {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	max-width: 400px;
	background: rgba(20, 16, 38, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	animation: snk-slide-in-right 0.5s ease;
	display: none;
}

.snk-cookie-popup.snk-show {
	display: block;
}

.snk-cookie-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #8b5cf6;
}

.snk-cookie-text {
	margin-bottom: 1.5rem;
	opacity: 0.9;
	line-height: 1.7;
}

.snk-cookie-text a {
	color: #06b6d4;
	text-decoration: underline;
}

.snk-cookie-actions {
	display: flex;
	gap: 1rem;
}

/* === 14. TIMELINE === */
.snk-timeline {
	position: relative;
	padding-left: 3rem;
}

.snk-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, #8b5cf6, #06b6d4);
}

.snk-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
}

.snk-timeline-dot {
	position: absolute;
	left: -57px;
	top: 0.25rem;
	width: 20px;
	height: 20px;
	background: #8b5cf6;
	border: 4px solid #0b0729;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.snk-timeline-year {
	font-size: 1.5rem;
	font-weight: 700;
	color: #06b6d4;
	margin-bottom: 0.5rem;
}

.snk-timeline-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #f5f7fa;
}

.snk-timeline-description {
	color: #f5f7fa;
	opacity: 0.85;
	line-height: 1.7;
}

/* === 15. TEAM CARDS === */
.snk-team-card {
	background: rgba(20, 16, 38, 0.6);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.snk-team-card:hover {
	transform: translateY(-10px);
	border-color: #8b5cf6;
	box-shadow: 0 25px 60px rgba(139, 92, 246, 0.3);
}

.snk-team-image {
	width: 150px;
	height: 150px;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.3),
		rgba(6, 182, 212, 0.3)
	);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	border: 4px solid rgba(139, 92, 246, 0.3);
}

.snk-team-image img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.snk-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #f5f7fa;
}

.snk-team-role {
	color: #06b6d4;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.snk-team-bio {
	color: #f5f7fa;
	opacity: 0.85;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* === 16. FILTERS === */
.snk-filters {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.snk-filter-btn {
	padding: 0.75rem 1.5rem;
	background: rgba(20, 16, 38, 0.6);
	border: 2px solid rgba(139, 92, 246, 0.3);
	border-radius: 50px;
	color: #f5f7fa;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.snk-filter-btn:hover {
	border-color: #8b5cf6;
	background: rgba(139, 92, 246, 0.1);
}

.snk-filter-btn.snk-active {
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	border-color: transparent;
	color: #f5f7fa;
	box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* === 17. RESEARCH CARDS === */
.snk-research-card {
	background: rgba(20, 16, 38, 0.6);
	border: 1px solid rgba(139, 92, 246, 0.25);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.snk-research-card:hover {
	transform: translateY(-8px);
	border-color: #06b6d4;
	box-shadow: 0 20px 50px rgba(6, 182, 212, 0.25);
}

.snk-research-type {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(6, 182, 212, 0.15);
	border-radius: 50px;
	color: #06b6d4;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	width: fit-content;
}

.snk-research-title {
	font-size: 1.35rem;
	margin-bottom: 1rem;
	color: #f5f7fa;
}

.snk-research-authors {
	font-size: 0.9rem;
	color: #ffd166;
	margin-bottom: 1rem;
	font-style: italic;
}

.snk-research-abstract {
	color: #f5f7fa;
	opacity: 0.85;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.snk-research-meta {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-top: 1rem;
	border-top: 1px solid rgba(139, 92, 246, 0.2);
	font-size: 0.9rem;
}

.snk-research-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #f5f7fa;
	opacity: 0.8;
}

/* === 18. EVENT CALENDAR === */
.snk-events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
}

.snk-event-card {
	background: rgba(20, 16, 38, 0.6);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.snk-event-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #8b5cf6, #06b6d4);
}

.snk-event-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
}

.snk-event-date {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(255, 209, 102, 0.15);
	border-radius: 8px;
	color: #ffd166;
	font-weight: 700;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.snk-event-title {
	font-size: 1.35rem;
	margin-bottom: 1rem;
	color: #f5f7fa;
}

.snk-event-description {
	color: #f5f7fa;
	opacity: 0.85;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.snk-event-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.9rem;
}

.snk-event-info-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #f5f7fa;
	opacity: 0.9;
}

.snk-event-info-item i {
	color: #06b6d4;
	width: 20px;
}

/* === 19. TESTIMONIALS === */
.snk-testimonials {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.snk-testimonial-card {
	background: rgba(20, 16, 38, 0.6);
	border: 1px solid rgba(139, 92, 246, 0.25);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	position: relative;
}

.snk-testimonial-quote {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #f5f7fa;
	opacity: 0.95;
	margin-bottom: 2rem;
	font-style: italic;
}

.snk-testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-align: left;
}

.snk-testimonial-avatar {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.3),
		rgba(6, 182, 212, 0.3)
	);
	border-radius: 50%;
	border: 3px solid rgba(139, 92, 246, 0.3);

	display: flex;
	flex-shrink: 0;
}

.snk-testimonial-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.snk-testimonial-name {
	font-size: 1.15rem;
	font-weight: 700;
	color: #f5f7fa;
}

.snk-testimonial-role {
	font-size: 0.9rem;
	color: #06b6d4;
	opacity: 0.9;
}

.snk-testimonial-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.snk-testimonial-btn {
	width: 50px;
	height: 50px;
	background: rgba(139, 92, 246, 0.2);
	border: 2px solid rgba(139, 92, 246, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #f5f7fa;
	font-size: 1.25rem;
}

.snk-testimonial-btn:hover {
	background: rgba(139, 92, 246, 0.3);
	border-color: #8b5cf6;
	transform: scale(1.1);
}

.snk-map {
	height: 100%;
	min-height: 400px;
	filter: grayscale(0.8) brightness(0.7);

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.snk-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.snk-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.snk-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* === 21. LEARNING LAB === */
.snk-lab-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.snk-lab-widget {
	background: rgba(20, 16, 38, 0.6);
	border: 1px solid rgba(139, 92, 246, 0.25);
	border-radius: 16px;
	padding: 2rem;
}

.snk-lab-widget h3 {
	margin-bottom: 1.5rem;
	color: #8b5cf6;
}

.snk-checklist-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(11, 7, 41, 0.4);
	border-radius: 12px;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.snk-checklist-item:hover {
	background: rgba(139, 92, 246, 0.1);
	transform: translateX(5px);
}

.snk-checklist-icon {
	width: 30px;
	height: 30px;
	border: 2px solid #06b6d4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #06b6d4;
	flex-shrink: 0;
}

.snk-progress-bar {
	width: 100%;
	height: 12px;
	background: rgba(20, 16, 38, 0.6);
	border-radius: 50px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid rgba(139, 92, 246, 0.2);
}

.snk-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #8b5cf6, #06b6d4);
	border-radius: 50px;
	transition: width 0.3s ease;
	position: relative;
	overflow: hidden;
}

.snk-progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	animation: snk-shimmer 2s infinite;
}

/* === 22. ANIMATIONS === */
@keyframes snk-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes snk-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes snk-slide-in-right {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes snk-float {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(30px, -30px) rotate(5deg);
	}
}

@keyframes snk-shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.snk-fade-in-up {
	animation: snk-fade-in-up 0.8s ease-out;
}

/* === 23. UTILITIES === */
.snk-text-center {
	text-align: center;
}

.snk-text-gradient {
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.snk-mb-1 {
	margin-bottom: 1rem;
}
.snk-mb-2 {
	margin-bottom: 2rem;
}
.snk-mb-3 {
	margin-bottom: 3rem;
}
.snk-mb-4 {
	margin-bottom: 4rem;
}

.snk-mt-1 {
	margin-top: 1rem;
}
.snk-mt-2 {
	margin-top: 2rem;
}
.snk-mt-3 {
	margin-top: 3rem;
}
.snk-mt-4 {
	margin-top: 4rem;
}

/* === 24. RESPONSIVE === */
@media (max-width: 1060px) {
	.snk-nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100vh - 200px);
		background: rgba(11, 7, 41, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-radius: 16px;
		padding: 6rem 2rem 2rem;
		z-index: 999;
		box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.snk-nav.snk-active {
		display: flex;
		transform: translateX(0);
	}

	.snk-hamburger {
		display: flex;
		z-index: 1001;
	}

	.snk-hamburger.snk-active span:nth-child(1) {
		transform: rotate(45deg) translateY(8px);
	}

	.snk-hamburger.snk-active span:nth-child(2) {
		opacity: 0;
	}

	.snk-hamburger.snk-active span:nth-child(3) {
		transform: rotate(-45deg) translate(3px, -12px);
	}
}

@media (max-width: 1024px) {
	.snk-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.snk-hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.snk-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.snk-lab-grid {
		grid-template-columns: 1fr;
	}

	.snk-hero {
		min-height: 150vh;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	h1 {
		font-size: 2.5rem !important;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	.snk-header {
		top: 10px;
		width: calc(100% - 2rem);
		padding: 0.75rem 1.5rem;
	}

	.snk-header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.snk-grid-2,
	.snk-grid-3,
	.snk-grid-4 {
		grid-template-columns: 1fr;
	}

	.snk-hero-content h1 {
		font-size: 2.5rem;
	}

	.snk-hero-cta {
		flex-direction: column;
	}

	.snk-section {
		padding: 4rem 0;
	}

	.snk-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		max-width: none;
	}

	.snk-footer-nav {
		grid-template-columns: 1fr;
	}

	.snk-tabs-nav {
		flex-direction: column;
	}

	.snk-timeline {
		padding-left: 2rem;
	}

	.snk-timeline-dot {
		left: -37px;
	}
}

:root {
	--snk-legal-bg-primary: #0b0729;
	--snk-legal-bg-secondary: #141026;
	--snk-legal-accent-purple: #8b5cf6;
	--snk-legal-accent-cyan: #06b6d4;
	--snk-legal-accent-amber: #ffd166;
	--snk-legal-text-primary: #f5f7fa;
	--snk-legal-text-secondary: #b4b8c5;
	--snk-legal-border: rgba(139, 92, 246, 0.2);
	--snk-legal-shadow: rgba(0, 0, 0, 0.4);
	--snk-legal-transition: all 0.3s ease;
}

.snk-legal-container {
	max-width: 1100px;
	margin: 150px auto;

	background: var(--snk-legal-bg-secondary);
	border-radius: 16px;
	box-shadow: 0 10px 40px var(--snk-legal-shadow);
	overflow: hidden;
}

/* Header Section */
.snk-legal-header {
	background: linear-gradient(
		135deg,
		var(--snk-legal-accent-purple),
		var(--snk-legal-accent-cyan)
	);
	padding: 60px 50px;
	text-align: center;
	position: relative;
}

.snk-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.5;
}

.snk-legal-title {
	font-size: 42px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}

.snk-legal-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
	position: relative;
	z-index: 1;
}

/* Content Area */
.snk-legal-content {
	padding: 50px;
}

/* Section Styles */
.snk-legal-section {
	margin-bottom: 50px;
	position: relative;
	padding: 30px;
	background: rgba(139, 92, 246, 0.05);
	border-left: 4px solid var(--snk-legal-accent-purple);
	border-radius: 8px;
	transition: var(--snk-legal-transition);
}

.snk-legal-section:hover {
	background: rgba(139, 92, 246, 0.08);
	transform: translateX(5px);
}

.snk-legal-section-number {
	position: absolute;
	top: -15px;
	left: 30px;
	background: linear-gradient(
		135deg,
		var(--snk-legal-accent-purple),
		var(--snk-legal-accent-cyan)
	);
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.snk-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--snk-legal-text-primary);
	margin-bottom: 20px;
	margin-top: 10px;
}

.snk-legal-subsection-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--snk-legal-accent-cyan);
	margin-bottom: 15px;
	margin-top: 25px;
}

.snk-legal-text {
	color: var(--snk-legal-text-secondary);
	margin-bottom: 18px;
	line-height: 1.8;
}

/* Lists */
.snk-legal-list {
	list-style: none;
	margin: 20px 0;
	padding-left: 0;
}

.snk-legal-list-item {
	color: var(--snk-legal-text-secondary);
	margin-bottom: 14px;
	padding-left: 30px;
	position: relative;
	line-height: 1.7;
	word-wrap: break-word;
}

.snk-legal-list-item::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--snk-legal-accent-cyan);
	font-weight: 700;
	font-size: 18px;
}

/* Highlights */
.snk-legal-highlight {
	color: var(--snk-legal-accent-amber);
	font-weight: 600;
}

/* Links */
.snk-legal-link {
	color: var(--snk-legal-accent-cyan);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: var(--snk-legal-transition);
	font-weight: 500;
	word-wrap: break-word;
}

.snk-legal-link:hover {
	color: var(--snk-legal-accent-purple);
	border-bottom-color: var(--snk-legal-accent-purple);
}

/* Contact Box */
.snk-legal-contact-box {
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.1),
		rgba(6, 182, 212, 0.1)
	);
	border: 2px solid var(--snk-legal-border);
	border-radius: 12px;
	padding: 30px;
	margin-top: 30px;
}

.snk-legal-contact-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--snk-legal-accent-cyan);
	margin-bottom: 18px;
}

.snk-legal-contact-list {
	list-style: none;
	padding: 0;
}

.snk-legal-contact-list li {
	color: var(--snk-legal-text-secondary);
	margin-bottom: 12px;
	font-size: 15px;
}

.snk-legal-contact-label {
	color: var(--snk-legal-accent-amber);
	font-weight: 600;
	margin-right: 8px;
}

/* Cookie Type Sections */
.snk-legal-cookie-type {
	background: rgba(6, 182, 212, 0.05);
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 25px;
	border: 1px solid rgba(6, 182, 212, 0.2);
}

.snk-legal-cookie-type-title {
	font-size: 20px;
	font-weight: 600;
	flex-wrap: wrap;
	color: var(--snk-legal-text-primary);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	word-wrap: break-word;
}

/* Badges */
.snk-legal-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.snk-legal-badge-essential {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #ffffff;
}

.snk-legal-badge-functional {
	background: linear-gradient(135deg, var(--snk-legal-accent-purple), #7c3aed);
	color: #ffffff;
}

.snk-legal-badge-analytical {
	background: linear-gradient(135deg, var(--snk-legal-accent-cyan), #0891b2);
	color: #ffffff;
}

.snk-legal-badge-marketing {
	background: linear-gradient(135deg, var(--snk-legal-accent-amber), #f59e0b);
	color: #000000;
}

/* Cookie Control Sections */
.snk-legal-cookie-control {
	background: rgba(255, 209, 102, 0.05);
	border-left: 3px solid var(--snk-legal-accent-amber);
	padding: 20px;
	margin: 20px 0;
	border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.snk-legal-body {
		padding: 20px 15px;
	}

	.snk-legal-container {
		margin: 150px 20px;
	}

	.snk-legal-header {
		padding: 40px 30px;
	}

	.snk-legal-title {
		font-size: 2rem !important;
	}

	.snk-legal-subtitle {
		font-size: 14px;
	}

	.snk-legal-content {
		padding: 30px 25px;
	}

	.snk-legal-section {
		padding: 25px 20px;
		margin-bottom: 35px;
	}

	.snk-legal-section-number {
		font-size: 16px;
		padding: 6px 14px;
		top: -12px;
		left: 20px;
	}

	.snk-legal-section-title {
		font-size: 24px;
	}

	.snk-legal-subsection-title {
		font-size: 18px;
	}

	.snk-legal-text {
		font-size: 15px;
	}

	.snk-legal-list-item {
		padding-left: 25px;
		font-size: 15px;
	}

	.snk-legal-contact-box {
		padding: 20px;
	}

	.snk-legal-cookie-type {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.snk-container,
	.snk-container-wide,
	.snk-container-narrow {
		padding: 0 1rem;
	}

	.snk-hero-content h1 {
		font-size: 2rem;
	}

	.snk-grid-2,
	.snk-grid-3,
	.snk-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.snk-btn {
		width: 100%;
		justify-content: center;
	}

	.snk-card,
	.snk-team-card {
		padding: 1.5rem;
	}

	.snk-section-title h2 {
		font-size: 2rem;
	}

	.snk-lab-grid,
	.snk-events-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.snk-legal-section-title,
	.snk-legal-cookie-type-title {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.snk-legal-title {
		font-size: 1rem !important;
	}
}
