@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Colors */
	--cv-bg-primary: #0d0e10;
	--cv-bg-secondary: #121417;
	--cv-bg-tertiary: #181a1e;
	--cv-primary: #00b8d9;
	--cv-secondary: #7b61ff;
	--cv-accent: #ffd166;
	--cv-text-main: #eaeaea;
	--cv-text-secondary: #9ca3af;
	--cv-border: #2a2c31;

	/* Gradients */
	--cv-gradient-primary: linear-gradient(135deg, #00b8d9 0%, #7b61ff 100%);
	--cv-gradient-hero: linear-gradient(
		135deg,
		rgba(0, 184, 217, 0.1) 0%,
		rgba(123, 97, 255, 0.1) 100%
	);

	/* Shadows */
	--cv-shadow-glow: 0 0 30px rgba(0, 184, 217, 0.3);
	--cv-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);

	/* Transitions */
	--cv-transition: all 0.35s ease-in-out;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--cv-bg-primary);
	color: var(--cv-text-main);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	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;
	color: var(--cv-text-secondary);
	font-size: 1.1rem;
}

a {
	text-decoration: none;
	color: var(--cv-primary);
	transition: var(--cv-transition);
}

a:hover {
	color: var(--cv-secondary);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

/* ====================================
   UTILITIES
   ==================================== */
.cv-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cv-section {
	padding: 6rem 0;
	position: relative;
}

.cv-section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.cv-section-title h2 {
	background: var(--cv-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.cv-section-title p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
}

.cv-grid {
	display: grid;
	gap: 2rem;
}

.cv-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.cv-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.cv-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.cv-text-gradient {
	background: var(--cv-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ====================================
   BUTTONS
   ==================================== */
.cv-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 8px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: var(--cv-transition);
	text-align: center;
}

.cv-btn-primary {
	background: var(--cv-gradient-primary);
	color: white;
	box-shadow: var(--cv-shadow-glow);
}

.cv-btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	color: white;
	box-shadow: 0 0 40px rgba(0, 184, 217, 0.5);
}

.cv-btn-secondary {
	background: transparent;
	border: 2px solid var(--cv-primary);
	color: var(--cv-primary);
}

.cv-btn-secondary:hover {
	background: var(--cv-primary);
	color: white;
	transform: translateY(-3px);
}

.cv-btn-accent {
	background: var(--cv-accent);
	color: var(--cv-bg-primary);
}

.cv-btn-accent:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 0 30px rgba(255, 209, 102, 0.5);
}

/* ====================================
   HEADER
   ==================================== */
.cv-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(13, 14, 16, 0.85);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid var(--cv-border);
	z-index: 1000;
	transition: var(--cv-transition);
}

.cv-header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.2rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cv-logo {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	background: var(--cv-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	cursor: pointer;
}

.cv-nav {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.cv-nav-links {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.cv-nav-link {
	color: var(--cv-text-main);
	font-weight: 500;
	position: relative;
	transition: var(--cv-transition);
}

.cv-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--cv-gradient-primary);
	transition: var(--cv-transition);
}

.cv-nav-link:hover {
	color: var(--cv-primary);
}

.cv-nav-link:hover::after {
	width: 100%;
}

.cv-nav-link.cv-active {
	color: var(--cv-primary);
}

.cv-nav-link.cv-active::after {
	width: 100%;
}

.cv-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
}

.cv-mobile-toggle span {
	width: 28px;
	height: 3px;
	background: var(--cv-primary);
	border-radius: 2px;
	transition: var(--cv-transition);
}

/* ====================================
   HERO SECTION
   ==================================== */
.cv-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-top: 80px;
	background: var(--cv-gradient-hero),
		radial-gradient(
			circle at 20% 50%,
			rgba(0, 184, 217, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(123, 97, 255, 0.08) 0%,
			transparent 50%
		),
		var(--cv-bg-primary);
	overflow: hidden;
}

.cv-hero::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('assets/cv-hero.webp') center/cover;
	opacity: 0.3;
}

.cv-hero-content {
	text-align: center;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cv-hero h1 {
	font-size: 4.5rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	animation: cv-fade-in-up 0.8s ease-out;
}

.cv-hero p {
	font-size: 1.4rem;
	margin-bottom: 2.5rem;
	animation: cv-fade-in-up 0.8s ease-out 0.2s backwards;
}

.cv-hero-buttons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: cv-fade-in-up 0.8s ease-out 0.4s backwards;
}

.cv-hero-decoration {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
	pointer-events: none;
}

.cv-hero-decoration-1 {
	top: -200px;
	left: -200px;
	background: var(--cv-primary);
}

.cv-hero-decoration-2 {
	bottom: -200px;
	right: -200px;
	background: var(--cv-secondary);
}

/* ====================================
   CARDS
   ==================================== */
.cv-card {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 2.5rem;
	transition: var(--cv-transition);
	position: relative;
	overflow: hidden;
}

.cv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--cv-gradient-primary);
	opacity: 0;
	transition: var(--cv-transition);
	z-index: 0;
}

.cv-card:hover {
	transform: translateY(-10px);
	border-color: var(--cv-primary);
	box-shadow: var(--cv-shadow-card);
}

.cv-card:hover::before {
	opacity: 0.05;
}

.cv-card > * {
	position: relative;
	z-index: 1;
}

.cv-card-icon {
	width: 70px;
	height: 70px;
	background: var(--cv-gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 2rem;
}

.cv-card-icon i {
	color: #fff;
}

.cv-card h3 {
	margin-bottom: 1rem;
	color: var(--cv-text-main);
}

.cv-card p {
	color: var(--cv-text-secondary);
	font-size: 1rem;
}

/* ====================================
   PROGRAMS SECTION
   ==================================== */
.cv-programs-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.cv-tab-btn {
	padding: 1rem 2rem;
	background: transparent;
	border: 2px solid var(--cv-border);
	color: var(--cv-text-secondary);
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	transition: var(--cv-transition);
}

.cv-tab-btn:hover {
	border-color: var(--cv-primary);
	color: var(--cv-primary);
}

.cv-tab-btn.cv-active {
	background: var(--cv-gradient-primary);
	border-color: transparent;
	color: white;
	box-shadow: var(--cv-shadow-glow);
}

.cv-tab-content {
	display: none;
	animation: cv-fade-in 0.5s ease-out;
}

.cv-tab-content.cv-active {
	display: block;
}

.cv-program-card {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 2rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 2rem;
	align-items: center;
	transition: var(--cv-transition);
	margin-bottom: 1.5rem;
}

.cv-program-card:hover {
	border-color: var(--cv-primary);
	transform: translateX(10px);
	box-shadow: -5px 0 20px rgba(0, 184, 217, 0.2);
}

.cv-program-icon {
	width: 80px;
	height: 80px;
	background: var(--cv-gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
}

.cv-program-info h3 {
	margin-bottom: 0.5rem;
}

.cv-program-info p {
	margin-bottom: 0;
}

/* ====================================
   STATS SECTION
   ==================================== */
.cv-stats-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.cv-chart-wrapper {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 2rem;
	height: 100%;
}

.cv-chart-wrapper canvas {
	width: 100% !important;
	height: 100% !important;
}

.cv-stats-content h3 {
	margin-bottom: 1.5rem;
}

.cv-stat-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 8px;
	transition: var(--cv-transition);
}

.cv-stat-item:hover {
	border-color: var(--cv-primary);
	transform: translateX(10px);
}

.cv-stat-icon {
	width: 60px;
	height: 60px;
	background: var(--cv-gradient-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	flex-shrink: 0;
}

.cv-stat-info h4 {
	margin-bottom: 0.3rem;
	font-size: 2rem;
	background: var(--cv-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cv-stat-info p {
	margin: 0;
	font-size: 0.95rem;
}

/* ====================================
   MENTORS SECTION
   ==================================== */
.cv-mentor-card {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--cv-transition);
	position: relative;
}

.cv-mentor-card:hover {
	transform: translateY(-10px);
	border-color: var(--cv-primary);
	box-shadow: var(--cv-shadow-card);
}

.cv-mentor-image {
	width: 100%;
	height: 300px;
	background: linear-gradient(
		135deg,
		var(--cv-bg-tertiary) 0%,
		var(--cv-bg-secondary) 100%
	);
	position: relative;
	overflow: hidden;
}

.cv-mentor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cv-mentor-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(
		to top,
		var(--cv-bg-secondary) 0%,
		transparent 100%
	);
}

.cv-mentor-info {
	padding: 2rem;
}

.cv-mentor-info h3 {
	margin-bottom: 0.5rem;
	color: var(--cv-text-main);
}

.cv-mentor-role {
	color: var(--cv-primary);
	font-weight: 600;
	margin-bottom: 1rem;
	display: block;
}

.cv-mentor-bio {
	color: var(--cv-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

.cv-mentor-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	background: linear-gradient(
		to top,
		rgba(13, 14, 16, 0.95) 0%,
		rgba(13, 14, 16, 0.95) 100%
	);
	transform: translateY(100%);
	transition: var(--cv-transition);
	display: flex;
	justify-content: center;
}

.cv-mentor-card:hover .cv-mentor-overlay {
	transform: translateY(0);
}

/* ====================================
   FORM SECTION
   ==================================== */
.cv-form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.cv-form {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 3rem;
}

.cv-form-group {
	margin-bottom: 1.5rem;
}

.cv-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--cv-text-main);
	font-weight: 600;
}

.cv-form-group input,
.cv-form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--cv-bg-tertiary);
	border: 1px solid var(--cv-border);
	border-radius: 8px;
	color: var(--cv-text-main);
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: var(--cv-transition);
}

.cv-form-group input:focus,
.cv-form-group textarea:focus {
	outline: none;
	border-color: var(--cv-primary);
	box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.1);
}

.cv-form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.cv-form-error {
	color: #ff4757;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.cv-form-group.cv-error input,
.cv-form-group.cv-error textarea {
	border-color: #ff4757;
}

.cv-form-group.cv-error .cv-form-error {
	display: block;
}

.cv-map-wrapper {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	min-height: 400px;
}

.cv-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	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: 0.5rem;
	/* overflow: hidden; */
}

.cv-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;
}

/* ====================================
   FOOTER
   ==================================== */
.cv-footer {
	background: var(--cv-bg-secondary);
	border-top: 1px solid var(--cv-border);
	padding: 4rem 0 2rem;
}

.cv-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.cv-footer-section h4 {
	margin-bottom: 1.5rem;
	color: var(--cv-text-main);
}

.cv-footer-section p,
.cv-footer-section li {
	color: var(--cv-text-secondary);
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
}

.cv-footer-section a {
	color: var(--cv-text-secondary);
	transition: var(--cv-transition);
}

.cv-footer-section a:hover {
	color: var(--cv-primary);
	padding-left: 5px;
}

.cv-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--cv-border);
	color: var(--cv-text-secondary);
	font-size: 0.9rem;
}

/* ====================================
   COOKIE POPUP
   ==================================== */
.cv-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background: var(--cv-bg-secondary);
	border-top: 2px solid var(--cv-primary);
	padding: 2rem;
	z-index: 9999;
	transition: var(--cv-transition);
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cv-cookie-popup.cv-show {
	bottom: 0;
}

.cv-cookie-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.cv-cookie-text {
	flex: 1;
}

.cv-cookie-text p {
	margin: 0;
	color: var(--cv-text-secondary);
}

.cv-cookie-text a {
	color: var(--cv-primary);
	text-decoration: underline;
}

.cv-cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* ====================================
   COURSES PAGE
   ==================================== */
.cv-course-filters {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.cv-filter-btn {
	padding: 0.8rem 1.8rem;
	background: transparent;
	border: 2px solid var(--cv-border);
	color: var(--cv-text-secondary);
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	transition: var(--cv-transition);
}

.cv-filter-btn:hover {
	border-color: var(--cv-primary);
	color: var(--cv-primary);
}

.cv-filter-btn.cv-active {
	background: var(--cv-primary);
	border-color: var(--cv-primary);
	color: white;
}

.cv-course-card {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--cv-transition);
	display: flex;
	flex-direction: column;
}

.cv-course-card:hover {
	transform: translateY(-10px);
	border-color: var(--cv-primary);
	box-shadow: var(--cv-shadow-card);
}

.cv-course-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(
		135deg,
		var(--cv-bg-tertiary) 0%,
		var(--cv-bg-secondary) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--cv-primary);
}

.cv-course-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cv-course-badge {
	display: inline-block;
	padding: 0.3rem 1rem;
	background: var(--cv-gradient-primary);
	color: white;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
	width: fit-content;
}

.cv-course-content h3 {
	margin-bottom: 1rem;
	color: var(--cv-text-main);
}

.cv-course-content p {
	margin-bottom: 1.5rem;
	flex: 1;
}

.cv-course-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--cv-border);
}

.cv-course-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--cv-text-secondary);
	font-size: 0.9rem;
}

.cv-course-meta-item i {
	color: var(--cv-primary);
}

/* ====================================
   COMPARISON TABLE
   ==================================== */
.cv-table-wrapper {
	overflow-x: auto;
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 2rem;
}

.cv-table {
	width: 100%;
	border-collapse: collapse;
}

.cv-table th,
.cv-table td {
	padding: 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--cv-border);
}

.cv-table th {
	color: var(--cv-primary);
	font-weight: 700;
	font-family: 'Space Grotesk', sans-serif;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.cv-table td {
	color: var(--cv-text-secondary);
}

.cv-table tr:hover {
	background: rgba(0, 184, 217, 0.03);
}

.cv-table tr:last-child td {
	border-bottom: none;
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.cv-testimonial-card {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 2.5rem;
	position: relative;
	transition: var(--cv-transition);
}

.cv-testimonial-card:hover {
	border-color: var(--cv-primary);
	transform: translateY(-5px);
}

.cv-testimonial-quote {
	font-size: 3rem;
	color: var(--cv-primary);
	opacity: 0.3;
	position: absolute;
	top: 1rem;
	left: 2rem;
}

.cv-testimonial-text {
	margin-bottom: 2rem;
	font-style: italic;
	color: var(--cv-text-secondary);
	font-size: 1.05rem;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.cv-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cv-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--cv-gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	flex-shrink: 0;
	font-weight: 700;
}

.cv-testimonial-info h4 {
	margin-bottom: 0.3rem;
	color: var(--cv-text-main);
	font-size: 1.1rem;
}

.cv-testimonial-info p {
	margin: 0;
	color: var(--cv-primary);
	font-size: 0.9rem;
}

/* ====================================
   FAQ / ACCORDION
   ==================================== */
.cv-accordion {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	overflow: hidden;
}

.cv-accordion-item {
	border-bottom: 1px solid var(--cv-border);
}

.cv-accordion-item:last-child {
	border-bottom: none;
}

.cv-accordion-header {
	width: 100%;
	padding: 1.5rem 2rem;
	background: transparent;
	border: none;
	color: var(--cv-text-main);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--cv-transition);
}

.cv-accordion-header:hover {
	color: var(--cv-primary);
	background: rgba(0, 184, 217, 0.03);
}

.cv-accordion-icon {
	transition: var(--cv-transition);
	color: var(--cv-primary);
}

.cv-accordion-item.cv-active .cv-accordion-icon {
	transform: rotate(180deg);
}

.cv-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.cv-accordion-content-inner {
	padding: 1rem 2rem 2rem;
	color: var(--cv-text-secondary);
	line-height: 1.8;
}

.cv-accordion-item.cv-active .cv-accordion-content {
	max-height: 500px;
}

/* ====================================
   RESOURCE CARDS
   ==================================== */
.cv-resource-card {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	gap: 2rem;
	align-items: start;
	transition: var(--cv-transition);
}

.cv-resource-card:hover {
	border-color: var(--cv-primary);
	transform: translateX(10px);
}

.cv-resource-icon {
	width: 70px;
	height: 70px;
	background: var(--cv-gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	flex-shrink: 0;
}

.cv-resource-content h3 {
	margin-bottom: 0.8rem;
	color: var(--cv-text-main);
}

.cv-resource-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--cv-text-secondary);
}

.cv-resource-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cv-resource-meta i {
	color: var(--cv-primary);
}

/* ====================================
   CONTACT INFO
   ==================================== */
.cv-contact-info {
	background: var(--cv-bg-secondary);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 3rem;
}

.cv-contact-item {
	display: flex;
	align-items: start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--cv-border);
}

.cv-contact-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.cv-contact-icon {
	width: 50px;
	height: 50px;
	background: var(--cv-gradient-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.cv-contact-details h4 {
	margin-bottom: 0.5rem;
	color: var(--cv-text-main);
	font-size: 1.1rem;
}

.cv-contact-details p {
	margin: 0;
	color: var(--cv-text-secondary);
}

.cv-contact-details a {
	color: var(--cv-primary);
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes cv-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes cv-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cv-fade-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cv-glow-pulse {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(0, 184, 217, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(0, 184, 217, 0.6);
	}
}

/* .cv-animate-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.cv-animate-in.cv-visible {
	opacity: 1;
	transform: translateY(0);
} */

/* ====================================
   UTILITY CLASSES
   ==================================== */
.cv-text-center {
	text-align: center;
}
.cv-text-left {
	text-align: left;
}
.cv-text-right {
	text-align: right;
}

.cv-mt-1 {
	margin-top: 1rem;
}
.cv-mt-2 {
	margin-top: 2rem;
}
.cv-mt-3 {
	margin-top: 3rem;
}

.cv-mb-1 {
	margin-bottom: 1rem;
}
.cv-mb-2 {
	margin-bottom: 2rem;
}
.cv-mb-3 {
	margin-bottom: 3rem;
}

/* .cv-hidden {
	display: none;
} */
/* .cv-visible {
	display: block;
} */

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1200px) {
	.cv-container {
		padding: 0 1.5rem;
	}

	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2.2rem;
	}

	.cv-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.cv-stats-container {
		gap: 3rem;
	}
}

@media (max-width: 968px) {
	.cv-nav {
		position: absolute;
		top: 100%;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(13, 14, 16, 0.98);
		flex-direction: column;
		justify-content: flex-start;
		padding: 3rem 2rem;
		transition: var(--cv-transition);
	}

	.cv-nav.cv-active {
		left: 0;
	}

	.cv-nav-links {
		flex-direction: column;

		width: 100%;
	}

	.cv-nav-link {
		width: 100%;
		/* border-bottom: 1px solid var(--cv-border); */
	}

	.cv-mobile-toggle {
		display: flex;
	}

	.cv-grid-2,
	.cv-grid-3,
	.cv-grid-4 {
		grid-template-columns: 1fr !important;
	}

	.cv-hero h1 {
		font-size: 2.8rem;
	}

	.cv-hero p {
		font-size: 1.2rem;
	}

	.cv-stats-container,
	.cv-form-container {
		grid-template-columns: 1fr;
	}

	.cv-footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.cv-program-card {
		grid-template-columns: 1fr;
		text-align: center;
		align-items: center;
	}
	.cv-program-icon {
		margin: 1rem auto;
	}
	.cv-cookie-content {
		flex-direction: column;
	}

	.cv-cookie-buttons {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.8rem;
	}

	.cv-hero h1 {
		font-size: 2rem;
	}

	.cv-hero p {
		font-size: 1rem;
	}

	.cv-hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cv-btn {
		width: 100%;
		padding: 0.9rem 2rem;
	}

	.cv-section {
		padding: 4rem 0;
	}

	.cv-footer-content {
		grid-template-columns: 1fr;
	}

	.cv-card,
	.cv-form,
	.cv-contact-info {
		padding: 1.5rem;
	}

	.cv-table-wrapper {
		padding: 1rem;
	}

	.cv-table th,
	.cv-table td {
		padding: 0.8rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.cv-header-container {
		padding: 1rem 20px;
	}

	.cv-programs-tabs,
	.cv-course-filters {
		flex-direction: column;
	}

	.cv-resource-card {
		flex-direction: column;
	}

	.cv-resource-content h3 {
		font-size: 1.1rem;
	}

	.cv-accordion-header {
		gap: 10px;
	}
}

.cv-legal-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 120px 30px;
	position: relative;
}

/* Hero Section */
.cv-legal-hero {
	text-align: center;
	margin-bottom: 80px;
	padding: 60px 30px;
	background: linear-gradient(135deg, #121417 0%, #181a1e 100%);
	border-radius: 20px;
	border: 1px solid #2a2c31;
	position: relative;
	overflow: hidden;
}

.cv-legal-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(0, 184, 217, 0.1) 0%,
		transparent 70%
	);
	animation: cv-legal-pulse 8s ease-in-out infinite;
}

@keyframes cv-legal-pulse {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.5;
	}
	50% {
		transform: translate(10px, 10px) scale(1.1);
		opacity: 0.8;
	}
}

.cv-legal-title {
	font-size: 48px;
	font-weight: 800;
	color: #eaeaea;
	margin-bottom: 15px;
	letter-spacing: -1px;
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #00b8d9 0%, #7b61ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cv-legal-subtitle {
	font-size: 16px;
	color: #9ca3af;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.cv-legal-accent-line {
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #00b8d9 0%, #7b61ff 50%, #ffd166 100%);
	margin: 0 auto;
	border-radius: 2px;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 20px rgba(0, 184, 217, 0.5);
}

/* Content Container */
.cv-legal-content {
	background-color: #121417;
	border-radius: 16px;
	padding: 50px;
	border: 1px solid #2a2c31;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.cv-legal-section {
	margin-bottom: 60px;
	padding: 40px;
	background-color: #181a1e;
	border-radius: 12px;
	border-left: 4px solid #00b8d9;
	position: relative;
	transition: all 0.3s ease;
}

.cv-legal-section:hover {
	border-left-color: #7b61ff;
	box-shadow: 0 8px 30px rgba(123, 97, 255, 0.15);
	transform: translateX(5px);
}

.cv-legal-section:last-child {
	margin-bottom: 0;
}

.cv-legal-section-number {
	position: absolute;
	top: -15px;
	left: 30px;
	background: linear-gradient(135deg, #00b8d9 0%, #7b61ff 100%);
	color: #0d0e10;
	font-size: 20px;
	font-weight: 800;
	padding: 8px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 184, 217, 0.4);
}

.cv-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #00b8d9;
	margin-bottom: 25px;
	margin-top: 10px;
	letter-spacing: -0.5px;
	position: relative;
	padding-left: 15px;
}

.cv-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 80%;
	background: linear-gradient(180deg, #7b61ff 0%, #ffd166 100%);
	border-radius: 3px;
}

.cv-legal-section-content {
	color: #eaeaea;
	font-size: 16px;
	line-height: 1.8;
}

.cv-legal-section-content p {
	margin-bottom: 20px;
}

.cv-legal-section-content p:last-child {
	margin-bottom: 0;
}

.cv-legal-section-content strong {
	color: #ffd166;
	font-weight: 600;
}

.cv-legal-section-content br {
	line-height: 2.2;
}

/* Footer Info */
.cv-legal-footer-info {
	text-align: center;
	margin-top: 60px;
	padding: 30px;
	border-top: 2px solid #2a2c31;
	color: #9ca3af;
	font-size: 14px;
}

.cv-legal-footer-info p {
	margin: 8px 0;
}

.cv-legal-footer-info p:first-child {
	font-weight: 600;
	color: #eaeaea;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.cv-legal-hero {
		padding: 40px 20px;
		margin-bottom: 50px;
	}

	.cv-legal-title {
		font-size: 2rem;
	}

	.cv-legal-subtitle {
		font-size: 14px;
	}

	.cv-legal-content {
		padding: 30px 20px;
	}

	.cv-legal-section {
		padding: 30px 20px;
		margin-bottom: 40px;
	}

	.cv-legal-section-number {
		font-size: 16px;
		padding: 6px 15px;
		left: 20px;
	}

	.cv-legal-section-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.cv-legal-section-content {
		font-size: 15px;
	}

	.cv-legal-footer-info {
		margin-top: 40px;
		padding: 20px;
	}
}

@media screen and (max-width: 480px) {
	.cv-legal-hero {
		padding: 30px 15px;
		margin-bottom: 40px;
		border-radius: 12px;
	}

	.cv-legal-title {
		font-size: 1rem;
	}

	.cv-legal-accent-line {
		width: 80px;
		height: 3px;
	}

	.cv-legal-content {
		padding: 20px 15px;
		border-radius: 12px;
	}

	.cv-legal-section {
		padding: 25px 15px;
		margin-bottom: 30px;
		border-radius: 10px;
	}

	.cv-legal-section:hover {
		transform: translateX(3px);
	}

	.cv-legal-section-number {
		font-size: 14px;
		padding: 5px 12px;
		left: 15px;
		top: -12px;
	}

	.cv-legal-section-title {
		font-size: 20px;
		padding-left: 12px;
	}

	.cv-legal-section-title::before {
		width: 4px;
	}

	.cv-legal-section-content {
		font-size: 14px;
		line-height: 1.7;
	}
}
