*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}

button {
	background: none;
	border: none;
	cursor: pointer;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
:root {
	/* Colors */
	--color-primary: #2c3474;
	--color-primary-dark: #1c1a23;
	--color-accent: #ef4444;
	--color-text: #1c1a23;
	--color-text-gray: #7b7882;
	--color-background: #ffffff;
	--color-background-light: #eeedee;
	--color-footer: #1e2756;

	/* Fonts */
	--font-primary: 'Roboto', sans-serif;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;

	/* Font Sizes */
	--font-size-xs: 12px;
	--font-size-sm: 14px;
	--font-size-base: 16px;
	--font-size-lg: 20px;
	--font-size-xl: 26px;
	--font-size-2xl: 36px;
	--font-size-3xl: 48px;

	/* Line Heights */
	--line-height-tight: 1.2;
	--line-height-normal: 1.5;
	--line-height-relaxed: 1.625;

	/* Spacing */
	--container-width: 1290px;
	--container-padding: 75px;
	--section-gap: 104px;

	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 15px;
	--radius-lg: 26px;

	/* Shadows */
	--shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-regular);
	line-height: var(--line-height-relaxed);
	color: var(--color-text);
	background-color: var(--color-background);
}

.text-label {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-semibold);
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-primary);
}

.text-subtitle {
	font-size: var(--font-size-xs);
	color: var(--color-text-gray);
	letter-spacing: -0.24px;
}

.text-body {
	font-size: var(--font-size-base);
	color: var(--color-text-gray);
	line-height: var(--line-height-relaxed);
}
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	z-index: 10000;
	padding: 8px 16px;
	background: var(--color-text);
	color: var(--color-background);
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
	transition: none;
}

.skip-link:focus {
	top: 0;
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* Body state when mobile menu is open */
body.menu-open {
	overflow: hidden;
}
/* Buttons */
/* Header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: var(--color-background);
}

.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	padding: 10px 70px;
}

/* Logo */
.header__logo {
	flex-shrink: 0;
	width: 295px;
}

.header__logo-link {
	display: flex;
	align-items: center;
	gap: 4px;
}

.header__logo-icon {
	height: 26px;
	width: auto;
}

.header__logo-text {
	display: none;
}

/* Slogan */
.header__slogan {
	padding: 8px 15px;
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 24px;
	color: var(--color-text-gray);
	white-space: nowrap;
}

/* Navigation */
.header__nav {
	flex-grow: 1;
}

.header__nav > ul,
.header__menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__nav > ul > li,
.header__menu > li {
	position: relative;
}

.header__nav > ul > li > a,
.header__menu > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 15px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 24px;
	color: var(--color-text);
	white-space: nowrap;
	transition: color 0.2s ease;
}


.header__nav > ul > li > a:hover,
.header__menu > li > a:hover {
	color: var(--color-accent);
}

.header__nav > ul > li.menu-item-has-children > a::after,
.header__menu > li.menu-item-has-children > a::after {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.75 4.125L5.5 6.875L8.25 4.125' stroke='%231c1a23' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.2s ease;
}

/* Submenu Toggle Button - hidden on desktop */
.submenu-toggle {
	display: none;
}

@media (min-width: 769px) {
	.header__nav > ul > li.menu-item-has-children:hover > a::after,
	.header__menu > li.menu-item-has-children:hover > a::after {
		transform: rotate(180deg);
	}
}

.header__nav > ul > li.menu-item-has-children.is-open > a::after,
.header__menu > li.menu-item-has-children.is-open > a::after {
	transform: rotate(180deg);
}

/* Menu item with children - bridge */
.header__nav > ul > li.menu-item-has-children,
.header__menu > li.menu-item-has-children {
	position: relative;
}

.header__nav > ul > li.menu-item-has-children::after,
.header__menu > li.menu-item-has-children::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 30px;
	pointer-events: none;
}

@media (min-width: 769px) {
	.header__nav > ul > li.menu-item-has-children:hover::after,
	.header__menu > li.menu-item-has-children:hover::after {
		pointer-events: auto;
	}
}

/* Submenu */
.header__nav .sub-menu,
.header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 30px);
	left: -20px;
	z-index: 100;
	min-width: 220px;
	padding: 20px 0;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	list-style: none;
	margin: 0;
	pointer-events: none;
}

.header__nav .sub-menu::before,
.header__menu .sub-menu::before {
	content: '';
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
	height: 30px;
}

@media (min-width: 769px) {
	.header__nav > ul > li:hover > .sub-menu,
	.header__menu > li:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}
}

.header__nav .sub-menu li,
.header__menu .sub-menu li {
	margin: 0;
	padding: 0;
}

.header__nav .sub-menu li a,
.header__menu .sub-menu li a {
	display: block;
	padding: 10px 25px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	transition: color 0.2s ease;
	white-space: nowrap;
}

.header__nav .sub-menu li a:hover,
.header__menu .sub-menu li a:hover {
	color: var(--color-accent);
}

/* Mega Menu */
.header__nav > ul > li.has-mega-menu > .sub-menu.mega-menu,
.header__menu > li.has-mega-menu > .sub-menu.mega-menu {
	left: 50%;
	transform: translateX(-50%) translateY(15px);
	min-width: auto;
	width: fit-content;
	max-width: 1200px;
	padding: 30px;
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
}

@media (min-width: 769px) {
	.header__nav > ul > li.has-mega-menu:hover > .sub-menu.mega-menu,
	.header__menu > li.has-mega-menu:hover > .sub-menu.mega-menu {
		transform: translateX(-50%) translateY(0);
	}
}

.header__nav .mega-menu .mega-menu-item,
.header__menu .mega-menu .mega-menu-item {
	margin: 0;
	padding: 0;
	width: 160px;
	flex-shrink: 0;
}

.header__nav .mega-menu .mega-menu-link,
.header__menu .mega-menu .mega-menu-link {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	border-radius: 12px;
	overflow: hidden;
}

.header__nav .mega-menu .mega-menu-image,
.header__menu .mega-menu .mega-menu-image {
	display: block;
	width: 100%;
	height: 140px;
	border-radius: 12px;
	overflow: hidden;
}

.header__nav .mega-menu .mega-menu-image img,
.header__menu .mega-menu .mega-menu-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header__nav .mega-menu .mega-menu-title,
.header__menu .mega-menu .mega-menu-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	color: var(--color-text);
	text-align: center;
	transition: color 0.2s ease;
}

.header__nav .mega-menu .mega-menu-link:hover .mega-menu-title,
.header__menu .mega-menu .mega-menu-link:hover .mega-menu-title {
	color: var(--color-accent);
}

/* Actions */
.header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	width: 220px;
	flex-shrink: 0;
}

.header__action-link {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
}

.header__action-link:hover {
	opacity: 0.7;
}

.header__action-icon {
	width: 20px;
	height: 20px;
}

/* Language Switcher */
.header__lang {
	position: relative;
	flex-shrink: 0;
	margin-left: 56px;
}

.header__lang::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 20px;
	opacity: 0;
	pointer-events: none;
}

.header__lang:hover::after {
	pointer-events: auto;
}

.header__lang-current {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 24px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-text);
	cursor: pointer;
	transition: color 0.2s ease;
}

.header__lang-current:hover {
	color: var(--color-accent);
}

.header__lang-arrow {
	width: 12px;
	height: 12px;
	transition: transform 0.2s ease;
}

.header__lang:hover .header__lang-arrow {
	transform: rotate(180deg);
}

.header__lang-dropdown {
	position: absolute;
	top: calc(100% + 20px);
	right: 0;
	z-index: 100;
	min-width: 58px;
	padding: 10px 0;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	list-style: none;
	margin: 0;
	pointer-events: none;
}

.header__lang-dropdown::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
}

.header__lang:hover .header__lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.header__lang-dropdown li {
	margin: 0;
	padding: 0;
}

.header__lang-dropdown li a {
	display: block;
	padding: 8px 16px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	transition: color 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

.header__lang-dropdown li a:hover {
	color: var(--color-accent);
}

.header__lang-dropdown li.current-lang a {
	color: var(--color-accent);
	font-weight: 600;
}

/* Mobile Language Switcher - Hidden on Desktop */
.header__mobile-lang {
	display: none;
}

/* Burger */
.header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 0;
}

.header__burger-line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-text);
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Responsive */
@media (max-width: 1200px) {
	.header__container {
		padding: 10px 40px;
	}

	.header__logo {
		width: auto;
	}

	.header__nav {
		width: auto;
	}

	.header__actions {
		width: auto;
	}

	.header__lang {
		margin-left: 24px;
	}
}

@media (max-width: 1024px) {
	.header__container {
		padding: 10px 40px;
	}

	/* Slogan hidden on tablet */
	.header__slogan {
		display: none;
	}
}

@media (max-width: 768px) {
	.header__container {
		padding: 10px 15px;
		justify-content: flex-start;
	}

	.header__logo {
		flex-grow: 1;
	}

	.header__logo-icon {
		height: 24px;
	}

	.header__nav {
		position: fixed;
		top: 46px;
		left: 0;
		z-index: 99;
		width: 100%;
		height: calc(100vh - 46px);
		padding: 24px 20px;
		background-color: var(--color-background);
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.header__nav.is-active {
		transform: translateX(0);
	}

	.header__nav > ul,
	.header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.header__nav > ul > li,
	.header__menu > li {
		width: 100%;
		border-bottom: 1px solid var(--color-background-light);
	}

	.header__nav > ul > li > a,
	.header__menu > li > a {
		padding: 16px 0;
		font-size: var(--font-size-base);
	}

	/* Hide CSS arrow on mobile - use toggle button instead */
	.header__nav > ul > li.menu-item-has-children > a::after,
	.header__menu > li.menu-item-has-children > a::after {
		display: none;
	}

	/* Submenu Toggle Button - visible on mobile */
	/* Fixed height matching the link, 50% width of burger menu */
	.submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		position: absolute;
		top: 0;
		right: 0;
		height: 56px; /* Same as link height (16px padding top + 24px line-height + 16px padding bottom) */
		width: 50%;
		padding-right: 20px;
		background: transparent;
		border: none;
		cursor: pointer;
		color: var(--color-text);
	}

	.submenu-toggle svg {
		transition: transform 0.2s ease;
	}

	.header__menu > li.menu-item-has-children.is-open > .submenu-toggle svg {
		transform: rotate(180deg);
	}

	.header__nav .sub-menu,
	.header__menu .sub-menu {
		position: static;
		left: 0;
		top: auto;
		min-width: 100%;
		width: 100%;
		padding: 0;
		margin: 0;
		box-shadow: none;
		transform: none;
		border-radius: 0;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
		background-color: transparent;
	}

	.header__nav > ul > li.menu-item-has-children.is-open > .sub-menu,
	.header__menu > li.menu-item-has-children.is-open > .sub-menu {
		max-height: 500px;
		padding: 0 0 16px 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header__nav .sub-menu::before,
	.header__menu .sub-menu::before {
		display: none;
	}

	.header__nav .sub-menu li,
	.header__menu .sub-menu li {
		width: 100%;
		padding-left: 20px;
	}

	/* Reset padding for mega menu items - use :not() to avoid double padding */
	.header__nav .sub-menu.mega-menu li,
	.header__menu .sub-menu.mega-menu li {
		padding-left: 0;
	}

	.header__nav .sub-menu li a,
	.header__menu .sub-menu li a {
		display: block;
		padding: 10px 0;
		white-space: normal;
		word-wrap: break-word;
	}

	.header__nav .sub-menu li a:hover,
	.header__menu .sub-menu li a:hover {
		padding-left: 0;
	}

	/* Mega Menu Mobile */
	.header__nav > ul > li.has-mega-menu > .sub-menu.mega-menu,
	.header__menu > li.has-mega-menu > .sub-menu.mega-menu,
	.header__nav > ul > li.has-mega-menu:hover > .sub-menu.mega-menu,
	.header__menu > li.has-mega-menu:hover > .sub-menu.mega-menu {
		position: static;
		left: auto;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 0;
		display: block;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		box-shadow: none;
		grid-template-columns: none;
	}

	.header__nav > ul > li.has-mega-menu.is-open > .sub-menu.mega-menu,
	.header__menu > li.has-mega-menu.is-open > .sub-menu.mega-menu {
		max-height: 2000px;
		padding: 0 0 16px 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header__nav .mega-menu .mega-menu-item,
	.header__menu .mega-menu .mega-menu-item {
		display: block;
		width: 100%;
		padding-left: 20px;
		border-bottom: 1px solid var(--color-background-light);
	}

	.header__nav .mega-menu .mega-menu-item:last-child,
	.header__menu .mega-menu .mega-menu-item:last-child {
		border-bottom: none;
	}

	.header__nav .mega-menu .mega-menu-link,
	.header__menu .mega-menu .mega-menu-link {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 12px;
		padding: 12px 0;
		border-radius: 0;
		overflow: visible;
	}

	.header__nav .mega-menu .mega-menu-link:hover,
	.header__menu .mega-menu .mega-menu-link:hover {
		transform: none;
	}

	.header__nav .mega-menu .mega-menu-image,
	.header__menu .mega-menu .mega-menu-image {
		display: none;
	}

	.header__nav .mega-menu .mega-menu-title,
	.header__menu .mega-menu .mega-menu-title {
		display: block;
		padding: 0;
		font-size: 14px;
		font-weight: 400;
		white-space: normal;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.header__actions {
		width: auto;
		gap: 18px;
		margin-right: 40px;
	}

	.header__action-icon {
		width: 20px;
		height: 20px;
	}

	.header__lang {
		display: none;
	}

	/* Mobile Language Switcher */
	.header__mobile-lang {
		display: block;
		margin-top: 24px;
		padding-top: 24px;
	}

	.header__mobile-lang-list {
		display: flex;
		gap: 16px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.header__mobile-lang-list li a {
		display: block;
		padding: 8px 16px;
		font-size: 14px;
		font-weight: var(--font-weight-medium);
		color: var(--color-text);
		background-color: var(--color-background-light);
		border-radius: 8px;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.header__mobile-lang-list li a:hover {
		background-color: var(--color-accent);
		color: #fff;
	}

	.header__mobile-lang-list li.current-lang a {
		background-color: var(--color-accent);
		color: #fff;
	}

	.header__burger {
		display: flex;
		flex-shrink: 0;
	}

	.header__burger.is-active .header__burger-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.header__burger.is-active .header__burger-line:nth-child(2) {
		opacity: 0;
	}

	.header__burger.is-active .header__burger-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* WordPress Admin Bar Offset */
.admin-bar .header {
	top: 32px;
}

@media (max-width: 768px) {
	.admin-bar .header__nav {
		top: calc(46px + 32px);
		height: calc(100vh - 46px - 32px);
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .header {
		top: 46px;
	}

	.admin-bar .header__nav {
		top: calc(46px + 46px);
		height: calc(100vh - 46px - 46px);
	}
}
/* Offices Section */

.offices {
	background-color: var(--color-primary);
	padding: 64px 0;
}

.offices__container {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

.offices__info {
	display: flex;
	flex-direction: column;
}

.offices__label {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 24px;
	color: #ffffff;
	margin-bottom: 12px;
}

.offices__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -2px;
	color: #ffffff;
	margin-bottom: 20px;
}

.offices__subtitle {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	line-height: 30px;
	color: #ffffff;
}

.offices__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.offices__item {
	display: flex;
	flex-direction: column;
}

.offices__item-title {
	font-size: 20px;
	font-weight: var(--font-weight-medium);
	color: var(--color-background);
	line-height: 30px;
	margin-bottom: 16px;
}

.offices__item-address {
	font-size: 14px;
	color: #bebdc1;
	line-height: 1.6;
}

.offices__item-contact {
	margin-top: 16px;
}

.offices__item-contact:first-of-type {
	margin-top: 16px;
}

.offices__item-contact + .offices__item-contact {
	margin-top: 0;
}

.offices__item-contact a {
	font-size: 14px;
	color: #bebdc1;
	line-height: 1.6;
	transition: color 0.2s ease;
}

.offices__item-contact a:hover {
	color: var(--color-background);
}

/* Footer */

.footer {
	position: relative;
	background: linear-gradient(0deg, #171E35 0%, #171E35 100%), #201E28;
	overflow: hidden;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 1440px;
	margin: 0 auto;
	padding: 90px 70px 50px 70px;
}

.footer__container {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	width: 100%;
	padding-bottom: 85px;
}

.footer__col {
	display: flex;
	flex-direction: column;
}

.footer__col--info {
	width: 508px;
	flex-shrink: 0;
	gap: 24px;
}

.footer__col--menu {
	flex: 1;
	min-width: 166px;
}

.footer__logo {
	display: inline-block;
}

.footer__logo-icon {
	width: 82.54px;
	height: 64px;
	object-fit: contain;
}

.footer__info-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__link {
	font-size: 16px;
	line-height: 26px;
	color: #BEBDC1;
	transition: color 0.2s ease;
}

.footer__link:hover {
	color: var(--color-background);
}

.footer__link--underline {
	text-decoration: underline;
}

.footer__copyright {
	font-size: 16px;
	line-height: 26px;
	color: #BEBDC1;
}

.footer__brand {
	color: #F8F8FF;
}

.footer__developer {
	font-size: 14px;
	line-height: 22px;
	color: #6B6A70;
}

.footer__developer a {
	color: #6B6A70;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.footer__developer a:hover {
	color: #BEBDC1;
}

.footer__col-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
	color: #FFFFFF;
	padding-bottom: 12px;
}

.footer__menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__menu li {
	padding-bottom: 8px;
}

.footer__menu li:last-child {
	padding-bottom: 0;
}

.footer__menu li a {
	font-size: 16px;
	line-height: 26px;
	color: #BEBDC1;
	transition: color 0.2s ease;
}

.footer__menu li a:hover {
	color: var(--color-background);
}

.footer__watermark {
	width: 100%;
	text-align: center;
	pointer-events: none;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer__watermark span {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 195px;
	font-style: normal;
	font-weight: 600;
	line-height: 342px;
	letter-spacing: -16px;
	text-transform: uppercase;
	background: linear-gradient(180deg, #1D253F 0%, #171E35 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: 16px;
}

/* Responsive */

@media (max-width: 1024px) {
	.offices__container {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 40px;
	}

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

	.footer__inner {
		padding: 60px 40px 40px;
	}

	.footer__container {
		flex-wrap: wrap;
		gap: 40px;
	}

	.footer__col--info {
		width: 100%;
	}

	.footer__col--menu {
		flex: none;
		width: auto;
	}

	.footer__watermark {
		padding-top: 0;
		padding-bottom: 0;
	}

	.footer__watermark span {
		font-size: 100px;
		line-height: 180px;
		letter-spacing: -8px;
	}
}

@media (max-width: 768px) {
	.offices {
		padding: 48px 0;
	}

	.offices__container {
		padding: 0 20px;
	}

	.offices__title {
		font-size: 36px;
		line-height: 44px;
		letter-spacing: -1px;
	}

	.offices__list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer__inner {
		padding: 48px 20px 30px;
	}

	.footer__container {
		flex-direction: column;
		gap: 32px;
		padding-bottom: 40px;
	}

	.footer__col--info {
		width: 100%;
	}

	.footer__col--menu {
		width: 100%;
	}

	.footer__watermark span {
		font-size: 48px;
		line-height: 100px;
		letter-spacing: -4px;
	}
}
/* Language Switcher */
/* Consultation Popup */

.popup-consultation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-consultation.is-active {
	opacity: 1;
	visibility: visible;
}

.popup-consultation__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.popup-consultation__content {
	position: relative;
	background: #fff;
	border-radius: 26px;
	padding: 32px 30px;
	max-width: 520px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.popup-consultation.is-active .popup-consultation__content {
	transform: translateY(0);
}

.popup-consultation__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #7b7882;
	transition: color 0.2s ease;
}

.popup-consultation__close:hover {
	color: #1c1a23;
}

.popup-consultation__header {
	margin-bottom: 22px;
}

.popup-consultation__title {
	font-size: 32px;
	font-weight: var(--font-weight-semibold);
	line-height: 39px;
	color: #1c1a23;
	margin-bottom: 4px;
}

.popup-consultation__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
}

/* Form Styles */
.popup-consultation__form .wpcf7-form {
	display: flex;
	flex-direction: column;
}

.popup-consultation__form .wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 22px;
}

.popup-consultation__form input[type="text"],
.popup-consultation__form input[type="email"],
.popup-consultation__form input[type="tel"] {
	width: 100%;
	padding: 15px;
	background: #eeedee;
	border: 1px solid #eeedee;
	border-radius: 10px;
	font-size: 15px;
	font-weight: var(--font-weight-regular);
	line-height: normal;
	color: #1c1a23;
	transition: border-color 0.2s ease;
}

.popup-consultation__form input[type="text"]::placeholder,
.popup-consultation__form input[type="email"]::placeholder,
.popup-consultation__form input[type="tel"]::placeholder {
	color: #a9a8ad;
}

.popup-consultation__form input[type="text"]:focus,
.popup-consultation__form input[type="email"]:focus,
.popup-consultation__form input[type="tel"]:focus {
	outline: none;
	border-color: #eb3f57;
}

/* Checkbox */
.popup-consultation__form .wpcf7-acceptance {
	margin-bottom: 17px;
}

.popup-consultation__form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.popup-consultation__form .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 20px;
	color: #a9a8ad;
	cursor: pointer;
}

.popup-consultation__form .wpcf7-acceptance input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #eb3f57;
}

.popup-consultation__form .wpcf7-acceptance a {
	color: #eb3f57;
	text-decoration: none;
}

.popup-consultation__form .wpcf7-acceptance a:hover {
	text-decoration: underline;
}

/* Submit Button */
.popup-consultation__form input[type="submit"] {
	width: 100%;
	padding: 17px 40px 18px;
	background: #eb3f57;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.popup-consultation__form input[type="submit"]:hover {
	background: #2c3474;
}

/* Validation */
.popup-consultation__form .wpcf7-not-valid-tip {
	font-size: 12px;
	color: #eb3f57;
	margin-top: 4px;
}

.popup-consultation__form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
	text-align: center;
}

/* Body lock when popup is open */
body.popup-open {
	overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
	.popup-consultation__content {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.popup-consultation__title {
		font-size: 24px;
		line-height: 30px;
	}

	.popup-consultation__subtitle {
		font-size: 13px;
		line-height: 22px;
	}

	.popup-consultation__form .wpcf7-form-control-wrap {
		margin-bottom: 16px;
	}

	.popup-consultation__form input[type="text"],
	.popup-consultation__form input[type="email"],
	.popup-consultation__form input[type="tel"] {
		padding: 12px 14px;
		font-size: 16px;
	}

	.popup-consultation__form input[type="submit"] {
		padding: 14px 30px 15px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.popup-consultation {
		padding: 16px;
	}

	.popup-consultation__title {
		font-size: 22px;
		line-height: 28px;
	}

	.popup-consultation__form .wpcf7-acceptance label {
		font-size: 12px;
		line-height: 18px;
	}
}
/* Fixed Bottom Buttons Container */

.fixed-buttons {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.fixed-buttons[hidden] {
	display: flex;
}

.fixed-buttons.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Call Button Wrapper */

.call-button-wrapper {
	position: relative;
}

/* Call Button */

.call-button {
	width: 88px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eb3f57;
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.call-button:hover {
	background: #d63a4f;
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.call-button:focus {
	outline: 2px solid #eb3f57;
	outline-offset: 2px;
}

.call-button svg {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

/* Contact Options */

.contact-options {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	pointer-events: none;
}

.fixed-buttons.is-contacts-open .contact-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Contact Options Items */

.contact-options__item {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px) scale(0.8);
}

.fixed-buttons.is-contacts-open .contact-options__item {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Staggered animation for items */
.fixed-buttons.is-contacts-open .contact-options__item:nth-child(2) {
	transition-delay: 0.05s;
}

.fixed-buttons.is-contacts-open .contact-options__item:nth-child(3) {
	transition-delay: 0.1s;
}

.fixed-buttons.is-contacts-open .contact-options__item:nth-child(4) {
	transition-delay: 0.15s;
}

.contact-options__item:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.contact-options__item svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* Messenger Colors */

.contact-options__item--phone {
	background: #eb3f57;
}

.contact-options__item--phone:hover {
	background: #d63a4f;
}

.contact-options__item--viber {
	background: #834ea6;
}

.contact-options__item--viber:hover {
	background: #7340a0;
}

.contact-options__item--telegram {
	background: #1ba0e3;
}

.contact-options__item--telegram:hover {
	background: #0d8fd4;
}

.contact-options__item--whatsapp {
	background: #34d489;
}

.contact-options__item--whatsapp:hover {
	background: #25c579;
}

/* Close Button */

.contact-options__close {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eeedee;
	color: #1c1a23;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px) scale(0.8);
}

.fixed-buttons.is-contacts-open .contact-options__close {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.contact-options__close:hover {
	background: #e0dfe0;
	transform: scale(1.1);
}

.contact-options__close svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* Scroll to Top Button */

.scroll-to-top {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.scroll-to-top:hover {
	background: #eb3f57;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.scroll-to-top:active {
	transform: translateY(0);
}

.scroll-to-top svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.fixed-buttons {
		bottom: 20px;
		right: 20px;
		gap: 12px;
	}

	.call-button {
		width: 64px;
		height: 64px;
	}

	.call-button svg {
		width: 28px;
		height: 28px;
	}

	.contact-options {
		gap: 12px;
	}

	.contact-options__item {
		width: 48px;
		height: 48px;
	}

	.contact-options__item svg {
		width: 20px;
		height: 20px;
	}

	.contact-options__close {
		width: 28px;
		height: 28px;
	}

	.contact-options__close svg {
		width: 14px;
		height: 14px;
	}

	.scroll-to-top {
		width: 44px;
		height: 44px;
	}

	.scroll-to-top svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 375px) {
	.fixed-buttons {
		bottom: 16px;
		right: 16px;
	}

	.call-button {
		width: 56px;
		height: 56px;
	}

	.call-button svg {
		width: 24px;
		height: 24px;
	}

	.contact-options__item {
		width: 44px;
		height: 44px;
	}

	.contact-options__item svg {
		width: 18px;
		height: 18px;
	}
}
/* Breadcrumbs Component */

.breadcrumb {
	padding: 16px 0;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
	color: rgba(28, 26, 35, 0.6);
}

.breadcrumb__item:not(:last-child)::after {
	content: '/';
	color: rgba(28, 26, 35, 0.4);
}

.breadcrumb__link {
	color: rgba(28, 26, 35, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}

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

.breadcrumb__current {
	color: #1c1a23;
	font-weight: var(--font-weight-medium);
}

/* Light variant (for dark backgrounds) */
.breadcrumb--light .breadcrumb__item {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumb--light .breadcrumb__item::after {
	color: rgba(255, 255, 255, 0.5);
}

.breadcrumb--light .breadcrumb__link {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumb--light .breadcrumb__link:hover {
	color: #ffffff;
}

.breadcrumb--light .breadcrumb__current {
	color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
	.breadcrumb {
		padding: 12px 0;
	}

	.breadcrumb__item {
		font-size: 13px;
	}
}

@media (max-width: 375px) {
	.breadcrumb__list {
		gap: 6px;
	}

	.breadcrumb__item {
		font-size: 12px;
		gap: 6px;
	}
}
/* Hero Section */

.hero {
	position: relative;
	max-width: 1520px;
	margin: 60px auto 0;
	padding: 0 10px 52px;
}

@media (min-width: 1600px) {
	.hero {
		max-width: 100%;
		padding: 0 50px 52px;
	}
}

.hero__background {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 500px;
	padding: 50px;
	border-radius: 26px;
	overflow: hidden;
}

.hero__background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 26px;
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 493px;
	padding: 32px;
	background: linear-gradient(136.84deg, rgba(34, 31, 31, 0.424) 0%, rgba(34, 31, 31, 0.106) 100%);
	border-radius: 20px;
}

.hero__title {
	max-width: 429px;
	margin-bottom: 25px;
	font-size: 45px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: -2px;
	color: #F8F8FF;
}

.hero__description {
	max-width: 387px;
	margin-bottom: 35px;
	font-size: 17px;
	font-weight: 400;
	line-height: 26px;
	color: #F8F8FF;
}

.hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background-color: #EB3F57;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	color: #FFFFFF;
	text-align: center;
	transition: background-color 0.2s ease;
}

.hero__button:hover {
	background-color: #d63a4f;
}

/* Responsive */

@media (max-width: 1024px) {
	.hero__background {
		padding: 40px;
	}

	.hero__title {
		font-size: 36px;
		line-height: 48px;
	}
}

@media (max-width: 768px) {
	.hero {
		padding-bottom: 30px;
	}

	.hero__background {
		min-height: 400px;
		padding: 20px;
		border-radius: 20px;
	}

	.hero__background-image {
		border-radius: 20px;
	}

	.hero__content {
		max-width: 100%;
		padding: 24px;
		border-radius: 16px;
	}

	.hero__title {
		max-width: 100%;
		font-size: 28px;
		line-height: 38px;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}

	.hero__description {
		max-width: 100%;
		font-size: 15px;
		line-height: 24px;
		margin-bottom: 25px;
	}

	.hero__button {
		padding: 16px 32px;
		font-size: 15px;
	}
}
/* Services Section */
.services {
	padding: 52px 15px;
}

.services__container {
	max-width: 1440px;
	margin: 0 auto;
}

.services__header {
	display: flex;
	gap: 30px;
	padding-bottom: 50px;
}

.services__label-wrapper {
	flex: 1;
	padding-top: 7px;
}

.services__label-text {
	font-size: 14px;
	font-weight: 600;
	color: #2c3474;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 14px;
}

.services__intro {
	flex: 1;
}

.services__intro-text {
	max-width: 630px;
	font-size: 16px;
	font-weight: 400;
	color: #7B7882;
	line-height: 26px;
	margin: 0;
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.services__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 32px 20px;
	background-color: #eeedee;
	border-radius: 26px;
}

.services__card-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text);
	text-align: center;
	letter-spacing: -0.4px;
	line-height: 28px;
	margin: 0 0 6px;
}

.services__card-description {
	font-size: 12px;
	font-weight: 400;
	color: #7B7882;
	text-align: center;
	letter-spacing: -0.24px;
	line-height: 18px;
	margin: 0 0 24px;
}

.services__card-image {
	width: 100%;
	height: 190px;
	border-radius: 15px;
	overflow: hidden;
}

.services__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services__card-link {
	margin-top: 29px;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.services__card-link:hover {
	color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1200px) {
	.services {
		padding: 40px;
	}

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

@media (max-width: 768px) {
	.services {
		padding: 30px 20px;
	}

	.services__header {
		flex-direction: column;
		gap: 20px;
		padding-bottom: 30px;
	}

	.services__label-wrapper {
		padding-top: 0;
	}

	.services__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
/* Clients Section - Infinite Marquee */
.clients {
	padding: 52px 0;
	background-color: #fff;
	overflow: hidden;
}

.clients__title {
	max-width: 1440px;
	margin: 0 auto 40px;
	padding: 0 75px;
	font-size: 14px;
	font-weight: 600;
	color: #2c3474;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 14px;
}

.clients__marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.clients__track {
	display: flex;
	align-items: center;
	gap: 20px;
	width: max-content;
	animation: marquee 30s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.clients__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 208px;
	height: 150px;
}

.clients__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: opacity 0.2s ease;
}

.clients__link:hover {
	opacity: 0.7;
}

.clients__logo {
	max-width: 150px;
	max-height: 150px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.clients__item:hover .clients__logo,
.clients__link:hover .clients__logo {
	filter: grayscale(0%);
	opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
	.clients {
		padding: 40px 0;
	}

	.clients__title {
		padding: 0 40px;
		margin-bottom: 30px;
	}

	.clients__item {
		width: 180px;
		height: 130px;
	}

	.clients__logo {
		max-width: 130px;
		max-height: 130px;
	}
}

@media (max-width: 768px) {
	.clients {
		padding: 30px 20px;
		-webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
		mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
	}

	.clients__title {
		padding: 0 20px;
		margin-bottom: 25px;
	}

	.clients__track {
		gap: 15px;
		animation-duration: 20s;
	}

	.clients__item {
		width: 150px;
		height: 100px;
	}

	.clients__logo {
		max-width: 100px;
		max-height: 100px;
	}
}
/* About Section */
.about {
	padding: 52px 75px;
}

.about__container {
	display: flex;
	flex-direction: column;
	gap: 48px;
	max-width: 1440px;
	margin: 0 auto;
}

.about__main {
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.about__image {
	flex-shrink: 0;
	width: 635px;
	height: 617px;
	border-radius: 26px;
	overflow: hidden;
}

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

.about__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	padding-left: 54px;
}

.about__content-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about__label {
	display: block;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #2c3474;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 14px;
}

.about__title {
	max-width: 494px;
	margin-bottom: 20px;
	font-size: 44px;
	font-weight: 600;
	line-height: 48px;
	color: #1c1a23;
}

.about__description {
	max-width: 494px;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
}

.about__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about__list-item {
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	color: #1c1a23;
}

.about__list-item::before {
	content: '- ';
}

.about__content-bottom {
	margin-top: auto;
}

.about__subtitle {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #1c1a23;
}

.about__subtext {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #7b7882;
	margin: 0;
}

/* Departments */
.about__departments {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.about__department {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 32px 20px;
	background-color: #eeedee;
	border-radius: 26px;
}

.about__department-title {
	margin-bottom: 6px;
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	color: #1c1a23;
}

.about__department-description {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	color: #7b7882;
}

.about__department-contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about__department-phones {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.about__department-phone,
.about__department-email {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	color: #1c1a23;
	text-decoration: none;
	transition: color 0.2s ease;
}

.about__department-phone:hover,
.about__department-email:hover {
	color: var(--color-accent);
}

.about__department-phone svg,
.about__department-email svg {
	flex-shrink: 0;
	color: #EB3F57;
	transition: color 0.2s ease;
}

.about__department-phone:hover svg,
.about__department-email:hover svg {
	color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1200px) {
	.about {
		padding: 40px;
	}

	.about__main {
		flex-direction: column;
	}

	.about__image {
		width: 100%;
		height: 400px;
	}

	.about__content {
		padding-left: 0;
		gap: 30px;
	}

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

@media (max-width: 768px) {
	.about {
		padding: 30px 20px;
	}

	.about__container {
		gap: 30px;
	}

	.about__image {
		height: 300px;
		border-radius: 20px;
	}

	.about__title {
		font-size: 32px;
		line-height: 38px;
	}

	.about__departments {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.about__department {
		padding: 24px 16px;
		border-radius: 20px;
	}

	.about__department-phones {
		flex-direction: column;
		gap: 12px;
	}
}
/* Advantages Section */
.advantages {
	padding: 52px 75px;
}

.advantages__container {
	max-width: 1440px;
	margin: 0 auto;
}

.advantages__header {
	text-align: center;
	margin-bottom: 24px;
	padding-bottom: 32px;
}

.advantages__title {
	font-size: 57px;
	font-weight: 600;
	line-height: 63px;
	color: #1c1a23;
	letter-spacing: -2px;
	margin: 0 0 12px;
}

.advantages__description {
	max-width: 800px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
}

.advantages__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 85px;
}

.advantages__column {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 303px;
	flex-shrink: 0;
}

.advantages__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.advantages__item-title {
	font-size: 23px;
	font-weight: 600;
	line-height: 28px;
	color: #1c1a23;
	margin: 0;
}

.advantages__item-description {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	margin: 0;
}

.advantages__image {
	flex-shrink: 0;
	width: 516px;
	height: 558px;
	border-radius: 26px;
	overflow: hidden;
}

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

/* Responsive */
@media (max-width: 1200px) {
	.advantages {
		padding: 40px;
	}

	.advantages__content {
		gap: 40px;
	}

	.advantages__column {
		width: 220px;
	}

	.advantages__image {
		width: 350px;
		height: 400px;
	}

	.advantages__title {
		font-size: 42px;
		line-height: 50px;
	}
}

@media (max-width: 992px) {
	.advantages__content {
		flex-direction: column;
		gap: 40px;
	}

	.advantages__column {
		width: 100%;
		max-width: 500px;
	}

	.advantages__column--left {
		order: 2;
	}

	.advantages__image {
		order: 1;
		width: 100%;
		max-width: 516px;
		height: 400px;
	}

	.advantages__column--right {
		order: 3;
	}
}

@media (max-width: 768px) {
	.advantages {
		padding: 30px 20px;
	}

	.advantages__header {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.advantages__title {
		font-size: 32px;
		line-height: 38px;
		letter-spacing: -1px;
	}

	.advantages__description {
		font-size: 14px;
		line-height: 22px;
	}

	.advantages__content {
		gap: 30px;
	}

	.advantages__column {
		gap: 24px;
	}

	.advantages__image {
		height: 300px;
		border-radius: 20px;
	}

	.advantages__item-title {
		font-size: 20px;
		line-height: 26px;
	}

	.advantages__item-description {
		font-size: 14px;
		line-height: 22px;
	}
}
/* Reviews Section */
.reviews {
	padding: 52px 75px;
}

.reviews__container {
	max-width: 1440px;
	margin: 0 auto;
}

.reviews__header {
	text-align: center;
	margin-bottom: 24px;
	padding-bottom: 32px;
}

.reviews__title {
	font-size: 57px;
	font-weight: 600;
	line-height: 63px;
	color: #1c1a23;
	letter-spacing: -2px;
	margin: 0 0 12px;
}

.reviews__description {
	max-width: 800px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
}

.reviews__widget {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
	.reviews {
		padding: 40px;
	}

	.reviews__title {
		font-size: 42px;
		line-height: 50px;
	}
}

@media (max-width: 768px) {
	.reviews {
		padding: 30px 20px;
	}

	.reviews__header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.reviews__title {
		font-size: 32px;
		line-height: 38px;
		letter-spacing: -1px;
	}

	.reviews__description {
		font-size: 14px;
		line-height: 22px;
	}
}
/* Marquee Section */
.marquee {
	padding: 52px 0;
	overflow: hidden;
}

.marquee__wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: marquee-scroll 30s linear infinite;
	will-change: transform;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.marquee__content {
	display: flex;
	align-items: center;
	gap: 46px;
	flex-shrink: 0;
	padding-right: 46px;
}

@keyframes marquee-scroll {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.marquee__item {
	flex-shrink: 0;
	font-size: 47px;
	font-weight: 600;
	line-height: 47px;
	color: #1c1a23;
	letter-spacing: -2px;
	white-space: nowrap;
}

.marquee__star {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.marquee__star svg {
	width: 29px;
	height: 29px;
}

/* Alternative Variant (Red Background) */
.marquee--alt {
	background-color: #eb3f57;
	margin-top: 54px;
	margin-bottom: 104px;
}

.marquee--alt .marquee__item {
	color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
	.marquee {
		padding: 40px 0;
	}

	.marquee__item {
		font-size: 38px;
		line-height: 38px;
	}

	.marquee__content {
		gap: 36px;
		padding-right: 36px;
	}

	.marquee__star svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 768px) {
	.marquee {
		padding: 30px 0;
	}

	.marquee__item {
		font-size: 28px;
		line-height: 28px;
		letter-spacing: -1px;
	}

	.marquee__track {
		animation-duration: 20s;
	}

	.marquee__content {
		gap: 24px;
		padding-right: 24px;
	}

	.marquee__star svg {
		width: 20px;
		height: 20px;
	}

	.marquee--alt {
		margin-top: 40px;
		margin-bottom: 54px;
	}
}
/* Request Section */
.request {
	padding: 52px 0;
}

/* Services page variant */
.request--services {
	padding: 104px 0;
}

.request__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}

.request__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}

.request__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 22px;
}

.request__title {
	font-size: 52px;
	font-weight: 600;
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	text-align: center;
	max-width: 956px;
	margin: 0;
}

.request__form-wrapper {
	max-width: 990px;
	margin: 0 auto;
	background-color: #eeedee;
	border-radius: 26px;
	padding: 45px 30px 55px;
}

/* Single post variant - narrower form */
.single-post .request__container {
	max-width: 850px;
	padding: 0 20px;
}

.single-post .request__form-wrapper {
	max-width: 850px;
}

/* Contact Form 7 Styles */
.request__form-wrapper .wpcf7-form {
	display: flex;
	flex-direction: column;
}

.request__form-wrapper .wpcf7-form p {
	margin: 0;
}

.request__form-wrapper .form-row {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
}

.request__form-wrapper .form-field {
	flex: 1;
}

.request__form-wrapper .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.request__form-wrapper input[type="text"],
.request__form-wrapper input[type="email"],
.request__form-wrapper input[type="tel"],
.request__form-wrapper textarea {
	width: 100%;
	background-color: #fff;
	border: 1px solid #eeedee;
	border-radius: 10px;
	padding: 15px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	color: #1c1a23;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.request__form-wrapper input[type="text"]::placeholder,
.request__form-wrapper input[type="email"]::placeholder,
.request__form-wrapper input[type="tel"]::placeholder,
.request__form-wrapper textarea::placeholder {
	color: #a9a8ad;
}

.request__form-wrapper input[type="text"]:focus,
.request__form-wrapper input[type="email"]:focus,
.request__form-wrapper input[type="tel"]:focus,
.request__form-wrapper textarea:focus {
	border-color: #2c3474;
}

.request__form-wrapper select {
	width: 100%;
	background-color: #fff;
	border: 1px solid #eeedee;
	border-radius: 10px;
	padding: 15px;
	padding-right: 40px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	color: #a9a8ad;
	outline: none;
	appearance: none;
	cursor: pointer;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A9A8AD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.request__form-wrapper select:focus {
	border-color: #2c3474;
}

.request__form-wrapper .form-consent {
	margin-bottom: 17px;
}

.request__form-wrapper .form-consent,
.request__form-wrapper .form-consent p,
.request__form-wrapper .form-consent .wpcf7-form-control-wrap,
.request__form-wrapper .form-consent .wpcf7-acceptance {
	display: flex;
	align-items: center;
}

.request__form-wrapper .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: center;
}

.request__form-wrapper .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #a9a8ad;
}

.request__form-wrapper .wpcf7-list-item-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #a9a8ad;
}

.request__form-wrapper input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	border: 1px solid #a9a8ad;
	border-radius: 3px;
	appearance: none;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	margin: 0;
}

.request__form-wrapper input[type="checkbox"]:checked {
	background-color: #eb3f57;
	border-color: #eb3f57;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L4 6L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

.request__form-wrapper .consent-link {
	color: #eb3f57;
	text-decoration: none;
	transition: color 0.2s ease;
}

.request__form-wrapper .consent-link:hover {
	color: #2c3474;
}

.request__form-wrapper input[type="submit"] {
	width: 100%;
	background-color: #eb3f57;
	border: none;
	border-radius: 30px;
	padding: 17px 40px 18px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.request__form-wrapper input[type="submit"]:hover {
	background-color: #2c3474;
}

.request__form-wrapper .wpcf7-spinner {
	display: none;
}

.request__form-wrapper .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 15px;
	border-radius: 10px;
	font-size: 14px;
}

.request__form-wrapper .wpcf7-form.invalid .wpcf7-response-output,
.request__form-wrapper .wpcf7-form.unaccepted .wpcf7-response-output {
	border-color: #eb3f57;
	background-color: rgba(235, 63, 87, 0.1);
	color: #eb3f57;
}

.request__form-wrapper .wpcf7-form.sent .wpcf7-response-output {
	border-color: #46b450;
	background-color: rgba(70, 180, 80, 0.1);
	color: #46b450;
}

.request__form-wrapper .wpcf7-not-valid-tip {
	color: #eb3f57;
	font-size: 12px;
	margin-top: 5px;
	display: block;
}

.request__form-wrapper .wpcf7-not-valid {
	border-color: #eb3f57 !important;
}

/* Responsive */
@media (max-width: 1200px) {
	.request__title {
		font-size: 42px;
		line-height: 52px;
	}

	.request__form-wrapper {
		padding: 35px 25px 45px;
	}
}

@media (max-width: 768px) {
	.request {
		padding: 40px 0;
	}

	.request__header {
		margin-bottom: 30px;
	}

	.request__title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: -1px;
	}

	.request__form-wrapper {
		padding: 25px 20px 35px;
		border-radius: 18px;
	}

	.request__form-wrapper .form-row {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 16px;
	}

	.request__form-wrapper input[type="text"],
	.request__form-wrapper input[type="email"],
	.request__form-wrapper input[type="tel"],
	.request__form-wrapper textarea,
	.request__form-wrapper select {
		padding: 14px;
		font-size: 16px;
	}

	.request__form-wrapper .form-consent {
		margin-bottom: 16px;
	}

	.request__form-wrapper .wpcf7-list-item-label {
		font-size: 13px;
		line-height: 18px;
	}

	.request__form-wrapper input[type="submit"] {
		padding: 15px 30px 16px;
	}
}

@media (max-width: 480px) {
	.request__title {
		font-size: 26px;
		line-height: 34px;
	}

	.request__label {
		font-size: 12px;
	}
}
/* Partnership Section */
.partnership {
	padding: 52px 0;
}

.partnership__container {
	display: flex;
	gap: 30px;
	align-items: stretch;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 70px;
}

.partnership__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px 58px 32px 68px;
	border-left: 1px solid #eb3f57;
	min-height: 617px;
}

.partnership__top {
	max-width: 494px;
}

.partnership__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 20px;
}

.partnership__title {
	font-size: 44px;
	font-weight: 600;
	line-height: 48px;
	color: #1c1a23;
	margin: 0 0 20px;
}

.partnership__description {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	margin: 0;
}

.partnership__bottom {
	max-width: 494px;
}

.partnership__subtitle {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #1c1a23;
	margin: 0 0 10px;
}

.partnership__subtext {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #7b7882;
	margin: 0;
}

.partnership__image-wrapper {
	flex-shrink: 0;
	width: 635px;
	height: 617px;
}

.partnership__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
}

/* Responsive */
@media (max-width: 1200px) {
	.partnership__container {
		padding: 0 40px;
	}

	.partnership__content {
		padding: 24px 40px 24px 50px;
		min-height: 500px;
	}

	.partnership__title {
		font-size: 36px;
		line-height: 42px;
	}

	.partnership__image-wrapper {
		width: 500px;
		height: 500px;
	}
}

@media (max-width: 992px) {
	.partnership__container {
		flex-direction: column;
		padding: 0 30px;
	}

	.partnership__content {
		padding: 24px 0;
		border-left: none;
		border-top: 1px solid #eb3f57;
		min-height: auto;
		order: 2;
	}

	.partnership__top {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.partnership__bottom {
		max-width: 100%;
	}

	.partnership__image-wrapper {
		width: 100%;
		height: 400px;
		order: 1;
	}
}

@media (max-width: 768px) {
	.partnership {
		padding: 40px 0;
	}

	.partnership__container {
		padding: 0 20px;
	}

	.partnership__title {
		font-size: 28px;
		line-height: 36px;
	}

	.partnership__description {
		font-size: 15px;
		line-height: 24px;
	}

	.partnership__image-wrapper {
		height: 300px;
	}

	.partnership__image {
		border-radius: 20px;
	}
}

@media (max-width: 480px) {
	.partnership__title {
		font-size: 24px;
		line-height: 32px;
	}

	.partnership__subtitle {
		font-size: 18px;
		line-height: 26px;
	}

	.partnership__image-wrapper {
		height: 250px;
	}
}
/* Gallery Section */
.gallery {
	padding: 52px 0;
	overflow: hidden;
}

.gallery__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}

.gallery__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.gallery__label {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #2c3474;
}

.gallery__label--hidden {
	opacity: 0;
	visibility: hidden;
}

.gallery__title {
	flex: 1;
	font-size: 57px;
	font-weight: 600;
	line-height: 63px;
	letter-spacing: -2px;
	color: #1c1a23;
	text-align: center;
	margin: 0;
}

/* Slick Slider Gallery */
.gallery__slider-wrapper {
	position: relative;
	width: 100%;
}

.gallery__slider {
	margin: 0 -15px;
}

.gallery__slider .slick-list {
	overflow: visible;
}


.gallery__slider .slick-slide {
	padding: 0 15px;
}

/* Variable width pattern: 410px, 600px, 300px, 460px, 410px */
.gallery__slide {
	width: 410px;
}

.gallery__slide:nth-child(5n+1) {
	width: 410px;
}

.gallery__slide:nth-child(5n+2) {
	width: 600px;
}

.gallery__slide:nth-child(5n+3) {
	width: 300px;
}

.gallery__slide:nth-child(5n+4) {
	width: 460px;
}

.gallery__slide:nth-child(5n+5) {
	width: 410px;
}

.gallery__item {
	display: block;
	height: 345px;
	border-radius: 26px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
	background-color: #eeedee;
}

.gallery__item:hover {
	transform: scale(1.02);
}

.gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Fancybox Customization */
.fancybox__container {
	--fancybox-bg: rgba(0, 0, 0, 0.9);
}

.fancybox__toolbar {
	--fancybox-color: #fff;
}

.fancybox__nav {
	--fancybox-color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
	.gallery__title {
		font-size: 46px;
		line-height: 52px;
	}

	/* Scale ratio ~0.87 from desktop */
	.gallery__slide {
		width: 357px;
	}

	.gallery__slide:nth-child(5n+1) {
		width: 357px;
	}

	.gallery__slide:nth-child(5n+2) {
		width: 522px;
	}

	.gallery__slide:nth-child(5n+3) {
		width: 261px;
	}

	.gallery__slide:nth-child(5n+4) {
		width: 400px;
	}

	.gallery__slide:nth-child(5n+5) {
		width: 357px;
	}

	.gallery__item {
		height: 300px;
	}
}

@media (max-width: 992px) {
	.gallery__header {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 30px;
	}

	.gallery__label {
		text-align: center;
	}

	.gallery__label--hidden {
		display: none;
	}

	.gallery__title {
		font-size: 38px;
		line-height: 44px;
	}

	/* Scale ratio ~0.76 from desktop */
	.gallery__slide {
		width: 312px;
	}

	.gallery__slide:nth-child(5n+1) {
		width: 312px;
	}

	.gallery__slide:nth-child(5n+2) {
		width: 456px;
	}

	.gallery__slide:nth-child(5n+3) {
		width: 228px;
	}

	.gallery__slide:nth-child(5n+4) {
		width: 350px;
	}

	.gallery__slide:nth-child(5n+5) {
		width: 312px;
	}

	.gallery__slider .slick-slide {
		padding: 0 10px;
	}

	.gallery__slider {
		margin: 0 -10px;
	}
}

@media (max-width: 768px) {
	.gallery {
		padding: 40px 0;
	}

	.gallery__title {
		font-size: 32px;
		line-height: 38px;
		letter-spacing: -1px;
	}

	/* Scale ratio ~0.65 from desktop */
	.gallery__slide {
		width: 267px;
	}

	.gallery__slide:nth-child(5n+1) {
		width: 267px;
	}

	.gallery__slide:nth-child(5n+2) {
		width: 390px;
	}

	.gallery__slide:nth-child(5n+3) {
		width: 195px;
	}

	.gallery__slide:nth-child(5n+4) {
		width: 299px;
	}

	.gallery__slide:nth-child(5n+5) {
		width: 267px;
	}

	.gallery__item {
		height: 250px;
		border-radius: 20px;
	}

	.gallery__slider .slick-slide {
		padding: 0 8px;
	}

	.gallery__slider {
		margin: 0 -8px;
	}
}

@media (max-width: 480px) {
	.gallery__title {
		font-size: 26px;
		line-height: 32px;
	}

	.gallery__label {
		font-size: 12px;
	}

	/* Scale ratio ~0.55 from desktop */
	.gallery__slide {
		width: 226px;
	}

	.gallery__slide:nth-child(5n+1) {
		width: 226px;
	}

	.gallery__slide:nth-child(5n+2) {
		width: 330px;
	}

	.gallery__slide:nth-child(5n+3) {
		width: 165px;
	}

	.gallery__slide:nth-child(5n+4) {
		width: 253px;
	}

	.gallery__slide:nth-child(5n+5) {
		width: 226px;
	}

	.gallery__item {
		height: 200px;
	}

	.gallery__slider .slick-slide {
		padding: 0 6px;
	}

	.gallery__slider {
		margin: 0 -6px;
	}
}
/* News Section */
.news {
	padding: 52px 0;
}

.news__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}

.news__header {
	text-align: center;
	padding-bottom: 32px;
}

.news__title {
	font-size: 57px;
	font-weight: 600;
	line-height: 63px;
	letter-spacing: -2px;
	color: #1c1a23;
	margin: 0 0 12px;
}

.news__subtitle {
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	margin: 0;
}

/* News Grid */
.news__grid {
	display: flex;
	gap: 30px;
	justify-content: center;
}

/* News Card */
.news__card {
	width: 410px;
	flex-shrink: 0;
}

.news__card-image-link {
	display: block;
	text-decoration: none;
}

.news__card-image {
	position: relative;
	width: 410px;
	height: 231px;
	border-radius: 15px;
	overflow: hidden;
}

.news__card-image--placeholder {
	background-color: #e5e5e5;
}

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

.news__card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.news__card-image-link:hover .news__card-overlay {
	opacity: 1;
}

/* Card Content */
.news__card-content {
	padding-top: 23px;
}

.news__card-category {
	margin-bottom: 9px;
}

.news__card-category-link,
.news__card-category-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1c1a23;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news__card-category-link:hover,
.news__card-category-text:hover {
	color: #eb3f57;
	cursor: pointer;
}

.news__card-title {
	font-size: 27px;
	font-weight: 600;
	line-height: 34px;
	color: #1c1a23;
	margin: 0 0 12px;
}

.news__card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news__card-title a:hover {
	color: #eb3f57;
}

/* Meta */
.news__card-meta {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
}

.news__card-date {
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	color: #a9a8ad;
}

/* Excerpt */
.news__card-excerpt {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	max-width: 375px;
}

/* Responsive */
@media (max-width: 1320px) {
	.news__grid {
		flex-wrap: wrap;
	}

	.news__card {
		width: calc(50% - 15px);
		max-width: 410px;
	}

	.news__card-image {
		width: 100%;
	}
}

@media (max-width: 992px) {
	.news__title {
		font-size: 46px;
		line-height: 52px;
	}

	.news__card-title {
		font-size: 24px;
		line-height: 30px;
	}
}

@media (max-width: 768px) {
	.news {
		padding: 40px 0;
	}

	.news__title {
		font-size: 38px;
		line-height: 44px;
		letter-spacing: -1px;
	}

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

	.news__card {
		width: 100%;
		max-width: 410px;
	}

	.news__card-image {
		height: 200px;
	}

	.news__card-excerpt {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.news__title {
		font-size: 32px;
		line-height: 38px;
	}

	.news__card-title {
		font-size: 22px;
		line-height: 28px;
	}

	.news__card-excerpt {
		font-size: 14px;
		line-height: 22px;
	}
}
/* FAQ Section */
.faq {
	padding: 52px 0;
}

.faq__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}

.faq__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 25px;
}

.faq__content {
	display: flex;
	gap: 30px;
}

/* Left Column */
.faq__left {
	flex: 1;
	min-width: 0;
}

.faq__title {
	font-size: 57px;
	font-weight: 600;
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	margin: 0 0 28px;
	max-width: 630px;
}

.faq__description {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	margin: 0;
	max-width: 490px;
}

/* Right Column - Accordion */
.faq__right {
	flex: 1;
	min-width: 0;
	padding-top: 10px;
}

.faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* FAQ Item */
.faq__item {
	border-bottom: 1px solid #cbccc9;
	padding-bottom: 35px;
	overflow: hidden;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
}

.faq__question-text {
	font-size: 19px;
	font-weight: 600;
	line-height: 24px;
	color: #1c1a23;
	padding-right: 20px;
}

.faq__icon {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq__icon-plus,
.faq__icon-minus {
	transition: opacity 0.3s ease;
}

.faq__icon-minus {
	display: none;
}

.faq__item--active .faq__icon-plus {
	display: none;
}

.faq__item--active .faq__icon-minus {
	display: block;
}

/* Answer */
.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item--active .faq__answer {
	max-height: 500px;
}

.faq__answer-inner {
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	padding-top: 12px;
	max-width: 540px;
}

/* Active state - adjust padding */
.faq__item--active {
	padding-bottom: 31px;
}

/* Responsive */
@media (max-width: 992px) {
	.faq__content {
		flex-direction: column;
		gap: 40px;
	}

	.faq__title {
		font-size: 46px;
		line-height: 52px;
	}

	.faq__right {
		padding-top: 0;
	}
}

@media (max-width: 768px) {
	.faq {
		padding: 40px 0;
	}

	.faq__title {
		font-size: 38px;
		line-height: 44px;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}

	.faq__description {
		max-width: 100%;
	}

	.faq__accordion {
		gap: 20px;
	}

	.faq__item {
		padding-bottom: 25px;
	}

	.faq__question-text {
		font-size: 17px;
		line-height: 22px;
	}

	.faq__answer-inner {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.faq__title {
		font-size: 32px;
		line-height: 38px;
	}

	.faq__question-text {
		font-size: 16px;
		line-height: 20px;
	}

	.faq__answer-inner {
		font-size: 14px;
		line-height: 22px;
	}
}
/* SEO Content Section */
.seo {
	height: 460px;
	margin-bottom: 50px;
}

.seo__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 52px 15px;
	display: flex;
	gap: 30px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
}

/* Content Area */
.seo__content {
	flex: 1;
	min-width: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 10px;
	-webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for SEO content */
.seo__content::-webkit-scrollbar {
	width: 4px;
}

.seo__content::-webkit-scrollbar-track {
	background: #e9e9e9;
	border-radius: 2px;
}

.seo__content::-webkit-scrollbar-thumb {
	background: #EB3F57;
	border-radius: 100px;
}

.seo__content::-webkit-scrollbar-thumb:hover {
	background: #d63a4f;
}

/* Typography Styles for WYSIWYG Content */
.seo__content h2 {
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	color: #1c1a23;
	margin: 0 0 20px;
}

.seo__content h3 {
	font-size: 26px;
	font-weight: 600;
	line-height: 34px;
	color: #1c1a23;
	margin: 0 0 16px;
}

.seo__content h4 {
	font-size: 22px;
	font-weight: 600;
	line-height: 30px;
	color: #1c1a23;
	margin: 0 0 14px;
}

.seo__content h5 {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: #1c1a23;
	margin: 0 0 12px;
}

.seo__content h6 {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #1c1a23;
	margin: 0 0 10px;
}

.seo__content p {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	margin: 0 0 20px;
}

.seo__content p:last-child {
	margin-bottom: 0;
}

/* Bold and Italic */
.seo__content strong,
.seo__content b {
	font-weight: 600;
	color: #1c1a23;
}

.seo__content em,
.seo__content i {
	font-style: italic;
}

/* Lists */
.seo__content ul,
.seo__content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.seo__content ul {
	list-style-type: disc;
}

.seo__content ol {
	list-style-type: decimal;
}

.seo__content li {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #7b7882;
	margin-bottom: 8px;
}

.seo__content li:last-child {
	margin-bottom: 0;
}

.seo__content ul ul,
.seo__content ol ol,
.seo__content ul ol,
.seo__content ol ul {
	margin-top: 8px;
	margin-bottom: 0;
}

/* Links */
.seo__content a {
	color: #2c3474;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.seo__content a:hover {
	color: #eb3f57;
}

/* Blockquote */
.seo__content blockquote {
	margin: 20px 0;
	padding: 20px 24px;
	border-left: 3px solid #eb3f57;
	background-color: #f8f8f8;
}

.seo__content blockquote p {
	font-size: 18px;
	font-style: italic;
	color: #1c1a23;
	margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
	.seo__content h2 {
		font-size: 28px;
		line-height: 36px;
	}

	.seo__content h3 {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width: 768px) {
	.seo {
		height: auto;
		max-height: none;
		padding: 40px 0;
	}

	.seo__container {
		flex-direction: column;
		height: auto;
		max-height: none;
		overflow: visible;
		padding: 0 15px;
	}

	.seo__content {
		max-height: 400px;
		overflow-y: scroll;
		overflow-x: hidden;
		padding-right: 10px;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		/* Force scrollbar visibility on iOS */
		scrollbar-width: thin;
		scrollbar-color: #EB3F57 #e9e9e9;
	}

	/* iOS Safari scrollbar fix - always show */
	.seo__content::-webkit-scrollbar {
		width: 4px;
		-webkit-appearance: none;
	}

	.seo__content::-webkit-scrollbar-track {
		background: #e9e9e9;
		border-radius: 2px;
	}

	.seo__content::-webkit-scrollbar-thumb {
		background: #EB3F57;
		border-radius: 100px;
		min-height: 40px;
	}

	.seo__content h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.seo__content h3 {
		font-size: 22px;
		line-height: 30px;
	}

	.seo__content p,
	.seo__content li {
		font-size: 15px;
		line-height: 24px;
	}
}

@media (max-width: 480px) {
	.seo__content h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.seo__content h3 {
		font-size: 20px;
		line-height: 28px;
	}
}

/* Custom Scrollbar */
.custom-scrollbar {
	position: absolute;
	top: 52px;
	right: 15px;
	bottom: 52px;
	width: 4px;
	z-index: 10;
}

.custom-scrollbar__track {
	position: relative;
	width: 100%;
	height: 100%;
	background: #e9e9e9;
	border-radius: 2px;
}

.custom-scrollbar__thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #EB3F57;
	border-radius: 100px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.custom-scrollbar__thumb:hover {
	background: #d63a4f;
}

.custom-scrollbar__thumb:active {
	background: #c8354a;
}

body.is-scrollbar-dragging {
	user-select: none;
	-webkit-user-select: none;
}

/* Hide native scrollbar when custom is active */
.js-custom-scrollbar .seo__content::-webkit-scrollbar {
	width: 0;
	display: none;
}

.js-custom-scrollbar .seo__content {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

@media (max-width: 768px) {
	.custom-scrollbar {
		top: 0;
		bottom: 0;
		right: 5px;
	}

	.js-custom-scrollbar .seo__content {
		padding-right: 15px;
	}
}

/* iOS Safari - force custom scrollbar visibility */
@supports (-webkit-touch-callout: none) {
	.seo__content {
		-webkit-overflow-scrolling: touch;
	}

	/* Force show custom scrollbar on iOS */
	.custom-scrollbar {
		display: block;
		opacity: 1;
		visibility: visible;
	}

	/* Hide native scrollbar on iOS when custom is active */
	.js-custom-scrollbar .seo__content::-webkit-scrollbar {
		width: 0;
		height: 0;
		display: none;
		background: transparent;
	}
}
/* About Hero Section */

.about-hero {
	padding: 60px 0 0;
}

.about-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Breadcrumb */
.about-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 90px;
}

.about-hero__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.about-hero__breadcrumb a:hover {
	opacity: 1;
}

.about-hero__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.about-hero__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.about-hero__breadcrumb a span {
	color: inherit;
}

/* Content Layout */
.about-hero__content {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding-bottom: 140px;
}

.about-hero__left {
	width: 631px;
	flex-shrink: 0;
	padding-right: 83px;
}

.about-hero__right {
	width: 629px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

/* Images */
.about-hero__image {
	border-radius: 26px;
	overflow: hidden;
}

.about-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-hero__image--left {
	width: 547px;
	height: 632px;
}

.about-hero__image--right {
	width: 100%;
	height: 479px;
}

/* Text Content */
.about-hero__text {
	padding-bottom: 80px;
}

.about-hero__label {
	display: block;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 25px;
}

.about-hero__title {
	font-size: 52px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	margin-bottom: 28px;
}

.about-hero__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
}

/* Responsive */

@media (max-width: 1200px) {
	.about-hero__container {
		padding: 0 40px;
	}

	.about-hero__left {
		width: 50%;
		padding-right: 30px;
	}

	.about-hero__right {
		width: 50%;
	}

	.about-hero__image--left {
		width: 100%;
		height: auto;
		aspect-ratio: 547 / 632;
	}

	.about-hero__title {
		font-size: 42px;
		line-height: 52px;
	}
}

@media (max-width: 992px) {
	.about-hero__breadcrumb {
		margin-bottom: 60px;
	}

	.about-hero__content {
		flex-direction: column;
		padding-bottom: 80px;
	}

	.about-hero__left {
		width: 100%;
		padding-right: 0;
		order: 2;
	}

	.about-hero__right {
		width: 100%;
		order: 1;
	}

	.about-hero__text {
		padding-bottom: 40px;
	}

	.about-hero__image--left {
		max-width: 547px;
		height: auto;
		aspect-ratio: 547 / 632;
	}

	.about-hero__image--right {
		height: auto;
		aspect-ratio: 629 / 479;
	}

	.about-hero__title {
		font-size: 36px;
		line-height: 46px;
		letter-spacing: -1px;
	}
}

@media (max-width: 768px) {
	.about-hero {
		padding: 46px 0 0;
	}

	.about-hero__container {
		padding: 0 20px;
	}

	.about-hero__breadcrumb {
		margin-bottom: 40px;
	}

	.about-hero__content {
		gap: 24px;
		padding-bottom: 60px;
	}

	.about-hero__text {
		padding-bottom: 24px;
	}

	.about-hero__label {
		font-size: 12px;
		margin-bottom: 16px;
	}

	.about-hero__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.5px;
		margin-bottom: 20px;
	}

	.about-hero__description {
		font-size: 15px;
		line-height: 24px;
	}

	.about-hero__image {
		border-radius: 16px;
	}

	.about-hero__image--left {
		max-width: 100%;
	}
}
/* Partners Logos Section */

.partners-logos {
	padding: 0;
}

.partners-logos__container {
	max-width: 100%;
	position: relative;
	overflow: hidden;
}

.partners-logos__track {
	display: flex;
	gap: 20px;
	align-items: center;
	animation: partners-scroll 30s linear infinite;
	width: max-content;
}

.partners-logos__item {
	flex-shrink: 0;
	width: 208px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partners-logos__link {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.partners-logos__link:hover {
	opacity: 0.7;
}

.partners-logos__image {
	width: 150px;
	height: 150px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-logos__item:hover .partners-logos__image {
	filter: grayscale(0%);
	opacity: 1;
}

/* Infinite scroll animation */
@keyframes partners-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Responsive */

@media (max-width: 768px) {
	.partners-logos {
		padding: 30px 20px;
	}

	.partners-logos__item {
		width: 150px;
	}

	.partners-logos__image {
		width: 100px;
		height: 100px;
	}

	.partners-logos__track {
		gap: 15px;
		animation-duration: 20s;
	}
}
/* Categories Slider Section */

.categories-slider {
	padding: 140px 0 0;
	overflow: hidden;
}

.categories-slider__container {
	max-width: 100%;
}

.categories-slider__track {
	display: flex;
	gap: 0;
}

.categories-slider__item {
	flex: 1;
	min-width: 0;
	position: relative;
}

.categories-slider__link {
	display: block;
	position: relative;
}

.categories-slider__image-wrap {
	position: relative;
	width: 100%;
	height: 451px;
	overflow: hidden;
}

.categories-slider__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.categories-slider__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 2, 29, 0.2);
	pointer-events: none;
	transition: background 0.3s ease;
}

.categories-slider__item:hover .categories-slider__image {
	transform: scale(1.05);
}

.categories-slider__item:hover .categories-slider__overlay {
	background: rgba(6, 2, 29, 0.4);
}

.categories-slider__title {
	position: absolute;
	left: 30px;
	bottom: 33px;
	font-size: 24px;
	font-weight: var(--font-weight-semibold);
	line-height: 34px;
	color: #f8f8ff;
	z-index: 2;
}

/* Responsive */

@media (max-width: 1200px) {
	.categories-slider {
		padding-top: 100px;
	}

	.categories-slider__container {
		padding: 0 40px;
	}

	.categories-slider__image-wrap {
		height: 400px;
	}

	.categories-slider__title {
		font-size: 20px;
		line-height: 28px;
		left: 24px;
		bottom: 24px;
	}
}

@media (max-width: 768px) {
	.categories-slider {
		padding-top: 60px;
	}

	.categories-slider__container {
		padding: 0 20px;
	}

	.categories-slider__track {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		padding-bottom: 20px;
	}

	.categories-slider__track::-webkit-scrollbar {
		display: none;
	}

	.categories-slider__item {
		flex: 0 0 280px;
		scroll-snap-align: start;
	}

	.categories-slider__image-wrap {
		height: 350px;
	}

	.categories-slider__title {
		font-size: 18px;
		line-height: 26px;
		left: 20px;
		bottom: 20px;
	}
}
/* Stats Section */

.stats {
	background-color: #eeedee;
	padding: 150px 75px;
}

.stats__container {
	max-width: 1290px;
	margin: 0 auto;
	display: flex;
	gap: 30px;
}

.stats__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
}

.stats__number {
	display: flex;
	align-items: baseline;
	justify-content: center;
}

.stats__value {
	font-size: 100px;
	font-weight: var(--font-weight-semibold);
	line-height: 90px;
	letter-spacing: -1.7px;
	color: #1c1a23;
}

.stats__suffix {
	font-size: 100px;
	font-weight: var(--font-weight-semibold);
	line-height: 90px;
	letter-spacing: -1.7px;
	color: #1c1a23;
}

.stats__label {
	font-size: 19px;
	font-weight: var(--font-weight-semibold);
	line-height: 23px;
	color: #1c1a23;
	text-align: center;
}

/* Responsive */

@media (max-width: 1200px) {
	.stats {
		padding: 100px 40px;
	}

	.stats__value,
	.stats__suffix {
		font-size: 80px;
		line-height: 72px;
	}

	.stats__label {
		font-size: 17px;
		line-height: 21px;
	}
}

@media (max-width: 992px) {
	.stats__container {
		flex-wrap: wrap;
	}

	.stats__item {
		flex: 0 0 calc(50% - 15px);
	}
}

@media (max-width: 768px) {
	.stats {
		padding: 60px 20px;
	}

	.stats__container {
		gap: 40px 20px;
	}

	.stats__value,
	.stats__suffix {
		font-size: 56px;
		line-height: 56px;
		letter-spacing: -1px;
	}

	.stats__label {
		font-size: 15px;
		line-height: 20px;
	}
}

@media (max-width: 480px) {
	.stats__item {
		flex: 0 0 100%;
	}

	.stats__value,
	.stats__suffix {
		font-size: 64px;
		line-height: 64px;
	}
}
/* Why Us Section */

.why-us {
	background-color: #eeedee;
	padding: 40px 75px 50px;
}

.why-us__container {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	gap: 30px;
}

.why-us__left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: sticky;
	top: 0;
	padding-top: 90px;
	align-self: flex-start;
}

.why-us__right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Content */
.why-us__content {
	max-width: 630px;
}

.why-us__label {
	display: block;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 25px;
}

.why-us__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	margin-bottom: 28px;
}

.why-us__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	margin-bottom: 30px;
}

.why-us__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background-color: #EB3F57;
	border-radius: 30px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	color: #FFFFFF;
	text-align: center;
	transition: background-color 0.2s ease;
}

.why-us__button:hover {
	background-color: #d63a4f;
}

/* Reviews Embed */
.why-us__reviews {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.why-us__reviews-row {
	display: flex;
	gap: 32px;
}

.why-us__reviews-embed {
	width: 296px;
	height: 183px;
	overflow: hidden;
}

/* Images Grid (fallback) */
.why-us__images {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.why-us__images-row {
	display: flex;
	gap: 32px;
}

.why-us__image-card {
	width: 296px;
	height: 183px;
	border-radius: 0;
	overflow: hidden;
	background: #ffffff;
}

.why-us__image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Steps */
.why-us__step {
	background: #ffffff;
	border: 1px solid #cbccc9;
	border-radius: 26px;
	padding: 56px 51px 43px;
	height: 320px;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 0;
}

.why-us__step-label {
	display: block;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 44px;
}

.why-us__step-content {
	margin-top: auto;
}

.why-us__step-title {
	font-size: 28px;
	font-weight: var(--font-weight-semibold);
	line-height: 34px;
	color: #1c1a23;
	margin-bottom: 10px;
}

.why-us__step-description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
}

/* Responsive */

@media (max-width: 1200px) {
	.why-us {
		padding: 40px 40px 50px;
	}

	.why-us__left {
		padding-top: 60px;
	}

	.why-us__title {
		font-size: 42px;
		line-height: 52px;
	}

	.why-us__step {
		padding: 40px 30px 35px;
		height: 280px;
	}

	.why-us__step-title {
		font-size: 24px;
		line-height: 30px;
	}

	.why-us__reviews-embed,
	.why-us__image-card {
		width: 240px;
		height: 160px;
	}
}

@media (max-width: 992px) {
	.why-us__container {
		flex-direction: column;
	}

	.why-us__left {
		position: static;
		padding-top: 0;
		width: 100%;
	}

	.why-us__right {
		width: 100%;
	}

	.why-us__title {
		font-size: 36px;
		line-height: 46px;
	}

	.why-us__step {
		position: static;
	}

	.why-us__step-label {
		margin-bottom: 24px;
	}

	.why-us__reviews-row {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.why-us {
		padding: 40px 20px;
	}

	.why-us__container {
		gap: 40px;
	}

	.why-us__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.5px;
		margin-bottom: 20px;
	}

	.why-us__description {
		font-size: 15px;
		line-height: 24px;
		margin-bottom: 24px;
	}

	.why-us__reviews-row,
	.why-us__images-row {
		flex-direction: column;
		gap: 16px;
	}

	.why-us__reviews,
	.why-us__images {
		gap: 16px;
	}

	.why-us__reviews-embed,
	.why-us__image-card {
		width: 100%;
		height: 180px;
	}

	.why-us__step {
		padding: 30px 24px 25px;
		height: auto;
		min-height: 250px;
	}

	.why-us__step-title {
		font-size: 20px;
		line-height: 26px;
	}

	.why-us__step-description {
		font-size: 15px;
		line-height: 24px;
	}

	.why-us__right {
		gap: 20px;
	}
}
/* Marquee About Section */

.marquee-about {
	position: relative;
	background: #eeedee;
	overflow: hidden;
	padding: 94px 0;
	height: 680px;
}

.marquee-about__row {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.marquee-about__row--dark {
	background: #201e28;
	transform: rotate(3deg);
	margin-left: -5%;
	margin-right: -5%;
	padding: 30px 0;
	z-index: 1;
}

.marquee-about__row--purple {
	background: #591eff;
	transform: rotate(-7deg);
	margin-left: -6%;
	margin-right: -4%;
	margin-top: -20px;
	padding: 40px 0;
	z-index: 2;
}

.marquee-about__track {
	display: inline-flex;
	white-space: nowrap;
}

.marquee-about__track--rtl {
	animation: marquee-rtl 40s linear infinite;
}

.marquee-about__track--ltr {
	animation: marquee-ltr 40s linear infinite;
}

.marquee-about__text {
	font-family: var(--font-primary);
	font-size: 100px;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	letter-spacing: -3px;
	color: #ffffff;
	padding: 0 50px;
	display: inline-block;
}

/* Animations */
@keyframes marquee-rtl {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-33.33%);
	}
}

@keyframes marquee-ltr {
	0% {
		transform: translateX(-33.33%);
	}
	100% {
		transform: translateX(0);
	}
}

/* Call Button */
.marquee-about__call-btn {
	position: absolute;
	right: 70px;
	bottom: 24px;
	width: 88px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eb3f57;
	border-radius: 50%;
	color: #ffffff;
	transition: background 0.3s ease, transform 0.3s ease;
	z-index: 10;
}

.marquee-about__call-btn:hover {
	background: #d63a4f;
	transform: scale(1.05);
}

.marquee-about__call-btn svg {
	width: 40px;
	height: 40px;
}

/* Responsive */

@media (max-width: 1200px) {
	.marquee-about__text {
		font-size: 80px;
		padding: 0 40px;
	}

	.marquee-about__call-btn {
		right: 40px;
		width: 72px;
		height: 72px;
	}

	.marquee-about__call-btn svg {
		width: 32px;
		height: 32px;
	}
}

@media (max-width: 768px) {
	.marquee-about {
		padding: 60px 0;
		height: auto;
	}

	.marquee-about__row--dark,
	.marquee-about__row--purple {
		padding: 20px 0;
	}

	.marquee-about__text {
		font-size: 48px;
		padding: 0 24px;
		letter-spacing: -1.5px;
	}

	.marquee-about__call-btn {
		right: 20px;
		bottom: 20px;
		width: 56px;
		height: 56px;
	}

	.marquee-about__call-btn svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.marquee-about__text {
		font-size: 36px;
		padding: 0 16px;
	}
}
/* Vehicles Hero Section */

.vehicles-hero {
	padding: 60px 0 0;
}

.vehicles-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Breadcrumb */
.vehicles-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 90px;
}

.vehicles-hero__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.vehicles-hero__breadcrumb a:hover {
	opacity: 1;
}

.vehicles-hero__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.vehicles-hero__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.vehicles-hero__breadcrumb a span {
	color: inherit;
}

/* Content */
.vehicles-hero__content {
	text-align: center;
	max-width: 734px;
	margin: 0 auto;
	padding-bottom: 50px;
}

.vehicles-hero__label {
	display: block;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 25px;
}

.vehicles-hero__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -2px;
	color: #1c1a23;
	margin-bottom: 28px;
}

.vehicles-hero__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	max-width: 674px;
	margin: 0 auto;
}

/* Responsive */

@media (max-width: 1200px) {
	.vehicles-hero__container {
		padding: 0 40px;
	}

	.vehicles-hero__title {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (max-width: 992px) {
	.vehicles-hero__breadcrumb {
		margin-bottom: 60px;
	}

	.vehicles-hero__title {
		font-size: 40px;
		line-height: 48px;
		letter-spacing: -1.5px;
	}
}

@media (max-width: 768px) {
	.vehicles-hero {
		padding: 46px 0 0;
	}

	.vehicles-hero__container {
		padding: 0 20px;
	}

	.vehicles-hero__breadcrumb {
		margin-bottom: 40px;
	}

	.vehicles-hero__content {
		padding-bottom: 30px;
	}

	.vehicles-hero__label {
		font-size: 12px;
		margin-bottom: 16px;
	}

	.vehicles-hero__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.5px;
		margin-bottom: 20px;
	}

	.vehicles-hero__description {
		font-size: 15px;
		line-height: 24px;
	}
}
/* Vehicles List Section */

.vehicles-list {
	padding: 0 0 104px;
}

.vehicles-list__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.vehicles-list__item {
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.vehicles-list__image {
	flex: 0 0 850px;
	height: 670px;
	border-radius: 26px;
	overflow: hidden;
}

.vehicles-list__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vehicles-list__content {
	flex: 1;
	background: #ffffff;
	border-radius: 26px;
	padding: 45px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vehicles-list__text {
	display: flex;
	flex-direction: column;
}

.vehicles-list__title {
	font-size: 23px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
	color: #1c1a23;
	margin-bottom: 6px;
}

.vehicles-list__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 19px;
	color: #7b7882;
	margin-bottom: 27px;
}

.vehicles-list__description {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
}

.vehicles-list__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: 14px;
	color: #1c1a23;
	transition: color 0.2s ease;
}

.vehicles-list__link:hover {
	color: #eb3f57;
}

.vehicles-list__link svg {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.vehicles-list__link:hover svg {
	transform: translateX(4px);
}

/* Responsive */

@media (max-width: 1200px) {
	.vehicles-list__container {
		padding: 0 40px;
	}

	.vehicles-list__image {
		flex: 0 0 55%;
		height: 500px;
	}

	.vehicles-list__content {
		padding: 30px;
	}
}

@media (max-width: 992px) {
	.vehicles-list__item {
		flex-direction: column;
	}

	.vehicles-list__image {
		flex: none;
		width: 100%;
		height: 400px;
	}

	.vehicles-list__content {
		padding: 30px;
		min-height: 250px;
	}

	.vehicles-list__title {
		font-size: 20px;
		line-height: 26px;
	}
}

@media (max-width: 768px) {
	.vehicles-list__container {
		padding: 0 20px;
		gap: 24px;
	}

	.vehicles-list__image {
		height: 280px;
		border-radius: 16px;
	}

	.vehicles-list__content {
		border-radius: 16px;
		padding: 24px;
		min-height: 200px;
	}

	.vehicles-list__title {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 8px;
	}

	.vehicles-list__subtitle {
		margin-bottom: 16px;
	}

	.vehicles-list__description {
		font-size: 14px;
		line-height: 22px;
	}
}
/* Contacts Hero Section */

.contacts-hero {
	padding: 60px 0 0;
}

.contacts-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Breadcrumb */
.contacts-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 90px;
}

.contacts-hero__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.contacts-hero__breadcrumb a:hover {
	opacity: 1;
}

.contacts-hero__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.contacts-hero__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.contacts-hero__breadcrumb a span {
	color: inherit;
}

/* Content */
.contacts-hero__content {
	max-width: 630px;
	padding-bottom: 80px;
}

.contacts-hero__title {
	font-size: 52px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	margin-bottom: 28px;
}

.contacts-hero__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
}

/* Responsive */

@media (max-width: 1200px) {
	.contacts-hero__container {
		padding: 0 40px;
	}

	.contacts-hero__title {
		font-size: 42px;
		line-height: 52px;
	}
}

@media (max-width: 992px) {
	.contacts-hero__breadcrumb {
		margin-bottom: 60px;
	}

	.contacts-hero__content {
		padding-bottom: 60px;
	}

	.contacts-hero__title {
		font-size: 36px;
		line-height: 46px;
		letter-spacing: -1px;
	}
}

@media (max-width: 768px) {
	.contacts-hero {
		padding: 46px 0 0;
	}

	.contacts-hero__container {
		padding: 0 20px;
	}

	.contacts-hero__breadcrumb {
		margin-bottom: 40px;
	}

	.contacts-hero__content {
		padding-bottom: 40px;
	}

	.contacts-hero__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.5px;
		margin-bottom: 20px;
	}

	.contacts-hero__description {
		font-size: 15px;
		line-height: 24px;
	}
}
/* Contacts Locations Section */

.contacts-locations {
	padding: 0;
}

.contacts-locations__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
	display: flex;
	flex-direction: column;
}

.contacts-locations__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 46px 0 45px;
	border-top: 1px solid #cbccc9;
}

.contacts-locations__item:last-child {
	border-bottom: none;
	padding-bottom: 104px;
}

.contacts-locations__city {
	flex: 1;
	max-width: 1290px;
	font-size: 35px;
	font-weight: var(--font-weight-semibold);
	line-height: 39px;
	color: #1c1a23;
}

.contacts-locations__address {
	flex: 1;
	max-width: 1290px;
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
}

.contacts-locations__contacts {
	flex: 1;
	max-width: 1290px;
	display: flex;
	flex-direction: column;
}

.contacts-locations__phone,
.contacts-locations__email {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
}

.contacts-locations__phone a,
.contacts-locations__email a {
	color: #1c1a23;
	transition: color 0.2s ease;
}

.contacts-locations__phone a:hover,
.contacts-locations__email a:hover {
	color: var(--color-accent);
}

/* Responsive */

@media (max-width: 1200px) {
	.contacts-locations__container {
		padding: 0 40px;
	}

	.contacts-locations__city {
		font-size: 28px;
		line-height: 34px;
	}
}

@media (max-width: 992px) {
	.contacts-locations__item {
		flex-wrap: wrap;
		gap: 20px;
		padding: 32px 0;
	}

	.contacts-locations__city {
		flex: 0 0 100%;
		max-width: 100%;
		font-size: 24px;
		line-height: 30px;
	}

	.contacts-locations__address {
		flex: 1;
	}

	.contacts-locations__contacts {
		flex: 0 0 auto;
	}
}

@media (max-width: 768px) {
	.contacts-locations__container {
		padding: 0 20px;
	}

	.contacts-locations__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 24px 0;
	}

	.contacts-locations__city {
		font-size: 22px;
		line-height: 28px;
	}

	.contacts-locations__address,
	.contacts-locations__contacts {
		flex: none;
		max-width: 100%;
	}

	.contacts-locations__phone,
	.contacts-locations__email {
		font-size: 15px;
		line-height: 24px;
	}
}
/* Contacts Map Section */

.contacts-map {
	position: relative;
	height: 830px;
}

.contacts-map__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.contacts-map__background iframe,
.contacts-map__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contacts-map__container {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	pointer-events: none;
}

.contacts-map__form-wrapper {
	background: #ffffff;
	border-radius: 26px;
	padding: 45px 30px 55px;
	width: 520px;
	flex-shrink: 0;
	pointer-events: auto;
}

.contacts-map__title {
	font-size: 35px;
	font-weight: var(--font-weight-semibold);
	line-height: 39px;
	color: #1c1a23;
	margin-bottom: 22px;
}

.contacts-map__no-form {
	font-size: 14px;
	color: #7b7882;
	text-align: center;
	padding: 20px;
}

/* Contact Form 7 Styles */
.contacts-map__form .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.contacts-map__form .wpcf7-form p {
	margin: 0 0 22px 0;
}

.contacts-map__form .wpcf7-form p:last-of-type {
	margin-bottom: 0;
}

.contacts-map__form .wpcf7-form-control-wrap {
	display: block;
}

.contacts-map__form input[type="text"],
.contacts-map__form input[type="email"],
.contacts-map__form input[type="tel"] {
	width: 100%;
	padding: 15px;
	font-size: 15px;
	font-weight: var(--font-weight-regular);
	line-height: normal;
	color: #1c1a23;
	background: #eeedee;
	border: 1px solid #eeedee;
	border-radius: 10px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	font-family: inherit;
	box-sizing: border-box;
}

.contacts-map__form textarea {
	width: 100%;
	padding: 14px 15px;
	font-size: 15px;
	font-weight: var(--font-weight-regular);
	line-height: 21px;
	color: #1c1a23;
	background: #eeedee;
	border: 1px solid #eeedee;
	border-radius: 10px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	font-family: inherit;
	box-sizing: border-box;
	resize: none;
	height: 140px;
}

.contacts-map__form input[type="text"]::placeholder,
.contacts-map__form input[type="email"]::placeholder,
.contacts-map__form input[type="tel"]::placeholder,
.contacts-map__form textarea::placeholder {
	color: #a9a8ad;
}

.contacts-map__form input[type="text"]:focus,
.contacts-map__form input[type="email"]:focus,
.contacts-map__form input[type="tel"]:focus,
.contacts-map__form textarea:focus {
	outline: none;
	border-color: #2c3474;
	background: #ffffff;
}

/* Textarea margin */
.contacts-map__form .wpcf7-form p:has(textarea) {
	margin-bottom: 20px;
}

/* Checkbox */
.contacts-map__form .wpcf7-form p:has(.wpcf7-acceptance) {
	margin-bottom: 17px;
}

.contacts-map__form .wpcf7-acceptance {
	display: flex;
	align-items: center;
	gap: 0;
}

.contacts-map__form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: center;
}

.contacts-map__form .wpcf7-acceptance .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
}

.contacts-map__form .wpcf7-acceptance input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background: #eeedee;
	border: 1px solid #eeedee;
	border-radius: 4px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	margin: 0;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contacts-map__form .wpcf7-acceptance input[type="checkbox"]:checked {
	background: #eb3f57;
	border-color: #eb3f57;
}

.contacts-map__form .wpcf7-acceptance input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%) rotate(45deg);
	width: 5px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
}

.contacts-map__form .wpcf7-acceptance .wpcf7-list-item-label {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 20px;
	color: #a9a8ad;
}

.contacts-map__form .wpcf7-acceptance .wpcf7-list-item-label a {
	color: #eb3f57;
	text-decoration: none;
}

.contacts-map__form .wpcf7-acceptance .wpcf7-list-item-label a:hover {
	text-decoration: underline;
}

/* Submit Button */
.contacts-map__form input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 17px 40px 18px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	color: #ffffff;
	background: #eb3f57;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	font-family: inherit;
}

.contacts-map__form input[type="submit"]:hover {
	background: #d63a4f;
}

/* Validation */
.contacts-map__form .wpcf7-not-valid-tip {
	display: block;
	font-size: 12px;
	color: #c62828;
	margin-top: 6px;
}

.contacts-map__form .wpcf7-not-valid {
	border-color: #c62828 !important;
}

/* Response Messages */
.contacts-map__form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 16px 20px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: 22px;
	text-align: center;
	border: none;
}

.contacts-map__form .wpcf7-mail-sent-ok,
.contacts-map__form .wpcf7 form.sent .wpcf7-response-output {
	background: #e8f5e9;
	color: #2e7d32;
}

.contacts-map__form .wpcf7-mail-sent-ng,
.contacts-map__form .wpcf7 form.failed .wpcf7-response-output,
.contacts-map__form .wpcf7 form.aborted .wpcf7-response-output {
	background: #ffebee;
	color: #c62828;
}

.contacts-map__form .wpcf7 form.invalid .wpcf7-response-output,
.contacts-map__form .wpcf7 form.unaccepted .wpcf7-response-output {
	background: #fff3e0;
	color: #e65100;
}

/* Spinner */
.contacts-map__form .wpcf7-spinner {
	display: none;
}

/* Responsive */

@media (max-width: 1200px) {
	.contacts-map__container {
		padding: 0 40px;
	}

	.contacts-map__form-wrapper {
		width: 480px;
		padding: 40px 25px 45px;
	}
}

@media (max-width: 992px) {
	.contacts-map {
		height: auto;
		display: flex;
		flex-direction: column;
	}

	.contacts-map__background {
		position: relative;
		height: 400px;
		order: 1;
	}

	.contacts-map__container {
		position: relative;
		order: 2;
		padding: 40px 40px;
		justify-content: center;
	}

	.contacts-map__form-wrapper {
		width: 100%;
		max-width: 520px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	}
}

@media (max-width: 768px) {
	.contacts-map__background {
		height: 300px;
	}

	.contacts-map__container {
		padding: 30px 20px;
	}

	.contacts-map__form-wrapper {
		padding: 30px 24px;
		border-radius: 16px;
	}

	.contacts-map__title {
		font-size: 26px;
		line-height: 34px;
		margin-bottom: 20px;
	}

	.contacts-map__form .wpcf7-form p {
		margin-bottom: 16px;
	}

	.contacts-map__form input[type="text"],
	.contacts-map__form input[type="email"],
	.contacts-map__form input[type="tel"],
	.contacts-map__form textarea {
		padding: 14px;
		font-size: 16px;
	}

	.contacts-map__form textarea {
		height: 120px;
	}

	.contacts-map__form input[type="submit"] {
		padding: 16px 30px;
	}
}
/* Contacts Offices Section */

.contacts-offices {
	background: #2c3474;
	padding: 100px 0;
}

.contacts-offices__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

.contacts-offices__header {
	margin-bottom: 60px;
}

.contacts-offices__label {
	display: block;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #ffffff;
	opacity: 0.6;
	margin-bottom: 20px;
}

.contacts-offices__title {
	font-size: 52px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #ffffff;
}

.contacts-offices__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.contacts-offices__card {
	background: #ffffff;
	border-radius: 26px;
	padding: 35px 30px;
}

.contacts-offices__city {
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	line-height: 26px;
	color: #1c1a23;
	margin-bottom: 20px;
}

.contacts-offices__company {
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 24px;
	color: #1c1a23;
	margin-bottom: 8px;
}

.contacts-offices__address {
	margin-bottom: 20px;
}

.contacts-offices__address p {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 24px;
	color: #7b7882;
	margin: 0;
}

.contacts-offices__contacts {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contacts-offices__phone,
.contacts-offices__email {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 24px;
	color: #1c1a23;
	transition: color 0.2s ease;
}

.contacts-offices__phone:hover,
.contacts-offices__email:hover {
	color: var(--color-accent);
}

/* Responsive */

@media (max-width: 1200px) {
	.contacts-offices__container {
		padding: 0 40px;
	}

	.contacts-offices__title {
		font-size: 42px;
		line-height: 52px;
	}
}

@media (max-width: 992px) {
	.contacts-offices {
		padding: 80px 0;
	}

	.contacts-offices__header {
		margin-bottom: 40px;
	}

	.contacts-offices__title {
		font-size: 36px;
		line-height: 46px;
		letter-spacing: -1px;
	}

	.contacts-offices__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.contacts-offices {
		padding: 60px 0;
	}

	.contacts-offices__container {
		padding: 0 20px;
	}

	.contacts-offices__label {
		font-size: 12px;
		margin-bottom: 16px;
	}

	.contacts-offices__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.5px;
	}

	.contacts-offices__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contacts-offices__card {
		border-radius: 16px;
		padding: 24px;
	}

	.contacts-offices__city {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 16px;
	}

	.contacts-offices__address p {
		font-size: 15px;
	}

	.contacts-offices__phone,
	.contacts-offices__email {
		font-size: 15px;
	}
}
/* Blog Hero Section */

.blog-hero {
	padding: 60px 0 0;
}

.blog-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Breadcrumb */
.blog-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 90px;
}

.blog-hero__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.blog-hero__breadcrumb a:hover {
	opacity: 1;
}

.blog-hero__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.blog-hero__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.blog-hero__breadcrumb a span {
	color: inherit;
}

/* Title */
.blog-hero__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -2px;
	color: #1c1a23;
	text-align: center;
	margin-bottom: 16px;
}

/* Category Filters */
.blog-hero__filters {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.blog-hero__filter {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: var(--font-weight-semibold);
	line-height: 16px;
	color: #1c1a23;
	background: #eeedee;
	border-radius: 88px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-hero__filter:hover {
	background: #e5e4e5;
}

.blog-hero__filter--active {
	background: #eb3f57;
	color: #ffffff;
}

.blog-hero__filter--active:hover {
	background: #d63a4f;
}

/* Responsive */

@media (max-width: 1200px) {
	.blog-hero__container {
		padding: 0 40px;
	}

	.blog-hero__title {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (max-width: 992px) {
	.blog-hero__breadcrumb {
		margin-bottom: 60px;
	}

	.blog-hero__title {
		font-size: 42px;
		line-height: 50px;
		letter-spacing: -1.5px;
	}

	.blog-hero__filters {
		gap: 12px;
	}

	.blog-hero__filter {
		padding: 12px 16px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.blog-hero {
		padding: 46px 0 0;
	}

	.blog-hero__container {
		padding: 0 20px;
	}

	.blog-hero__breadcrumb {
		margin-bottom: 40px;
	}

	.blog-hero__title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}

	.blog-hero__filters {
		gap: 10px;
	}

	.blog-hero__filter {
		padding: 10px 14px;
		font-size: 13px;
	}
}
/* Blog Posts Section */

.blog-posts {
	padding: 80px 0;
}

.blog-posts__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Posts Grid */
.blog-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 30px;
	margin-bottom: 24px;
}

/* Blog Card */
.blog-card {
	display: flex;
	flex-direction: column;
}

.blog-card__image-link {
	display: block;
	margin-bottom: 23px;
}

.blog-card__image {
	width: 100%;
	height: 231px;
	object-fit: cover;
	border-radius: 15px;
	transition: opacity 0.2s ease;
}

.blog-card__image-link:hover .blog-card__image {
	opacity: 0.9;
}

.blog-card__image--placeholder {
	background: #eeedee;
}

.blog-card__content {
	display: flex;
	flex-direction: column;
}

.blog-card__category {
	display: inline-block;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 19px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 9px;
	transition: color 0.2s ease;
}

.blog-card__category:hover {
	color: var(--color-accent);
}

.blog-card__title-link {
	display: block;
}

.blog-card__title {
	font-size: 27px;
	font-weight: var(--font-weight-semibold);
	line-height: 34px;
	color: #1c1a23;
	margin: 0;
	transition: color 0.2s ease;
}

.blog-card__title-link:hover .blog-card__title {
	color: var(--color-accent);
}

.blog-card__meta {
	margin-top: 12px;
	margin-bottom: 12px;
}

.blog-card__date {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 21px;
	color: #a9a8ad;
}

.blog-card__excerpt {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Pagination */
.blog-posts__pagination {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	flex-wrap: wrap;
}

.blog-posts__pagination a,
.blog-posts__pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 48px;
	text-align: center;
	color: #1c1a23;
	background: #eeedee;
	border: 1px solid #cbccc9;
	border-radius: 10px;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-posts__pagination a:hover {
	background: #e5e4e5;
	border-color: #b5b6b3;
}

.blog-posts__pagination span.current,
.blog-posts__pagination .current {
	background: #201e28;
	border-color: #201e28;
	color: #f8f8ff;
}

.blog-posts__pagination .dots {
	background: transparent;
	border: none;
	color: #1c1a23;
}

.blog-posts__pagination .next,
.blog-posts__pagination .prev {
	padding: 17px 22px;
}

.blog-posts__pagination .next svg,
.blog-posts__pagination .prev svg {
	width: 6px;
	height: 14px;
	color: currentColor;
}

.blog-posts__pagination .prev svg {
	transform: rotate(180deg);
}

/* Empty State */
.blog-posts__empty {
	text-align: center;
	padding: 60px 20px;
}

.blog-posts__empty p {
	font-size: 18px;
	font-weight: var(--font-weight-regular);
	line-height: 28px;
	color: #7b7882;
	margin: 0;
}

/* Responsive */

@media (max-width: 1200px) {
	.blog-posts__container {
		padding: 0 40px;
	}

	.blog-posts__grid {
		gap: 24px;
	}

	.blog-card__title {
		font-size: 24px;
		line-height: 30px;
	}
}

@media (max-width: 992px) {
	.blog-posts {
		padding: 80px 0;
	}

	.blog-posts__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 24px;
	}

	.blog-card__image {
		height: 200px;
	}

	.blog-card__title {
		font-size: 22px;
		line-height: 28px;
	}

	.blog-card__excerpt {
		-webkit-line-clamp: 4;
	}
}

@media (max-width: 768px) {
	.blog-posts {
		padding: 60px 0;
	}

	.blog-posts__container {
		padding: 0 20px;
	}

	.blog-posts__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.blog-card__image {
		height: 220px;
	}

	.blog-card__title {
		font-size: 20px;
		line-height: 26px;
	}

	.blog-card__category {
		font-size: 12px;
		letter-spacing: 0.8px;
	}

	.blog-card__excerpt {
		font-size: 15px;
		line-height: 24px;
		-webkit-line-clamp: 3;
	}

	.blog-posts__pagination a,
	.blog-posts__pagination span {
		width: 44px;
		height: 44px;
		font-size: 14px;
		line-height: 42px;
	}
}
/* Single Post Page */

/* Breadcrumb Section */
.single-post__breadcrumb-section {
	padding: 60px 0 0;
}

.single-post__breadcrumb-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Hero Section */
.single-post__hero {
	padding: 0;
}

.single-post__container {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Breadcrumb */
.single-post__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 90px;
}

.single-post__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.single-post__breadcrumb a:hover {
	opacity: 1;
}

.single-post__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.single-post__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 300px;
}

.single-post__breadcrumb a span {
	color: inherit;
}

/* Category */
.single-post__category-wrapper {
	margin-bottom: 16px;
}

.single-post__category {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #f8f8ff;
	background: #eb3f57;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.single-post__category:hover {
	background: #d63a4f;
}

/* Title */
.single-post__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -2px;
	color: #1c1a23;
	margin-bottom: 16px;
}

/* Meta */
.single-post__meta {
	margin-bottom: 40px;
}

.single-post__date {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 21px;
	color: #a9a8ad;
}

/* Content Section */
.single-post__content-section {
	padding: 0 0 80px;
}

/* Featured Image */
.single-post__featured-image {
	margin-bottom: 60px;
	border-radius: 15px;
	overflow: hidden;
}

.single-post__featured-image img {
	width: 850px;
	height: 479px;
	max-width: 850px;
	object-fit: cover;
	display: block;
}

/* Content Styles */
.single-post__content {
}

.single-post__content p {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	margin-bottom: 20px;
}

.single-post__content p:last-child {
	margin-bottom: 0;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
	color: #1c1a23;
	margin-top: 40px;
	margin-bottom: 20px;
}

.single-post__content h2 {
	font-size: 35px;
	font-weight: var(--font-weight-semibold);
	line-height: 42px;
}

.single-post__content h3 {
	font-size: 27px;
	font-weight: var(--font-weight-semibold);
	line-height: 34px;
}

.single-post__content h4 {
	font-size: 23px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
}

.single-post__content h5 {
	font-size: 19px;
	font-weight: var(--font-weight-semibold);
	line-height: 24px;
}

.single-post__content h6 {
	font-size: 16px;
	font-weight: var(--font-weight-semibold);
	line-height: 22px;
}

/* Blockquote */
.single-post__content blockquote {
	background: #eeedee;
	border-radius: 15px;
	padding: 50px 40px;
	margin: 40px 0;
}

.single-post__content blockquote p {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	margin-bottom: 23px;
}

.single-post__content blockquote p:last-of-type {
	margin-bottom: 0;
}

.single-post__content blockquote cite {
	display: flex;
	align-items: center;
	gap: 13px;
	font-style: normal;
	margin-top: 23px;
}

.single-post__content blockquote cite::before {
	content: '';
	display: block;
	width: 38px;
	height: 2px;
	background: #591eff;
}

.single-post__content blockquote cite span {
	font-size: 19px;
	font-weight: var(--font-weight-semibold);
	line-height: 24px;
	color: #1c1a23;
}

/* Lists */
.single-post__content ul,
.single-post__content ol {
	margin: 20px 0;
	padding-left: 24px;
}

.single-post__content li {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	margin-bottom: 10px;
}

.single-post__content li:last-child {
	margin-bottom: 0;
}

/* Images in content */
.single-post__content img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	margin: 40px 0;
}

.single-post__content .wp-caption {
	max-width: 100%;
	margin: 40px 0;
}

.single-post__content .wp-caption img {
	margin: 0;
}

.single-post__content .wp-caption-text {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 21px;
	color: #a9a8ad;
	margin-top: 12px;
	text-align: center;
}

/* Links */
.single-post__content a {
	color: #591eff;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.single-post__content a:hover {
	color: #4516cc;
}

/* Related Posts Section */
.single-post__related {
	padding: 0 0 80px;
}

.single-post__related-title {
	font-size: 35px;
	font-weight: var(--font-weight-semibold);
	line-height: 39px;
	color: #1c1a23;
	margin-bottom: 28px;
}

.single-post__related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* Related Blog Card Overrides */
.single-post__related .blog-card__image-link {
	margin-bottom: 24px;
}

.single-post__related .blog-card__image {
	width: 100%;
	height: 231px;
	object-fit: cover;
}

.single-post__related .blog-card__content {
	gap: 9px;
}

.single-post__related .blog-card__category {
	margin-bottom: 0;
}

.single-post__related .blog-card__title {
	font-size: 28px;
	line-height: 34px;
}

.single-post__related .blog-card__meta {
	margin-top: 0;
	margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1200px) {
	.single-post__breadcrumb-container {
		padding: 0 40px;
	}

	.single-post__title {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (max-width: 992px) {
	.single-post__breadcrumb {
		margin-bottom: 60px;
	}

	.single-post__title {
		font-size: 42px;
		line-height: 50px;
		letter-spacing: -1.5px;
	}

	.single-post__content h2 {
		font-size: 28px;
		line-height: 36px;
	}

	.single-post__content h3 {
		font-size: 24px;
		line-height: 30px;
	}

	.single-post__related-title {
		font-size: 28px;
		line-height: 34px;
	}

	.single-post__related-grid {
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.single-post__breadcrumb-section {
		padding: 46px 0 0;
	}

	.single-post__breadcrumb-container {
		padding: 0 20px;
	}

	.single-post__breadcrumb {
		margin-top: 32px;
		margin-bottom: 40px;
		flex-wrap: wrap;
	}

	.single-post__breadcrumb span {
		max-width: 200px;
	}

	.single-post__title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: -1px;
	}

	.single-post__content-section {
		padding-bottom: 60px;
	}

	.single-post__featured-image {
		margin-bottom: 40px;
	}

	.single-post__featured-image img {
		width: 100%;
		height: auto;
		max-width: 100%;
	}

	.single-post__content blockquote {
		padding: 30px 20px;
	}

	.single-post__related {
		padding: 0 0 60px;
	}

	.single-post__related-title {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 24px;
	}

	.single-post__related .blog-card__title {
		font-size: 22px;
		line-height: 28px;
	}

	.single-post__related .blog-card__image {
		height: 200px;
	}

	.single-post__related-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
/* Services Hero Section */

.services-hero {
	padding: 60px 0 0;
	background: #eeedee;
}

.services-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px 150px;
}

/* Breadcrumb */
.services-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 118px;
}

.services-hero__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.services-hero__breadcrumb a:hover {
	opacity: 1;
}

.services-hero__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.services-hero__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.services-hero__breadcrumb a span {
	color: inherit;
}

/* Header */
.services-hero__header {
	text-align: center;
	padding: 0 32px;
	margin-bottom: 40px;
}

.services-hero__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 12px;
}

.services-hero__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	margin-bottom: 20px;
}

.services-hero__description {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	line-height: 30px;
	color: #7b7882;
	max-width: 878px;
	margin: 0 auto;
}

/* Services Grid */
.services-hero__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 30px;
}

/* Service Card */
.services-hero__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 229px;
	padding: 20px 16px;
	border-radius: 26px;
	overflow: hidden;
	text-decoration: none;
}

.services-hero__card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.services-hero__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 89.314%),
	            linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
}

.services-hero__card-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.services-hero__card-text {
	display: flex;
	flex-direction: column;
}

.services-hero__card-title {
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
	letter-spacing: -0.4px;
	color: #ffffff;
	margin-bottom: 6px;
}

.services-hero__card-desc {
	font-size: 12px;
	font-weight: var(--font-weight-regular);
	line-height: 18px;
	letter-spacing: -0.24px;
	color: #ffffff;
}

.services-hero__card-link {
	font-size: 16px;
	font-weight: var(--font-weight-semibold);
	line-height: 20px;
	color: #ffffff;
	margin-top: auto;
	padding-top: 29px;
}

.services-hero__card:hover .services-hero__card-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 89.314%),
	            linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Responsive */

@media (max-width: 1200px) {
	.services-hero__container {
		padding: 0 40px 120px;
	}

	.services-hero__breadcrumb {
		margin-bottom: 80px;
	}

	.services-hero__title {
		font-size: 48px;
		line-height: 56px;
	}

	.services-hero__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.services-hero__container {
		padding: 0 40px 100px;
	}

	.services-hero__breadcrumb {
		margin-bottom: 60px;
	}

	.services-hero__title {
		font-size: 42px;
		line-height: 50px;
		letter-spacing: -1.5px;
	}

	.services-hero__description {
		font-size: 18px;
		line-height: 28px;
	}

	.services-hero__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.services-hero__card {
		height: 200px;
	}
}

@media (max-width: 768px) {
	.services-hero {
		padding: 46px 0 0;
	}

	.services-hero__container {
		padding: 0 20px 80px;
	}

	.services-hero__breadcrumb {
		margin-bottom: 40px;
	}

	.services-hero__header {
		padding: 0;
	}

	.services-hero__subtitle {
		font-size: 12px;
		letter-spacing: 0.8px;
	}

	.services-hero__title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: -1px;
	}

	.services-hero__description {
		font-size: 16px;
		line-height: 26px;
	}

	.services-hero__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.services-hero__card {
		height: 180px;
	}
}
/* Services Features Section */

.services-features {
	padding: 104px 0 104px;
	background: #ffffff;
}

.services-features__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Header */
.services-features__header {
	text-align: center;
	margin-bottom: 64px;
}

.services-features__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 25px;
}

.services-features__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	max-width: 732px;
	margin: 0 auto;
}

/* Content */
.services-features__content {
	display: flex;
	gap: 30px;
	min-height: 630px;
}

/* Image */
.services-features__image-wrapper {
	flex-shrink: 0;
	width: 630px;
}

.services-features__image {
	width: 100%;
	height: 630px;
	object-fit: cover;
	border-radius: 26px;
}

/* Features Grid */
.services-features__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	flex: 1;
}

/* Feature Card */
.services-features__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 36px 31px 33px;
	background: #ffffff;
	border: 1px solid #cbccc9;
	border-radius: 26px;
	min-height: 300px;
}

.services-features__card-icon {
	margin-bottom: 8px;
}

.services-features__card-icon img {
	width: 54px;
	height: 54px;
}

.services-features__card-content {
	margin-top: auto;
}

.services-features__card-title {
	font-size: 22px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
	color: #1c1a23;
	margin-bottom: 12px;
}

.services-features__card-desc {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 22px;
	color: #7b7882;
}

/* Responsive */

@media (max-width: 1200px) {
	.services-features__container {
		padding: 0 40px;
	}

	.services-features__title {
		font-size: 48px;
		line-height: 56px;
	}

	.services-features__image-wrapper {
		width: 500px;
	}

	.services-features__image {
		height: 500px;
	}

	.services-features__content {
		min-height: 500px;
	}

	.services-features__card {
		min-height: 235px;
		padding: 28px 24px;
	}
}

@media (max-width: 992px) {
	.services-features {
		padding: 80px 0 0;
	}

	.services-features__header {
		margin-bottom: 48px;
	}

	.services-features__title {
		font-size: 42px;
		line-height: 50px;
		letter-spacing: -1.5px;
	}

	.services-features__content {
		flex-direction: column;
		min-height: auto;
	}

	.services-features__image-wrapper {
		width: 100%;
	}

	.services-features__image {
		height: 400px;
	}

	.services-features__grid {
		gap: 20px;
	}

	.services-features__card {
		min-height: 200px;
	}
}

@media (max-width: 768px) {
	.services-features {
		padding: 60px 0 0;
	}

	.services-features__container {
		padding: 0 20px;
	}

	.services-features__subtitle {
		font-size: 12px;
		letter-spacing: 0.8px;
	}

	.services-features__title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: -1px;
	}

	.services-features__image {
		height: 300px;
	}

	.services-features__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.services-features__card {
		min-height: auto;
		padding: 24px 20px;
	}

	.services-features__card-icon img {
		width: 44px;
		height: 44px;
	}

	.services-features__card-title {
		font-size: 20px;
		line-height: 26px;
	}
}
/* Services About Section */

.services-about {
	padding: 64px 0;
	background: #eeedee;
}

.services-about__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Header */
.services-about__header {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

.services-about__header-left {
	flex: 1;
	padding-top: 10px;
}

.services-about__header-right {
	flex: 1;
}

.services-about__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
}

.services-about__title {
	font-size: 52px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
}

/* Images */
.services-about__images {
	display: flex;
	gap: 30px;
}

.services-about__image-wrapper {
	flex: 1;
}

.services-about__image-wrapper--1 {
	padding-top: 0;
}

.services-about__image-wrapper--2 {
	padding-top: 60px;
}

.services-about__image-wrapper--3 {
	padding-top: 120px;
}

.services-about__image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 26px;
}

/* Responsive */

@media (max-width: 1200px) {
	.services-about__container {
		padding: 0 40px;
	}

	.services-about__title {
		font-size: 44px;
		line-height: 52px;
	}

	.services-about__image {
		height: 380px;
	}

	.services-about__image-wrapper--2 {
		padding-top: 40px;
	}

	.services-about__image-wrapper--3 {
		padding-top: 80px;
	}
}

@media (max-width: 992px) {
	.services-about {
		padding: 60px 0;
	}

	.services-about__header {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 40px;
	}

	.services-about__header-left {
		padding-top: 0;
	}

	.services-about__title {
		font-size: 38px;
		line-height: 46px;
		letter-spacing: -1.5px;
	}

	.services-about__images {
		gap: 20px;
	}

	.services-about__image {
		height: 320px;
	}

	.services-about__image-wrapper--2 {
		padding-top: 30px;
	}

	.services-about__image-wrapper--3 {
		padding-top: 60px;
	}
}

@media (max-width: 768px) {
	.services-about {
		padding: 48px 0;
	}

	.services-about__container {
		padding: 0 20px;
	}

	.services-about__subtitle {
		font-size: 12px;
		letter-spacing: 0.8px;
	}

	.services-about__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -1px;
	}

	.services-about__images {
		flex-direction: column;
		gap: 16px;
	}

	.services-about__image-wrapper--1,
	.services-about__image-wrapper--2,
	.services-about__image-wrapper--3 {
		padding-top: 0;
	}

	.services-about__image {
		height: 250px;
	}
}
/* Transport Info Section */

.transport-info {
	background: #ffffff;
}

.transport-info__container {
	display: flex;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 70px;
}

/* Image */
.transport-info__image-wrapper {
	flex-shrink: 0;
	width: 635px;
}

.transport-info__image {
	width: 100%;
	height: 617px;
	object-fit: cover;
	border-radius: 26px;
}

/* Content */
.transport-info__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px 58px 32px 68px;
}

.transport-info__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 20px;
}

.transport-info__title {
	font-size: 44px;
	font-weight: var(--font-weight-semibold);
	line-height: 48px;
	color: #1c1a23;
	margin-bottom: 20px;
	max-width: 494px;
}

.transport-info__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	max-width: 494px;
}

.transport-info__description p {
	margin: 0;
}

.transport-info__description p + p {
	margin-top: 16px;
}

/* Responsive */

@media (max-width: 1200px) {
	.transport-info__container {
		padding: 0 40px;
	}

	.transport-info__image-wrapper {
		width: 500px;
	}

	.transport-info__image {
		height: 520px;
	}

	.transport-info__content {
		padding: 24px 40px;
	}

	.transport-info__title {
		font-size: 38px;
		line-height: 44px;
	}
}

@media (max-width: 992px) {
	.transport-info__container {
		flex-direction: column;
		padding: 60px 40px;
		gap: 40px;
	}

	.transport-info__image-wrapper {
		width: 100%;
	}

	.transport-info__image {
		height: 400px;
	}

	.transport-info__content {
		padding: 0;
	}

	.transport-info__title {
		font-size: 34px;
		line-height: 42px;
		max-width: 100%;
	}

	.transport-info__description {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.transport-info__container {
		padding: 48px 20px;
		gap: 32px;
	}

	.transport-info__image {
		height: 300px;
	}

	.transport-info__subtitle {
		font-size: 12px;
		letter-spacing: 0.8px;
		margin-bottom: 16px;
	}

	.transport-info__title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 16px;
	}

	.transport-info__description {
		font-size: 15px;
		line-height: 24px;
	}
}
/* Marquee Text Section - Large scrolling text */

.marquee-text {
	background: #eeedee;
	padding: 16px 0 100px;
	overflow: hidden;
}

.marquee-text__wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.marquee-text__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: marquee-text-scroll 40s linear infinite;
}

.marquee-text__content {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.marquee-text__item {
	font-family: var(--font-family-primary);
	font-size: 157px;
	font-weight: var(--font-weight-semibold);
	line-height: 126px;
	letter-spacing: -1.57px;
	text-transform: uppercase;
	color: #1c1a23;
	white-space: nowrap;
	padding-right: 86px;
}

@keyframes marquee-text-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-33.333%);
	}
}

/* Responsive */
@media (max-width: 1200px) {
	.marquee-text__item {
		font-size: 120px;
		line-height: 100px;
		letter-spacing: -1.2px;
		padding-right: 60px;
	}
}

@media (max-width: 992px) {
	.marquee-text__item {
		font-size: 90px;
		line-height: 76px;
		letter-spacing: -1px;
		padding-right: 50px;
	}
}

@media (max-width: 768px) {
	.marquee-text {
		padding: 12px 0;
	}

	.marquee-text__item {
		font-size: 60px;
		line-height: 52px;
		letter-spacing: -0.6px;
		padding-right: 40px;
	}

	.marquee-text__track {
		animation-duration: 25s;
	}
}

@media (max-width: 480px) {
	.marquee-text__item {
		font-size: 42px;
		line-height: 38px;
		letter-spacing: -0.4px;
		padding-right: 30px;
	}

	.marquee-text__track {
		animation-duration: 20s;
	}
}
/* Single Service Page */

/* Hero Section */
.single-service-hero {
	padding: 60px 0 0;
	background: #eeedee;
}

.single-service-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px 140px;
}

/* Breadcrumb */
.single-service-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 56px;
}

.single-service-hero__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.single-service-hero__breadcrumb a:hover {
	opacity: 1;
}

.single-service-hero__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.single-service-hero__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.single-service-hero__breadcrumb a span {
	color: inherit;
}

/* Content */
.single-service-hero__content {
	display: flex;
	gap: 30px;
}

/* Image */
.single-service-hero__image-wrapper {
	position: relative;
	flex-shrink: 0;
	width: 631px;
	display: flex;
	justify-content: flex-end;
	padding-right: 84px;
}

.single-service-hero__image {
	width: 548px;
	height: 632px;
	object-fit: cover;
	border-radius: 26px;
}

.single-service-hero__badge {
	position: absolute;
	top: 24px;
	left: auto;
	right: 108px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 12px 8px 10px;
	background: #eaf0f7;
	border-radius: 32px;
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: normal;
	color: #344054;
}

.single-service-hero__badge svg {
	flex-shrink: 0;
}

/* Text */
.single-service-hero__text {
	flex: 1;
	max-width: 629px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.single-service-hero__text-content {
	display: flex;
	flex-direction: column;
}

.single-service-hero__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 25px;
}

.single-service-hero__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	margin-bottom: 16px;
}

.single-service-hero__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.single-service-hero__description p {
	margin: 0;
}

.single-service-hero__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 17px 40px 18px;
	background: #eb3f57;
	border-radius: 30px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	color: #ffffff;
	text-decoration: none;
	transition: background 0.2s ease;
}

.single-service-hero__button:hover {
	background: #d93049;
}

/* Responsive */
@media (max-width: 1200px) {
	.single-service-hero__container {
		padding: 0 40px 100px;
	}

	.single-service-hero__breadcrumb {
		margin-bottom: 40px;
	}

	.single-service-hero__image-wrapper {
		width: 500px;
		padding-right: 40px;
	}

	.single-service-hero__image {
		width: 460px;
		height: 520px;
	}

	.single-service-hero__badge {
		right: 64px;
	}

	.single-service-hero__title {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (max-width: 992px) {
	.single-service-hero__container {
		padding: 0 40px 80px;
	}

	.single-service-hero__breadcrumb {
		margin-top: 24px;
		margin-bottom: 24px;
	}

	.single-service-hero__content {
		flex-direction: column;
		gap: 32px;
	}

	.single-service-hero__image-wrapper {
		width: 100%;
		padding-right: 0;
		justify-content: center;
	}

	.single-service-hero__image {
		width: 100%;
		height: 400px;
	}

	.single-service-hero__badge {
		right: auto;
		left: 24px;
	}

	.single-service-hero__text {
		max-width: 100%;
	}

	.single-service-hero__title {
		font-size: 40px;
		line-height: 48px;
	}
}

@media (max-width: 768px) {
	.single-service-hero {
		padding: 46px 0 0;
	}

	.single-service-hero__container {
		padding: 0 20px 60px;
	}

	.single-service-hero__breadcrumb {
		margin-top: 32px;
		margin-bottom: 20px;
	}

	.single-service-hero__breadcrumb a,
	.single-service-hero__breadcrumb span {
		font-size: 12px;
	}

	.single-service-hero__image {
		height: 320px;
		border-radius: 20px;
	}

	.single-service-hero__badge {
		top: 16px;
		left: 16px;
		padding: 6px 10px 6px 8px;
		font-size: 12px;
	}

	.single-service-hero__text {
		gap: 24px;
	}

	.single-service-hero__subtitle {
		font-size: 12px;
		letter-spacing: 0.8px;
		margin-bottom: 16px;
	}

	.single-service-hero__title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 12px;
	}

	.single-service-hero__description {
		font-size: 15px;
		line-height: 24px;
	}

	.single-service-hero__button {
		padding: 14px 32px 15px;
	}
}

@media (max-width: 480px) {
	.single-service-hero__image {
		height: 280px;
	}

	.single-service-hero__title {
		font-size: 28px;
		line-height: 36px;
	}
}
/* Service Advantages Section */

.service-advantages {
	background: #ffffff;
	padding: 104px 0;
}

.service-advantages__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
}

/* Header */
.service-advantages__header {
	text-align: center;
	margin-bottom: 32px;
}

.service-advantages__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -2px;
	color: #1c1a23;
	margin-bottom: 12px;
}

.service-advantages__description {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	max-width: 800px;
	margin: 0 auto;
}

/* Content Grid */
.service-advantages__content {
	display: flex;
	gap: 85px;
	align-items: center;
}

/* Features Column */
.service-advantages__features {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 303px;
	flex-shrink: 0;
}

/* Feature Item */
.service-advantages__feature {
	max-width: 302px;
}

.service-advantages__feature-line {
	height: 5px;
	background: transparent;
	margin-bottom: 21px;
}

.service-advantages__feature-title {
	font-size: 23px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
	color: #1c1a23;
	margin-bottom: 12px;
}

.service-advantages__feature-description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
}

/* Center Image */
.service-advantages__image-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
	max-width: 516px;
}

.service-advantages__image {
	width: 100%;
	height: 558px;
	object-fit: cover;
	border-radius: 26px;
}

/* Responsive */
@media (max-width: 1200px) {
	.service-advantages__container {
		padding: 0 40px;
	}

	.service-advantages__content {
		gap: 40px;
	}

	.service-advantages__features {
		width: 260px;
	}

	.service-advantages__feature {
		max-width: 100%;
	}

	.service-advantages__title {
		font-size: 48px;
		line-height: 56px;
	}

	.service-advantages__image {
		height: 480px;
	}
}

@media (max-width: 992px) {
	.service-advantages {
		padding: 60px 0;
	}

	.service-advantages__container {
		padding: 0 40px;
	}

	.service-advantages__content {
		flex-direction: column;
		gap: 40px;
	}

	.service-advantages__header {
		margin-bottom: 40px;
	}

	.service-advantages__title {
		font-size: 40px;
		line-height: 48px;
	}

	.service-advantages__image-wrapper {
		order: -1;
		max-width: 100%;
	}

	.service-advantages__image {
		width: 100%;
		max-width: 516px;
		height: 400px;
	}

	.service-advantages__features {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.service-advantages__feature {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.service-advantages {
		padding: 48px 0;
	}

	.service-advantages__container {
		padding: 0 20px;
	}

	.service-advantages__header {
		margin-bottom: 32px;
	}

	.service-advantages__title {
		font-size: 32px;
		line-height: 40px;
	}

	.service-advantages__description {
		font-size: 13px;
		line-height: 22px;
	}

	.service-advantages__image {
		height: 320px;
		border-radius: 20px;
	}

	.service-advantages__features {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.service-advantages__feature-line {
		height: 4px;
		margin-bottom: 16px;
	}

	.service-advantages__feature-title {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 8px;
	}

	.service-advantages__feature-description {
		font-size: 15px;
		line-height: 24px;
	}
}
/* Service Info Block Section */

.service-info-block {
	background: #ffffff;
	margin-bottom: 104px;
}

.service-info-block__container {
	display: flex;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 70px;
	gap: 30px;
}

.service-info-block--reversed .service-info-block__container {
	flex-direction: row-reverse;
}

/* Image */
.service-info-block__image-wrapper {
	flex-shrink: 0;
	width: 635px;
	height: 617px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-info-block__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
}

/* Content */
.service-info-block__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 617px;
	padding: 32px 58px 32px 68px;
}

.service-info-block--reversed .service-info-block__content {
	padding: 32px 68px 32px 68px;
}

.service-info-block__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.service-info-block--reversed .service-info-block__inner {
	justify-content: space-between;
}

.service-info-block__main {
	display: flex;
	flex-direction: column;
}

.service-info-block__subtitle {
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1c1a23;
	margin-bottom: 20px;
}

.service-info-block__title {
	font-size: 44px;
	font-weight: var(--font-weight-semibold);
	line-height: 48px;
	color: #1c1a23;
	margin-bottom: 20px;
	max-width: 494px;
}

.service-info-block__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	max-width: 494px;
	margin-bottom: 16px;
}

.service-info-block__description p {
	margin: 0;
}

.service-info-block__description p + p {
	margin-top: 16px;
}

/* Tags */
.service-info-block__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 494px;
}

.service-info-block__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	background: #eeedee;
	border-radius: 88px;
	font-size: 16px;
	font-weight: var(--font-weight-semibold);
	line-height: 16px;
	color: #1c1a23;
}

/* Bottom Content */
.service-info-block__bottom {
	display: flex;
	flex-direction: column;
	max-width: 494px;
}

.service-info-block__bottom-title {
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
	color: #1c1a23;
	margin-bottom: 10px;
}

.service-info-block__bottom-description {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 22px;
	color: #7b7882;
}

/* Accent Line Variant */
.service-info-block--accent-line .service-info-block__content {
	border-left: 1px solid #eb3f57;
}

/* Responsive */
@media (max-width: 1200px) {
	.service-info-block__container {
		padding: 0 40px;
	}

	.service-info-block__image-wrapper {
		width: 500px;
		height: 520px;
	}

	.service-info-block__content {
		height: 520px;
		padding: 24px 40px;
	}

	.service-info-block--reversed .service-info-block__content {
		padding: 24px 40px;
	}

	.service-info-block__title {
		font-size: 38px;
		line-height: 44px;
	}
}

@media (max-width: 992px) {
	.service-info-block__container {
		flex-direction: column;
		padding: 60px 40px;
		gap: 40px;
	}

	.service-info-block--reversed .service-info-block__container {
		flex-direction: column;
	}

	.service-info-block__image-wrapper {
		width: 100%;
		height: auto;
	}

	.service-info-block__image {
		height: 400px;
	}

	.service-info-block__content {
		height: auto;
		padding: 0;
	}

	.service-info-block--reversed .service-info-block__content {
		padding: 0;
	}

	.service-info-block__inner {
		height: auto;
		gap: 32px;
	}

	.service-info-block__title {
		font-size: 34px;
		line-height: 42px;
		max-width: 100%;
	}

	.service-info-block__description,
	.service-info-block__tags,
	.service-info-block__bottom {
		max-width: 100%;
	}

	.service-info-block--accent-line .service-info-block__content {
		border-left: none;
	}

	.service-info-block {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.service-info-block__container {
		padding: 48px 20px;
		gap: 32px;
	}

	.service-info-block__image {
		height: 300px;
		border-radius: 20px;
	}

	.service-info-block__subtitle {
		font-size: 12px;
		letter-spacing: 0.8px;
		margin-bottom: 16px;
	}

	.service-info-block__title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 16px;
	}

	.service-info-block__description {
		font-size: 15px;
		line-height: 24px;
	}

	.service-info-block__tags {
		gap: 8px;
	}

	.service-info-block__tag {
		padding: 10px 16px;
		font-size: 14px;
		line-height: 14px;
	}

	.service-info-block__bottom-title {
		font-size: 18px;
		line-height: 26px;
	}

	.service-info-block__bottom-description {
		font-size: 13px;
		line-height: 20px;
	}
}
/* 404 Error Page */

.error-404 {
	min-height: calc(100vh - 60px);
	padding: 40px 0 60px;
	background: #fff;
	display: flex;
	align-items: center;
}

.error-404__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 70px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Breadcrumb */
.error-404__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 40px;
	align-self: flex-start;
}

.error-404__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.error-404__breadcrumb a:hover {
	opacity: 1;
}

.error-404__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.error-404__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.error-404__breadcrumb a span {
	color: inherit;
}

.error-404__page-title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	text-align: center;
	margin-bottom: 60px;
}

.error-404__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 44.8px;
	width: 100%;
}

.error-404__code {
	font-size: 272px;
	font-weight: var(--font-weight-semibold);
	line-height: 244.8px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	text-align: center;
}

.error-404__message {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.error-404__title {
	font-size: 35px;
	font-weight: var(--font-weight-semibold);
	line-height: 39px;
	color: #1c1a23;
	text-align: center;
}

.error-404__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	text-align: center;
	margin-bottom: 24px;
}

.error-404__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background-color: #eb3f57;
	border-radius: 30px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.error-404__button:hover {
	background-color: #2c3474;
}

/* Responsive */
@media (max-width: 1200px) {
	.error-404__container {
		padding: 0 40px;
	}

	.error-404__page-title {
		font-size: 48px;
		line-height: 54px;
		margin-bottom: 50px;
	}

	.error-404__code {
		font-size: 200px;
		line-height: 180px;
	}
}

@media (max-width: 992px) {
	.error-404 {
		padding: 30px 0 50px;
	}

	.error-404__breadcrumb {
		margin-bottom: 30px;
	}

	.error-404__page-title {
		font-size: 40px;
		line-height: 46px;
		margin-bottom: 40px;
	}

	.error-404__code {
		font-size: 150px;
		line-height: 140px;
	}

	.error-404__title {
		font-size: 28px;
		line-height: 34px;
	}
}

@media (max-width: 768px) {
	.error-404 {
		padding: 20px 0 40px;
	}

	.error-404__container {
		padding: 0 20px;
	}

	.error-404__breadcrumb {
		margin-bottom: 24px;
	}

	.error-404__page-title {
		font-size: 32px;
		line-height: 38px;
		margin-bottom: 30px;
	}

	.error-404__content {
		gap: 24px;
	}

	.error-404__code {
		font-size: 100px;
		line-height: 100px;
	}

	.error-404__title {
		font-size: 24px;
		line-height: 30px;
	}

	.error-404__description {
		font-size: 15px;
		line-height: 24px;
		margin-bottom: 16px;
	}

	.error-404__button {
		padding: 16px 32px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.error-404 {
		padding: 16px 0 30px;
	}

	.error-404__page-title {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 24px;
	}

	.error-404__code {
		font-size: 80px;
		line-height: 80px;
	}

	.error-404__title {
		font-size: 22px;
		line-height: 28px;
	}
}
/* Thank You Page */

.thank-you {
	padding: 150px 0 72px;
	background: #fff;
}

.thank-you__container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.thank-you__title {
	font-size: 57px;
	font-weight: var(--font-weight-semibold);
	line-height: 63px;
	letter-spacing: -1.7px;
	color: #1c1a23;
	text-align: center;
	margin-bottom: 150px;
}

.thank-you__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.thank-you__subtitle {
	font-size: 35px;
	font-weight: var(--font-weight-semibold);
	line-height: 39px;
	color: #1c1a23;
	text-align: center;
	margin-bottom: 72px;
}

.thank-you__description {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7b7882;
	text-align: center;
	white-space: nowrap;
	padding-bottom: 24px;
}

.thank-you__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background-color: #eb3f57;
	border-radius: 30px;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.thank-you__button:hover {
	background-color: #2c3474;
}

/* Responsive */
@media (max-width: 1200px) {
	.thank-you__container {
		padding: 0 40px;
	}

	.thank-you__title {
		font-size: 48px;
		line-height: 54px;
		margin-bottom: 100px;
	}

	.thank-you__subtitle {
		font-size: 30px;
		line-height: 36px;
	}
}

@media (max-width: 992px) {
	.thank-you {
		padding: 100px 0 60px;
	}

	.thank-you__title {
		font-size: 40px;
		line-height: 46px;
		margin-bottom: 80px;
	}

	.thank-you__subtitle {
		font-size: 26px;
		line-height: 32px;
	}
}

@media (max-width: 768px) {
	.thank-you {
		padding: 80px 0 50px;
	}

	.thank-you__container {
		padding: 0 20px;
	}

	.thank-you__title {
		font-size: 32px;
		line-height: 38px;
		margin-bottom: 60px;
	}

	.thank-you__subtitle {
		font-size: 22px;
		line-height: 28px;
		margin-bottom: 40px;
	}

	.thank-you__description {
		white-space: normal;
		font-size: 15px;
		line-height: 24px;
		padding-bottom: 16px;
	}

	.thank-you__button {
		padding: 16px 32px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.thank-you {
		padding: 60px 0 40px;
	}

	.thank-you__title {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 40px;
	}

	.thank-you__subtitle {
		font-size: 20px;
		line-height: 26px;
	}
}
/* Text Page (Privacy Policy, Terms, etc.) */

.text-page {
	padding: 96px 0;
	background: #fff;
}

.text-page__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Breadcrumb */
.text-page__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	margin-bottom: 48px;
}

.text-page__breadcrumb a {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #1c1a23;
	opacity: 0.9;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.text-page__breadcrumb a:hover {
	opacity: 1;
}

.text-page__breadcrumb svg {
	flex-shrink: 0;
	color: #1c1a23;
	opacity: 0.6;
}

.text-page__breadcrumb span {
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
	color: #7B7882;
}

.text-page__breadcrumb a span {
	color: inherit;
}

/* Header Section */
.text-page__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 960px;
	margin: 0 auto 50px;
	text-align: center;
}

.text-page__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background-color: #eb3f57;
	border-radius: 6px;
	font-size: 14px;
	font-weight: var(--font-weight-semibold);
	line-height: 16px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: #f8f8ff;
}

.text-page__title {
	font-size: 48px;
	font-weight: var(--font-weight-semibold);
	line-height: 60px;
	letter-spacing: -0.96px;
	color: #101828;
}

.text-page__description {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	line-height: 30px;
	color: #667085;
	max-width: 768px;
}

/* Content Section */
.text-page__content {
	max-width: 720px;
	margin: 0 auto;
}

.text-page__content p {
	font-size: 18px;
	font-weight: var(--font-weight-regular);
	line-height: 28px;
	color: #667085;
	margin-bottom: 18px;
}

.text-page__content p:last-child {
	margin-bottom: 0;
}

.text-page__content h2 {
	font-size: 30px;
	font-weight: var(--font-weight-semibold);
	line-height: 38px;
	color: #101828;
	margin-top: 48px;
	margin-bottom: 24px;
}

.text-page__content h3 {
	font-size: 24px;
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	color: #101828;
	margin-top: 48px;
	margin-bottom: 16px;
}

.text-page__content h4 {
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	line-height: 28px;
	color: #101828;
	margin-top: 32px;
	margin-bottom: 12px;
}

.text-page__content ul,
.text-page__content ol {
	font-size: 18px;
	font-weight: var(--font-weight-regular);
	line-height: 28px;
	color: #667085;
	margin-bottom: 18px;
	padding-left: 24px;
}

.text-page__content li {
	margin-bottom: 8px;
}

.text-page__content li:last-child {
	margin-bottom: 0;
}

.text-page__content a {
	color: #eb3f57;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.text-page__content a:hover {
	color: #2c3474;
}

.text-page__content blockquote {
	border-left: 4px solid #eb3f57;
	padding-left: 20px;
	margin: 24px 0;
	font-style: italic;
}

.text-page__content strong {
	font-weight: var(--font-weight-semibold);
	color: #101828;
}

.text-page__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.text-page__content th,
.text-page__content td {
	padding: 12px 16px;
	border: 1px solid #e5e5e5;
	text-align: left;
}

.text-page__content th {
	background: #f9f9f9;
	font-weight: var(--font-weight-semibold);
	color: #101828;
}

/* Responsive */
@media (max-width: 1200px) {
	.text-page__header {
		margin-bottom: 72px;
	}

	.text-page__title {
		font-size: 42px;
		line-height: 52px;
	}
}

@media (max-width: 992px) {
	.text-page {
		padding: 72px 0;
	}

	.text-page__breadcrumb {
		margin-bottom: 36px;
	}

	.text-page__header {
		margin-bottom: 56px;
		gap: 20px;
	}

	.text-page__title {
		font-size: 36px;
		line-height: 44px;
	}

	.text-page__description {
		font-size: 18px;
		line-height: 28px;
	}

	.text-page__content h2 {
		font-size: 26px;
		line-height: 34px;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.text-page__content h3 {
		font-size: 22px;
		line-height: 28px;
		margin-top: 36px;
		margin-bottom: 14px;
	}
}

@media (max-width: 768px) {
	.text-page {
		padding: 46px 0 56px;
	}

	.text-page__container {
		padding: 0 20px;
	}

	.text-page__breadcrumb {
		margin-bottom: 28px;
	}

	.text-page__header {
		margin-bottom: 40px;
		gap: 16px;
	}

	.text-page__badge {
		font-size: 12px;
		padding: 3px 10px;
	}

	.text-page__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.5px;
	}

	.text-page__description {
		font-size: 16px;
		line-height: 26px;
	}

	.text-page__content p,
	.text-page__content ul,
	.text-page__content ol {
		font-size: 16px;
		line-height: 26px;
	}

	.text-page__content h2 {
		font-size: 22px;
		line-height: 30px;
		margin-top: 32px;
		margin-bottom: 16px;
	}

	.text-page__content h3 {
		font-size: 20px;
		line-height: 26px;
		margin-top: 28px;
		margin-bottom: 12px;
	}

	.text-page__content h4 {
		font-size: 18px;
		line-height: 24px;
		margin-top: 24px;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.text-page {
		padding: 46px 0 40px;
	}

	.text-page__header {
		margin-bottom: 32px;
	}

	.text-page__title {
		font-size: 24px;
		line-height: 32px;
	}

	.text-page__description {
		font-size: 15px;
		line-height: 24px;
	}

	.text-page__content p,
	.text-page__content ul,
	.text-page__content ol {
		font-size: 15px;
		line-height: 24px;
	}
}
/* Cookie Consent Banner */

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #1c1a23;
	padding: 20px 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent[hidden] {
	display: block;
}

.cookie-consent.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.cookie-consent__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cookie-consent__content {
	flex: 1;
}

.cookie-consent__title {
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.4;
	color: #ffffff;
	margin: 0 0 8px 0;
}

.cookie-consent__message {
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.cookie-consent__link {
	color: var(--color-primary);
	text-decoration: underline;
	transition: color 0.2s ease;
}

.cookie-consent__link:hover {
	color: #ffffff;
}

.cookie-consent__actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-consent__btn {
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: 1;
	padding: 12px 24px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.cookie-consent__btn--accept {
	background: var(--color-primary);
	color: #ffffff;
}

.cookie-consent__btn--accept:hover {
	background: #dc2626;
}

.cookie-consent__btn--settings {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--settings:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--decline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--decline:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal[hidden] {
	display: flex;
}

.cookie-modal.is-visible {
	opacity: 1;
	visibility: visible;
}

.cookie-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.cookie-modal__dialog {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.cookie-modal.is-visible .cookie-modal__dialog {
	transform: translateY(0);
}

.cookie-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px 16px;
	border-bottom: 1px solid #e5e7eb;
}

.cookie-modal__title {
	font-family: var(--font-family);
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	color: #1c1a23;
	margin: 0;
}

.cookie-modal__close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	color: #6b7280;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.cookie-modal__close:hover {
	background: #f3f4f6;
	color: #1c1a23;
}

.cookie-modal__body {
	padding: 24px;
	overflow-y: auto;
	flex: 1;
}

.cookie-modal__intro {
	font-family: var(--font-family);
	font-size: 14px;
	line-height: 1.6;
	color: #6b7280;
	margin: 0 0 24px 0;
}

.cookie-category {
	padding: 16px 0;
	border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
	border-bottom: none;
}

.cookie-category__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 8px;
}

.cookie-category__info {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.cookie-category__title {
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	color: #1c1a23;
	margin: 0;
}

.cookie-category__badge {
	font-family: var(--font-family);
	font-size: 12px;
	font-weight: var(--font-weight-medium);
	color: #059669;
	background: #d1fae5;
	padding: 4px 8px;
	border-radius: 4px;
}

.cookie-category__desc {
	font-family: var(--font-family);
	font-size: 13px;
	line-height: 1.5;
	color: #6b7280;
	margin: 0;
}

/* Cookie Toggle */
.cookie-toggle__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.cookie-toggle__label {
	position: relative;
	display: block;
	width: 48px;
	height: 26px;
	background: #d1d5db;
	border-radius: 13px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cookie-toggle__label::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background: #ffffff;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.cookie-toggle__input:checked + .cookie-toggle__label {
	background: var(--color-primary);
}

.cookie-toggle__input:checked + .cookie-toggle__label::after {
	transform: translateX(22px);
}

.cookie-toggle__label--disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cookie-modal__footer {
	display: flex;
	gap: 12px;
	padding: 16px 24px 24px;
	border-top: 1px solid #e5e7eb;
}

.cookie-modal__footer .cookie-consent__btn {
	flex: 1;
}

/* Modal Responsive */
@media (max-width: 768px) {
	.cookie-modal {
		padding: 16px;
		align-items: flex-end;
	}

	.cookie-modal__dialog {
		max-height: 80vh;
		border-radius: 16px 16px 0 0;
	}

	.cookie-modal__header {
		padding: 20px 20px 16px;
	}

	.cookie-modal__title {
		font-size: 18px;
	}

	.cookie-modal__body {
		padding: 20px;
	}

	.cookie-modal__footer {
		padding: 16px 20px 20px;
		flex-direction: column;
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.cookie-consent__container {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.cookie-consent {
		padding: 16px 0;
	}

	.cookie-consent__container {
		flex-direction: column;
		align-items: stretch;
		padding: 0 20px;
		gap: 16px;
	}

	.cookie-consent__title {
		font-size: 14px;
	}

	.cookie-consent__message {
		font-size: 13px;
	}

	.cookie-consent__actions {
		justify-content: stretch;
	}

	.cookie-consent__btn {
		flex: 1;
		text-align: center;
		padding: 14px 20px;
	}
}

@media (max-width: 375px) {
	.cookie-consent__container {
		padding: 0 16px;
	}

	.cookie-consent__actions {
		flex-direction: column;
		gap: 8px;
	}

	.cookie-consent__btn {
		width: 100%;
	}
}
