:root {
	--color1: #ff00e1;
	--color2: #ff6bf8;
	--color3: #ffaefa;
	--color4: #ffe3fb;
	--color5: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	overflow-x: hidden;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	overflow-x: hidden;
	background: var(--color5);
	color: #1a1a1a;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.header {
	padding: 20px 15px;
	background-color: var(--color5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 152, 255, 0.1);
}

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

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color1);
	letter-spacing: -0.5px;
}

.nav ul {
	display: flex;
	list-style-type: none;
	gap: 2.5rem;
}

.nav a {
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s ease;
	position: relative;
}

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

.nav a:hover {
	color: var(--color1);
}

.nav a:hover::after {
	width: 100%;
}

.burger {
	display: none;
	font-size: 30px;
	cursor: pointer;
	color: var(--color1);
}

.mobile-menu {
	visibility: hidden;
	opacity: 0;
	transform: translateY(-20px);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		visibility 0.3s ease;
	background-color: var(--color5);
	padding: 15px;
	position: fixed;
	top: 80px;
	right: 0;
	width: 280px;
	z-index: 999;
	box-shadow: -5px 5px 30px rgba(0, 152, 255, 0.15);
	border-left: 3px solid var(--color1);
}

.mobile-menu.active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.mobile-nav ul {
	list-style-type: none;
}

.mobile-nav li {
	margin: 1.5rem 0;
}

.mobile-nav a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mobile-nav a:hover {
	color: var(--color1);
}

@media (max-width: 768px) {
	.nav {
		display: none;
	}
	.burger {
		display: block;
	}
}

.hero-section {
	margin-top: 80px;

	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
	width: 100%;
}

.hero-text {
	max-width: 650px;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 2rem;
	color: #1a1a1a;
}

.hero-title .highlight {
	color: var(--color1);
	position: relative;
	display: inline-block;
}

.hero-description {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	line-height: 1.7;
	margin-bottom: 3rem;
	color: #4a4a4a;
}

.hero-cta {
	display: inline-block;
	padding: 20px;
	background: var(--color1);
	color: var(--color5);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 152, 255, 0.3);
}

.hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 152, 255, 0.4);
	background: var(--color2);
}

.decorative-circle {
	position: absolute;
	border-radius: 50%;
	background: var(--color3);
	opacity: 0.3;
}

.circle-1 {
	width: 400px;
	height: 400px;
	top: -200px;
	left: -100px;
}

.circle-2 {
	width: 250px;
	height: 250px;
	bottom: 10%;
	left: 40%;
	background: var(--color2);
}

.story-section {
	background: var(--color5);
	padding: 60px 10px;
}

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

.story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.story-image-wrapper {
	position: relative;
}

.story-image {
	width: 100%;
	height: 600px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 152, 255, 0.15);
}

.decorative-box {
	position: absolute;
	width: 200px;
	height: 200px;
	border: 3px solid var(--color1);
	bottom: -30px;
	right: -30px;
	border-radius: 20px;
	z-index: -1;
}

.story-content h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 2rem;
	color: #1a1a1a;
}

.story-content p {
	font-size: 1.15rem;
	line-height: 1.9;
	margin-bottom: 1.5rem;
	color: #4a4a4a;
}

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

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color1);
	display: block;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.95rem;
	color: #666;
	font-weight: 500;
}

.services-section {
	padding: 60px 0;
	background: var(--color4);
	position: relative;
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 5rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
}

.section-subtitle {
	font-size: 1.2rem;
	line-height: 1.7;
	color: #4a4a4a;
}

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

.service-item {
	background: var(--color5);
	padding: 60px 0;
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.service-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--color1);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.service-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 152, 255, 0.2);
	border-color: var(--color3);
}

.service-item:hover::before {
	transform: scaleX(1);
}

.service-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--color3);
	margin-bottom: 1.5rem;
	display: block;
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.service-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #666;
	margin-bottom: 2rem;
}

.service-link {
	display: inline-flex;
	align-items: center;
	color: var(--color1);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.service-link:hover {
	gap: 0.5rem;
}

.service-link::after {
	content: '→';
	margin-left: 0.5rem;
	transition: margin-left 0.3s ease;
}

.blog-sidebar {
	position: relative;
}

.sidebar-item {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--color4);
}

.sidebar-item:last-child {
	border-bottom: none;
}

.sidebar-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 1rem;
}

.sidebar-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
	line-height: 1.4;
}

.sidebar-date {
	font-size: 0.9rem;
	color: #999;
}

.process-section {
	padding: 60px 0;
	background: var(--color4);
	position: relative;
	overflow: hidden;
}

.process-timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--color3);
	transform: translateX(-50%);
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	margin-bottom: 6rem;
	position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
	order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
	order: 1;
}

.timeline-content {
	padding: 20px 0;
	background: var(--color5);
	border-radius: 15px;
	position: relative;
}

.timeline-step {
	font-size: 1rem;
	color: var(--color1);
	font-weight: 700;
	margin-bottom: 1rem;
	display: block;
}

.timeline-heading {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.timeline-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #666;
}

.timeline-image-wrapper {
	position: relative;
}

.timeline-image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 15px 50px rgba(0, 152, 255, 0.15);
}

.contact-section {
	padding: 100px 0;
	background: var(--color4);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 5rem;
	align-items: start;
}

.contact-form-wrapper {
	background: var(--color5);
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 152, 255, 0.1);
}

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

.form-label {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid var(--color4);
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--color1);
	box-shadow: 0 0 0 3px rgba(0, 152, 255, 0.1);
}

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

.form-submit {
	width: 100%;
	padding: 1.2rem;
	background: var(--color1);
	color: var(--color5);
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit:hover {
	background: var(--color2);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 152, 255, 0.3);
}

.contact-info-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 3rem;
}

.contact-detail {
	margin-bottom: 2rem;
}

.contact-detail-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color1);
	margin-bottom: 0.5rem;
}

.contact-detail-text {
	font-size: 1.05rem;
	color: #666;
	line-height: 1.6;
}

.footer {
	background: #1a1a1a;
	color: var(--color5);
	padding: 40px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-brand {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color1);
	margin-bottom: 1.5rem;
}

.footer-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #999;
	margin-bottom: 2rem;
}

.footer-heading {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--color5);
}

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

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

.footer-links a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--color1);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copyright {
	color: #666;
	font-size: 0.95rem;
}

.footer-legal {
	display: flex;
	gap: 2rem;
}

.footer-legal a {
	color: #999;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--color1);
}

@media (max-width: 1024px) {
	.story-grid,
	.blog-layout,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.timeline-item:nth-child(even) .timeline-content,
	.timeline-item:nth-child(even) .timeline-image {
		order: unset;
	}

	.timeline-line {
		display: none;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-bg {
		width: 100%;
		opacity: 0.3;
	}

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

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

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.contact-form-wrapper {
		padding: 2rem;
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.fade-in.active {
	opacity: 1;
	transform: translateY(0);
}

.slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.slide-left.active {
	opacity: 1;
	transform: translateX(0);
}

.slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.slide-right.active {
	opacity: 1;
	transform: translateX(0);
}

/* Стилі для секції Política de Cookies */
.policy {
	background-color: #f8f9fa;
	padding: 90px 0;
	margin-top: 100px;
	font-family: Arial, sans-serif;
	color: #333;
}

.policy h2 {
	font-size: 32px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
	margin-bottom: 30px;
}

.policy h3 {
	font-size: 26px;
	font-weight: 500;
	color: #333;
	margin-top: 40px;
	margin-bottom: 20px;
}

.policy p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
}

.policy ul {
	list-style-type: none;
	padding: 0;
	margin-bottom: 20px;
}

.policy ul li {
	font-size: 16px;
	margin-bottom: 10px;
	color: #555;
}

.policy ul li strong {
	font-weight: 600;
}

.policy ul li a {
	color: #007bff;
	text-decoration: none;
}

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

@media (max-width: 768px) {
	.policy h2 {
		font-size: 28px;
	}

	.policy h3 {
		font-size: 22px;
	}

	.policy p {
		font-size: 14px;
	}

	.policy ul li {
		font-size: 14px;
	}
}

.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: none;
	width: 80%;
}

.cookie-banner.show {
	display: block;
	animation: cookieFadeUp 0.35s ease-out both;
}

.cookie-banner__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 18px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	align-items: center;
}

.cookie-banner__text h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
}

.cookie-banner__text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #334155;
}

.cookie-banner__text a {
	color: #0ea5e9;
	text-decoration: none;
	font-weight: 600;
}

.cookie-banner__text a:hover {
	text-decoration: underline;
}

.cookie-banner__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	border: none;
	cursor: pointer;
	padding: 11px 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	transition: 0.2s ease;
}

.cookie-btn--accept {
	background: linear-gradient(135deg, #22c55e, #0ea5e9);
	color: white;
	box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25);
}

.cookie-btn--accept:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.cookie-btn--decline {
	background: #0f172a;
	color: #fff;
}

.cookie-btn--decline:hover {
	transform: translateY(-1px);
	filter: brightness(1.1);
}

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

@media (max-width: 768px) {
	.cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
	}
	.cookie-banner__actions {
		width: 100%;
	}
	.cookie-btn {
		width: 100%;
	}
}
