@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
	--header-fonts: "Cormorant Garamond", serif;
	--alegreya: "Alegreya", serif;
	--mulish: "Mulish", sans-serif;
	--dark-text-color: #272727;
	--light-text-color: #fff;
	--h2-size: clamp(24px, 2.6vw, 2.5rem);
	--h1-size: clamp(32px, 3.6vw, 4.125rem);
}

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

body {
	margin: 0;
	background: #161D27;
	font-family: var(--mulish);
	font-weight: 300;
	overflow-x: hidden;
}

p {
	font-size: clamp(14px, 1.2vw, 1.1rem);
	line-height: 1.5;
	font-weight: 400;
	font-family: var(--mulish);
	margin-top: 16px;
}

ul {
	font-size: clamp(14px, 1.2vw, 1.1rem);
	line-height: 1.5;
	font-weight: 400;
	font-family: var(--mulish);
}

header {
	position: absolute;
	z-index: 2;
	width: 100%;
}

.container {
	width: 100%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.header__inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 24px;
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #4E555F;
}

.header__brand {
	display: flex;
	flex-direction: row;
	gap: 12px;
	color: #fff;
	font-family: var(--header-fonts);
	font-size: 26px;
	max-width: 268px;
	line-height: 1.04;
	align-items: center;
}

.header__actions {
	display: flex;
	flex-direction: row;
	gap: 36px;
	align-items: center;
}

.header__phone {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.phone__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.phone__label {
	color: #71B4FF;
	font-family: var(--mulish);
	font-size: 14px;
}

.phone__link {
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	font-family: var(--mulish);
	transition: 0.4s;
}

.phone__link:hover {
	color: #71B4FF;
}

.header__social {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.social__link {
	padding: 11px;
	border-radius: 999px;
	background-color: #ffffff29;
	border: 1px solid #71b4ff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease;
	will-change: background-color, transform;
}

.social__link:hover {
	background-color: #fff;
	border-color: rgba(255, 255, 255, .85);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
	transform: translateY(-1px);
}

.header__btn {
	background: #ffffff21;
	border: 1px solid #ffffff36;
	padding: 14px 20px;
	font-size: 18px;
	color: #fff;
	font-family: var(--mulish);
	cursor: pointer;
	transition: background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease, transform .2s ease;
	will-change: background-color, color, box-shadow, transform;
}

.header__btn:hover {
	background-color: #fff;
	color: #161D27;
	border-color: rgba(255, 255, 255, .85);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
	transform: translateY(-1px);
}

.burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	border-radius: 999px;
	background-color: #ffffff29;
	border: 1px solid #71b4ff;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease;
	will-change: background-color, transform;
}

.burger__lines {
	position: relative;
	width: 18px;
	height: 2px;
	background: #71b4ff;
	border-radius: 99px;
	transition: background-color .3s ease, transform .25s ease;
}

.burger__lines::before,
.burger__lines::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: #71b4ff;
	border-radius: 99px;
	transition: background-color .3s ease, transform .25s ease, top .25s ease, opacity .2s ease;
}

.burger__lines::before {
	top: -6px;
}

.burger__lines::after {
	top: 6px;
}


.burger:hover {
	background-color: #fff;
	border-color: rgba(255, 255, 255, .85);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
	transform: translateY(-1px);
}


.burger.is-open .burger__lines {
	background: transparent;
}

.burger.is-open .burger__lines::before {
	top: 0;
	transform: rotate(45deg);
}

.burger.is-open .burger__lines::after {
	top: 0;
	transform: rotate(-45deg);
}

.header__bottom {
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #4E555F;
}

.menu__ul {
	display: flex;
	flex-direction: row;
	gap: 120px;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.menu__ul_li {
	color: #fff;
	font-family: var(--mulish);
	font-size: 19px;
	transition: 0.4s;
}

.menu__ul_li:hover {
	color: #71B4FF;
}

.is-lock {
	overflow: hidden;
}

.mnav {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .55);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

.mnav__panel {
	position: absolute;
	inset: 0;
	background: #161D27;
	padding: 24px 20px;
	transform: translateY(-10px);
	opacity: 0;
	transition: transform .25s ease, opacity .25s ease;

	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 28px;
}

.mnav.is-open {
	opacity: 1;
	visibility: visible;
}

.mnav.is-open .mnav__panel {
	transform: translateY(0);
	opacity: 1;
}

.mnav__close {
	position: absolute;
	top: 27px;
	right: 18px;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #ffffff29;
	border: 1px solid #71b4ff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color .3s ease, box-shadow .3s ease, transform .2s ease, border-color .3s ease;
}

.mnav__close:hover {
	background: #fff;
	border-color: rgba(255, 255, 255, .85);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
	transform: translateY(-1px);
}

.mnav__close-lines {
	position: relative;
	width: 18px;
	height: 18px;
}

.mnav__close-lines::before,
.mnav__close-lines::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 99px;
	transform-origin: center;
	transition: background-color .3s ease;
}

.mnav__close-lines::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mnav__close-lines::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mnav__close:hover .mnav__close-lines::before,
.mnav__close:hover .mnav__close-lines::after {
	background: #161D27;
}

.mnav__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
}

.mnav__logo {
	width: 44px;
	height: auto;
}

.mnav__name {
	font-family: var(--mulish);
	font-size: 16px;
	line-height: 1.2;
	opacity: .95;
}

.mnav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	align-items: center;
	justify-items: center;
}

.mnav__link {
	display: inline-flex;
	width: fit-content;
	text-decoration: none;
	color: #fff;
	font-family: var(--mulish);
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.1;
	transition: color .25s ease, transform .2s ease;
}

.mnav__link:hover {
	color: #71b4ff;
	transform: translateX(2px);
}

.mnav__meta {
	display: grid;
	gap: 16px;
}

.mnav__phone .phone__label {
	color: #71B4FF;
	font-size: 16px;
}

.mnav__phone .phone__link {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
}

.mnav__phone .phone__link:hover {
	color: #71b4ff;
}

.mnav__meta .phone__body {
	display: flex
}

.mnav__phone {
	display: flex;
	gap: 12px;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.mnav__social {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 15px;
}

.mnav__button button {
	display: block;
	width: 100%;
	margin-top: 15px;
}

.mnav__menu {
	padding-top: 25px;
	border-top: 1px solid #4E555F;
	border-bottom: 1px solid #4E555F;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mnav__top .header__brand {
	font-size: 24px;
	max-width: 222px;
}

.mnav__top .header__logo {
	width: 34px;
}

/* ===== HERO (BEM) ===== */

.hero-top {
	padding-top: 150px;
}

.hero {
	position: relative;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	background-size: cover;
	background-position: center;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(300px, 620px);
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
}

.hero__content {
	max-width: 720px;
	padding-top: 8px;
}

.hero__meta {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.hero__meta-text {
	margin: 0;
	font-family: var(--header-fonts);
	font-size: 24px;
	line-height: 1.15;
	color: #fff;
	font-weight: 400;
}

.hero__title {
	margin: 0 0 18px;
	font-family: var(--header-fonts);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(30px, 3.6vw, 65px);
	line-height: 1.15;
}

.hero__desc {
	margin: 0 0 40px;
	max-width: 640px;
	font-family: var(--header-fonts);
	font-size: clamp(14px, 1.2vw, 22px);
	line-height: 1.4;
	color: #fff;
	font-weight: 500;
}

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

.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	text-decoration: none;
	font-family: var(--mulish);
	font-size: 18px;
	font-weight: 600;
	color: #1F2732;
	background: #71b4ff;
	border: 1px solid rgba(255, 255, 255, .22);
	transition: background-color .35s ease, color .35s ease, box-shadow .35s ease, transform .2s ease;
	will-change: transform;
}

.hero__btn:hover {
	background-color: #fff;
	color: #161D27;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
	transform: translateY(-1px);
}

.hero__btn:active {
	transform: translateY(0);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.hero__btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(113, 180, 255, .28), 0 14px 40px rgba(0, 0, 0, .18);
}

.hero__media {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: end;
	min-height: 360px;
}

.hero__photo {
	width: min(642px, 46vw);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 22px 60px rgba(0, 0, 0, .45));
	transform: translateY(8px);
}

.white-section {
	background-color: #fff;
	padding-top: 115px;
	padding-bottom: 115px;
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(260px, 420px) 1fr;
	gap: clamp(24px, 4vw, 60px);
	align-items: stretch;
}

.about__media {
	display: flex;
	justify-content: flex-start;
	align-self: stretch;
}

.about__photo-wrap {
	width: 100%;
	max-width: 480px;
	height: 100%;
	aspect-ratio: auto;
	display: flex;
	align-items: flex-start;
}

.about__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}


h2 {
	margin: 0;
	font-family: var(--alegreya);
	font-weight: 400;
	font-size: clamp(26px, 4vw, 40px);
	line-height: 1.15;
	background: linear-gradient(100deg, #303030 0%, #6c6c6c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.about__subtitle {
	font-weight: 400;
}

.about__heading {
	margin: 22px 0 10px;
	font-family: var(--alegreya);
	font-weight: 500;
	font-size: clamp(18px, 1.2vw, 24px);
	color: var(--dark-text-color);
}

.about__list {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 10px;
	margin-top: 20px;
}

.header-h2-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 25px;
}

.about__list li {
	list-style-type: disc;
}

.black-section {
	padding-top: 115px;
	padding-bottom: 115px;
	color: #fff;
}

.black-section h2 {
	background: linear-gradient(100deg, #ffffff 0%, #eeeeee 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.services__container {
	display: grid;
	grid-template-columns: 4fr 8fr;
	gap: 24px;
}

.services {
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	gap: 90px;
}

.two-column {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: stretch;
}

.service-card {
	background-color: #fff;
	padding: 30px 25px;
	border-radius: 10px;
	color: #000;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.service-card__title {
	font-family: var(--alegreya);
	font-weight: 400;
	font-size: clamp(18px, 1.2vw, 24px);
	color: var(--dark-text-color);
	text-transform: uppercase;
	line-height: 1.4;
}

.service-card__text {
	font-family: var(--alegreya);
	font-weight: 400;
	font-size: clamp(16px, 1.2vw, 20px);
	color: #5D5D5D;
	line-height: 1.4;
	margin-top: 0;
}

.service-card__link {
	color: #003374;
	display: block;
	border-bottom: 1px solid #003374;
	width: fit-content;
	font-family: var(--alegreya);
	font-weight: 400;
	font-size: 18px;
}

.header-fix {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	color: #71B4FF;
	font-size: clamp(20px, 1.4vw, 33px);
	font-family: var(--alegreya);
	font-weight: 400;
	line-height: 1.1;
	position: sticky;
	top: 20px;
}

.min-header-image {
	margin-top: 6px;
}

.one-column {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.white-section .service-card {
	border: 1px solid #375F8E;
}

.white-section .one-column {
	margin-top: 20px;
}

.white-section .header-fix {
	color: #375F8E;
}

.cta {
	padding-top: 115px;
	padding-bottom: 115px;
	color: #fff;
}

.cta-container {
	display: grid;
	grid-template-columns: 6fr 5fr;
	gap: 140px;
}

.cta h2 {
	background: linear-gradient(100deg, #ffffff 0%, #eeeeee 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.cta__col--right {
	background: #1F2732;
	padding: 30px;
}

.form__cta {
	padding: 30px;
	border: 8px solid #3C8AE8;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form__cta h3 {
	font-size: clamp(20px, 2.5vw, 33px);
	color: #fff;
	font-family: var(--alegreya);
}

.form__cta p {
	font-family: var(--alegreya);
	font-size: clamp(16px, 1.4vw, 20px);
	margin: 0;
}

.form__cta a {
	color: #3C8AE8;
}

.consult-form {
	--bg: transparent;
	--border: rgba(255, 255, 255, .35);
	--text: rgba(255, 255, 255, .78);
	--placeholder: rgba(255, 255, 255, .55);
	--btn: #71B4FF;
	--btnText: #161D27;

	width: 100%;
	max-width: 720px;
	display: grid;
	gap: 18px;
}

/* поля */
.consult-form__fields {
	display: grid;
	gap: 16px;
}

.consult-form__field {
	display: block;
}

.consult-form__input {
	width: 100%;
	height: 54px;
	padding: 0 18px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-family: var(--alegreya, var(--mulish));
	font-size: 16px;
	line-height: 1;
	outline: none;
	transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.consult-form__input::placeholder {
	color: var(--placeholder);
}

.consult-form__input:focus {
	border-color: rgba(113, 180, 255, .85);
	box-shadow: 0 0 0 4px rgba(113, 180, 255, .18);
}

/* кнопка */
.consult-form__btn {
	height: 60px;
	width: 100%;
	border: 0;
	cursor: pointer;
	background: var(--btn);
	color: var(--btnText);
	font-family: var(--mulish);
	font-size: clamp(16px, 1.1vw, 18px);
	font-weight: 500;
	transition: background-color .3s ease, color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.consult-form__btn:hover {
	background-color: #fff;
	color: #161D27;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
	transform: translateY(-1px);
}

.consult-form__btn:active {
	transform: translateY(0);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.consult-form__btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, .22), 0 14px 40px rgba(0, 0, 0, .18);
}

/* согласие */
.consult-form__agree {
	display: grid;
	grid-template-columns: 14px 1fr;
	gap: 10px;
	align-items: start;
	cursor: pointer;
	user-select: none;
}

.consult-form__checkbox {
	margin-top: 3px;
	width: 14px;
	height: 14px;
	accent-color: #71B4FF;
}

.consult-form__agree-text {
	font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .60);
}

.contacts-map__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contacts-map__panel {
	background: #fff;
	padding: 34px 34px 22px;
	min-height: 360px;
}

.contacts-map__title {
	margin: 0 0 22px;
	font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
	font-weight: 400;
	font-size: clamp(26px, 2.6vw, 40px);
	line-height: 1.05;
	color: #2c2f36;
}

.contacts-map__table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	position: relative;
}

.contacts-map__table::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: rgba(22, 29, 39, .18);
	transform: translateX(-0.5px);
}


.contacts-map__table::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: rgba(22, 29, 39, .18);
	transform: translateY(-0.5px);
}

.contacts-map__cell {
	padding: 18px 22px 25px;
	min-height: 120px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: space-between;
	    font-family: var(--alegreya);
    font-size: clamp(15px, 1.4vw, 23px);
    line-height: 1.35;
    color: rgb(36 36 36);
    text-decoration: none;
}

.contacts-map__label {
	font-family: var(--header-fonts);
	font-size: 15px;
	text-transform: uppercase;
	color: #000000;
	font-weight: 600;
}

.contacts-map__value {
	font-family: var(--alegreya);
	font-size: clamp(15px, 1.4vw, 17px);
	line-height: 1.35;
	color: rgb(36 36 36);
	text-decoration: none;
}

.contacts-map__value:hover {
	color: #71B4FF;
}

.contacts-map__value--text {
	cursor: default;
}

.contacts-map__messengers {
	display: flex;
	gap: 10px;
	align-items: center;
}

.contacts-map__m-link {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #71B4FF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .3s ease, background-color .3s ease;
}

.contacts-map__m-link:hover {
    background: #1c457e;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
}

.contacts-map__m-icon {
	width: 20px;
	height: 20px;
	display: block;
}

.contacts-map__footer {
	margin-top: 26px;
	padding-top: 14px;
	border-top: 1px solid rgba(22, 29, 39, .12);
	display: flex;
	gap: 14px;
	align-items: center;
	font-family: var(--mulish);
	font-size: 12px;
	color: rgb(0 0 0);
	flex-direction: row;
	justify-content: space-between;
}

.contacts-map__foot-link {
	color: rgb(0 0 0);
	text-decoration: none;
}

.contacts-map__foot-link:hover {
	color: #71B4FF;
}

.contacts-map__foot-right {
	text-align: right;
}

.contacts-map__map {
	background: #fff;
	min-height: 360px;
	position: relative;
	overflow: hidden;
}

.contacts-map__iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(1) saturate(0) contrast(1.05) brightness(1);
	transition: filter .35s ease;
}

.contacts-map__map:hover .contacts-map__iframe {
	filter: none;
}

.phone-footer {
	font-size: clamp(17px, 1.6vw, 24px);
}

.cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 9999;

	color: rgba(255, 255, 255, .85);
	font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
}

.cookie__inner {
	max-width: 1180px;
	margin: 0 auto;

	background: rgba(22, 29, 39, .92);
	border: 1px solid rgba(255, 255, 255, .14);
	box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
	backdrop-filter: blur(10px);

	padding: 16px 16px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
}

.cookie__title {
	font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
	font-size: 18px;
	color: #fff;
	margin-bottom: 6px;
}

.cookie__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .7);
}

.cookie__link {
	color: rgba(113, 180, 255, .95);
	text-decoration: none;
	border-bottom: 1px solid rgba(113, 180, 255, .45);
}

.cookie__link:hover {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, .55);
}

/* actions */
.cookie__actions {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.cookie__btn {
	height: 44px;
	padding: 0 16px;
	border-radius: 12px;
	cursor: pointer;
	border: 1px solid transparent;

	font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
	font-size: 14px;

	transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.cookie__btn--primary {
	background: #71B4FF;
	color: #161D27;
	border-color: rgba(255, 255, 255, .18);
}

.cookie__btn--primary:hover {
	background: #fff;
	color: #161D27;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
}

.cookie__btn--ghost {
	background: rgba(255, 255, 255, .10);
	color: rgba(255, 255, 255, .9);
	border-color: rgba(255, 255, 255, .18);
}

.cookie__btn--ghost:hover {
	background: #fff;
	color: #161D27;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
}

.cookie__btn:active {
	transform: translateY(0);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.cookie__btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(113, 180, 255, .28), 0 14px 40px rgba(0, 0, 0, .22);
}

.popup {
	position: fixed;
	inset: 0;
	z-index: 9999;

	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

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

.popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55);
}

.popup__dialog {
	position: relative;
	width: min(574px, calc(100vw - 32px));
	margin: 6vh auto;
}

/* коробка с синей рамкой */
.popup__box {
	position: relative;
	background: #1a2330;
	/* темный синий/графит */
	border: 8px solid #71B4FF;
	/* жирная синяя рамка */
	padding: clamp(22px, 3.2vw, 44px);
	box-shadow: 0 22px 70px rgba(0, 0, 0, .45);
}

/* крестик */
.popup__close {
	position: absolute;
	top: 18px;
	right: 18px;

	width: 44px;
	height: 44px;
	border-radius: 999px;

	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .18);
	cursor: pointer;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	transition: background-color .3s ease, transform .2s ease, box-shadow .3s ease, border-color .3s ease;
	z-index: 2;
}

.popup__close:hover {
	background: #fff;
	border-color: rgba(255, 255, 255, .85);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
}

.popup__close-lines {
	position: relative;
	width: 18px;
	height: 18px;
}

.popup__close-lines::before,
.popup__close-lines::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 99px;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: background-color .3s ease;
}

.popup__close-lines::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close:hover .popup__close-lines::before,
.popup__close:hover .popup__close-lines::after {
	background: #161D27;
}

/* заголовок/текст */
.popup__title {
	margin: 0 0 18px;
	font-family: var(--alegreya);
	font-weight: 400;
	color: #fff;
	font-size: clamp(24px, 3.2vw, 36px);
	line-height: 1.05;
}

.popup__lead {
	margin: 0 0 26px;
	font-family: var(--alegreya);
	font-weight: 400;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(18px, 1.55vw, 21px);
	line-height: 1.35;
}

.popup__phone {
	color: #71B4FF;
	text-decoration: none;
}

.popup__phone:hover {
	color: #fff;
	text-decoration: underline;
}

/* форма */
.popup__form {
	display: grid;
	gap: 16px;
}

.popup__input {
	width: 100%;
	height: 60px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, .35);
	background: transparent;
	color: rgba(255, 255, 255, .82);
	font-family: var(--alegreya);
	font-size: clamp(14px, 1.2vw, 18px);
	outline: none;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.popup__input::placeholder {
	color: rgba(255, 255, 255, .52);
}

.popup__input:focus {
	border-color: rgba(113, 180, 255, .9);
	box-shadow: 0 0 0 4px rgba(113, 180, 255, .18);
}

/* кнопка как на макете */
.popup__btn {
	height: 60px;
	width: 100%;
	border: 0;
	cursor: pointer;
	background: #71B4FF;
	color: #161D27;
	font-family: var(--mulish);
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 400;
	transition: background-color .35s ease, color .35s ease, box-shadow .35s ease, transform .2s ease;
}

.popup__btn:hover {
	background: #fff;
	color: #161D27;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
}

.popup__btn:active {
	transform: translateY(0);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

/* согласие */
.popup__agree {
	display: grid;
	grid-template-columns: 14px 1fr;
	gap: 10px;
	align-items: start;
	user-select: none;
	margin-top: 6px;
}

.popup__checkbox {
	margin-top: 4px;
	width: 14px;
	height: 14px;
	accent-color: #71B4FF;
}

.popup__agree-text {
	font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .58);
}

/* scroll lock */
.is-lock {
	overflow: hidden;
}

.hero-servise {
	padding-bottom: 90px;
}

.breadcrumbs {
	color: rgba(255, 255, 255, .92);
	font-family: var(--alegreya);
	font-weight: 400;
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.1;
}

.breadcrumbs__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.breadcrumbs__link {
	color: rgba(255, 255, 255, .92);
	text-decoration: none;
	transition: color .25s ease;
}

.breadcrumbs__link:hover {
	color: #71B4FF;
}

.breadcrumbs__sep {
	color: rgba(255, 255, 255, .55);
}

.breadcrumbs__item--current {
	color: #71B4FF;
}

.hero-servise__container {
	padding-top: 160px;
}

.servise__header {
	max-width: 1023px;
	display: flex;
	flex-direction: column;
	gap: 45px;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0 auto;
	padding-top: 45px;
}

.servise__header h1 {
	font-family: var(--header-fonts);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(25px, 3vw, 45px);
	line-height: 1.15;
}

.about-servise__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 25px;
}

.about-servise__content p {
	margin: 0;
}

.servise__header_subheader {
	margin: 0;
}

.methods-block {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.methods-block__item {
	padding: 40px 25px;
	background-color: #2B394C;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.methods-block__item h3 {
	font-size: clamp(18px, 2.2vw, 22px);
	font-family: var(--alegreya);
	font-weight: 300;
	text-transform: uppercase;
}

.methods-block__item p {
	font-family: var(--alegreya);
	color: #F4F4F4;
	font-size: clamp(17px, 1.2vw, 1.2rem);
}

.steps-three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.steps-block__item {
	background-color: #E4E4E4;
	padding: 35px 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.steps-block__item h3 {
	font-size: clamp(18px, 2.2vw, 22px);
	font-family: var(--alegreya);
	font-weight: 300;
	text-transform: uppercase;
}

.steps-block__item p {
	color: #5D5D5D;
	margin: 0;
	font-family: var(--alegreya);
	line-height: 1.3;
}

.contacts-block {
	margin-top: 40px;
}

.contacts-block h1 {
	font-family: var(--header-fonts);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(25px, 3vw, 45px);
	line-height: 1.15;
	margin-bottom: 35px;
}

.contacts-block {
	--bg: #0f1622;
	--card: #243244;
	--text: rgba(255, 255, 255, .78);
	--muted: rgba(255, 255, 255, .55);
	--line: rgba(255, 255, 255, .12);
	--acc: #71B4FF;

	color: var(--text);
}

/* GRID */
.contacts-block__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: stretch;
}

/* LEFT */
.contacts-block__left {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 18px;
	min-height: 520px;
}

.contacts-block__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.contacts-block__card {
	background: var(--card);
	padding: 18px 18px;
	border: 1px solid rgba(255, 255, 255, .10);
}

/* info-card */
.info-card__title {
    font-family: var(--alegreya);
    font-size: 20px;
    text-transform: uppercase;
    color: #71B4FF;
    margin-bottom: 10px;
}

.info-card__text {
    font-family: var(--header-fonts);
    font-size: 18px;
    line-height: 1.4;
    color: rgb(255 255 255);
}

.info-card__link {
    color: rgb(255 255 255);
    text-decoration: none;
    transition: color .25s ease;
    font-size: 20px;
}

.info-card__link:hover {
	color: var(--acc);
}

.info-card__icons {
	margin-top: 14px;
	display: flex;
	gap: 10px;
}

.info-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(113, 180, 255, .18);
	border: 1px solid rgba(113, 180, 255, .45);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color .3s ease, transform .2s ease, box-shadow .3s ease;
}

.info-card__icon:hover {
	background: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
}

.info-card__icon img {
	width: 20px;
	height: 20px;
	display: block;
}

.contacts-block__map {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .10);
}

.map-box__iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	display: block;
	filter: grayscale(1) saturate(0) contrast(1.05);
	transition: filter .35s ease;
}

.contacts-block__map:hover .map-box__iframe {
	filter: none;
}

.contacts-block__right {
    display: flex;
    background: #1F2732;
    padding: 30px;
}

.contacts-block__form {
	width: 100%;
	background: #1a2330;
	border: 7px solid var(--acc);
	padding: clamp(18px, 2.6vw, 34px);
	box-shadow: 0 22px 70px rgba(0, 0, 0, .45);
}

/* form-box */
.form-box__title {
	margin: 0 0 12px;
	font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
	font-weight: 400;
	color: #fff;
	font-size: clamp(28px, 2.4vw, 44px);
	line-height: 1.08;
}

.form-box__lead {
	margin: 0 0 20px;
	font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
	color: rgba(255, 255, 255, .72);
	font-size: clamp(16px, 1.3vw, 20px);
	line-height: 1.45;
}

.form-box__lead p{
	font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
	color: rgba(255, 255, 255, .72);
	font-size: clamp(16px, 1.3vw, 20px);
	line-height: 1.45;	
}

.form-box__lead a{
	color:#3C8AE8;
}

.form-box__phone {
	color: var(--acc);
	text-decoration: none;
}

.form-box__phone:hover {
	color: #fff;
	text-decoration: underline;
}

.form-box__form {
	display: grid;
	gap: 14px;
}

.form-box__input,
.form-box__textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .30);
	background: transparent;
	color: rgba(255, 255, 255, .82);
	outline: none;

	font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
	font-size: 18px;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.form-box__input {
	height: 56px;
	padding: 0 16px;
}

.form-box__textarea {
	min-height: 120px;
	padding: 14px 16px;
	resize: vertical;
}

.form-box__input::placeholder,
.form-box__textarea::placeholder {
	color: rgba(255, 255, 255, .52);
}

.form-box__input:focus,
.form-box__textarea:focus {
	border-color: rgba(113, 180, 255, .9);
	box-shadow: 0 0 0 4px rgba(113, 180, 255, .16);
}

.form-box__btn {
    height: 60px;
    width: 100%;
    border: 0;
    cursor: pointer;
    background: var(--acc);
    color: #161D27;
    font-family: var(--mulish);
    font-size: 18px;
    transition: background-color .35s ease, color .35s ease, box-shadow .35s ease, transform .2s ease;
}

.form-box__btn:hover {
	background: #fff;
	color: #161D27;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
}

.form-box__btn:active {
	transform: translateY(0);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.form-box__agree {
	display: grid;
	grid-template-columns: 14px 1fr;
	gap: 10px;
	align-items: start;
	margin-top: 4px;
	user-select: none;
}

.form-box__checkbox {
	margin-top: 4px;
	width: 14px;
	height: 14px;
	accent-color: var(--acc);
}

.form-box__agree-text {
	font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
	font-size: 12px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .55);
}

.black-footer .contacts-map__foot-left{
    color: #fff;
}
.black-footer a{
    color: #fff;
}
.policy{
  --acc: #71B4FF;
  --panel: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.78);
  --muted: rgba(255,255,255,.55);
}

/* layout */
.policy__layout{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

/* nav */
.policy__nav-inner{
  position: sticky;
  top: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px;
}

.policy__nav-title{
  font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.policy__nav-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.policy__nav-link{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.72);
  font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  font-size: 14px;
  line-height: 1.35;
  transition: background-color .25s ease, color .25s ease;
}

.policy__nav-link:hover{
  background: rgba(113,180,255,.12);
  color: #fff;
}

/* content */
.policy-text{
  color: var(--text);
}

.policy-text__section{
  scroll-margin-top: 90px;
  padding: 18px 0 6px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.policy-text__h2{
  margin: 0 0 10px;
  font-family: var(--alegreya, "Georgia", "Times New Roman", serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.15;
  color: #fff;
}

.policy-text p{
  margin: 0 0 12px;
  font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}

.policy-text__list{
  margin: 0 0 12px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-family: var(--mulish, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.policy-text__link{
  color: rgba(113,180,255,.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(113,180,255,.45);
}
.policy-text__link:hover{
  color: #fff;
  border-bottom-color: rgba(255,255,255,.55);
}

.policy-text__note{
  color: rgba(255,255,255,.55);
  font-size: 13px;
}
.policy-text__section h2{
    background: linear-gradient(100deg, #ffffff 0%, #6c6c6c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.policy-text__list li{
    list-style-type: disc;
}
.steps-two{
	grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 20px;
    align-items: stretch;
}
.steps-two-asym{
	display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 20px;
}
.popup__agree-text a{
	color:#71B4FF;
}

.form-box__agree-text a{
	color:#71B4FF;
}

/* Общая ошибка сверху формы */
.form-error{
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(220, 38, 38, .25);
  background: rgba(220, 38, 38, .08);
  font-size: 14px;
  line-height: 1.3;
}

/* Подсказки у поля */
.form-hint{
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(220, 38, 38, .9);
}

/* Ошибка поля */
.is-error{
  border-color: rgba(220, 38, 38, .55) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .12) !important;
}

/* Лоадинг формы */
form.is-loading{
  opacity: .85;
  pointer-events: none;
}

/* Success-блок вместо формы */
.form-success {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 18px;
    border-radius: 18px;
    border: 1px solid rgb(29 135 255);
    background: rgb(28 111 202);
    color: #fff;
}

.form-success__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(16, 185, 129, .14);
    color: rgb(255 255 255);
}

.form-success__title{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.form-success__text{
  font-size: 14px;
  line-height: 1.35;
  opacity: .85;
}

@media(max-width: 1420px) {
	.hero__photo {
		width: min(642px, 40vw);
	}

	.hero__grid {
		grid-template-columns: minmax(320px, 1fr) minmax(300px, 436px);
	}

	.hero__title {
		font-size: clamp(30px, 4.1vw, 65px);
	}

	.hero__desc {
		font-size: clamp(14px, 2vw, 22px);
	}

	.contacts-map__grid {
		grid-template-columns: 2fr 1.5fr;
	}

	.contacts-map__value--text br {
		display: none;
	}

	.contacts-map__cell {
		padding: 18px 17px 25px;
	}
}

@media(max-width: 1280px) {
	.cta-container {
		grid-template-columns: 6fr 6fr;
		gap: 60px;
	}

	.consult-form__agree-text {
		font-size: 11px;
	}

    .menu__ul_li {
        font-size: 17px;
    }
}

@media(max-width: 1029px) {
	.hero__meta-text {
		font-size: 20px;
	}

	.hero__grid {
		grid-template-columns: minmax(320px, 1fr) minmax(300px, 370px);
	}

	.hero__title {
		font-size: clamp(30px, 3.8vw, 65px);
	}

	.hero__meta {
		margin-bottom: 20px;
	}

	.hero__desc {
		margin: 0 0 20px;
	}

	.hero__btn {
		font-size: 16px;
	}
}

@media(max-width: 960px) {
	.header__social {
		display: none;
	}

	.header__btn {
		display: none;
	}

	.burger {
		display: inline-flex;
	}

	.header__bottom {
		display: none;
	}

	.hero-top {
		padding-top: 100px;
	}

	.hero__grid {
		grid-template-columns: minmax(320px, 1fr) minmax(300px, 341px);
	}

	.hero__meta-text {
		font-size: 18px;
	}

	.hero__meta-icon {
		width: 67px;
	}

	.hero__title {
		font-size: clamp(30px, 3.5vw, 65px);
	}

	.hero__desc {
		font-size: clamp(14px, 1.8vw, 22px);
	}

	.hero__btn {
		font-size: 14px;
	}

	h2 br {
		display: none;
	}

	.services__container {
		display: flex;
		gap: 24px;
		flex-direction: column;
	}

	.header-fix h3 br {
		display: none;
	}

	.min-header-image {
		margin-top: -2px;
	}

	.header-fix {
		position: relative;
		top: 0;
	}

	.cta-container {
		gap: 20px;
		display: flex;
		flex-direction: column;
	}

	.form__cta h3 {
		font-size: clamp(20px, 4vw, 33px);
	}

	.form__cta p {
		font-size: clamp(20px, 1.4vw, 20px);
	}

	.consult-form__agree-text {
		font-size: 13px;
	}

	.contacts-map__grid {
		display: flex;
		gap: 20px;
		flex-direction: column;
	}

	.contacts-map__map iframe {
		height: 360px;
	}

	.hero-servise__container {
		padding-top: 100px;
	}

	.breadcrumbs {
		font-size: clamp(16px, 1vw, 16px);
	}

	.servise__header {
		gap: 20px;
	}

	.methods-block {
		grid-template-columns: 1fr;
	}

	.steps-three {
		grid-template-columns: repeat(1, 1fr);
	}

	.steps-block__item p {
		font-size: clamp(17px, 1.2vw, 1.2rem);
	}

	.contacts-block__grid {
		grid-template-columns: 1fr;
	}

	.contacts-block__left {
		min-height: auto;
	}

	.map-box__iframe {
		min-height: 300px;
	}
	.steps-two{
		grid-template-columns: repeat(1, 1fr);
	}
	.steps-two-asym{
		grid-template-columns: repeat(1, 1fr);
	}
}

@media(max-width: 780px) {
	.hero__grid {
		display: flex;
		flex-direction: column;
	}

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

	.hero__title br {
		display: none;
	}

	.hero__title {
		text-align: center;
		font-size: clamp(36px, 3.5vw, 65px);
	}

	.hero__desc {
		font-size: 19px;
		text-align: center;
	}

	.hero__photo {
		width: min(642px, 50vw);
	}

	.white-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.about__grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.services {
		gap: 50px;
	}

	.cta {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.black-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

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

	.cookie__actions {
		justify-content: flex-start;
	}

	.hero-servise {
		padding-bottom: 60px;
	}
}

@media(max-width: 640px) {
	.header__brand {
		font-size: 20px;
		max-width: 186px;
	}

	.header__logo {
		width: 27px;
	}

	.phone__label {
		font-size: 13px;
	}

	.phone__link {
		font-size: 14px;
	}

	.two-column {
		grid-template-columns: repeat(1, 1fr);
	}

	.service-card {
		gap: 12px;
	}

	.service-card__link {
		font-size: 16px;
	}

	.form__cta p {
		font-size: clamp(16px, 1.4vw, 20px);
	}

	.form__cta h3 {
		font-size: 24px;
	}

	.cta__col--right {
		padding: 15px;
	}

	.form__cta {
		padding: 15px;
	}

	.form__cta {
		padding: 20px;
		border: 3px solid #3C8AE8;
		gap: 15px;
	}

	.contacts-map__table {
		display: flex;
		gap: 24px;
		position: relative;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.contacts-map__cell {
		padding: 0;
		min-height: auto;
	}

	.contacts-map__table::before {
		display: none;
	}

	.contacts-map__table::after {
		display: none;
	}

	.contacts-map__footer {
		flex-direction: column-reverse;
		justify-content: space-between;
	}

	.contacts-map__title {
		margin: 0 0 20px;
		text-align: center;
	}

	.contacts-map__messengers {
		justify-content: center;
	}

	.popup__dialog {
		margin: 4vh auto;
	}

	.popup__box {
		border-width: 6px;
	}

	.popup__input {
		height: 60px;
	}

	.popup__btn {
		height: 66px;
	}

	.contacts-block__top {
		grid-template-columns: 1fr;
	}

	.contacts-block__card {
		padding: 16px;
	}

	.contacts-block__form {
		border-width: 6px;
	}

	.form-box__input {
		height: 52px;
		font-size: 16px;
	}

	.form-box__textarea {
		min-height: 110px;
		font-size: 16px;
	}

    .form-box__btn {
        height: 50px;
        font-size: 16px;
    }
}

@media(max-width: 520px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.phone__body {
		display: none;
	}

	.header__actions {
		gap: 24px;
	}

	.burger {
		width: 39px;
		height: 39px;
		padding: 6px;
	}

	.hero__title {
		font-size: clamp(28px, 3.5vw, 65px);
	}

	.hero__media {
		min-height: auto;
	}

	.hero__photo {
		width: min(642px, 69vw);
	}

	.service-card__title {
		font-size: clamp(16px, 1.2vw, 24px);
	}

	.form__cta p {
		font-size: clamp(14px, 1.4vw, 20px);
	}

	.consult-form__btn {
		height: 54px;
		font-size: clamp(15px, 1.1vw, 18px);
	}

	.consult-form__agree-text {
		font-size: 11px;
	}

	.methods-block__item p {
		font-size: clamp(15px, 1.2vw, 1.2rem);
	}

	.methods-block__item {
		gap: 8px;
	}

	.steps-block__item p {
		font-size: clamp(15px, 1.2vw, 1.2rem);
	}

    .contacts-block__right {
        padding: 9px;
    }
}

@media(max-width: 460px) {
	.hero__meta-text {
		font-size: 16px;
	}

	.hero__meta {
		align-items: flex-start;
	}

	.hero__meta-icon {
		width: 49px;
	}

	.hero__title {
		font-size: clamp(26px, 3.5vw, 65px);
	}

	.hero__desc {
		font-size: 17px;
	}

	.hero-top {
		padding-top: 80px;
	}

	.hero__photo {
		max-width: 292px;
		width: 100%;
	}
}

@media(max-width: 340px) {
	.header__brand {
		font-size: 18px;
		max-width: 172px;
	}

	.header__actions {
		gap: 16px;
	}
}