/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--accent-color: #f59e0b;
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--bg-white: #ffffff;
	--border-color: #e5e7eb;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-white);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow);
	z-index: 1000;
	padding: 1rem 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	letter-spacing: -0.5px;
}

.nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-color);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.burger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--text-dark);
	color: var(--bg-white);
	padding: 1.5rem;
	z-index: 2000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	box-shadow: var(--shadow-lg);
}

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

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

.cookie-content p {
	margin: 0;
	flex: 1;
}

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

.cookie-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.cookie-btn:hover {
	background: var(--secondary-color);
}

/* Hero Section */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	margin-top: 70px;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.75) 0%, rgba(30, 64, 175, 0.85) 50%, rgba(139, 92, 246, 0.8) 100%);
	z-index: 2;
}

.hero-images {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.4;
	filter: blur(1px);
}

.hero-image-1 {
	animation: fadeInOut 10s infinite, floatImage 20s infinite ease-in-out;
}

.hero-image-2 {
	animation: fadeInOut 10s infinite 5s, floatImage 25s infinite ease-in-out;
}

@keyframes fadeInOut {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 0.7; }
}

@keyframes floatImage {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(20px, -20px) scale(1.05); }
	66% { transform: translate(-15px, 15px) scale(0.98); }
}

/* Decorative Elements */
.hero-decorations {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.decoration-circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: rotateCircle 30s infinite linear;
}

.decoration-circle.decoration-1 {
	width: 300px;
	height: 300px;
	top: -150px;
	right: -150px;
	border-style: dashed;
}

.decoration-circle.decoration-2 {
	width: 200px;
	height: 200px;
	bottom: -100px;
	left: -100px;
	border-width: 3px;
	animation-duration: 40s;
	animation-direction: reverse;
}

.decoration-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: slideLine 15s infinite;
}

.decoration-line-1 {
	width: 2px;
	height: 400px;
	top: 20%;
	left: 15%;
	transform: rotate(45deg);
}

.decoration-line-2 {
	width: 2px;
	height: 300px;
	bottom: 25%;
	right: 20%;
	transform: rotate(-30deg);
	animation-duration: 20s;
}

.decoration-dots {
	position: absolute;
	width: 200px;
	height: 200px;
	top: 30%;
	right: 10%;
	background-image: 
		radial-gradient(circle, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
		radial-gradient(circle, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
	background-size: 25px 25px, 15px 15px;
	background-position: 0 0, 12px 12px;
	animation: pulseDots 3s infinite;
}

.decoration-shape {
	position: absolute;
	border: 2px solid rgba(255, 255, 255, 0.25);
}

.decoration-shape-1 {
	width: 100px;
	height: 100px;
	top: 60%;
	left: 8%;
	transform: rotate(45deg);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	animation: floatShape 8s infinite ease-in-out;
}

.decoration-shape-2 {
	width: 80px;
	height: 80px;
	bottom: 15%;
	right: 12%;
	transform: rotate(20deg);
	border-radius: 20% 80% 20% 80%;
	animation: floatShape 10s infinite ease-in-out reverse;
}

@keyframes rotateCircle {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes slideLine {
	0%, 100% { opacity: 0.2; transform: translateY(0); }
	50% { opacity: 0.6; transform: translateY(30px); }
}

@keyframes pulseDots {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes floatShape {
	0%, 100% { transform: translate(0, 0) rotate(45deg); }
	50% { transform: translate(20px, -20px) rotate(65deg); }
}

.hero-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

/* Glassmorphism Effect */
.glass-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 3rem 2.5rem;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	max-width: 900px;
	animation: slideUp 1s ease;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	animation: slideUp 1s ease 0.1s;
	animation-fill-mode: both;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 50%;
	animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.3); }
}

.hero-text {
	max-width: 900px;
	padding: 0;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	animation: slideUp 1s ease 0.2s;
	animation-fill-mode: both;
	letter-spacing: -1px;
}

.title-line {
	display: block;
}

.title-line-1 {
	font-size: 3rem;
	font-weight: 300;
	opacity: 0.9;
	letter-spacing: 2px;
}

.title-line-2 {
	font-size: 5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-top: 0.5rem;
}

.letter-special {
	display: inline-block;
	position: relative;
	font-size: 6rem;
	font-weight: 900;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: letterGlow 3s infinite;
}

.letter-special::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border: 2px solid rgba(245, 158, 11, 0.3);
	border-radius: 50%;
	animation: letterPulse 2s infinite;
}

.gradient-text {
	background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 4s infinite;
}

@keyframes letterGlow {
	0%, 100% { filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5)); }
	50% { filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8)); }
}

@keyframes letterPulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
	50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.1; }
}

@keyframes gradientShift {
	0%, 100% { filter: hue-rotate(0deg); }
	50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
	font-size: 1.375rem;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	line-height: 1.7;
	font-weight: 400;
	animation: slideUp 1s ease 0.3s;
	animation-fill-mode: both;
	letter-spacing: 0.3px;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-buttons {
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	animation: slideUp 1s ease 0.4s;
	animation-fill-mode: both;
	margin-bottom: 3rem;
}

.btn-glow {
	position: relative;
	box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
	animation: buttonGlow 3s infinite;
}

.btn-glow:hover {
	box-shadow: 0 0 30px rgba(37, 99, 235, 0.8);
	transform: translateY(-3px) scale(1.05);
}

@keyframes buttonGlow {
	0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.5); }
	50% { box-shadow: 0 0 30px rgba(37, 99, 235, 0.8); }
}

.btn-outline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: white;
	transform: translateY(-3px);
}

.hero-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	animation: slideUp 1s ease 0.5s;
	animation-fill-mode: both;
}

.hero-stat-item {
	text-align: center;
}

.stat-number-large {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label-small {
	font-size: 0.875rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

.hero-stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: var(--primary-color);
	transform: translateY(-2px);
}

/* Section Styles */
section {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Services Section */
.services-section {
	background: var(--bg-light);
	position: relative;
	overflow: hidden;
}

.services-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: floatShape 15s infinite ease-in-out;
}

.services-section::after {
	content: '';
	position: absolute;
	bottom: -150px;
	left: -150px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: floatShape 20s infinite ease-in-out reverse;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
	transition: left 0.5s ease;
}

.service-card:hover::before {
	left: 100%;
}

.service-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
	border-color: rgba(37, 99, 235, 0.3);
}

.service-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.service-card:hover::after {
	opacity: 1;
}

.service-icon {
	width: 100%;
	height: 200px;
	margin-bottom: 1.5rem;
	border-radius: 8px;
	overflow: hidden;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.service-card:hover h3 {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* About Section */
.about-section {
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
	border: 3px solid transparent;
	background: linear-gradient(white, white) padding-box,
		linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
	transform: translateY(-5px) rotate(1deg);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-size: 1.125rem;
	line-height: 1.8;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	position: relative;
	display: inline-block;
}

.stat-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	transition: width 0.5s ease;
}

.stat-item:hover .stat-number::after {
	width: 100%;
}

.stat-label {
	color: var(--text-light);
	font-size: 0.875rem;
}

/* Portfolio Section */
.portfolio-section {
	background: linear-gradient(180deg, var(--bg-light) 0%, #f3f4f6 100%);
	position: relative;
}

.portfolio-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.portfolio-slider {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.portfolio-track {
	display: flex;
	transition: transform 0.5s ease;
}

.portfolio-slide {
	min-width: 100%;
}

.portfolio-item {
	position: relative;
	height: 500px;
	overflow: hidden;
}

.portfolio-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.portfolio-item:hover::before {
	opacity: 1;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
	transform: scale(1.1) rotate(1deg);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
	padding: 2rem;
	color: white;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 2;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-overlay h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 2rem;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s ease;
}

.slider-btn:hover {
	background: white;
}

.slider-prev {
	left: 20px;
}

.slider-next {
	right: 20px;
}

/* Process Section */
.process-section {
	background: linear-gradient(180deg, white 0%, #fafafa 100%);
	position: relative;
}

.process-section::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	transform: translateY(-50%);
}

.process-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	border: 2px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
	background: white;
	position: relative;
}

.accordion-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.accordion-item:hover {
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
	border-color: rgba(37, 99, 235, 0.3);
	transform: translateX(5px);
}

.accordion-item:hover::before {
	transform: scaleY(1);
}

.accordion-item.active {
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
	border-color: var(--primary-color);
	transform: translateX(0);
}

.accordion-item.active::before {
	transform: scaleY(1);
}

.accordion-header {
	padding: 1.5rem;
	background: var(--bg-light);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.accordion-item.active .accordion-header {
	background: var(--primary-color);
	color: white;
}

.accordion-header h3 {
	font-size: 1.25rem;
	font-weight: 600;
}

.accordion-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
	padding: 1.5rem;
}

.accordion-content p {
	margin-bottom: 1rem;
	color: var(--text-light);
	line-height: 1.8;
}

.accordion-content ul {
	list-style: none;
	padding-left: 0;
}

.accordion-content li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--text-light);
}

.accordion-content li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
	background: var(--bg-light);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid transparent;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 120px;
	color: rgba(37, 99, 235, 0.1);
	font-family: Georgia, serif;
	line-height: 1;
	z-index: 0;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
	border-color: rgba(37, 99, 235, 0.2);
}

.testimonial-content {
	position: relative;
	z-index: 1;
}

.testimonial-content {
	margin-bottom: 1.5rem;
}

.testimonial-content p {
	color: var(--text-light);
	font-style: italic;
	line-height: 1.8;
	font-size: 1.125rem;
}

.testimonial-author strong {
	display: block;
	color: var(--text-dark);
	margin-bottom: 0.25rem;
}

.testimonial-author span {
	color: var(--text-light);
	font-size: 0.875rem;
}

/* Insights Section */
.insights-section {
	background: white;
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.insight-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid transparent;
	position: relative;
}

.insight-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.insight-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
	border-color: rgba(37, 99, 235, 0.3);
}

.insight-card:hover::after {
	opacity: 1;
}

.insight-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.insight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.insight-card:hover .insight-image img {
	transform: scale(1.1);
}

.insight-content {
	padding: 1.5rem;
}

.insight-content h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	position: relative;
	transition: color 0.3s ease;
}

.insight-card:hover .insight-content h3 {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.insight-content p {
	color: var(--text-light);
	margin-bottom: 1rem;
	line-height: 1.8;
}

.insight-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.insight-link:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

/* Contact Section */
.contact-section {
	background: var(--bg-light);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.contact-item p {
	color: var(--text-light);
	line-height: 1.8;
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
	animation: rotateFormBg 20s infinite linear;
}

@keyframes rotateFormBg {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
.footer {
	background: var(--text-dark);
	color: white;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: white;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

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

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

/* Thanks Page */
.thanks-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 0;
}

.thanks-content {
	text-align: center;
	max-width: 600px;
}

.thanks-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	margin: 0 auto 2rem;
}

.thanks-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.thanks-content p {
	font-size: 1.125rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

/* Policy Pages */
.policy-section {
	padding: 8rem 2rem 4rem;
	max-width: 900px;
	margin: 0 auto;
}

.policy-section h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.policy-section h2 {
	font-size: 1.75rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.policy-section p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	line-height: 1.8;
}

.policy-section ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.policy-section li {
	margin-bottom: 0.75rem;
	color: var(--text-light);
	line-height: 1.8;
}

.policy-section a {
	color: var(--primary-color);
	text-decoration: none;
}

.policy-section a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
	.nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 2rem;
		box-shadow: var(--shadow-lg);
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 999;
	}

	.nav.active {
		transform: translateX(0);
	}

	.burger-menu {
		display: flex;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.title-line-1 {
		font-size: 2rem;
	}

	.title-line-2 {
		font-size: 3rem;
	}

	.letter-special {
		font-size: 3.5rem;
	}

	.letter-special::after {
		width: 40px;
		height: 40px;
	}

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

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.glass-card {
		padding: 2rem 1.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.hero-stat-divider {
		width: 40px;
		height: 1px;
	}

	.decoration-circle.decoration-1 {
		width: 200px;
		height: 200px;
	}

	.decoration-circle.decoration-2 {
		width: 150px;
		height: 150px;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

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

	.services-grid,
	.testimonials-grid,
	.insights-grid {
		grid-template-columns: 1fr;
	}
}

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

	.title-line-1 {
		font-size: 1.5rem;
	}

	.title-line-2 {
		font-size: 2.5rem;
	}

	.letter-special {
		font-size: 3rem;
	}

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

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

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

	.cookie-btn {
		width: 100%;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.policy-section {
		padding: 6rem 1rem 2rem;
	}

	.glass-card {
		padding: 1.5rem 1rem;
		border-radius: 15px;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.4rem 1rem;
	}

	.stat-number-large {
		font-size: 2rem;
	}

	.decoration-shape-1,
	.decoration-shape-2 {
		display: none;
	}

	.decoration-line {
		opacity: 0.1;
	}
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.service-card,
.testimonial-card,
.insight-card {
	animation: fadeIn 0.6s ease;
}


