/* ELITAS — main template styles */

:root {
	--elitas-bg: #f7f4f0;
	--elitas-bg-warm: #efe8e0;
	--elitas-accent: #903c23;
	--elitas-accent-dark: #7a321e;
	--elitas-radius-btn: 10px;
	--elitas-text: #1c1917;
	--elitas-text-muted: #6b6560;
	--elitas-white: #ffffff;
	--elitas-border: rgba(28, 25, 23, 0.08);
	--elitas-radius: 16px;
	--elitas-radius-sm: 10px;
	--elitas-container: 1280px;
	--elitas-font: "Inter", Arial, sans-serif;
	--elitas-shadow: 0 20px 60px rgba(28, 25, 23, 0.08);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body.elitas-page {
	margin: 0;
	font-family: var(--elitas-font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--elitas-text);
	background: var(--elitas-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

button,
input {
	font: inherit;
}

.elitas-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.elitas-container {
	width: min(100% - 48px, var(--elitas-container));
	margin-inline: auto;
}

/* Header */
.elitas-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(247, 244, 240, 0.78);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
}

.elitas-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	min-height: 88px;
}

.elitas-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.elitas-logo__img {
	width: auto;
	height: 52px;
	max-width: 160px;
	object-fit: contain;
}

.elitas-logo--footer .elitas-logo__img {
	height: 48px;
	filter: brightness(0) invert(1);
}

.elitas-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.elitas-nav__list a {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

.elitas-nav__list a:hover {
	color: var(--elitas-accent);
}

.elitas-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.elitas-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--elitas-text);
	transition: transform 0.2s;
}

.elitas-header__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}

.elitas-header__phone {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.elitas-header__callback {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 500;
}

.elitas-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--elitas-accent);
	color: var(--elitas-white);
	font-size: 16px;
}

/* Buttons & links */
.elitas-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	border-radius: var(--elitas-radius-btn);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.elitas-btn--primary:hover {
	background: var(--elitas-accent-dark);
}

.elitas-btn--outline {
	background: transparent;
	border-color: var(--elitas-accent);
	color: var(--elitas-text);
}

.elitas-btn--outline:hover {
	background: transparent;
	border-color: var(--elitas-accent);
	color: var(--elitas-accent);
}

.elitas-link-line {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--elitas-text);
	text-decoration: none;
	border-bottom: 1px solid var(--elitas-accent);
	padding-bottom: 3px;
	transition: color 0.2s;
}

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

.elitas-link-line__arrow {
	font-size: 14px;
	line-height: 1;
}

.elitas-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--elitas-accent);
	white-space: nowrap;
}

.elitas-link-arrow span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(144, 60, 35, 0.12);
	font-size: 14px;
}

.elitas-link-arrow--underline {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.elitas-link-arrow--light {
	color: var(--elitas-white);
}

.elitas-link-arrow--light span {
	background: rgba(255, 255, 255, 0.16);
}

/* Hero */
.elitas-hero {
	position: relative;
	min-height: calc(100vh - 88px);
	min-height: calc(100svh - 88px);
	margin-top: -88px;
	padding: calc(88px + 56px) 0 36px;
	background-color: var(--elitas-bg);
	background-image: var(--elitas-hero-bg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	overflow: hidden;
}

.elitas-hero__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: calc(100vh - 88px - 92px);
	min-height: calc(100svh - 88px - 92px);
}

.elitas-hero__main {
	position: relative;
	z-index: 1;
	max-width: 560px;
	padding-top: 12px;
}

.elitas-hero__title {
	margin: 0 0 20px;
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 700;
	line-height: 1.06;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.elitas-hero__subtitle {
	margin: 0 0 32px;
	max-width: 440px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	color: var(--elitas-text);
}

.elitas-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.elitas-hero__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px 28px;
	margin: 48px 0 0;
	padding: 28px 0 0;
	list-style: none;
	border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.elitas-hero__features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.elitas-hero__features li > img {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	object-fit: contain;
}

.elitas-hero__features strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--elitas-text);
}

.elitas-hero__features li div span {
	font-size: 12px;
	color: var(--elitas-text-muted);
	line-height: 1.4;
}

.elitas-hero__dots {
	position: absolute;
	right: 0;
	bottom: 108px;
	display: flex;
	gap: 8px;
	z-index: 2;
}

.elitas-hero__dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
}

.elitas-hero__dots span.is-active {
	background: var(--elitas-accent);
}

/* Sections */
.elitas-section {
	padding: 72px 0;
}

.elitas-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
}

.elitas-section__title {
	margin: 0 0 10px;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.elitas-section__desc {
	margin: 0;
	max-width: 520px;
	color: var(--elitas-text-muted);
	font-size: 14px;
}

/* Projects */
.elitas-projects {
	padding-top: 56px;
	padding-bottom: 56px;
}

.elitas-projects__layout {
	display: grid;
	grid-template-columns: minmax(240px, 300px) 1fr;
	gap: 40px;
	align-items: stretch;
	min-width: 0;
}

.elitas-projects__side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 223px;
	min-width: 0;
}

.elitas-projects__title {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: var(--elitas-text);
}

.elitas-projects__desc {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--elitas-text);
}

.elitas-projects__link {
	margin-top: 24px;
	align-self: flex-start;
}

.elitas-projects__slider {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 223px;
	min-width: 0;
	width: 100%;
	overflow: hidden;
}

.elitas-projects__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

.elitas-projects__track::-webkit-scrollbar {
	display: none;
}

.elitas-project-card {
	position: relative;
	flex: 0 0 201px;
	width: 201px;
	height: 223px;
	overflow: hidden;
	border-radius: 12px;
	scroll-snap-align: start;
}

.elitas-project-card img {
	width: 201px;
	height: 223px;
	object-fit: cover;
}

.elitas-project-card__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
	color: var(--elitas-white);
}

.elitas-project-card__overlay h3 {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.elitas-project-card__overlay p {
	margin: 0;
	font-size: 11px;
	opacity: 0.85;
}

.elitas-slider-nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 16px;
}

.elitas-slider-nav__btn {
	width: 44px;
	height: 44px;
	border: 1px solid var(--elitas-border);
	border-radius: 50%;
	background: var(--elitas-white);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.elitas-slider-nav__btn:hover {
	border-color: var(--elitas-accent);
	color: var(--elitas-accent);
}

/* Technology */
.elitas-tech {
	margin: 24px 0 56px;
}

.elitas-tech__wrap {
	width: min(100% - 48px, var(--elitas-container));
	margin-inline: auto;
}

.elitas-tech__grid {
	display: grid;
	grid-template-columns: 36% 64%;
	min-height: auto;
	align-items: stretch;
	border-radius: 25px;
	overflow: hidden;
}

.elitas-tech__panel {
	background: var(--elitas-accent);
	color: var(--elitas-white);
	padding: 32px 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.elitas-tech__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
	padding: 0;
	background: none;
	border-radius: 0;
	width: fit-content;
}

.elitas-tech__tabs button {
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.88);
	padding: 11px 18px;
	border-radius: var(--elitas-radius-btn);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.elitas-tech__tabs button.is-active {
	background: var(--elitas-white);
	color: var(--elitas-accent);
	border-color: var(--elitas-white);
}

.elitas-tech__label {
	margin: 0 0 12px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	opacity: 0.75;
}

.elitas-tech__title {
	margin: 0 0 16px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.elitas-tech__text {
	margin: 0 0 20px;
	max-width: 420px;
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.92;
}

.elitas-tech__diagram {
	position: relative;
	background: var(--elitas-bg-warm);
	padding: 24px 28px 28px 20px;
	overflow: hidden;
	align-self: stretch;
}

.elitas-tech__diagram-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 16px;
	width: 100%;
}

.elitas-tech__diagram-inner.is-hidden {
	display: none;
}

.elitas-tech__diagram img {
	height: 340px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	margin-inline: auto;
}

.elitas-tech__layers {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 200px;
	max-width: 280px;
}

.elitas-tech__layers li {
	position: relative;
	padding-left: 14px;
	font-size: 11px;
	line-height: 1.35;
}

.elitas-tech__layers li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--elitas-accent);
}

.elitas-tech__layers em {
	display: block;
	font-style: normal;
	color: var(--elitas-text-muted);
	font-size: 11px;
}

/* Materials */
.elitas-materials {
	padding-top: 56px;
	padding-bottom: 56px;
}

.elitas-materials__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.elitas-materials__link {
	flex-shrink: 0;
	white-space: nowrap;
}

.elitas-materials__title {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: var(--elitas-text);
}

.elitas-materials__grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: flex-end;
	overflow-x: auto;
	scrollbar-width: none;
}

.elitas-materials__grid::-webkit-scrollbar {
	display: none;
}

.elitas-material-card {
	position: relative;
	flex: 0 0 194px;
	width: 194px;
	height: 193px;
	overflow: hidden;
	border-radius: 12px;
	background: transparent;
	border: none;
	box-shadow: none;
}

.elitas-material-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	display: block;
	transform: scale(1.06);
	transform-origin: center;
}

.elitas-material-card--author {
	flex: 0 0 191px;
	width: 191px;
	height: 231px;
}

.elitas-material-card--author img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	transform: scale(1.06);
	transform-origin: center;
}

.elitas-material-card__info {
	position: absolute;
	inset: auto 0 0 0;
	padding: 14px 12px 40px;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
	color: var(--elitas-white);
	pointer-events: none;
}

.elitas-material-card__info h3 {
	margin: 0 0 3px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
}

.elitas-material-card__info p {
	margin: 0;
	font-size: 11px;
	opacity: 0.9;
}

.elitas-material-card__plus {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--elitas-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color: var(--elitas-accent);
}

/* Media */
.elitas-media__link {
	flex-shrink: 0;
	white-space: nowrap;
}

.elitas-media__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.elitas-media-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--elitas-radius);
	min-height: 260px;
}

.elitas-media-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 260px;
}

.elitas-media-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--elitas-accent);
}

.elitas-media-card__caption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 20px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
	color: var(--elitas-white);
}

.elitas-media-card__caption h3 {
	margin: 0 0 4px;
	font-size: 15px;
}

.elitas-media-card__caption p {
	margin: 0;
	font-size: 12px;
	opacity: 0.85;
}

/* Services */
.elitas-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.elitas-service-card {
	display: grid;
	grid-template-columns: 104px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	border-radius: var(--elitas-radius);
	background: var(--elitas-white);
	border: 1px solid var(--elitas-border);
	transition: box-shadow 0.2s, border-color 0.2s;
}

.elitas-service-card:hover {
	box-shadow: var(--elitas-shadow);
	border-color: transparent;
}

.elitas-service-card img {
	width: 104px;
	height: 104px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.elitas-service-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 600;
}

.elitas-service-card p {
	margin: 0;
	font-size: 13px;
	color: var(--elitas-text-muted);
	line-height: 1.5;
}

.elitas-service-card__arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(144, 60, 35, 0.1);
	color: var(--elitas-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Consultation */
.elitas-consultation {
	position: relative;
	padding: 88px 0;
	overflow: hidden;
}

.elitas-consultation__bg {
	position: absolute;
	inset: 0;
}

.elitas-consultation__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(2px) brightness(0.92);
	transform: scale(1.04);
}

.elitas-consultation__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(247, 244, 240, 0.72);
}

.elitas-consultation__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.elitas-consultation__title {
	margin: 0 0 32px;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.elitas-form__fields {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 12px;
	margin-bottom: 16px;
}

.elitas-form__field input {
	width: 100%;
	min-height: 52px;
	padding: 0 20px;
	border: 1px solid rgba(28, 25, 23, 0.12);
	border-radius: var(--elitas-radius-btn);
	background: rgba(255, 255, 255, 0.92);
}

.elitas-form__field input:focus {
	outline: none;
	border-color: var(--elitas-accent);
}

.elitas-form__agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	color: var(--elitas-text-muted);
	cursor: pointer;
}

.elitas-form__agree input {
	margin-top: 3px;
	accent-color: var(--elitas-accent);
}

.elitas-form__agree a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.elitas-form__agree a:hover {
	color: var(--elitas-accent);
}

/* Footer */
.elitas-footer {
	background: var(--elitas-text);
	color: rgba(255, 255, 255, 0.82);
	padding-top: 56px;
}

.elitas-footer__top {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.elitas-footer__cols {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.elitas-footer__col h4 {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--elitas-white);
}

.elitas-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.elitas-footer__col li + li {
	margin-top: 8px;
}

.elitas-footer__col a {
	font-size: 13px;
	opacity: 0.75;
	transition: opacity 0.2s;
}

.elitas-footer__col a:hover {
	opacity: 1;
}

.elitas-footer__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
}

.elitas-footer__phone {
	font-size: 18px;
	font-weight: 600;
	color: var(--elitas-white);
}

.elitas-footer__social {
	display: flex;
	gap: 10px;
}

.elitas-footer__social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
}

.elitas-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0 28px;
	font-size: 12px;
	opacity: 0.65;
}

.elitas-footer__legal {
	display: flex;
	gap: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
	.elitas-hero__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.elitas-tech__grid {
		grid-template-columns: 1fr;
	}

	.elitas-projects__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.elitas-projects__side {
		min-height: auto;
	}

	.elitas-materials__grid {
		flex-wrap: nowrap;
	}

	.elitas-footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.elitas-header__inner {
		grid-template-columns: 1fr auto;
	}

	.elitas-projects {
		overflow: hidden;
	}

	.elitas-projects__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.elitas-projects__side {
		min-height: 0;
	}

	.elitas-projects__slider {
		min-height: 0;
		width: calc(100% + 32px);
		margin-left: -16px;
		margin-right: -16px;
	}

	.elitas-projects__track {
		padding: 0 16px;
		scroll-padding-inline: 16px;
	}

	.elitas-project-card {
		flex: 0 0 min(201px, calc(100vw - 96px));
		width: min(201px, calc(100vw - 96px));
		height: auto;
		aspect-ratio: 201 / 223;
	}

	.elitas-project-card img {
		width: 100%;
		height: 100%;
		min-height: 0;
	}

	.elitas-nav {
		order: 3;
		grid-column: 1 / -1;
	}

	.elitas-nav__toggle {
		display: block;
		margin-left: auto;
	}

	.elitas-nav__list {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 16px 0;
	}

	.elitas-nav__list.is-open {
		display: flex;
	}

	.elitas-header__contacts {
		flex-direction: column;
		align-items: flex-end;
		gap: 8px;
	}

	.elitas-header__callback span:first-child {
		display: none;
	}

	.elitas-media__grid,
	.elitas-services__grid {
		grid-template-columns: 1fr;
	}

	.elitas-form__fields {
		grid-template-columns: 1fr;
	}

	.elitas-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.elitas-tech__diagram-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.elitas-tech__diagram {
		padding: 20px 16px 24px;
	}

	.elitas-tech__diagram img {
		width: 100%;
		height: auto;
		max-height: 260px;
		margin-inline: auto;
	}

	.elitas-tech__layers {
		min-width: 0;
		max-width: none;
		width: 100%;
	}

	.elitas-tech__wrap {
		width: min(100% - 32px, var(--elitas-container));
	}

	.elitas-tech__grid {
		border-radius: 16px;
	}

	.elitas-tech__panel {
		padding: 24px 20px 28px;
	}

	.elitas-tech__tabs button {
		padding: 9px 12px;
		font-size: 10px;
	}

	.elitas-materials {
		overflow: hidden;
	}

	.elitas-materials__grid {
		width: calc(100% + 32px);
		margin-left: -16px;
		padding: 0 16px 4px;
		scroll-padding-inline: 16px;
	}

	.elitas-media__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.elitas-media-card {
		min-height: 200px;
	}

	.elitas-media-card img {
		min-height: 200px;
	}
}

@media (max-width: 640px) {
	.elitas-container {
		width: min(100% - 32px, var(--elitas-container));
	}

	.elitas-header__inner {
		min-height: 72px;
		gap: 12px;
	}

	.elitas-logo__img {
		height: 44px;
	}

	.elitas-header__phone {
		font-size: 12px;
	}

	.elitas-hero {
		min-height: auto;
		margin-top: 0;
		padding: 20px 0 28px;
		background-position: 62% center;
		background-size: cover;
	}

	.elitas-hero__inner {
		min-height: auto;
		gap: 24px;
	}

	.elitas-hero__main {
		max-width: 100%;
		padding-top: 0;
	}

	.elitas-hero__title {
		font-size: 26px;
		margin-bottom: 14px;
	}

	.elitas-hero__subtitle {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.elitas-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.elitas-hero__actions .elitas-btn {
		width: 100%;
	}

	.elitas-hero__dots {
		position: static;
		justify-content: flex-end;
		margin-top: 0;
	}

	.elitas-hero__features {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 20px;
		padding-top: 18px;
	}

	.elitas-section {
		padding: 40px 0;
	}

	.elitas-projects {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.elitas-projects__title,
	.elitas-materials__title,
	.elitas-section__title {
		font-size: 22px;
	}

	.elitas-projects__desc {
		font-size: 13px;
	}

	.elitas-projects__side {
		gap: 16px;
	}

	.elitas-projects__link {
		margin-top: 0;
	}

	.elitas-projects__slider {
		width: calc(100% + 32px);
		margin-left: -16px;
		margin-right: -16px;
	}

	.elitas-projects__track {
		padding: 0 16px;
		scroll-padding-inline: 16px;
		gap: 10px;
	}

	.elitas-project-card {
		flex: 0 0 calc(100vw - 64px);
		width: calc(100vw - 64px);
		max-width: 320px;
	}

	.elitas-materials {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.elitas-materials__grid {
		width: calc(100% + 32px);
		margin-left: -16px;
		padding: 0 16px 4px;
	}

	.elitas-tech {
		margin: 12px 0 36px;
	}

	.elitas-tech__wrap {
		width: min(100% - 32px, var(--elitas-container));
	}

	.elitas-tech__title {
		font-size: 22px;
	}

	.elitas-tech__text {
		font-size: 13px;
		max-width: none;
	}

	.elitas-tech__diagram img {
		max-height: 220px;
	}

	.elitas-service-card {
		grid-template-columns: 88px 1fr auto;
		gap: 14px;
		padding: 16px;
	}

	.elitas-service-card img {
		width: 88px;
		height: 88px;
	}

	.elitas-consultation {
		padding: 48px 0;
	}

	.elitas-consultation__title {
		font-size: 22px;
	}

	.elitas-footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.elitas-footer__contacts {
		align-items: flex-start;
	}

	.elitas-materials__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.elitas-materials__grid {
		align-items: flex-start;
	}

	.elitas-section__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.elitas-tech__panel {
		padding: 24px 18px 28px;
	}

	.elitas-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Inner pages */
.elitas-page--inner .elitas-main {
	padding-top: 0;
}

.elitas-page--about .elitas-page-body {
	background: var(--elitas-white);
}

.elitas-inner-hero {
	position: relative;
	min-height: clamp(220px, 30vh, 360px);
	margin-top: -88px;
	padding: calc(88px + 20px) 0 32px;
	background-color: var(--elitas-bg);
	background-image: var(--elitas-inner-hero-bg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	overflow: hidden;
}

.elitas-inner-hero__inner {
	display: flex;
	align-items: flex-start;
	min-height: auto;
}

.elitas-inner-hero__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding-top: 4px;
}

.elitas-inner-hero__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 700;
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--elitas-text);
}

.elitas-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--elitas-text-muted);
}

.elitas-breadcrumbs a {
	color: var(--elitas-text-muted);
	transition: color 0.2s;
}

.elitas-breadcrumbs a:hover {
	color: var(--elitas-accent);
}

.elitas-breadcrumbs__sep {
	color: rgba(28, 25, 23, 0.35);
}

.elitas-breadcrumbs__current {
	color: var(--elitas-accent);
	font-weight: 500;
}

.elitas-inner-features {
	position: relative;
	z-index: 2;
	padding: 28px 0;
	background: var(--elitas-bg);
	border-bottom: 1px solid var(--elitas-border);
	box-shadow: 0 14px 28px rgba(28, 25, 23, 0.08);
}

.elitas-inner-features__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.elitas-inner-features__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-right: 20px;
	border-right: 1px solid rgba(28, 25, 23, 0.08);
}

.elitas-inner-features__list li:last-child {
	padding-right: 0;
	border-right: 0;
}

.elitas-inner-features__list li > img {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	object-fit: contain;
}

.elitas-inner-features__list strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--elitas-text);
}

.elitas-inner-features__list li div span {
	font-size: 12px;
	color: var(--elitas-text-muted);
	line-height: 1.4;
}

.elitas-page-body {
	min-width: 0;
}

@media (max-width: 1024px) {
	.elitas-inner-features__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.elitas-inner-features__list li {
		border-right: 0;
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.elitas-inner-hero {
		min-height: clamp(200px, 28vh, 280px);
		padding: calc(88px + 32px) 0 28px;
		background-position: 72% center;
	}

	.elitas-inner-hero__inner {
		min-height: auto;
	}

	.elitas-inner-hero__title {
		font-size: clamp(24px, 7vw, 32px);
		margin-bottom: 10px;
	}

	.elitas-breadcrumbs {
		font-size: 12px;
		gap: 6px;
	}

	.elitas-inner-features {
		padding: 20px 0;
	}

	.elitas-inner-features__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}