@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
	/* Color Palette */
	--cl-primary: #1d4ed8;
	--cl-primary-hover: #1e40af;
	--cl-secondary: #10b981;
	--cl-secondary-hover: #059669;
	--cl-accent: #f59e0b;
	--cl-accent-hover: #d97706;

	/* Backgrounds */
	--cl-bg-main: #f9fafc;
	--cl-bg-white: #ffffff;
	--cl-bg-light: #f2f4f8;

	/* Text Colors */
	--cl-text-main: #1f2937;
	--cl-text-secondary: #6b7280;
	--cl-text-light: #9ca3af;

	/* Borders */
	--cl-border: #e5e7eb;

	/* Shadows */
	--cl-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--cl-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--cl-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
	--cl-shadow-hover: 0 15px 40px rgba(29, 78, 216, 0.15);

	/* Transitions */
	--cl-transition: all 0.3s ease-in-out;

	/* Typography */
	--cl-font-main: 'Inter', sans-serif;
	--cl-font-heading: 'Poppins', sans-serif;
}

/* ==================== GLOBAL RESET ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--cl-font-main);
	font-size: 16px;
	line-height: 1.6;
	color: var(--cl-text-main);
	background-color: var(--cl-bg-main);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--cl-transition);
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	transition: var(--cl-transition);
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--cl-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--cl-text-main);
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
}

h2 {
	font-size: 2.75rem;
	font-weight: 700;
}

h3 {
	font-size: 2rem;
	font-weight: 600;
}

h4 {
	font-size: 1.5rem;
	font-weight: 600;
}

h5 {
	font-size: 1.25rem;
	font-weight: 500;
}

h6 {
	font-size: 1rem;
	font-weight: 500;
}

p {
	margin-bottom: 1rem;
	color: var(--cl-text-secondary);
	line-height: 1.8;
}

.cl-text-gradient {
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ==================== UTILITY CLASSES ==================== */
.cl-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cl-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cl-section {
	padding: 5rem 0;
}

.cl-section-alt {
	padding: 5rem 0;
	background-color: var(--cl-bg-white);
}

.cl-text-center {
	text-align: center;
}

.cl-mb-1 {
	margin-bottom: 1rem;
}
.cl-mb-2 {
	margin-bottom: 2rem;
}
.cl-mb-3 {
	margin-bottom: 3rem;
}
.cl-mb-4 {
	margin-bottom: 4rem;
}

.cl-mt-1 {
	margin-top: 1rem;
}
.cl-mt-2 {
	margin-top: 2rem;
}
.cl-mt-3 {
	margin-top: 3rem;
}
.cl-mt-4 {
	margin-top: 4rem;
}

/* ==================== BUTTONS ==================== */
.cl-btn {
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	transition: var(--cl-transition);
	cursor: pointer;
	text-align: center;
}

.cl-btn-primary {
	background: var(--cl-primary);
	color: white;
	box-shadow: var(--cl-shadow-md);
}

.cl-btn-primary:hover {
	background: var(--cl-primary-hover);
	transform: translateY(-2px);
	box-shadow: var(--cl-shadow-hover);
}

.cl-btn-secondary {
	background: var(--cl-secondary);
	color: white;
	box-shadow: var(--cl-shadow-md);
}

.cl-btn-secondary:hover {
	background: var(--cl-secondary-hover);
	transform: translateY(-2px);
	box-shadow: var(--cl-shadow-hover);
}

.cl-btn-outline {
	background: transparent;
	color: var(--cl-primary);
	border: 2px solid var(--cl-primary);
}

.cl-btn-outline:hover {
	background: var(--cl-primary);
	color: white;
	transform: translateY(-2px);
}

.cl-btn-accent {
	background: var(--cl-accent);
	color: white;
	box-shadow: var(--cl-shadow-md);
}

.cl-btn-accent:hover {
	background: var(--cl-accent-hover);
	transform: translateY(-2px);
}

.cl-btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
}

/* ==================== HEADER ==================== */
.cl-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--cl-shadow-sm);
	z-index: 1000;
	transition: var(--cl-transition);
}

.cl-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.cl-logo {
	font-family: var(--cl-font-heading);
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cl-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.cl-nav-link {
	font-weight: 500;
	color: var(--cl-text-main);
	position: relative;
}

.cl-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--cl-primary);
	transition: var(--cl-transition);
}

.cl-nav-link:hover::after,
.cl-nav-link.cl-active::after {
	width: 100%;
}

.cl-nav-link:hover,
.cl-nav-link.cl-active {
	color: var(--cl-primary);
}

.cl-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.cl-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: var(--cl-primary);
	transition: var(--cl-transition);
}

/* ==================== HERO SECTION ==================== */
.cl-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
		135deg,
		rgba(29, 78, 216, 0.05),
		rgba(16, 185, 129, 0.05)
	);
	padding-top: 6rem;
	overflow: hidden;
}

.cl-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('assets/cl-hero.webp') center/cover;
	background-attachment: fixed;
	opacity: 0.3;
}

.cl-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.cl-hero-content h1 {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.cl-hero-content p {
	font-size: 1.25rem;
	color: var(--cl-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.cl-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.cl-hero-image {
	position: relative;
	border-radius: 16px;
	height: 100%;
	overflow: hidden;
	box-shadow: var(--cl-shadow-lg);
}

.cl-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cl-hero-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(29, 78, 216, 0.2),
		rgba(16, 185, 129, 0.2)
	);
	transition: var(--cl-transition);
}

.cl-hero-image:hover::after {
	opacity: 0.5;
}

/* ==================== SECTION HEADERS ==================== */
.cl-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.cl-section-subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: var(--cl-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.cl-section-title {
	font-size: 2.75rem;
	margin-bottom: 1rem;
}

.cl-section-description {
	font-size: 1.125rem;
	color: var(--cl-text-secondary);
}

/* ==================== CARDS ==================== */
.cl-card {
	background: var(--cl-bg-white);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
	height: 100%;
}

.cl-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cl-shadow-lg);
}

.cl-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.cl-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--cl-text-main);
}

.cl-card-description {
	color: var(--cl-text-secondary);
	line-height: 1.8;
}

/* ==================== GRID LAYOUTS ==================== */
.cl-grid {
	display: grid;
	gap: 2rem;
}

.cl-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.cl-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.cl-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ==================== EXPERTISE SECTION ==================== */
.cl-expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.cl-expertise-card {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
	border: 2px solid transparent;
}

.cl-expertise-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--cl-shadow-lg);
	border-color: var(--cl-primary);
}

.cl-expertise-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	color: white;
}

/* ==================== TIMELINE SECTION ==================== */
.cl-timeline {
	position: relative;
	padding: 2rem 0;
}

.cl-timeline::before {
	content: '';
	position: absolute;
	left: 40px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--cl-border);
	transform: translateX(-50%);
}

.cl-timeline-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 2rem;

	margin-bottom: 3rem;
	align-items: center;
}

.cl-timeline-content {
	background: var(--cl-bg-white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
}

.cl-timeline-content:hover {
	box-shadow: var(--cl-shadow-md);
	transform: translateX(10px);
}

/* .cl-timeline-item:nth-child(even) .cl-timeline-content {
	grid-column: 3;
} */

.cl-timeline-item:nth-child(even) .cl-timeline-content:hover {
	transform: translateX(-10px);
}

.cl-timeline-marker {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: var(--cl-shadow-md);
}

/* .cl-timeline-empty {
	grid-column: 1;
} */

/* .cl-timeline-item:nth-child(even) .cl-timeline-empty {
	grid-column: 3;
} */

/* ==================== TESTIMONIALS ==================== */
.cl-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.cl-testimonial-card {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
	position: relative;
}

.cl-testimonial-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	font-size: 5rem;
	color: var(--cl-primary);
	opacity: 0.1;
	font-family: Georgia, serif;
}

.cl-testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cl-shadow-lg);
}

.cl-testimonial-content {
	font-style: italic;
	color: var(--cl-text-secondary);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.cl-testimonial-author {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 1rem;
}

.cl-testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;

	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
}

.cl-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.cl-testimonial-info h5 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--cl-text-main);
}

.cl-testimonial-info p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--cl-text-light);
}

.cl-testimonial-stars {
	color: var(--cl-accent);
	margin-top: 1rem;
	font-size: 1.25rem;
}

/* ==================== FORM STYLES ==================== */
.cl-form {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: var(--cl-shadow-md);
}

.cl-form-group {
	margin-bottom: 1.5rem;
}

.cl-form-label {
	display: block;
	font-weight: 600;
	color: var(--cl-text-main);
	margin-bottom: 0.5rem;
}

.cl-form-input,
.cl-form-textarea,
.cl-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--cl-border);
	border-radius: 8px;
	font-family: var(--cl-font-main);
	font-size: 1rem;
	color: var(--cl-text-main);
	transition: var(--cl-transition);
	background: var(--cl-bg-light);
}

.cl-form-input:focus,
.cl-form-textarea:focus,
.cl-form-select:focus {
	outline: none;
	border-color: var(--cl-primary);
	background: white;
	box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.cl-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.cl-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.cl-form-group.cl-error .cl-form-error {
	display: block;
}

.cl-form-group.cl-error .cl-form-input,
.cl-form-group.cl-error .cl-form-textarea {
	border-color: #ef4444;
}

/* ==================== CONTACT SECTION ==================== */
.cl-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.cl-contact-info {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: var(--cl-shadow-sm);
}

.cl-contact-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.cl-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.cl-contact-details h4 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.cl-contact-details p {
	margin: 0;
	color: var(--cl-text-secondary);
}

.cl-map-container {
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	box-shadow: var(--cl-shadow-md);
}

.cl-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.cl-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.cl-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.cl-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 ==================== */
.cl-footer {
	background: var(--cl-bg-light);
	border-top: 1px solid var(--cl-border);
	padding: 4rem 0 2rem;
}

.cl-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.cl-footer-column h4 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--cl-text-main);
}

.cl-footer-column p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--cl-text-secondary);
}

.cl-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cl-footer-link {
	color: var(--cl-text-secondary);
	transition: var(--cl-transition);
	font-size: 0.95rem;
}

.cl-footer-link:hover {
	color: var(--cl-primary);
	padding-left: 5px;
}

.cl-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--cl-border);
}

.cl-footer-bottom p {
	margin: 0;
	color: var(--cl-text-light);
	font-size: 0.9rem;
}

/* ==================== COOKIE POPUP ==================== */
.cl-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 500px;
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: var(--cl-shadow-lg);
	z-index: 10000;
	transform: translateY(150%);
	transition: transform 0.5s ease-in-out;
}

.cl-cookie-popup.cl-show {
	transform: translateY(0);
}

.cl-cookie-content h4 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.cl-cookie-content p {
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	color: var(--cl-text-secondary);
}

.cl-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cl-cookie-link {
	color: var(--cl-primary);
	text-decoration: underline;
}

/* ==================== ANIMATIONS ==================== */
@keyframes cl-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cl-slide-up {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cl-scale-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.cl-animate-fade-in {
	animation: cl-fade-in 0.8s ease-out forwards;
}

.cl-animate-slide-up {
	animation: cl-slide-up 0.8s ease-out forwards;
}

.cl-animate-scale-in {
	animation: cl-scale-in 0.6s ease-out forwards;
}

.cl-hidden {
	opacity: 0;
}

/* ==================== SERVICES PAGE ==================== */
.cl-services-banner {
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	color: white;
	padding: 8rem 0 5rem;
	text-align: center;
	margin-top: 4rem;
}

.cl-services-banner h1 {
	color: white;
	margin-bottom: 1rem;
}

.cl-services-banner p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
}

.cl-service-card {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 3rem;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
	border: 2px solid transparent;
}

.cl-service-card:hover {
	border-color: var(--cl-primary);
	box-shadow: var(--cl-shadow-lg);
	transform: translateY(-5px);
}

.cl-service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.cl-pricing-table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.cl-pricing-card {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 3rem 2rem;
	box-shadow: var(--cl-shadow-sm);
	text-align: center;
	transition: var(--cl-transition);
	border: 2px solid var(--cl-border);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.cl-pricing-card a {
	margin-top: auto;
}

.cl-pricing-card.cl-featured {
	border-color: var(--cl-primary);
	transform: scale(1.05);
	box-shadow: var(--cl-shadow-lg);
}

.cl-pricing-card:hover {
	transform: scale(1.05);
	box-shadow: var(--cl-shadow-lg);
}

.cl-pricing-badge {
	display: inline-block;
	background: var(--cl-accent);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.cl-pricing-price {
	font-size: 3rem;
	font-weight: 800;
	color: var(--cl-primary);
	margin: 1rem 0;
}

.cl-pricing-price span {
	font-size: 1.5rem;
	color: var(--cl-text-secondary);
}

.cl-pricing-features {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.cl-pricing-features li {
	padding: 0.75rem 0;
	color: var(--cl-text-secondary);
	border-bottom: 1px solid var(--cl-border);
}

.cl-pricing-features li:last-child {
	border-bottom: none;
}

.cl-pricing-features li i {
	color: var(--cl-secondary);
	margin-right: 0.5rem;
}

/* ==================== TEAM PAGE ==================== */
.cl-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.cl-team-card {
	background: var(--cl-bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
}

.cl-team-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--cl-shadow-lg);
}

.cl-team-image {
	width: 100%;
	height: 350px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	position: relative;
	overflow: hidden;
}

.cl-team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cl-team-info {
	padding: 2rem;
	text-align: center;
}

.cl-team-name {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--cl-text-main);
}

.cl-team-role {
	color: var(--cl-primary);
	font-weight: 600;
	margin-bottom: 1rem;
}

.cl-team-bio {
	color: var(--cl-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

.cl-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 2rem;
}

.cl-value-card {
	background: var(--cl-bg-white);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
}

.cl-value-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--cl-shadow-md);
}

.cl-value-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.cl-video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	box-shadow: var(--cl-shadow-lg);
}

.cl-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ==================== INSIGHTS PAGE ==================== */
.cl-articles-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.cl-article-card {
	background: var(--cl-bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--cl-shadow-sm);
	transition: var(--cl-transition);
	display: flex;
	flex-direction: column;
}

.cl-article-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cl-shadow-lg);
}

.cl-article-image {
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
}

.cl-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cl-article-content {
	padding: 2rem;
	flex: 1;
}

.cl-article-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
	color: var(--cl-text-light);
}

.cl-article-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--cl-text-main);
}

.cl-article-excerpt {
	color: var(--cl-text-secondary);
	margin-bottom: 1.5rem;
}

.cl-article-link {
	color: var(--cl-primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.cl-article-link:hover {
	gap: 1rem;
}

.cl-trends-list {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 3rem;
	box-shadow: var(--cl-shadow-sm);
}

.cl-trend-item {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--cl-border);
	transition: var(--cl-transition);
}

.cl-trend-item:last-child {
	border-bottom: none;
}

.cl-trend-item:hover {
	padding-left: 1rem;
	background: var(--cl-bg-light);
}

.cl-trend-number {
	display: inline-flex;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.cl-chart-container {
	background: var(--cl-bg-white);
	border-radius: 16px;
	padding: 3rem;
	box-shadow: var(--cl-shadow-sm);
	margin-bottom: 3rem;
}

.cl-chart-container canvas {
	max-height: 400px;
	height: 100% !important;
}

.cl-newsletter-box {
	background: linear-gradient(135deg, var(--cl-primary), var(--cl-secondary));
	border-radius: 16px;
	padding: 4rem;
	text-align: center;
	color: white;
}

.cl-newsletter-box h3 {
	color: white;
	margin-bottom: 1rem;
}

.cl-newsletter-box p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
}

.cl-newsletter-form {
	display: flex;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto;
}

.cl-newsletter-form input {
	flex: 1;
	padding: 1rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
}

/* ==================== ACCORDION ==================== */
.cl-accordion {
	background: var(--cl-bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--cl-shadow-sm);
}

.cl-accordion-item {
	border-bottom: 1px solid var(--cl-border);
}

.cl-accordion-item:last-child {
	border-bottom: none;
}

.cl-accordion-header {
	width: 100%;
	text-align: left;
	padding: 1.5rem 2rem;
	background: transparent;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--cl-text-main);
	transition: var(--cl-transition);
}

.cl-accordion-header:hover {
	background: var(--cl-bg-light);
}

.cl-accordion-icon {
	transition: var(--cl-transition);
}

.cl-accordion-item.cl-active .cl-accordion-icon {
	transform: rotate(180deg);
}

.cl-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.cl-accordion-item.cl-active .cl-accordion-content {
	max-height: 2000px;
}

.cl-accordion-body {
	padding: 1rem 2rem 1.5rem;
	color: var(--cl-text-secondary);
	line-height: 1.8;
}

/* ==================== TABS ==================== */
.cl-tabs {
	background: var(--cl-bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--cl-shadow-sm);
}

.cl-tabs-header {
	display: flex;
	border-bottom: 2px solid var(--cl-border);
}

.cl-tab-button {
	flex: 1;
	padding: 1.25rem;
	background: transparent;
	border: none;
	font-size: 1rem;
	font-weight: 600;
	color: var(--cl-text-secondary);
	cursor: pointer;
	transition: var(--cl-transition);
	border-bottom: 3px solid transparent;
}

.cl-tab-button:hover {
	background: var(--cl-bg-light);
	color: var(--cl-text-main);
}

.cl-tab-button.cl-active {
	color: var(--cl-primary);
	border-bottom-color: var(--cl-primary);
}

.cl-tab-content {
	padding: 2rem;
	display: none;
}

.cl-tab-content.cl-active {
	display: block;
}

/* Additional styles for completeness */
.cl-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.cl-badge-primary {
	background: var(--cl-primary);
	color: white;
}

.cl-badge-secondary {
	background: var(--cl-secondary);
	color: white;
}

.cl-badge-accent {
	background: var(--cl-accent);
	color: white;
}

.cl-divider {
	height: 1px;
	background: var(--cl-border);
	margin: 2rem 0;
}

.cl-text-primary {
	color: var(--cl-primary);
}
.cl-text-secondary {
	color: var(--cl-text-secondary);
}
.cl-bg-primary {
	background: var(--cl-primary);
}
.cl-bg-white {
	background: var(--cl-bg-white);
}

/* Overlay for mobile menu */
.cl-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	display: none;
	transition: var(--cl-transition);
}

.cl-overlay.cl-active {
	display: block;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	.cl-hero-grid,
	.cl-contact-grid,
	.cl-grid-2 {
		grid-template-columns: 1fr !important;
		gap: 2rem;
	}

	.cl-expertise-grid,
	.cl-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.cl-grid-4,
	.cl-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cl-timeline-item {
		grid-template-columns: 80px 1fr;
		gap: 1.5rem;
	}

	.cl-timeline-empty {
		display: none;
	}

	.cl-timeline-marker {
		grid-column: 1;
	}

	/* .cl-timeline-content {
		grid-column: 2;
	} */

	/* .cl-timeline-item:nth-child(even) .cl-timeline-content {
		grid-column: 2;
	} */

	.cl-pricing-table {
		grid-template-columns: 1fr;
	}

	.cl-pricing-card.cl-featured {
		transform: scale(1);
	}

	.cl-hero {
		min-height: 125vh;
	}
}

@media (max-width: 768px) {
	.cl-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background: var(--cl-bg-white);
		flex-direction: column;
		padding: 6rem 2rem 2rem;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
		transition: var(--cl-transition);
		z-index: 999;
	}

	.cl-nav.cl-active {
		right: 0;
	}

	.cl-mobile-toggle {
		display: flex;
		z-index: 1001;
	}

	.cl-expertise-grid,
	.cl-testimonials-grid,
	.cl-team-grid,
	.cl-articles-grid,
	.cl-grid-3,
	.cl-grid-4,
	.cl-footer-grid,
	.cl-values-grid {
		grid-template-columns: 1fr;
	}

	.cl-hero {
		min-height: auto;
		padding: 8rem 0 4rem;
	}

	.cl-hero-content h1 {
		font-size: 2rem;
	}

	.cl-section {
		padding: 3rem 0;
	}

	.cl-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.cl-newsletter-form {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.cl-container,
	.cl-container-wide {
		padding: 0 1rem;
	}

	.cl-values-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	h1 {
		font-size: 1.75rem;
	}
	h2 {
		font-size: 1.5rem;
	}

	.cl-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}

	.cl-hero-buttons {
		flex-direction: column;
	}

	.cl-hero-buttons .cl-btn {
		width: 100%;
	}

	.cl-card,
	.cl-form {
		padding: 1.5rem;
	}

	.cl-timeline-item {
		grid-template-columns: 1fr;
	}

	.cl-section-title {
		font-size: 2rem;
	}

	.cl-header-container {
		padding: 1rem 20px;
	}

	.cl-contact-item {
		flex-direction: column;
	}
}

:root {
	/* Colors */
	--cl-legal-primary: #1d4ed8;
	--cl-legal-secondary: #10b981;
	--cl-legal-accent: #f59e0b;
	--cl-legal-bg-main: #f9fafc;
	--cl-legal-bg-white: #ffffff;
	--cl-legal-bg-section: #f2f4f8;
	--cl-legal-text-main: #1f2937;
	--cl-legal-text-secondary: #6b7280;
	--cl-legal-border: #e5e7eb;

	/* Spacing */
	--cl-legal-spacing-xs: 0.5rem;
	--cl-legal-spacing-sm: 1rem;
	--cl-legal-spacing-md: 1.5rem;
	--cl-legal-spacing-lg: 2rem;
	--cl-legal-spacing-xl: 3rem;
	--cl-legal-spacing-2xl: 4rem;

	/* Typography */
	--cl-legal-font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	--cl-legal-font-size-base: 16px;
	--cl-legal-line-height-base: 1.7;

	/* Shadows */
	--cl-legal-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--cl-legal-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--cl-legal-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);

	/* Transitions */
	--cl-legal-transition: all 0.3s ease;
}

.cl-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px var(--cl-legal-spacing-md);
}

/* === Hero Section === */
.cl-legal-hero {
	text-align: center;
	padding: var(--cl-legal-spacing-xl) var(--cl-legal-spacing-md);
	background: linear-gradient(135deg, var(--cl-legal-primary) 0%, #2563eb 100%);
	border-radius: 16px;
	margin-bottom: var(--cl-legal-spacing-xl);
	box-shadow: var(--cl-legal-shadow-lg);
	position: relative;
	overflow: hidden;
}

.cl-legal-hero::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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.cl-legal-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--cl-legal-bg-white);
	margin-bottom: var(--cl-legal-spacing-sm);
	position: relative;
	z-index: 1;
	letter-spacing: -0.02em;
}

.cl-legal-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
	position: relative;
	z-index: 1;
}

/* === Content Area === */
.cl-legal-content {
	background-color: var(--cl-legal-bg-white);
	border-radius: 12px;
	padding: var(--cl-legal-spacing-xl);
	box-shadow: var(--cl-legal-shadow-md);
}

/* === Section === */
.cl-legal-section {
	margin-bottom: var(--cl-legal-spacing-2xl);
	padding-bottom: var(--cl-legal-spacing-2xl);
	border-bottom: 2px solid var(--cl-legal-border);
	transition: var(--cl-legal-transition);
}

.cl-legal-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.cl-legal-section:hover {
	transform: translateX(4px);
}

/* === Section Header === */
.cl-legal-section-header {
	display: flex;
	align-items: center;
	gap: var(--cl-legal-spacing-md);
	margin-bottom: var(--cl-legal-spacing-lg);
}

.cl-legal-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		var(--cl-legal-primary),
		var(--cl-legal-secondary)
	);
	color: var(--cl-legal-bg-white);
	border-radius: 12px;
	font-size: 1.25rem;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: var(--cl-legal-shadow-sm);
	transition: var(--cl-legal-transition);
}

.cl-legal-section:hover .cl-legal-number {
	transform: scale(1.1) rotate(5deg);
	box-shadow: var(--cl-legal-shadow-md);
}

.cl-legal-heading {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 700;
	color: var(--cl-legal-text-main);
	line-height: 1.3;
	margin: 0;
}

/* === Text Content === */
.cl-legal-text {
	color: var(--cl-legal-text-main);
	line-height: 1.8;
}

.cl-legal-text p {
	margin-bottom: var(--cl-legal-spacing-md);
}

.cl-legal-text p:last-child {
	margin-bottom: 0;
}

.cl-legal-text strong {
	color: var(--cl-legal-primary);
	font-weight: 600;
	display: block;
	margin-bottom: var(--cl-legal-spacing-xs);
	font-size: 1.0625rem;
}

.cl-legal-text code {
	background-color: var(--cl-legal-bg-section);
	color: var(--cl-legal-primary);
	padding: 2px 8px;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 0.9em;
	font-weight: 500;
}

.cl-legal-text br {
	display: block;
	content: '';
	margin-top: var(--cl-legal-spacing-xs);
}

/* === Links === */
.cl-legal-text a {
	color: var(--cl-legal-primary);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: var(--cl-legal-transition);
	font-weight: 500;
}

.cl-legal-text a:hover {
	color: var(--cl-legal-secondary);
	border-bottom-color: var(--cl-legal-secondary);
}

/* === Accessibility === */
.cl-legal-section:focus-within {
	outline: 3px solid var(--cl-legal-accent);
	outline-offset: 4px;
	border-radius: 8px;
}

/* === Print Styles === */
@media print {
	body {
		background-color: white;
	}

	.cl-legal-hero {
		background: white;
		color: black;
		box-shadow: none;
	}

	.cl-legal-title {
		color: black;
	}

	.cl-legal-subtitle {
		color: #666;
	}

	.cl-legal-section {
		page-break-inside: avoid;
		border-bottom: 1px solid #ccc;
	}

	.cl-legal-section:hover {
		transform: none;
	}

	.cl-legal-number {
		background: #ddd;
		color: black;
		box-shadow: none;
	}
}

/* === Responsive Design === */

/* Tablets and below */
@media screen and (max-width: 768px) {
	.cl-legal-hero {
		padding: var(--cl-legal-spacing-lg) var(--cl-legal-spacing-md);
		margin-bottom: var(--cl-legal-spacing-lg);
		border-radius: 12px;
	}

	.cl-legal-title {
		font-size: 2rem;
	}

	.cl-legal-subtitle {
		font-size: 1rem;
	}

	.cl-legal-content {
		padding: var(--cl-legal-spacing-lg);
		border-radius: 8px;
	}

	.cl-legal-section {
		margin-bottom: var(--cl-legal-spacing-xl);
		padding-bottom: var(--cl-legal-spacing-xl);
	}

	.cl-legal-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--cl-legal-spacing-sm);
	}

	.cl-legal-number {
		width: 40px;
		height: 40px;
		font-size: 1.125rem;
	}

	.cl-legal-heading {
		font-size: clamp(1.25rem, 4vw, 1.5rem);
	}

	.cl-legal-text {
		font-size: 0.9375rem;
	}

	.cl-legal-section:hover {
		transform: none;
	}
}

/* Mobile phones */
@media screen and (max-width: 480px) {
	.cl-legal-title {
		font-size: 1.3rem;
	}

	.cl-legal-hero {
		padding: var(--cl-legal-spacing-md);
		margin-bottom: var(--cl-legal-spacing-md);
	}

	.cl-legal-content {
		padding: var(--cl-legal-spacing-md);
	}

	.cl-legal-section {
		margin-bottom: var(--cl-legal-spacing-lg);
		padding-bottom: var(--cl-legal-spacing-lg);
	}

	.cl-legal-text strong {
		font-size: 1rem;
	}
}
