@media (max-width: 1024px) {
	.pricing-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: var(--spacing-md) !important;
	}
}
@media (max-width: 768px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
	.pricing-card {
		padding: var(--spacing-lg);
		margin: 0 var(--spacing-xs);
	}
	.pricing-list li {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-xs);
		padding: var(--spacing-md);
		text-align: left;
	}
	.pricing-list li .service-name {
		margin-right: 0;
		margin-bottom: var(--spacing-xs);
		font-size: 1rem;
		line-height: 1.4;
	}
	.pricing-list li .price {
		align-self: stretch;
		width: 100%;
		max-width: none;
		min-width: auto;
		justify-content: center;
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 1rem;
		margin-top: var(--spacing-xs);
	}
}
@media (max-width: 480px) {
	.pricing {
		padding: var(--spacing-xl) 0;
	}
	.pricing-grid {
		gap: var(--spacing-sm);
		margin-top: var(--spacing-md);
	}
	.pricing-card {
		padding: var(--spacing-md);
		margin: 0;
		border-radius: 16px;
	}
	.pricing-card h3 {
		font-size: 1.25rem;
		margin-bottom: var(--spacing-md);
		padding: var(--spacing-sm) 0;
	}
	.pricing-list {
		gap: var(--spacing-xs);
	}
	.pricing-list li {
		padding: var(--spacing-sm);
		border-radius: var(--radius-md);
		flex-direction: column;
		align-items: stretch;
		gap: var(--spacing-xs);
		text-align: left;
	}
	.pricing-list li .service-name {
		margin: 0;
		font-size: 0.95rem;
		font-weight: 600;
		color: var(--text-dark);
		line-height: 1.3;
	}
	.pricing-list li .price {
		width: 100%;
		max-width: none;
		min-width: auto;
		align-self: stretch;
		margin: 0;
		margin-top: var(--spacing-xs);
		padding: var(--spacing-sm);
		font-size: 0.9rem;
		font-weight: 700;
		text-align: center;
		border-radius: var(--radius-md);
		justify-content: center;
	}
	.pricing-list li:hover {
		transform: translateX(0);
	}
	.pricing-list li:hover .price {
		transform: scale(1.02);
	}
}
@media (max-width: 360px) {
	.container {
		padding: 0 var(--spacing-xs);
	}
	.pricing-card {
		padding: var(--spacing-sm);
	}
	.pricing-card h3 {
		font-size: 1.125rem;
	}
	.pricing-list li {
		padding: var(--spacing-xs);
	}
	.pricing-list li .service-name {
		font-size: 0.9rem;
	}
	.pricing-list li .price {
		font-size: 0.85rem;
		padding: var(--spacing-xs) var(--spacing-sm);
	}
	.nav-menu {
		padding: 60px 0 var(--spacing-sm) 0;
		overflow-y: auto;
	}
	.nav-menu .nav-link {
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 1rem;
	}
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--primary-blue: #2563eb;
	--primary-blue-dark: #1d4ed8;
	--primary-blue-light: #3b82f6;
	--secondary-gray: #64748b;
	--secondary-gray-dark: #475569;
	--secondary-gray-light: #94a3b8;
	--silver: #e2e8f0;
	--silver-light: #f1f5f9;
	--silver-dark: #cbd5e1;
	--white: #ffffff;
	--black: #0f172a;
	--text-dark: #1e293b;
	--text-light: #64748b;
	--font-primary: 'Roboto', sans-serif;
	--font-secondary: 'Playfair Display', serif;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-xxl: 4rem;
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--transition-fast: 0.15s ease-in-out;
	--transition-normal: 0.3s ease-in-out;
	--transition-slow: 0.5s ease-in-out;
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--white);
	overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-sm);
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
h5 {
	font-size: 1.125rem;
}
h6 {
	font-size: 1rem;
}
section h1,
article h1,
aside h1,
nav h1 {
	font-size: 2.5rem;
}
p {
	margin-bottom: var(--spacing-sm);
}
.lead {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--text-light);
}
a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: var(--transition-fast);
}
a:hover {
	color: var(--primary-blue-dark);
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgb(255 255 255 / 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-sm);
	z-index: 1700;
	transition: var(--transition-normal);
}
.navbar.scrolled {
	background-color: rgb(255 255 255 / 0.98);
	box-shadow: var(--shadow-md);
}
.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}
.nav-logo picture {
	display: flex !important;
	align-items: center !important;
	width: auto !important;
}
.nav-logo picture img,
.nav-logo img {
	width: 40px !important;
	height: 40px !important;
	object-fit: contain !important;
}
.logo-circle {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
}
.logo-v {
	color: var(--white);
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 1.25rem;
}
.logo-text {
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--text-dark);
	letter-spacing: 0.5px;
}
.nav-menu {
	display: flex;
	list-style: none;
	gap: var(--spacing-lg);
}
.nav-link {
	color: var(--text-dark);
	font-weight: 500;
	padding: var(--spacing-xs) var(--spacing-sm);
	border-radius: var(--radius-md);
	transition: all var(--transition-normal);
	position: relative;
	text-decoration: none;
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
	transition: all var(--transition-normal);
	transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}
.nav-link:hover,
.nav-link.active {
	color: var(--primary-blue);
	background-color: var(--silver-light);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgb(37 99 235 / 0.1);
}
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	padding: var(--spacing-xs);
	border-radius: var(--radius-sm);
	transition: var(--transition-fast);
}
.hamburger:hover {
	background-color: var(--silver-light);
}
.bar {
	width: 25px;
	height: 3px;
	background-color: var(--text-dark);
	transition: var(--transition-fast);
	border-radius: 2px;
}
.hamburger.active .bar:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
			135deg,
			rgb(37 99 235 / 0.8) 0%,
			rgb(29 78 216 / 0.8) 50%,
			rgb(71 85 105 / 0.8) 100%
		),
		url(../assets/images/hero/hero-main.webp);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 20%, rgb(255 255 255 / 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgb(255 255 255 / 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgb(255 255 255 / 0.05) 0%, transparent 50%);
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 0.3);
}
.hero-content {
	position: relative;
	text-align: center;
	color: var(--white);
	max-width: 800px;
	padding: 0 var(--spacing-sm);
	z-index: 2;
	width: 100%;
	margin: 0 auto;
}
.hero-logo {
	margin-bottom: var(--spacing-lg);
	animation: fadeInUp 1s ease-out;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-bottom: var(--spacing-lg, 2rem) !important;
}
.hero-logo picture {
	display: block !important;
	margin: 0 auto !important;
	width: auto !important;
	text-align: center !important;
}
.hero-logo picture img,
.hero-logo img {
	display: block !important;
	margin: 0 auto !important;
	width: auto !important;
	height: auto !important;
	max-width: 280px !important;
	max-height: 280px !important;
	object-fit: contain !important;
}
.main-logo-circle {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--white), var(--silver));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: var(--shadow-xl);
	border: 4px solid rgb(255 255 255 / 0.2);
}
.main-logo-v {
	color: var(--primary-blue);
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 3rem;
}
.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	letter-spacing: 2px;
	animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-subtitle {
	font-size: clamp(1.125rem, 3vw, 1.5rem);
	font-weight: 300;
	margin-bottom: var(--spacing-md);
	color: var(--silver);
	animation: fadeInUp 1s ease-out 0.4s both;
}
.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: var(--primary-blue);
	color: var(--white);
	padding: 8px;
	text-decoration: none;
	border-radius: var(--radius-sm);
	z-index: 100;
	font-weight: 600;
	transition: top 0.3s ease;
}
.skip-link:focus {
	top: 6px;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
	outline: 2px solid var(--primary-blue);
	outline-offset: 2px;
}
.main-logo-v {
	color: var(--primary-blue);
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 3rem;
}
.hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	margin-bottom: var(--spacing-xl);
	color: var(--silver-light);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease-out 0.6s both;
}
.hero-buttons {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease-out 0.8s both;
}
.scroll-indicator {
	position: absolute;
	bottom: var(--spacing-xl);
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: var(--white);
	animation: bounce 2s infinite;
}
.scroll-indicator span {
	display: block;
	font-size: 0.875rem;
	margin-bottom: var(--spacing-xs);
}
.btn {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-lg);
	border-radius: var(--radius-lg);
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: var(--transition-normal);
	border: 2px solid #fff0;
	font-size: 1rem;
	text-decoration: none;
	min-width: 160px;
}
.btn-primary {
	background-color: var(--primary-blue);
	color: var(--white);
	border-color: var(--primary-blue);
}
.btn-primary:hover {
	background-color: var(--primary-blue-dark);
	border-color: var(--primary-blue-dark);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}
.btn-secondary {
	background-color: #fff0;
	color: var(--white);
	border-color: var(--white);
}
.btn-secondary:hover {
	background-color: var(--white);
	color: var(--primary-blue);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}
section {
	padding: var(--spacing-xxl) 0;
}
.section-header {
	text-align: center;
	margin-bottom: var(--spacing-xxl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.section-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: var(--text-dark);
	margin-bottom: var(--spacing-sm);
}
.section-divider {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
	margin: 0 auto var(--spacing-md);
	border-radius: var(--radius-sm);
}
.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-light);
	line-height: 1.8;
}
.about {
	background-color: var(--silver-light);
}
.about-content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xxl);
}
.about-sections-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xxl);
	align-items: start;
}
.about-owner-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xxl);
	align-items: start;
}
.about-owner-section.centered {
	grid-template-columns: 1fr;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.about-intro {
	margin-bottom: var(--spacing-xl);
}
.about-intro.centered {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--spacing-xl) auto;
}
.about-intro h3 {
	color: var(--primary-blue);
	font-size: 1.75rem;
	margin-bottom: var(--spacing-md);
}
.about-intro p {
	color: var(--text-dark);
	font-size: 1.1rem;
	line-height: 1.7;
}
.about-person {
	margin-top: 0;
	padding: 0;
	background: none;
	border-radius: 0;
	border: none;
}
.about-person h3 {
	color: var(--primary-blue);
	font-size: 1.5rem;
	margin-bottom: var(--spacing-md);
	font-weight: 600;
}
.about-person h4 {
	color: var(--primary-blue);
	font-size: 1.75rem;
	margin-bottom: var(--spacing-md);
	font-weight: 600;
}
.about-person p {
	color: var(--text-dark);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: var(--spacing-md);
}
.about-person p:last-child {
	margin-bottom: 0;
	font-weight: 500;
}
.about-image {
	display: flex;
	justify-content: center;
	align-items: center;
}
.image-placeholder {
	width: 100%;
	max-width: 400px;
	height: 300px;
	background-color: var(--silver);
	border-radius: var(--radius-xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--secondary-gray);
	text-align: center;
	border: 2px dashed var(--secondary-gray-light);
}
.image-placeholder i {
	font-size: 3rem;
	margin-bottom: var(--spacing-md);
}
.image-placeholder p {
	font-size: 0.875rem;
	margin: 0;
}
.services {
	background: linear-gradient(
			135deg,
			rgb(0 0 0 / 0.7) 0%,
			rgb(37 99 235 / 0.8) 25%,
			rgb(0 0 0 / 0.7) 75%,
			rgb(0 0 0 / 0.9) 100%
		),
		url(../assets/images/hero/hero-services.webp) center/cover;
	position: relative;
	overflow: hidden;
}
.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgb(0 0 0 / 0.3) 0%,
		rgb(37 99 235 / 0.2) 25%,
		rgb(0 0 0 / 0.4) 75%,
		rgb(0 0 0 / 0.6) 100%
	);
	pointer-events: none;
	z-index: 1;
}
.services .section-header {
	color: var(--white);
	margin-bottom: var(--spacing-xxl);
	position: relative;
	z-index: 2;
}
.services .section-title {
	color: var(--white);
	text-shadow: 0 4px 20px rgb(0 0 0 / 0.5);
}
.services .section-subtitle {
	color: #ffffff !important;
	font-weight: 600;
	text-shadow: 0 2px 8px rgb(0 0 0 / 0.9);
}
.services-grid {
	display: flex;
	flex-direction: row;
	gap: var(--spacing-xxl);
	position: relative;
	z-index: 2;
	justify-content: center;
	max-width: 1600px;
	margin: 0 auto;
}
.services-row {
	display: flex;
	gap: var(--spacing-xxl);
	justify-content: center;
	flex-direction: row;
	align-items: stretch;
	flex: 1;
	min-width: 0;
	min-height: 600px;
}
.service-card {
	background: linear-gradient(145deg, rgb(255 255 255 / 0.1) 0%, rgb(255 255 255 / 0.05) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgb(255 255 255 / 0.2);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	width: 100%;
	max-width: none;
	min-width: 380px;
	padding: var(--spacing-xl);
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	min-height: auto;
	flex-direction: column;
	text-align: center;
	flex: 1;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgb(37 99 235 / 0.05) 0%, transparent 50%, rgb(59 130 246 / 0.05) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.service-card:hover::before {
	opacity: 1;
}
.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgb(0 0 0 / 0.2);
	border-color: rgb(37 99 235 / 0.3);
}
.service-icon-header {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgb(37 99 235 / 0.2) 0%, rgb(59 130 246 / 0.2) 100%);
	border: 2px solid rgb(37 99 235 / 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 2rem;
	transition: all 0.3s ease;
	margin-bottom: var(--spacing-md);
	align-self: center;
}
.service-card:hover .service-icon-header {
	background: linear-gradient(135deg, rgb(37 99 235 / 0.3) 0%, rgb(59 130 246 / 0.3) 100%);
	border-color: rgb(37 99 235 / 0.5);
	transform: scale(1.1);
}
.service-content {
	flex: 1;
	padding: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	height: 100%;
	min-height: 600px;
}
.service-main-content {
	display: grid;
	grid-template-rows: 120px 1fr;
	gap: var(--spacing-md);
}
.service-content h3 {
	color: var(--white);
	margin-bottom: var(--spacing-md);
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 0 2px 10px rgb(0 0 0 / 0.3);
	position: relative;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-content h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-blue-light), var(--silver));
	transition: width 0.4s ease;
}
.service-card:hover .service-content h3::after {
	width: 60px;
}
.service-content p {
	color: rgb(255 255 255 / 0.9);
	margin-bottom: var(--spacing-lg);
	line-height: 1.7;
	font-size: 0.95rem;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
	min-height: 120px;
	display: flex;
	align-items: flex-start;
}
.service-description {
	grid-row: 1;
	margin-bottom: 0;
	align-self: start;
	height: 120px;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
}
.service-card .service-content .service-btn {
	grid-row: 3;
	justify-self: center;
	margin-top: var(--spacing-md);
}
.service-features {
	list-style: none;
	margin-bottom: var(--spacing-lg);
}
.service-features li {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	color: rgb(255 255 255 / 0.95);
	font-size: 0.95rem;
	position: relative;
	padding-left: var(--spacing-lg);
}
.service-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: linear-gradient(45deg, var(--primary-blue-light), var(--silver));
	border-radius: 50%;
	box-shadow: 0 0 10px rgb(59 130 246 / 0.5);
}
.service-features i {
	margin-right: var(--spacing-sm);
	color: var(--primary-blue-light);
	font-size: 0.875rem;
	text-shadow: 0 0 5px rgb(59 130 246 / 0.3);
}
.service-btn {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-xl);
	background: linear-gradient(135deg, var(--255, 255, 255, 0.1) 0%, rgb(255 255 255 / 0.05) 100%);
	border: 2px solid rgb(255 255 255 / 0.2);
	border-radius: 50px;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
	text-align: center;
	margin-top: auto;
	align-self: center;
}
.service-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.2), transparent);
	transition: left 0.6s ease;
}
.service-btn:hover::before {
	left: 100%;
}
.service-btn:hover {
	background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
	border-color: var(--primary-blue-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgb(37 99 235 / 0.3);
}
.service-benefit {
	background: none;
	padding: 0;
	border-radius: 0;
	margin: var(--spacing-lg) 0 var(--spacing-md) 0;
	backdrop-filter: none;
	border: none;
	border-left: 4px solid var(--primary-blue);
	padding-left: var(--spacing-md);
	position: relative;
	flex-grow: 1;
}
.service-benefit::before {
	content: '';
	position: absolute;
	left: -4px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 0 2px 2px 0;
}
.service-benefit h4 {
	color: var(--silver-light);
	font-size: 1rem;
	margin-bottom: var(--spacing-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.3);
}
.service-benefit p {
	color: var(--white);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 400;
}
.service-benefits {
	background: #fff0;
	border: none;
	border-left: 4px solid var(--primary-blue-light);
	padding: var(--spacing-md);
	padding-left: var(--spacing-lg);
	margin: 0;
	position: relative;
	grid-row: 2;
	align-self: start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.service-benefits::before {
	content: '';
	position: absolute;
	top: 0;
	left: -4px;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-blue-light), var(--primary-blue));
	border-radius: 0 2px 2px 0;
}
.service-benefits:hover {
	transform: none;
	box-shadow: none;
	border-left-color: var(--primary-blue);
}
.service-benefits h4 {
	color: var(--white);
	font-size: 0.95rem;
	margin-bottom: var(--spacing-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: left;
	padding-bottom: 0;
}
.service-benefits h4::after {
	display: none;
}
.service-benefits p {
	color: rgb(255 255 255 / 0.9);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0;
	text-align: left;
	font-style: italic;
}
.service-benefit-trigger {
	background: none;
	padding: 0;
	border-radius: 0;
	margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
	backdrop-filter: none;
	border: none;
	border-left: 4px solid var(--primary-blue);
	padding-left: var(--spacing-md);
	position: relative;
	cursor: pointer;
	transition: all var(--transition-normal);
}
.service-benefit-trigger::before {
	content: '';
	position: absolute;
	left: -4px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 0 2px 2px 0;
}
.service-benefit-trigger:hover {
	background: rgb(255 255 255 / 0.05);
	border-radius: var(--radius-sm);
	transform: translateX(2px);
}
.service-benefit-trigger h4 {
	color: var(--silver-light);
	font-size: 1rem;
	margin-bottom: 0;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all var(--transition-fast);
}
.service-benefit-trigger h4 i {
	font-size: 0.8rem;
	transition: transform var(--transition-normal);
	color: var(--primary-blue-light);
}
.service-card[data-expandable].expanded .service-benefit-trigger h4 i {
	transform: rotate(180deg);
}
.service-benefit-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
	opacity: 0;
	padding: 0 var(--spacing-md);
	margin-left: 0;
}
.service-card[data-expandable].expanded .service-benefit-details {
	max-height: 200px;
	opacity: 1;
	padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md) var(--spacing-md);
}
.service-benefit-details p {
	color: var(--white);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 400;
	border-left: 2px solid rgb(37 99 235 / 0.3);
	padding-left: var(--spacing-sm);
	background: rgb(255 255 255 / 0.03);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: var(--spacing-sm);
}
.contact {
	font-size: 1rem;
	transition: var(--transition-normal);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.service-btn:hover {
	background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}
.contact {
	background-color: var(--silver-light);
}
.contact .container {
	max-width: 1400px;
}
.contact-content {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--spacing-xxl);
	margin-bottom: var(--spacing-xxl);
}
.contact-info {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}
.contact-item {
	display: flex;
	gap: var(--spacing-md);
	padding: var(--spacing-lg);
	background-color: var(--white);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
	align-items: center;
}
.contact-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.contact-icon {
	flex-shrink: 0;
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.1rem;
}
.contact-details {
	flex: 1;
	min-width: 0;
}
.contact-details h4 {
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
}
.contact-details p {
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
	font-weight: 500;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.contact-details small {
	color: var(--text-light);
	font-size: 0.875rem;
}
.contact-details a {
	color: var(--primary-blue);
	font-weight: 500;
	white-space: nowrap;
	word-break: keep-all;
}
.contact-details a:hover {
	color: var(--primary-blue-dark);
}
.contact-form-container {
	background-color: var(--white);
	border-radius: var(--radius-xl);
	padding: var(--spacing-xxl);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--silver-dark);
}
.form-header {
	text-align: center;
	margin-bottom: var(--spacing-xl);
}
.form-header h3 {
	color: var(--text-dark);
	margin-bottom: var(--spacing-sm);
	font-size: 1.5rem;
}
.form-header p {
	color: var(--text-light);
	font-size: 1rem;
}
.contact-form {
	max-width: 600px;
	margin: 0 auto;
}
.form-group {
	margin-bottom: var(--spacing-lg);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-md);
}
.form-group label {
	display: block;
	margin-bottom: var(--spacing-sm);
	color: var(--text-dark);
	font-weight: 500;
	font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: var(--spacing-sm) var(--spacing-md);
	border: 2px solid var(--silver-dark);
	border-radius: var(--radius-md);
	font-size: 1rem;
	color: var(--text-dark);
	background-color: var(--white);
	transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}
.form-group select {
	cursor: pointer;
}
.form-group textarea {
	resize: vertical;
	min-height: 120px;
}
.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-sm);
}
.checkbox-group input[type='checkbox'] {
	width: auto;
	margin-top: 2px;
	flex-shrink: 0;
}
.checkbox-group label {
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}
.checkbox-group a {
	color: var(--primary-blue);
	text-decoration: underline;
}
.checkbox-group a:hover {
	color: var(--primary-blue-dark);
}
.form-submit-btn {
	width: 100%;
	padding: var(--spacing-md) var(--spacing-lg);
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	color: var(--white);
	border: none;
	border-radius: var(--radius-md);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
}
.form-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgb(37 99 235 / 0.3);
}
.form-submit-btn:active {
	transform: translateY(0);
}
.form-message {
	margin-top: var(--spacing-lg);
	padding: var(--spacing-md);
	border-radius: var(--radius-md);
	text-align: center;
	font-weight: 500;
}
.form-message.success {
	background-color: rgb(34 197 94 / 0.1);
	color: #16a34a;
	border: 1px solid rgb(34 197 94 / 0.3);
}
.form-message.error {
	background-color: rgb(239 68 68 / 0.1);
	color: #dc2626;
	border: 1px solid rgb(239 68 68 / 0.3);
}
.map-container {
	margin-top: var(--spacing-xxl);
}
.map-header {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}
.map-header h3 {
	color: var(--text-dark);
	font-size: 1.5rem;
	margin-bottom: var(--spacing-sm);
}
.map-header p {
	color: var(--text-light);
	font-size: 1rem;
}
.map-wrapper {
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--silver-dark);
	margin-bottom: var(--spacing-lg);
}
.map-wrapper iframe {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}
.map-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-md);
	margin-top: var(--spacing-lg);
}
.map-info-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-md);
	background-color: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--silver-dark);
	transition: all var(--transition-fast);
}
.map-info-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.map-info-item i {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.1rem;
	flex-shrink: 0;
}
.map-info-item h4 {
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
	font-size: 1rem;
	font-weight: 600;
}
.map-info-item p {
	color: var(--text-light);
	margin-bottom: 0;
	font-size: 0.9rem;
}
.map-placeholder i {
	font-size: 4rem;
	margin-bottom: var(--spacing-md);
}
.map-placeholder h4 {
	margin-bottom: var(--spacing-sm);
}
.map-placeholder p {
	color: var(--text-light);
	max-width: 300px;
}
.footer {
	background: linear-gradient(135deg, var(--text-dark), var(--black));
	color: var(--white);
	padding: var(--spacing-xxl) 0 var(--spacing-lg);
}
.footer .container {
	max-width: 1400px;
}
.footer-content {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: var(--spacing-xxl);
	margin-bottom: var(--spacing-xl);
}
.footer-brand .footer-logo {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-md);
}
.footer-brand .logo-circle {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}
.footer-brand .logo-text {
	color: var(--white);
}
.footer-brand p {
	color: var(--silver);
	margin: 0;
}
.footer-links {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: var(--spacing-xl);
}
.footer-column h4 {
	color: var(--white);
	margin-bottom: var(--spacing-md);
	font-size: 1.125rem;
}
.footer-column ul {
	list-style: none;
}
.footer-column li {
	margin-bottom: var(--spacing-xs);
}
.footer-column a {
	color: var(--silver);
	transition: var(--transition-fast);
}
.footer-column a:hover {
	color: var(--primary-blue-light);
}
.footer-column i {
	margin-right: var(--spacing-xs);
	color: var(--primary-blue-light);
}
.footer-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--secondary-gray), transparent);
	margin-bottom: var(--spacing-lg);
}
.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-md);
}
.footer-bottom-content p {
	color: var(--silver);
	margin: 0;
}
.footer-legal {
	display: flex;
	gap: var(--spacing-md);
}
.footer-legal a {
	color: var(--silver);
	font-size: 0.875rem;
}
.footer-legal a:hover {
	color: var(--primary-blue-light);
}
.back-to-top {
	position: fixed;
	bottom: var(--spacing-lg);
	right: var(--spacing-lg);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: var(--shadow-lg);
	transition: var(--transition-normal);
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}
.back-to-top:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}
@media (min-width: 769px) and (max-width: 1023px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-lg);
	}
	.services-row {
		grid-template-columns: repeat(2, 1fr);
	}
	.collaboration-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-content {
		grid-template-columns: 1fr 3fr;
	}
	.footer-links {
		grid-template-columns: 1.8fr 1fr 1fr;
	}
}
@media (min-width: 1024px) and (max-width: 1140px) {
	.services-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: repeat(2, 1fr) !important;
		gap: var(--spacing-xl) !important;
		max-width: 100vw !important;
		overflow-x: hidden !important;
		justify-items: center;
		align-items: stretch;
	}
	.services-row {
		display: contents !important;
	}
	.service-card {
		min-width: 320px !important;
		max-width: 95vw !important;
		box-sizing: border-box;
		height: 100%;
	}
	.contact-content {
		grid-template-columns: 1.5fr 1fr;
	}
	.footer-content {
		grid-template-columns: 1fr 5fr;
		gap: var(--spacing-lg);
	}
	.footer-links {
		grid-template-columns: 2fr 1fr 1fr;
		gap: var(--spacing-md);
	}
	.contact-item {
		flex-wrap: nowrap !important;
		align-items: center !important;
	}
	.contact-details {
		min-width: 0;
		flex: 1;
	}
	.nav-container {
		max-width: 1200px;
	}
	.container {
		max-width: 1000px;
	}
	.pricing .container {
		max-width: 1300px;
	}
	.container {
		padding: 0 var(--spacing-lg);
	}
}
@media (min-width: 1141px) and (max-width: 1440px) {
	.services-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: repeat(2, 1fr) !important;
		gap: var(--spacing-xl) !important;
		max-width: 100vw !important;
		overflow-x: hidden !important;
		justify-items: center;
		align-items: stretch;
	}
	.services-row {
		display: contents !important;
	}
	.service-card {
		min-width: 320px !important;
		max-width: 95vw !important;
		box-sizing: border-box;
		height: 100%;
	}
	.contact-content {
		grid-template-columns: 1.5fr 1fr;
	}
	.footer-content {
		grid-template-columns: 1fr 4fr;
		gap: var(--spacing-lg);
	}
	.footer-links {
		grid-template-columns: 1fr 1fr 1fr;
		gap: var(--spacing-md);
	}
	.footer-column:first-child {
		min-width: 300px;
	}
	.nav-container {
		max-width: 1200px;
	}
	.container {
		max-width: 1000px;
	}
	.pricing .container {
		max-width: 1350px;
	}
	.container {
		padding: 0 var(--spacing-lg);
	}
}
@media (max-width: 768px) and (orientation: landscape) {
	.hero {
		min-height: 70vh;
		padding: var(--spacing-lg) 0;
	}
	.nav-menu.active {
		height: 100vh;
		overflow-y: auto;
		padding-top: 80px;
	}
	.hero-title {
		font-size: 2rem;
		margin-bottom: var(--spacing-sm);
	}
	.hero-subtitle {
		font-size: 1.125rem;
		margin-bottom: var(--spacing-md);
	}
	.main-logo-circle {
		width: 60px;
		height: 60px;
		margin-bottom: var(--spacing-sm);
	}
}
@media (min-width: 1400px) {
	.contact-item {
		align-items: center;
		padding: var(--spacing-xl);
	}
	.contact-icon {
		width: 48px;
		height: 48px;
	}
	.contact-details h4 {
		font-size: 1.125rem;
		line-height: 1.4;
	}
	.contact-details p {
		font-size: 1rem;
		line-height: 1.5;
	}
}
@media (min-width: 1200px) and (max-width: 1299px) {
	.contact-item {
		align-items: center;
		flex-wrap: nowrap !important;
	}
	.contact-details {
		min-width: 0;
		flex: 1;
	}
	.footer-content {
		grid-template-columns: 1fr 5fr;
	}
	.footer-links {
		grid-template-columns: 2fr 1fr 1fr;
	}
}
@media (min-width: 1300px) and (max-width: 1399px) {
	.contact-item {
		align-items: center;
	}
	.footer-content {
		grid-template-columns: 1fr 3.5fr;
	}
	.footer-links {
		grid-template-columns: 1.7fr 1fr 1fr;
	}
}
@media (min-width: 1400px) {
	.services-grid {
		max-width: 1800px;
		gap: 3rem;
	}
	.services-row {
		gap: 3rem;
	}
	.service-card {
		min-width: 450px;
		padding: 2.5rem;
	}
}
@media (max-width: 1024px) {
	.container {
		padding: 0 var(--spacing-md);
	}
	.hero-title {
		font-size: 3rem;
	}
	.section-title {
		font-size: 2.25rem;
	}
	.about-content {
		gap: var(--spacing-xl);
	}
	.about-owner-section {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}
	.about-image {
		order: -1;
	}
	.image-placeholder {
		height: 250px;
	}
	.services-grid {
		flex-direction: column;
		gap: var(--spacing-lg);
	}
	.services-row {
		flex-direction: column;
		gap: var(--spacing-lg);
	}
	.service-card {
		max-width: 100%;
		min-width: 350px;
	}
	.contact-content {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}
	.contact-form-container {
		padding: var(--spacing-xl);
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
	.map-wrapper iframe {
		height: 350px;
	}
	.map-info {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
	}
	.footer-content {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	:root {
		--spacing-xxl: 3rem;
	}
	.nav-link {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.btn {
		min-height: 44px;
		padding: 12px 24px;
		touch-action: manipulation;
	}
	.hamburger {
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.form-group input,
	.form-group select,
	.form-group textarea {
		min-height: 44px;
		font-size: 16px;
	}
	.nav-menu {
		position: fixed;
		left: -110vw;
		top: 0;
		flex-direction: column;
		background-color: rgb(255 255 255 / 0.98);
		backdrop-filter: blur(10px);
		width: 100vw;
		height: 100vh;
		text-align: center;
		transition: left 0.3s ease-in-out;
		box-shadow: var(--shadow-lg);
		padding: 100px 0 var(--spacing-lg) 0;
		z-index: 1500;
		justify-content: flex-start;
		align-items: center;
		transform: translateX(0);
		margin: 0;
		border: none;
		overflow: hidden;
		visibility: hidden;
	}
	.nav-menu.active {
		left: 0;
		transform: translateX(0);
		visibility: visible;
	}
	.nav-menu .nav-item {
		margin: 0;
		width: 100%;
	}
	.nav-menu .nav-link {
		display: block;
		padding: var(--spacing-lg) var(--spacing-lg);
		font-size: 1.25rem;
		font-weight: 500;
		border-radius: 0;
		margin: 0;
		transition: all var(--transition-fast);
		width: 100%;
		text-align: center;
		border-bottom: 1px solid var(--silver);
		position: relative;
		overflow: hidden;
	}
	.nav-menu .nav-link::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgb(37 99 235 / 0.1), transparent);
		transition: left 0.4s ease-in-out;
	}
	.nav-menu .nav-link:hover::before {
		left: 100%;
	}
	.nav-menu .nav-link:hover,
	.nav-menu .nav-link.active {
		background-color: var(--primary-blue);
		color: var(--white);
		transform: scale(1.02);
		box-shadow: inset 0 0 20px rgb(255 255 255 / 0.1);
	}
	.nav-menu .nav-link:last-child {
		border-bottom: none;
	}
	html,
	body {
		overflow-x: hidden !important;
		position: relative;
	}
	* {
		max-width: 100vw;
	}
	.hamburger {
		display: flex;
		z-index: 1600;
		position: relative;
	}
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-subtitle {
		font-size: 1.25rem;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.main-logo-circle {
		width: 100px;
		height: 100px;
	}
	.main-logo-v {
		font-size: 2.5rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.service-card {
		max-width: 100%;
		min-height: auto;
	}
	.service-content {
		min-height: auto;
	}
	.service-content h3 {
		min-height: auto;
		font-size: 1.3rem;
	}
	.service-content p {
		min-height: auto;
	}
	.service-benefits {
		margin: var(--spacing-md) 0;
		padding: var(--spacing-sm);
		padding-left: var(--spacing-md);
	}
	.service-benefits h4 {
		font-size: 0.85rem;
		margin-bottom: var(--spacing-xs);
	}
	.service-benefits p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
	.detail-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: var(--spacing-sm);
	}
	.detail-icon {
		margin-top: 0;
	}
	.about-intro h3 {
		font-size: 1.5rem;
	}
	.about-person h3 {
		font-size: 1.3rem;
	}
	.service-card:hover {
		transform: translateY(-8px) scale(1.01);
	}
	.service-card {
		flex-direction: column;
		text-align: center;
		padding: var(--spacing-lg);
	}
	.service-icon-header {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: var(--spacing-md);
	}
	.service-content {
		padding: 0;
	}
	.footer-links {
		grid-template-columns: 1fr;
	}
	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.75rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	.scroll-indicator {
		display: none;
	}
}
@media (max-width: 480px) {
	.container {
		padding: 0 var(--spacing-sm);
	}
	.nav-container {
		padding: 0 var(--spacing-sm);
	}
	.nav-menu {
		padding: 70px 0 var(--spacing-md) 0;
		overflow-y: auto;
		height: 100vh;
	}
	.nav-menu .nav-link {
		padding: var(--spacing-md) var(--spacing-lg);
		font-size: 1.125rem;
	}
	.hero {
		min-height: 500px;
		padding: var(--spacing-xl) 0;
	}
	.hero-title {
		font-size: 2rem;
		line-height: 1.1;
		margin-bottom: var(--spacing-md);
	}
	.hero-subtitle {
		font-size: 1.125rem;
		margin-bottom: var(--spacing-md);
	}
	.hero-description {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: var(--spacing-lg);
	}
	.main-logo-circle {
		width: 80px;
		height: 80px;
		margin-bottom: var(--spacing-md);
	}
	.main-logo-v {
		font-size: 2rem;
	}
	.btn {
		min-width: 140px;
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 0.9rem;
	}
	.hero-buttons {
		flex-direction: column;
		gap: var(--spacing-sm);
	}
	.detail-item,
	.contact-item {
		flex-direction: row;
		text-align: left;
		align-items: center;
	}
	.detail-icon,
	.contact-icon {
		flex-shrink: 0;
		margin-bottom: 0;
		margin-top: 0;
	}
	.detail-item {
		padding: var(--spacing-md);
		gap: var(--spacing-sm);
	}
	.detail-icon {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}
	.about-intro h3 {
		font-size: 1.4rem;
	}
	.about-sections-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}
	.about-person {
		padding: 0;
	}
	.about-person h3 {
		font-size: 1.2rem;
	}
	.about-person p {
		font-size: 0.95rem;
	}
	.image-placeholder {
		height: 200px;
	}
	.service-card {
		padding: var(--spacing-md);
	}
	.contact-item {
		padding: var(--spacing-md);
		gap: var(--spacing-sm);
	}
	.contact-icon {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
		margin-top: 0;
	}
	.contact-details h4 {
		font-size: 1rem;
		margin-bottom: 4px;
	}
	.contact-details p {
		font-size: 0.9rem;
		line-height: 1.4;
		margin-bottom: 4px;
	}
	.contact-details small {
		font-size: 0.8rem;
	}
	.contact-form-container {
		padding: var(--spacing-lg);
	}
	.form-header h3 {
		font-size: 1.3rem;
	}
	.form-header p {
		font-size: 0.9rem;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: var(--spacing-sm);
		font-size: 0.95rem;
	}
	.form-submit-btn {
		padding: var(--spacing-md);
		font-size: 1rem;
	}
	.map-wrapper iframe {
		height: 300px;
	}
	.map-info {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
	}
	.map-info-item {
		padding: var(--spacing-sm);
		gap: var(--spacing-sm);
	}
	.map-info-item i {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}
	.map-info-item h4 {
		font-size: 0.9rem;
	}
	.map-info-item p {
		font-size: 0.85rem;
	}
	.contact-form-placeholder {
		padding: var(--spacing-lg);
	}
	.nav-menu {
		top: 60px;
	}
	.nav-container {
		height: 60px;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
	.pricing-card {
		padding: var(--spacing-lg);
	}
	.pricing-list li {
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 0.9rem;
	}
	.pricing-list li .price {
		font-size: 1rem;
		padding: var(--spacing-xs) var(--spacing-sm);
	}
	.slider-container {
		padding: 20px 40px;
		max-width: 100%;
	}
	.certificate-item {
		width: 250px;
	}
	.slider-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}
	.slider-navigation {
		left: -25px;
		right: -25px;
	}
	.slider-container::after {
		content: '← Przewiń palcem →';
		position: absolute;
		bottom: 15px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 13px;
		color: rgb(59 130 246 / 0.7);
		text-align: center;
		font-weight: 500;
		letter-spacing: 0.5px;
		pointer-events: none;
		background: rgb(255 255 255 / 0.8);
		padding: 3px 10px;
		border-radius: 15px;
		box-shadow: 0 2px 6px rgb(0 0 0 / 0.08);
		z-index: 10;
	}
}
@media print {
	.navbar,
	.hamburger,
	.back-to-top,
	.hero-buttons,
	.scroll-indicator {
		display: none;
	}
	body {
		font-size: 12pt;
		line-height: 1.5;
	}
	.hero {
		height: auto;
		min-height: auto;
		padding: 2rem 0;
	}
	.hero-background {
		position: static;
		background: none;
	}
	.hero-content {
		color: var(--text-dark);
	}
	section {
		page-break-inside: avoid;
		padding: 1rem 0;
	}
}
@media (prefers-contrast: high) {
	:root {
		--primary-blue: #0000ff;
		--text-dark: #000000;
		--text-light: #333333;
		--silver: #cccccc;
		--white: #ffffff;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	html {
		scroll-behavior: auto;
	}
}
*:focus {
	outline: 2px solid var(--primary-blue);
	outline-offset: 2px;
}
.btn:focus,
.nav-link:focus {
	outline: 2px solid var(--primary-blue);
	outline-offset: 2px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, var(--text-dark), var(--black));
	color: var(--white);
	padding: var(--spacing-lg);
	z-index: 10000;
	box-shadow: 0 -4px 20px rgb(0 0 0 / 0.3);
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.3s ease-out;
	display: none;
}
.cookie-banner.show {
	transform: translateY(0);
	opacity: 1;
}
.cookie-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing-lg);
	flex-wrap: wrap;
}
.cookie-banner-text h3 {
	color: var(--white);
	margin-bottom: var(--spacing-xs);
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}
.cookie-banner-text p {
	color: var(--silver);
	margin: 0;
	line-height: 1.5;
}
.cookie-banner-actions {
	display: flex;
	gap: var(--spacing-sm);
	flex-wrap: wrap;
}
.cookie-btn {
	padding: var(--spacing-sm) var(--spacing-md);
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: var(--transition-fast);
	border: 2px solid #fff0;
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	min-width: 120px;
	justify-content: center;
	text-decoration: none;
}
.cookie-btn-primary {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	color: var(--white);
	border-color: var(--primary-blue);
}
.cookie-btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgb(37 99 235 / 0.3);
}
.cookie-btn-secondary {
	background-color: var(--secondary-gray);
	color: var(--white);
	border-color: var(--secondary-gray);
}
.cookie-btn-secondary:hover {
	background-color: var(--secondary-gray-dark);
	transform: translateY(-2px);
}
.cookie-btn-outline {
	background-color: #fff0;
	color: var(--white);
	border-color: rgb(255 255 255 / 0.3);
}
.cookie-btn-outline:hover {
	background-color: rgb(255 255 255 / 0.1);
	border-color: rgb(255 255 255 / 0.5);
}
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10001;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}
.cookie-modal.show {
	opacity: 1;
}
.cookie-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 0.7);
	backdrop-filter: blur(5px);
}
.cookie-modal-content {
	position: relative;
	background: var(--white);
	border-radius: var(--radius-xl);
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-xl);
	transform: scale(0.9);
	transition: transform 0.3s ease-out;
}
.cookie-modal.show .cookie-modal-content {
	transform: scale(1);
}
.cookie-modal-header {
	padding: var(--spacing-lg);
	border-bottom: 1px solid var(--silver);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cookie-modal-header h2 {
	color: var(--text-dark);
	margin: 0;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}
.cookie-modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--secondary-gray);
	cursor: pointer;
	padding: var(--spacing-xs);
	border-radius: var(--radius-sm);
	transition: var(--transition-fast);
}
.cookie-modal-close:hover {
	background-color: var(--silver-light);
	color: var(--text-dark);
}
.cookie-modal-body {
	padding: var(--spacing-lg);
}
.cookie-category {
	margin-bottom: var(--spacing-lg);
	padding: var(--spacing-md);
	border-radius: var(--radius-lg);
	border: 1px solid var(--silver);
	transition: var(--transition-fast);
}
.cookie-category:hover {
	border-color: var(--primary-blue-light);
	box-shadow: var(--shadow-sm);
}
.cookie-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-sm);
}
.cookie-category-header h3 {
	color: var(--text-dark);
	margin: 0;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}
.cookie-category p {
	color: var(--text-light);
	margin-bottom: var(--spacing-xs);
	line-height: 1.6;
}
.cookie-category small {
	color: var(--secondary-gray);
	font-style: italic;
}
.cookie-toggle {
	position: relative;
}
.cookie-toggle input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.cookie-toggle label {
	display: block;
	width: 50px;
	height: 24px;
	background-color: var(--silver);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition-fast);
	position: relative;
}
.cookie-toggle label::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	background-color: var(--white);
	border-radius: 50%;
	transition: var(--transition-fast);
	box-shadow: var(--shadow-sm);
}
.cookie-toggle input[type='checkbox']:checked + label {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}
.cookie-toggle input[type='checkbox']:checked + label::after {
	transform: translateX(26px);
}
.cookie-toggle input[type='checkbox']:disabled + label {
	opacity: 0.6;
	cursor: not-allowed;
}
.cookie-info {
	background-color: var(--silver-light);
	padding: var(--spacing-md);
	border-radius: var(--radius-md);
	border-left: 4px solid var(--primary-blue);
	margin-top: var(--spacing-lg);
}
.cookie-info h4 {
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}
.cookie-info p {
	color: var(--text-light);
	margin: 0;
}
.cookie-link {
	color: var(--primary-blue);
	text-decoration: underline;
}
.cookie-link:hover {
	color: var(--primary-blue-dark);
}
.cookie-modal-footer {
	padding: var(--spacing-lg);
	border-top: 1px solid var(--silver);
	display: flex;
	gap: var(--spacing-sm);
	justify-content: flex-end;
	flex-wrap: wrap;
}
.cookie-message {
	position: fixed;
	top: var(--spacing-lg);
	right: var(--spacing-lg);
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	color: var(--white);
	padding: var(--spacing-md) var(--spacing-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	z-index: 10002;
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s ease-out;
	max-width: 300px;
	word-wrap: break-word;
}
.cookie-message.show {
	transform: translateX(0);
	opacity: 1;
}
.cookie-settings-btn {
	position: fixed;
	bottom: calc(var(--spacing-lg) + 60px);
	right: var(--spacing-lg);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--secondary-gray), var(--secondary-gray-dark));
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: var(--shadow-lg);
	transition: var(--transition-normal);
	z-index: 999;
}
.cookie-settings-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}
#map-consent-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(255 255 255 / 0.95);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	border-radius: 8px;
}
.map-placeholder {
	height: 450px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border: 2px dashed var(--border-light);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.map-placeholder::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}
.map-placeholder-content {
	text-align: center;
	padding: var(--spacing-xl);
	max-width: 500px;
	position: relative;
	z-index: 1;
}
.map-placeholder-icon {
	font-size: 4rem;
	color: var(--primary-blue);
	margin-bottom: var(--spacing-lg);
	opacity: 0.8;
}
.map-placeholder-content h3 {
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	font-size: 1.5rem;
	font-weight: 600;
}
.map-placeholder-content > p {
	color: var(--text-gray);
	margin-bottom: var(--spacing-lg);
	line-height: 1.6;
	font-size: 1rem;
}
.map-placeholder-info {
	background: rgb(255 255 255 / 0.9);
	border-radius: var(--radius-md);
	padding: var(--spacing-lg);
	margin-bottom: var(--spacing-xl);
	border: 1px solid var(--border-light);
}
.map-placeholder-info p {
	margin: var(--spacing-sm) 0;
	color: var(--text-dark);
	font-size: 0.9rem;
}
.map-placeholder-info strong {
	color: var(--primary-blue);
}
.map-consent-content {
	text-align: center;
	padding: var(--spacing-xl);
	max-width: 300px;
}
.map-consent-icon {
	font-size: 3rem;
	color: var(--primary-blue);
	margin-bottom: var(--spacing-md);
}
.map-consent-content h3 {
	color: var(--text-dark);
	margin-bottom: var(--spacing-sm);
	font-size: 1.25rem;
	font-weight: 600;
}
.map-consent-content p {
	color: var(--text-gray);
	margin-bottom: var(--spacing-lg);
	line-height: 1.5;
}
.map-consent-btn {
	background: var(--primary-blue);
	color: var(--white);
	border: none;
	padding: var(--spacing-sm) var(--spacing-lg);
	border-radius: var(--radius-md);
	cursor: pointer;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	transition: var(--transition-normal);
}
.map-consent-btn:hover {
	background: var(--primary-blue-dark);
	transform: translateY(-1px);
}
@media (max-width: 768px) {
	.cookie-banner-content {
		flex-direction: column;
		text-align: center;
		gap: var(--spacing-md);
	}
	.cookie-banner-actions {
		justify-content: center;
	}
	.cookie-btn {
		min-width: 100px;
		padding: var(--spacing-xs) var(--spacing-sm);
		font-size: 0.85rem;
	}
	.cookie-modal-content {
		width: 95%;
		margin: var(--spacing-sm);
	}
	.cookie-modal-header,
	.cookie-modal-body,
	.cookie-modal-footer {
		padding: var(--spacing-md);
	}
	.cookie-category-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-sm);
	}
	.cookie-modal-footer {
		flex-direction: column;
	}
	.cookie-message {
		right: var(--spacing-sm);
		top: var(--spacing-sm);
		max-width: calc(100% - 2rem);
	}
	.cookie-settings-btn {
		display: none;
	}
}
@media (max-width: 480px) {
	.cookie-banner {
		padding: var(--spacing-md);
	}
	.cookie-banner-text h3 {
		font-size: 1.1rem;
	}
	.cookie-banner-text p {
		font-size: 0.9rem;
	}
	.cookie-banner-actions {
		flex-direction: column;
		width: 100%;
	}
	.cookie-btn {
		width: 100%;
		justify-content: center;
	}
}
.collaboration {
	background: linear-gradient(
			135deg,
			rgb(15 23 42 / 0.9) 0%,
			rgb(30 41 59 / 0.85) 25%,
			rgb(51 65 85 / 0.8) 75%,
			rgb(15 23 42 / 0.9) 100%
		),
		url(../assets/images/hero/hero-services.webp) center/cover;
	position: relative;
	overflow: hidden;
}
.collaboration::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 80%, rgb(255 255 255 / 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgb(255 255 255 / 0.06) 0%, transparent 50%),
		linear-gradient(45deg, transparent 30%, rgb(255 255 255 / 0.02) 50%, transparent 70%);
	pointer-events: none;
	animation: backgroundPulse 15s ease-in-out infinite;
	z-index: 1;
}
.collaboration::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(59 130 246 / 0.08), transparent),
		linear-gradient(0deg, transparent, rgb(59 130 246 / 0.04), transparent);
	animation: neonSweep 8s ease-in-out infinite;
	pointer-events: none;
	z-index: 2;
}
@keyframes backgroundPulse {
	0%,
	100% {
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
}
@keyframes neonSweep {
	0% {
		transform: translateX(-100%) translateY(-100%);
		opacity: 0;
	}
	25% {
		transform: translateX(0%) translateY(-50%);
		opacity: 1;
	}
	50% {
		transform: translateX(100%) translateY(0%);
		opacity: 0.8;
	}
	75% {
		transform: translateX(200%) translateY(50%);
		opacity: 0.5;
	}
	100% {
		transform: translateX(300%) translateY(100%);
		opacity: 0;
	}
}
.collaboration .section-header {
	color: var(--white);
	margin-bottom: var(--spacing-xxl);
	position: relative;
	z-index: 3;
}
.collaboration .section-title {
	color: var(--white);
	text-shadow: 0 4px 20px rgb(0 0 0 / 0.7);
	font-size: 2.5rem;
	font-weight: 700;
}
.collaboration .section-subtitle {
	color: #ffffff !important;
	font-weight: 600;
	text-shadow: 0 2px 8px rgb(0 0 0 / 0.9);
}
.collaboration-content {
	position: relative;
	z-index: 3;
}
.collaboration-intro {
	text-align: center;
	margin-bottom: var(--spacing-xxl);
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.collaboration-intro .lead {
	font-size: 1.25rem;
	color: rgb(255 255 255 / 0.95);
	line-height: 1.8;
	font-weight: 400;
	text-shadow: 0 2px 10px rgb(0 0 0 / 0.7);
}
.collaboration-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-xl);
	position: relative;
	z-index: 3;
	align-items: start;
}
.collaboration-card {
	background: linear-gradient(145deg, rgb(255 255 255 / 0.15) 0%, rgb(255 255 255 / 0.08) 100%);
	backdrop-filter: blur(25px);
	border: 1px solid rgb(255 255 255 / 0.25);
	border-radius: 24px;
	padding: var(--spacing-xl);
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	outline: none;
}
.collaboration-card:focus,
.collaboration-card:active {
	outline: none;
	box-shadow: none;
}
.collaboration-card:focus-visible {
	outline: 2px solid var(--primary-blue);
	outline-offset: 2px;
}
.collaboration-card[data-expandable] {
	cursor: pointer !important;
	transition: all 0.3s ease;
	outline: none;
}
.collaboration-card[data-expandable]:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgb(0 0 0 / 0.2), 0 0 0 2px rgb(37 99 235 / 0.3);
	border: 1px solid rgb(37 99 235 / 0.5);
}
.collaboration-card[data-expandable]:focus,
.collaboration-card[data-expandable]:active {
	outline: none;
	box-shadow: 0 25px 50px rgb(0 0 0 / 0.15);
}
.collaboration-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 3;
	min-height: 100px;
	padding: 0 var(--spacing-sm);
}
.expand-indicator {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(255 255 255 / 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
	color: var(--white);
	font-size: 1.2rem;
	border: 1px solid rgb(255 255 255 / 0.2);
}
.collaboration-card[data-expandable]:hover .expand-indicator {
	background: var(--primary-blue-light);
	transform: scale(1.1);
	box-shadow: 0 5px 15px rgb(37 99 235 / 0.3);
}
.collaboration-card.expanded .expand-indicator i {
	transform: rotate(180deg);
}
.collaboration-card[data-expandable] .collaboration-details {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
}
.collaboration-card[data-expandable].expanded .collaboration-details {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	max-height: none !important;
	overflow: visible !important;
	margin-top: var(--spacing-lg);
}
.collaboration-details {
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
	margin-top: 0;
}
.collaboration-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgb(37 99 235 / 0.1) 0%, transparent 50%, rgb(59 130 246 / 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}
.collaboration-card:hover::before {
	opacity: 1;
}
.collaboration-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgb(0 0 0 / 0.2), 0 0 0 2px rgb(37 99 235 / 0.3);
	border: 1px solid rgb(37 99 235 / 0.5);
}
.collaboration-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--spacing-lg);
	margin-right: var(--spacing-md);
	color: var(--white);
	font-size: 2rem;
	box-shadow: 0 10px 30px rgb(37 99 235 / 0.3);
	position: relative;
	transition: all 0.3s ease;
	animation: iconPulse 2s ease-in-out infinite;
	flex-shrink: 0;
}
.collaboration-icon::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue), var(--primary-blue-dark));
	border-radius: 23px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.collaboration-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgb(59 130 246 / 0.2) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.3s ease;
	animation: magneticPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
	0%,
	100% {
		box-shadow: 0 10px 30px rgb(37 99 235 / 0.3);
	}
	50% {
		box-shadow: 0 10px 30px rgb(37 99 235 / 0.5), 0 0 20px rgb(37 99 235 / 0.3);
	}
}
@keyframes magneticPulse {
	0%,
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.8);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.1);
	}
}
.collaboration-card:hover .collaboration-icon {
	animation: none;
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 15px 40px rgb(37 99 235 / 0.4);
}
.collaboration-card:hover .collaboration-icon::before {
	opacity: 1;
}
.collaboration-card:hover .collaboration-icon::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.3);
}
.collaboration-icon i {
	filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.2));
	transition: transform 0.3s ease;
}
.collaboration-card:hover .collaboration-icon i {
	transform: scale(1.1);
}
.collaboration-card h3 {
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: var(--spacing-md);
	font-weight: 700;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 10px rgb(0 0 0 / 0.8);
	transition: all 0.3s ease;
	flex: 1;
	margin-right: var(--spacing-md);
	line-height: 1.3;
}
.collaboration-card:hover h3 {
	color: var(--primary-blue-light);
	text-shadow: 0 2px 15px rgb(0 0 0 / 0.8);
	transform: translateY(-2px);
}
.collaboration-card h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-blue-light), var(--silver));
	transition: width 0.4s ease;
	border-radius: 2px;
	box-shadow: 0 0 10px rgb(59 130 246 / 0.5);
}
.collaboration-card:hover h3::after {
	width: 80px;
	animation: glowLine 1s ease-in-out infinite alternate;
}
@keyframes glowLine {
	0% {
		box-shadow: 0 0 10px rgb(59 130 246 / 0.5);
	}
	100% {
		box-shadow: 0 0 20px rgb(59 130 246 / 0.8), 0 0 30px rgb(59 130 246 / 0.4);
	}
}
.collaboration-card > p {
	color: rgb(255 255 255 / 0.9);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: var(--spacing-lg);
	position: relative;
	z-index: 2;
	text-shadow: 0 1px 5px rgb(0 0 0 / 0.6);
}
.collaboration-details h4 {
	color: var(--primary-blue-light);
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: var(--spacing-lg);
	margin-bottom: var(--spacing-sm);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	text-shadow: 0 1px 5px rgb(0 0 0 / 0.6);
}
.collaboration-details h4::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--primary-blue-light);
	border-radius: 50%;
	box-shadow: 0 0 10px rgb(59 130 246 / 0.5);
}
.collaboration-details p {
	color: rgb(255 255 255 / 0.9);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: var(--spacing-md);
	text-shadow: 0 1px 5px rgb(0 0 0 / 0.6);
}
.collaboration-details ul {
	list-style: none;
	padding: 0;
	margin: var(--spacing-sm) 0 var(--spacing-md) 0;
}
.collaboration-details li {
	color: rgb(255 255 255 / 0.95);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: var(--spacing-xs);
	padding-left: var(--spacing-lg);
	position: relative;
	transition: all 0.3s ease;
	animation: fadeInLeft 0.5s ease-out;
	animation-fill-mode: both;
	text-shadow: 0 1px 4px rgb(0 0 0 / 0.6);
}
.collaboration-details li:nth-child(1) {
	animation-delay: 0.1s;
}
.collaboration-details li:nth-child(2) {
	animation-delay: 0.2s;
}
.collaboration-details li:nth-child(3) {
	animation-delay: 0.3s;
}
.collaboration-details li:nth-child(4) {
	animation-delay: 0.4s;
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.collaboration-details li::before {
	content: '✓';
	color: var(--primary-blue-light);
	position: absolute;
	left: 0;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-shadow: 0 0 8px rgb(59 130 246 / 0.6);
	animation: checkmarkPulse 2s ease-in-out infinite;
}
@keyframes checkmarkPulse {
	0%,
	100% {
		text-shadow: 0 0 8px rgb(59 130 246 / 0.6);
		transform: scale(1);
	}
	50% {
		text-shadow: 0 0 12px rgb(59 130 246 / 0.8), 0 0 16px rgb(59 130 246 / 0.4);
		transform: scale(1.05);
	}
}
.collaboration-card:hover .collaboration-details li::before {
	transform: translateX(5px) scale(1.1);
	animation: none;
	text-shadow: 0 0 12px rgb(59 130 246 / 0.8);
}
.collaboration-details li:hover {
	color: var(--white);
	transform: translateX(5px);
	text-shadow: 0 1px 5px rgb(0 0 0 / 0.7);
}
.collaboration-details li:hover::before {
	color: var(--white);
	text-shadow: 0 0 15px rgb(255 255 255 / 0.8);
}
.collaboration-card {
	position: relative;
}
.collaboration-card .particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}
.collaboration-card .particles::before,
.collaboration-card .particles::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgb(59 130 246 / 0.6);
	border-radius: 50%;
	animation: particleFloat 4s ease-in-out infinite;
}
.collaboration-card .particles::before {
	top: 20%;
	left: 80%;
	animation-delay: 0s;
}
.collaboration-card .particles::after {
	top: 70%;
	left: 20%;
	animation-delay: 2s;
}
@keyframes particleFloat {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 0.6;
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
		opacity: 1;
	}
}
.collaboration-card:hover .particles::before,
.collaboration-card:hover .particles::after {
	animation-duration: 2s;
}
.collaboration-card:hover {
	animation: rippleEffect 0.6s ease-out;
}
@keyframes rippleEffect {
	0% {
		box-shadow: 0 25px 50px rgb(0 0 0 / 0.3), 0 0 0 1px rgb(255 255 255 / 0.1), inset 0 1px 0 rgb(255 255 255 / 0.1);
	}
	50% {
		box-shadow: 0 25px 50px rgb(0 0 0 / 0.3), 0 0 0 10px rgb(59 130 246 / 0.1), 0 0 0 20px rgb(59 130 246 / 0.05),
			inset 0 1px 0 rgb(255 255 255 / 0.1);
	}
	100% {
		box-shadow: 0 25px 50px rgb(0 0 0 / 0.3), 0 0 0 1px rgb(255 255 255 / 0.1), inset 0 1px 0 rgb(255 255 255 / 0.1);
	}
}
.collaboration .floating-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(2px 2px at 20px 30px, rgb(255 255 255 / 0.3), transparent),
		radial-gradient(2px 2px at 40px 70px, rgb(255 255 255 / 0.2), transparent),
		radial-gradient(1px 1px at 90px 40px, rgb(255 255 255 / 0.4), transparent),
		radial-gradient(1px 1px at 130px 80px, rgb(255 255 255 / 0.3), transparent),
		radial-gradient(2px 2px at 160px 30px, rgb(59 130 246 / 0.4), transparent),
		radial-gradient(1px 1px at 200px 60px, rgb(59 130 246 / 0.3), transparent),
		radial-gradient(2px 2px at 240px 90px, rgb(59 130 246 / 0.2), transparent);
	background-repeat: repeat;
	background-size: 250px 150px;
	animation: floatingParticles 25s linear infinite;
	opacity: 0.6;
	pointer-events: none;
}
@keyframes floatingParticles {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0.6;
	}
	25% {
		transform: translateY(-25px) translateX(10px);
		opacity: 0.8;
	}
	50% {
		transform: translateY(-50px) translateX(-5px);
		opacity: 0.6;
	}
	75% {
		transform: translateY(-75px) translateX(15px);
		opacity: 0.9;
	}
	100% {
		transform: translateY(-100px) translateX(-10px);
		opacity: 0.4;
	}
}
@media (min-width: 1400px) {
	.collaboration-grid {
		grid-template-columns: 1fr;
		align-items: start;
	}
}
@media (max-width: 1024px) {
	.collaboration-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		align-items: start;
	}
}
@media (max-width: 768px) {
	.collaboration {
		padding: var(--spacing-xl) 0;
	}
	.collaboration-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	.collaboration-card {
		padding: var(--spacing-lg);
	}
	.collaboration-card:hover {
		transform: translateY(-10px);
	}
	.collaboration-icon {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
		margin-right: var(--spacing-sm);
	}
	.collaboration-card h3 {
		font-size: 1.25rem;
		line-height: 1.3;
		margin-right: var(--spacing-sm);
	}
	.collaboration-details h4 {
		font-size: 1rem;
	}
	.collaboration-details p,
	.collaboration-details li {
		font-size: 0.9rem;
	}
}
@media (max-width: 480px) {
	.collaboration {
		padding: var(--spacing-lg) 0;
	}
	.collaboration-grid {
		gap: var(--spacing-md);
		align-items: start;
	}
	.collaboration-card {
		padding: var(--spacing-md);
		margin: 0 var(--spacing-xs);
	}
	.collaboration-header {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: var(--spacing-sm);
		padding: var(--spacing-sm);
		min-height: auto;
	}
	.collaboration-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin: 0 0 var(--spacing-sm) 0;
		flex-shrink: 0;
	}
	.collaboration-card h3 {
		font-size: 1.1rem;
		text-align: center;
		line-height: 1.3;
		margin: 0 0 var(--spacing-sm) 0;
		flex: none;
	}
	.expand-indicator {
		width: 35px;
		height: 35px;
		font-size: 1rem;
		margin: 0;
	}
	.collaboration-details h4 {
		font-size: 0.95rem;
		margin-top: var(--spacing-md);
		margin-bottom: var(--spacing-sm);
	}
	.collaboration-details p,
	.collaboration-details li {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	.collaboration-details ul {
		padding-left: var(--spacing-md);
	}
	.collaboration-details li {
		margin-bottom: var(--spacing-xs);
	}
}
.pricing {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
	padding: var(--spacing-xxl) 0;
}
.pricing::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 80%, rgb(37 99 235 / 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgb(59 130 246 / 0.08) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgb(147 197 253 / 0.05) 0%, transparent 50%);
	pointer-events: none;
}
.pricing .container {
	position: relative;
	z-index: 1;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}
.pricing-card {
	background: rgb(255 255 255 / 0.98);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgb(0 0 0 / 0.08), 0 4px 16px rgb(0 0 0 / 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgb(37 99 235 / 0.08);
	position: relative;
	overflow: hidden;
}
.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover::before {
	height: 6px;
	background: linear-gradient(90deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
}
.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgb(0 0 0 / 0.12), 0 8px 32px rgb(37 99 235 / 0.08);
	border-color: rgb(37 99 235 / 0.15);
}
.pricing-card h3 {
	color: var(--text-dark);
	font-size: 1.5rem;
	margin-bottom: 24px;
	font-weight: 700;
	text-align: center;
	padding: 16px 0;
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #fff0;
	background-clip: text;
	letter-spacing: -0.02em;
	position: relative;
}
.pricing-card h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
	border-radius: 2px;
}
.pricing-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pricing-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-dark);
	padding: 20px;
	background: rgb(248 250 252 / 0.8);
	border-radius: 12px;
	font-size: 0.95rem;
	line-height: 1.5;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgb(226 232 240 / 0.8);
	position: relative;
	overflow: hidden;
}
.pricing-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}
.pricing-list li:hover {
	background: rgb(37 99 235 / 0.04);
	border-color: rgb(37 99 235 / 0.2);
	transform: translateX(8px);
}
.pricing-list li:hover::before {
	transform: scaleY(1);
}
.pricing-list li .service-name {
	flex: 1;
	font-weight: 500;
	color: #334155;
	margin-right: 16px;
}
.pricing-list li:hover .service-name {
	color: #1e293b;
	font-weight: 600;
}
.pricing-list li .price {
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 12px 20px;
	border-radius: 25px;
	box-shadow: 0 4px 16px rgb(37 99 235 / 0.25);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	min-width: 160px;
	max-width: 160px;
	width: 160px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
}
.pricing-list li .price:hover {
	color: #fff;
	text-decoration: none;
}
.pricing-list li .price::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.2), transparent);
	transition: left 0.5s;
}
.pricing-list li:hover .price {
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgb(37 99 235 / 0.4);
	color: #fff;
	text-decoration: none;
}
.pricing-list li:hover .price::before {
	left: 100%;
}
@media (max-width: 480px) {
	.pricing-list li {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-xs);
		padding: var(--spacing-sm) 0;
		min-height: auto;
	}
	.pricing-list li span {
		margin-left: 0;
		font-size: 0.9rem;
		font-weight: 700;
		min-width: auto;
		align-self: flex-end;
		color: var(--primary-blue);
	}
	.pricing-list li .price {
		margin-left: 0;
		font-size: 0.9rem;
		font-weight: 700;
		min-width: auto;
		align-self: flex-end;
		color: #fff;
		text-decoration: none;
	}
	.pricing-list li .price:hover {
		color: #fff;
		text-decoration: none;
	}
}
@media (max-width: 1024px) {
	.pricing-list li {
		padding: 16px;
	}
	.pricing-list li .price {
		min-width: 140px;
		max-width: 140px;
		width: 140px;
		font-size: 0.85rem;
		padding: 10px 16px;
		text-decoration: none;
		color: #fff;
	}
	.pricing-list li .price:hover {
		color: #fff;
		text-decoration: none;
	}
	.pricing-card {
		padding: 30px;
	}
}
.benefits {
	background: linear-gradient(135deg, var(--white) 0%, var(--silver-light) 100%);
	position: relative;
	overflow: hidden;
}
.benefits::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 80%, rgb(37 99 235 / 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgb(37 99 235 / 0.08) 0%, transparent 50%),
		linear-gradient(45deg, transparent 30%, rgb(37 99 235 / 0.03) 50%, transparent 70%);
	pointer-events: none;
	animation: backgroundShift 15s ease-in-out infinite;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: var(--spacing-xl);
	position: relative;
	z-index: 1;
}
.benefit-card {
	background: var(--white);
	border-radius: 24px;
	padding: var(--spacing-xl);
	box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	border: 1px solid rgb(37 99 235 / 0.1);
}
.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
	transition: height 0.4s ease;
}
.benefit-card:hover::before {
	height: 12px;
}
.benefit-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px rgb(37 99 235 / 0.15);
	border-color: rgb(37 99 235 / 0.2);
}
.benefit-card.business {
	background: linear-gradient(135deg, var(--white) 0%, rgb(37 99 235 / 0.02) 100%);
}
.benefit-card.individual {
	background: linear-gradient(135deg, var(--white) 0%, rgb(37 99 235 / 0.02) 100%);
}
.benefit-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--spacing-md);
	color: var(--white);
	font-size: 2rem;
	box-shadow: 0 8px 25px rgb(37 99 235 / 0.3);
	transition: all 0.3s ease;
	position: relative;
}
.benefit-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgb(255 255 255 / 0.2), transparent);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.benefit-card:hover .benefit-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 35px rgb(37 99 235 / 0.4);
}
.benefit-card:hover .benefit-icon::after {
	opacity: 1;
}
.benefit-content h3 {
	color: var(--text-dark);
	font-size: 1.75rem;
	margin-bottom: var(--spacing-md);
	font-weight: 700;
	position: relative;
}
.benefit-content p {
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: var(--spacing-lg);
}
.benefit-features {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}
.feature {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-sm);
	background: rgb(37 99 235 / 0.05);
	border-radius: var(--radius-md);
}
.uprawnienia-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
	touch-action: pan-y;
}
.uprawnienia-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgb(37 99 235 / 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgb(59 130 246 / 0.03) 0%, transparent 50%);
	pointer-events: none;
}
.certificates-slider {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 25px 50px rgb(0 0 0 / 0.08), 0 0 0 1px rgb(255 255 255 / 0.5);
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	padding: 40px 60px;
	margin: 0 auto;
	max-width: 1300px;
}
.slider-track {
	display: flex;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	gap: 24px;
	will-change: transform;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
}
@media (min-width: 1200px) {
	.slider-container {
		max-width: 1300px;
	}
	.certificate-item {
		width: 280px;
		max-width: 280px;
	}
}
.certificate-item {
	flex: 0 0 auto;
	width: 280px;
	height: 380px;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	min-height: 380px !important;
}
.certificate-card {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 8px 32px rgb(0 0 0 / 0.06), 0 0 0 1px rgb(0 0 0 / 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: stretch !important;
	align-items: stretch !important;
}
.certificate-card::before {
	z-index: 1;
}
.certificate-card:hover::before {
	opacity: 1;
}
.certificate-card:hover img {
	transform: scale(1.02);
}
.certificate-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 32px 64px rgb(37 99 235 / 0.12), 0 0 0 1px rgb(37 99 235 / 0.08);
}
.certificate-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	transition: transform 0.4s ease;
	background: none;
}
.certificate-card:hover img {
	transform: scale(1.03);
}
.certificate-overlay {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	background: rgb(37 99 235 / 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #fff;
	font-size: 16px;
	backdrop-filter: blur(10px);
}
.certificate-card:hover .certificate-overlay {
	opacity: 1;
	transform: scale(1);
}
.slider-navigation {
	position: absolute;
	top: 50%;
	left: -30px;
	right: -30px;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}
.slider-btn {
	width: 60px;
	height: 60px;
	background: rgb(255 255 255 / 0.95);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 32px rgb(0 0 0 / 0.12), 0 0 0 1px rgb(0 0 0 / 0.04);
	color: #2563eb;
	font-size: 20px;
	backdrop-filter: blur(10px);
	pointer-events: all;
	z-index: 10;
}
.slider-btn:hover {
	background: #2563eb;
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 16px 40px rgb(37 99 235 / 0.3), 0 0 0 1px rgb(37 99 235 / 0.1);
}
.slider-btn:active {
	transform: scale(0.95);
}
.slider-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: scale(0.9);
}
.slider-btn:disabled:hover {
	background: rgb(255 255 255 / 0.95);
	color: #94a3b8;
	transform: scale(0.9);
	box-shadow: 0 8px 32px rgb(0 0 0 / 0.12), 0 0 0 1px rgb(0 0 0 / 0.04);
}
.slider-pagination {
	display: none !important;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}
.pagination-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	padding: 0;
	position: relative;
}
.pagination-dot::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff0;
	transition: background 0.3s ease;
}
.pagination-dot:hover::before {
	background: rgb(37 99 235 / 0.1);
}
.pagination-dot.active {
	background: #2563eb;
	transform: scale(1.25);
}
.pagination-dot:hover {
	background: #3b82f6;
	transform: scale(1.1);
}
.pagination-dot.active:hover {
	transform: scale(1.25);
}
.slider-progress {
	margin-top: 24px;
	height: 4px;
	background: #e2e8f0;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
	border-radius: 2px;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	flex: 1 1 auto;
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.3));
	animation: shimmer 2s infinite;
}
@keyframes shimmer {
	0% {
		transform: translateX(-20px);
	}
	100% {
		transform: translateX(20px);
	}
}
.autoplay-indicator {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px 12px;
	background: rgb(0 0 0 / 0.7);
	color: #fff;
	border-radius: 20px;
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(10px);
}
.certificates-slider:hover .autoplay-indicator {
	opacity: 1;
}
@media (max-width: 1200px) {
	.certificate-item {
		width: 280px;
	}
	.certificates-slider {
		padding: 0 16px;
	}
	.slider-container {
		max-width: 900px;
	}
}
@media (max-width: 768px) {
	.uprawnienia-section {
		padding: 60px 0;
	}
	.certificate-item {
		width: 240px;
	}
	.slider-container {
		padding: 30px 16px;
		position: relative;
	}
	.slider-track {
		cursor: grab;
		touch-action: pan-x;
	}
	.slider-track:active {
		cursor: grabbing;
	}
	.slider-container::after {
		content: '← Przeciągnij palcem →';
		position: absolute;
		bottom: -5px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 11px;
		color: rgb(59 130 246 / 0.6);
		text-align: center;
		font-weight: 500;
		pointer-events: none;
		opacity: 0.8;
	}
	.slider-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}
	.prev-btn {
		margin-left: -25px;
	}
	.next-btn {
		margin-right: -25px;
	}
}
@media (max-width: 480px) {
	.certificate-item {
		width: 220px;
	}
	.slider-container {
		padding: 20px 12px 40px 12px;
		position: relative;
		margin-bottom: 20px;
		pointer-events: none;
	}
	.slider-track {
		gap: 16px;
		cursor: grab;
		pointer-events: auto;
	}
	.slider-track:active {
		cursor: grabbing;
	}
	.certificate-item {
		pointer-events: auto;
	}
	.slider-navigation {
		display: none;
	}
	.slider-container::after {
		content: '← Przewiń palcem →';
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 14px;
		color: rgb(59 130 246 / 0.8);
		text-align: center;
		font-weight: 600;
		letter-spacing: 0.5px;
		pointer-events: none;
		background: rgb(255 255 255 / 0.9);
		padding: 4px 12px;
		border-radius: 20px;
		box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
		z-index: 10;
		touch-action: none;
	}
}
.certificate-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	backdrop-filter: blur(10px);
}
.certificate-lightbox.active {
	display: flex;
}
.lightbox-content {
	max-width: 90vw;
	max-height: 90vh;
	position: relative;
}
.lightbox-content img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 25px 50px rgb(0 0 0 / 0.5);
}
.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: rgb(255 255 255 / 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #1f2937;
	font-size: 18px;
	backdrop-filter: blur(10px);
}
.feature i {
	color: var(--primary-blue);
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}
.feature span {
	color: var(--text-dark);
	font-weight: 500;
	font-size: 0.95rem;
}
@media (max-width: 768px) {
	.benefits {
		padding: var(--spacing-xl) 0;
	}
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	.benefit-card {
		padding: var(--spacing-lg);
	}
	.benefit-icon {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
	}
	.benefit-content h3 {
		font-size: 1.5rem;
	}
	.benefit-content p {
		font-size: 0.95rem;
	}
	.feature {
		padding: var(--spacing-sm);
	}
	.feature span {
		font-size: 0.9rem;
	}
}
@keyframes backgroundShift {
	0%,
	100% {
		transform: translateX(0) translateY(0);
	}
	25% {
		transform: translateX(5px) translateY(-5px);
	}
	50% {
		transform: translateX(-3px) translateY(3px);
	}
	75% {
		transform: translateX(-5px) translateY(-3px);
	}
}
.logo-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 8px;
	transition: transform var(--transition-normal);
}
.logo-img:hover {
	transform: scale(1.05);
}
.main-logo-img {
	width: 280px;
	height: 280px;
	object-fit: contain;
	border-radius: 30px;
	transition: all var(--transition-normal);
}
.main-logo-img:hover {
	transform: scale(1.05);
}
.footer-logo-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 8px;
	transition: transform var(--transition-normal);
}
.footer-logo-img:hover {
	transform: scale(1.05);
}
@media (max-width: 768px) {
	.logo-img {
		width: 35px;
		height: 35px;
	}
	.main-logo-img {
		width: 240px;
		height: 240px;
	}
	.footer-logo-img {
		width: 35px;
		height: 35px;
	}
}
@media (max-width: 480px) {
	.logo-img {
		width: 30px;
		height: 30px;
	}
	.main-logo-img {
		width: 200px;
		height: 200px;
	}
	.footer-logo-img {
		width: 30px;
		height: 30px;
	}
}
.contact-details h3,
.pricing-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}
.pricing-card h3 {
	text-align: center;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--silver-dark);
	margin-bottom: 1rem;
}
.section-subtitle {
	color: #475569 !important;
}
.about .section-subtitle,
.contact .section-subtitle {
	color: #475569 !important;
}
.image-placeholder {
	color: #475569 !important;
	background-color: #f8fafc;
	border: 2px dashed #cbd5e1;
}
.about p,
.contact p {
	color: #475569 !important;
}
.contact-details h3 {
	color: #1e293b !important;
}
.contact-details p {
	color: #475569 !important;
}
@media (min-width: 1024px) and (max-width: 2000px) {
	.services-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: repeat(2, 1fr) !important;
		gap: 2.5rem !important;
		max-width: 95vw !important;
		overflow-x: hidden !important;
		justify-items: stretch;
		align-items: stretch;
		margin: 0 auto;
		padding: 0 1rem;
	}
	.services-row {
		display: contents !important;
	}
	.service-card {
		min-width: 400px !important;
		max-width: none !important;
		width: 100%;
		box-sizing: border-box;
		padding: 2rem;
		height: 100%;
	}
}
