* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

html,
body {
	overflow-x: hidden;
}

body {
	/* background-color: var(--main-gray); */
	font-family: 'Raleway-d', sans-serif;
	font-size: 0.9rem;
	font-weight: 300;
	letter-spacing: 0.09rem;
	line-height: 1.6;
	color: var(--text-on-white);
}

a {
	color: inherit;
	text-decoration: none;
}


h2 {
	color: var(--text-on-white);
	font-family: 'Raleway-d', sans-serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.08rem;
}

h3 {
	color: var(--accent);
	font-family: 'Raleway-d', sans-serif;
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.08rem;
}

img {
	max-width: 100%;
}


/* header */

.top-line {
	background-color: var(--main-gray);
	border-bottom: var(--line) 2px solid;
}

.top-line__content {
	flex-wrap: nowrap;
	position: relative;
	height: var(--top-line-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;

}

/* logo */

.logo {
	transition: all 0.3s ease;
}

.logo:hover {
	transform: translateY(-2px);
}

.top-line__content img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin-top: 1rem;
}

.top-line__foto {
	max-width: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-btn {
	display: none;
}

nav.main-menu>ul.links {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	display: flex;
	gap: 30px;

}

nav.main-menu>ul.links.active {
	visibility: hidden;
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.links li {
	display: inline-block;
	font-family: 'Raleway-d', sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .8px;
}

.links .current-menu-item>a {
	color: var(--accent);
	border-bottom: 1px solid var(--accent);
	font-weight: 600;
}

.links a {
	display: block;
	padding: 10px 0;
	color: var(--text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.links a:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

.phone_btn {
	color: var(--accent);
	font-weight: 500;
	letter-spacing: 0.05rem;
	background-color: var(--line);
	display: inline-block;
	padding: 0.3rem 1.5rem;
	transition: all 0.3s ease;
	text-align: center;
	white-space: nowrap;
}

.phone_btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.top-line__right {
	display: flex;
	align-items: center;
	gap: 40px;
}

.phone-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.open-dt {
	margin-bottom: 0;
	color: var(--text);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.05rem;
}

.mobile-phone-icon,
.open {
	display: none;
}

/* hero-section */
.row.hero-row {
	height: calc(100vh - var(--top-line-height));
	width: 100%;
	align-content: center;

}

/* hero-right */
.hero {
	background-color: var(--main-gray);
}


.hero__right {
	display: grid;
	grid-column: 6/13;
	background-image: url(../images/bthe.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: calc(100vh - 4rem - var(--top-line-height));
	overflow: hidden;
	max-width: 100%;
	justify-content: center;
	align-items: end;
	transition: all 0.5s ease;
}

.hero__right:hover {
	transform: scale(1.01);
	box-shadow: 0 30px 50px rgba(8, 20, 40, 0.25);
}


/* hero-left */

.hero__left {
	display: grid;
	grid-column: 1/5;
	justify-content: start;
	align-content: center;
	row-gap: inherit;
}

.hero__main-titel {
	color: var(--text);
	font-family: 'Raleway-d', sans-serif;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1;
	width: 100%;
	font-weight: 300;
	letter-spacing: 0.15rem;
}

.hero__title-description {
	text-align: justify;
	color: var(--text);
}

.herowrap {
	white-space: normal;
}

.hero__title-description-mobil {
	display: none;
}

/* button hero */

.hero__btn {
	display: flex;
	text-align: center;
	cursor: pointer;
	border: 1px solid var(--accent);
	transition: all 0.4s ease;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.hero__rezervace {
	background: linear-gradient(145deg, var(--accent-on-white) 0%, var(--accent) 100%);
	padding: 0.8rem 1.6rem;
}

.hero__left a {
	color: var(--text);
	display: inline-block;
	font-family: 'Raleway-d';
	font-size: 1rem;
	color: #fff;
	letter-spacing: 0.04rem;
	line-height: 1;
	font-weight: 500;
	text-shadow: 1px 0px 1px rgb(112 82 71 / 90%);
}

/* house icons */

.hero__house-icons {
	display: flex;
	padding: 0 1.6rem;
	gap: 1.2rem;
	justify-content: center;
	align-items: center;
	opacity: 0;
	animation: fadeIn 0.8s ease-out 1.1s forwards;
}

.hero__house-icons i {
	color: var(--text);
	font-size: 14px;
	transition: all 0.3s ease;
}

.hero__house-icons>div {
	transition: transform 0.3s ease;
}

.hero__house-icons>div:hover {
	transform: translateY(-3px);
}

.hero__house-icons>div:hover i {
	color: var(--accent);
	transform: scale(1.1);
}

.hero__button-area {
	display: flex;
}

/* Дополнительные keyframes */
@keyframes slideInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}



/* animations-button */

.hero__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s;
}

.hero__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	letter-spacing: 0.08rem;
	color: white;
}

.hero__btn:hover::before {
	left: 100%;
}

.hero__btn:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Анимация иконки */
.hero__btn .fa-whatsapp {
	transition: all 0.3s ease;
	font-size: 18px;
}

.hero__btn:hover .fa-whatsapp {
	transform: scale(1.2);
	animation: bounce 0.5s ease;
}

@keyframes bounce {

	0%,
	100% {
		transform: scale(1.3);
	}

	50% {
		transform: scale(1.5);
	}
}



/* partners-icon */
.partners-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: auto;
	background: rgba(25, 25, 25, 0.7);
	padding: 15px 40px;
	backdrop-filter: blur(5px);
	width: 100%;
}

.partners-content p {
	color: var(--accent);
	font-style: italic;
	font-size: 0.8rem;
	margin: 6px 0 0 0;
	font-weight: 400;
	letter-spacing: 0.04rem;
}

.partners-content .framesi {
	display: inline-block;
	width: auto;
	object-fit: contain;
}

.partners-content .label_m {
	display: inline-block;
	width: auto;
	height: 1.3rem;
	object-fit: contain;
	margin-top: 10px;
}

.partner-info-trigger {
	position: relative;
	display: inline-flex;
	margin-left: 6px;
}

.info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: transparent;
	color: var(--text);
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid var(--accent);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 21;
}

.info-icon:hover {
	background: var(--accent-on-white);
	transform: scale(1.1);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.partner-tooltip {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: rgba(23, 26, 26, 0.95);
	color: var(--text);
	padding: 15px;
	width: 320px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 20;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: justify;
}

.partner-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.85);
}

.partner-tooltip p {
	margin: 0;
	font-family: 'Raleway-d', sans-serif;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: .8px;
	line-height: 1.4;
	color: var(--text);
}

.partner-tooltip p span {
	color: var(--accent);
	font-weight: 600;
}

.partner-info-trigger:hover .partner-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-5px);
}

.partners-content {
	opacity: 0;
	animation: fadeIn 0.8s ease-out 1.3s forwards;
}




/* section-trust */

.trust-section {
	background-color: var(--deep);
	padding: var(--margin-top-bottom);
}

.trust-section__items {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 2rem;
}

.trust-section__item-title {
	margin-bottom: 0;
	white-space: normal;
	word-break: break-word;
	line-height: 1.1;
	color: var(--accent-text-gray);
	font-weight: 700;
}

.trust-section__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 0.6rem;
	width: calc(25% - 2rem);
	min-width: 250px;
	border: 1px solid var(--line);
}

.trust-section__title {
	text-align: center;
	color: var(--accent-text-gray);
	font-family: 'Raleway-d', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
}

.trust-section__line {
	width: 80%;
	margin: 0 auto;
	height: 1px;
	background-color: var(--accent-text-gray);
}

.trust-section__item-text {
	color: var(--accent-text-gray);
	font-family: 'Roboto-d', sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.05rem;
	line-height: 1.5;
	text-align: justify;
	margin: 0 0 0;
}

.trust-section__item-text span {
	color: var(--accent);
}

/* expand button for trust section text */
.trust-section__expand-btn {
	display: inline-block;
	margin-left: 4px;
	background: none;
	border: none;
	color: var(--accent);
	font-family: 'Roboto-d', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	cursor: pointer;
	padding: 2px 4px;
	transition: all 0.3s ease;
	text-decoration: underline;
}

.trust-section__expand-btn:hover {
	color: var(--accent-on-white);
	opacity: 0.8;
	transform: translateY(-1px);
}

.trust-section__expand-btn:active {
	transform: translateY(0);
}













/* about-us */
.about-us-section {
	background-color: #FAFAFA;
	padding: 60px 0;
}

.about-us-section .about-us__right {
	align-items: flex-end;
}

.about-us {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 70px;
}

.about-us__left {
	background-color: #f2f2f2;
	width: 55%;
	position: relative;
}

.about-us__fotky {
	display: inline-block;
	margin: 10px 10px;
	text-align: center;
}

.prvni-rad {
	display: flex;
	gap: 5px;
	margin-bottom: 5px;
}

.about-us_bottom-deep-rad {
	height: 86px;
	width: 100%;
	background-color: rgba(32, 35, 40, 0.9);
	display: flex;
	align-items: center;
	padding-left: 28px;
}

.about-us_bottom-deep-rad p {
	color: var(--text);
	font-family: 'Raleway-d', sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 0.05rem;
	max-width: 100px;
	margin: 0;

}

.about-us_bottom-deep-rad p span {
	color: var(--text);
	font-family: 'Roboto-d', sans-serif;
	font-size: 2.875rem;
	font-weight: 600;
	letter-spacing: 0.05rem;
}

.about-us__name-text .name {
	color: var(--accent-on-white);
	font-family: 'Raleway-d', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	margin: 20px 0 8px 0;
}

.about-us__name-text .pozicie {
	color: var(--accent);
	font-family: 'Raleway-d', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05rem;
	margin-bottom: 10px;
}

.about-us__cool {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 130px;
}

.about-us-section__line {
	width: 30px;
	height: 1px;
	background-color: #4f5460;
	transform: rotate(90deg);
}

.main-photo {
	position: absolute;
	top: -39px;
	/* left: 270px; */
}

.about-us__right {
	width: 45%;
}

.about-us__right .about-us__right-sub-titel {
	color: var(--accent-on-white);
	font-family: 'Raleway-d', sans-serif;
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.08rem;
	text-align: left;
	margin-bottom: 12px;
	margin-top: 10px;
}

.about-us__right-titel {
	color: var(--text-on-white);
	font-family: 'Raleway-d', sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.08rem;
	text-align: left;
	margin-bottom: 30px;
	margin-top: 10px;
}

.decoration {
	width: 4px;
	height: 4px;
	background-color: var(--accent);
	border-radius: 50%;
}

.about-us__decoration {
	display: flex;
	gap: 4px;
	flex-shrink: 0;
	margin-bottom: 25px;
}

.about-us__text p {
	margin-top: 16px;
	text-align: justify;
}

.podpis {
	color: var(--accent);
	font-family: 'Cherish-Regular';
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: 0.05rem;
	margin-top: 40px;
	text-align: right;
}



/* footer copyright */

#footer {
	background-color: var(--deep);
	padding: 60px 0;
}

.row.footer__row {
	grid-template-columns: repeat(4, 1fr);
	column-gap: 4rem;
}


/* .footer__item:nth-child(2) {
	grid-column: 3/5;
	grid-row: 1/2;
}

.footer__item:nth-child(3) {
	grid-column: 3/5;
	grid-row: 2/3
}

.footer__item:nth-child(4) {
	grid-column: 5/7;
	grid-row: 1/3
}

.footer__item:nth-child(5) {
	grid-column: 5/7;
	grid-row: 2/3
}
*/
.footer__item:nth-child(1) {
	grid-column: 1/2;
	grid-row: 1/3;
	text-align: justify;
}

.footer__item:nth-child(6) {
	grid-column: 4/5;
	grid-row: 1/3;
	text-align: justify;
}

.footer__item h2 {
	color: var(--text);
	font-family: 'Raleway-d', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
}

/* .footer__item*/
.decoration {
	width: 21px;
	height: 3px;
	background-color: var(--accent);
	border-radius: 5px 0 5px 0;
	margin-bottom: 15px;

}

.top-line__foto.footer-logo {
	margin-bottom: 2rem;
}

.footer__item p {
	color: var(--text);
	font-weight: 300;
	margin: 0 0 0.2rem;
}

.footer__item .about {
	line-height: 1.6;
}

.phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
}

.phone::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("../images/phone.svg") no-repeat center;
	background-size: contain;
}

.email {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text);
}

.email::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	background: url("../images/e-mail.svg") no-repeat center;
	background-size: contain;
}

.address {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	line-height: 1.3;
}

.address-2 {
	line-height: 1.3;
	margin-bottom: 0;
}

.address::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("../images/location-dot.svg") no-repeat center;
	background-size: contain;
}

.social_icons {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
	align-items: center;
	margin-top: 1.8rem;
}

.social_icons div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--text);
	transition: all 0.3s ease;
}

.social_icons i {
	color: var(--text);
	font-size: 20px;
	padding: 10px;
	transition: all 0.3s ease;
}

.social_icon:hover {
	transform: translateY(-3px);
	color: var(--accent);
	border-color: var(--accent);
}

.social_icons i:hover {
	color: var(--accent);
}

#copyright {
	background-color: var(--text);
	padding: 20px 0;
	text-align: center;
	justify-content: center;
	font-family: 'Roboto-d', sans-serif;
	font-size: 0.875rem;
	letter-spacing: 0.03rem;
	color: var(--text-on-white);
}

.address-container {
	position: relative;
	display: inline-block;
	width: 100%;
	height: auto;
	z-index: 1;
}

.external-link {
	color: var(--text);
}

.external-link::after {
	content: " ↗";
	display: inline;
	font-weight: 400;
	font-size: 1em;
	opacity: 1;
	vertical-align: baseline;
	text-decoration: none !important;
	background: none !important;
	font-family: inherit;
}

.thumbnail {
	width: 95px;
	height: auto;
	margin: 10px 5px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	vertical-align: middle;
	object-fit: cover;
	position: relative;
	display: inline-block;
	cursor: zoom-in;
	border: 2px solid transparent;
}

.thumbnail:hover {
	transform: scale(3);
	transform-origin: top left;
	z-index: 1000;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
	border: 1px solid white;
}

.thumbnail:first-child:hover {
	transform-origin: left bottom;
}

.thumbnail:last-child:hover {
	transform-origin: center;
}

.footer__item li,
.external-link {
	color: var(--text);
	transition: all 0.3s ease;
}

.footer__item li {
	margin-bottom: 0.3rem;
}

.footer__item li:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

.external-link:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

@media (max-width: 426px) {
	#footer {
		padding: 30px 0;
	}

	.row.footer__row {
		grid-template-columns: 1fr;
		row-gap: 1.5rem;
	}

	.footer__item:nth-child(1) {
		display: none;
	}

	.footer__item:nth-child(6) {
		grid-column: auto;
		grid-row: auto;
		text-align: left;
	}
}

/* cena-section */

.cena-section {
	width: 100%;
	overflow: hidden;
	background-color: #0E100D;
}

.cena__bg {
	position: relative;
	overflow: hidden;
	background-image: url('../images/partners-dragonfly_wihte3.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 100%;
}

.cena__content {
	color: var(--text);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	margin: 80px 0;
}

.cena__content h2 {
	font-family: 'Raleway-d', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08rem;

	line-height: 1.5;
}


.table-cena .cenik {
	color: var(--text);
	font-family: 'Raleway-d', sans-serif;
	font-size: 0.875rem;
	letter-spacing: 0.09rem;
	font-weight: 300;
}

table td {
	padding: 15px 25px;
	text-align: left;
	border-bottom: 0.2px solid #464444;
}

table th {
	color: var(--accent);
	border-bottom: 0.2px solid #464444;
	padding: 20px 25px;
	text-align: left;
	font-weight: 600;
}

.gift {
	color: var(--text);
	font-family: 'Raleway-d', sans-serif;
	font-size: 0.875rem;
	letter-spacing: 0.09rem;
	font-weight: 300;
	max-width: 30%;
	line-height: 1.6;
}

.gift-shadow {
	margin: 20px 0 20px 0;
}




/* Мобильная версия */

@media (max-width: 768px) {

	.menu-btn {
		display: flex;
		flex-direction: column;
		gap: 4px;
		cursor: pointer;
		z-index: 1001;
		align-items: end;
		padding: 10px;
	}

	.menu-btn * {
		width: 1.0625rem;
		height: 0.125rem;
		background-color: var(--text);
	}

	.menu-btn.active {
		align-items: start;

	}

	.menu-btn *:first-child {
		width: 0.8125rem;
	}

	.menu-btn *:nth-child(2) {
		width: 0.6875rem;
	}

	/* Перестраиваем верхнюю линию для мобильных */
	.top-line__content {
		padding: 0;
		gap: 0.5rem;
	}

	.top-line__content img {
		margin-top: 0.8rem;
	}

	.top-line__right {
		display: flex;
		align-items: center;
		gap: 0.7rem;
	}

	.phone_btn {
		display: none;
	}

	.phone-content {
		gap: 0.5rem;
		flex-direction: row-reverse;
	}

	.open {
		display: block;
		text-align: right;
		line-height: 1.1;
		font-size: 0.7rem;
		margin: 0;
		color: var(--text);
		font-family: 'Roboto-d', sans-serif;
		font-weight: 500;
		letter-spacing: 0.05rem;
		min-width: 40px;

	}

	.mobile-phone-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 35px;
		height: 35px;
		background-color: var(--line);
		color: var(--accent);
		text-decoration: none;
		font-size: 18px;
		transition: all 0.3s ease;
		z-index: 1001;
		padding: 10px;
	}

	.mobile-phone-icon:hover {
		transform: translateY(-2px);
	}

	nav.main-menu>ul.links {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--main-gray);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
		visibility: hidden;
		opacity: 0;
		transform: translateX(-100%);
		transition: all 0.3s ease;
		z-index: 999;
		padding: 0;
		overflow-y: auto;
	}

	nav.main-menu>ul.links.active {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
		border-bottom: none;
	}

	.links li {
		display: block;
		width: 100%;
		text-align: center;
		border-bottom: none;
	}

	.links a {
		padding: 20px 30px;
		font-size: 18px;
		font-weight: 400;
		display: block;
		width: 100%;
		transition: all 0.3s ease;
		text-align: center;
		border-bottom: none;
	}

	.links .current-menu-item>a {
		border-bottom: none;
	}

	.links a:hover {
		background-color: rgba(255, 255, 255, 0.1);
		color: var(--accent);
	}

	.menu-btn div {
		transition: all 0.3s ease;
		transform-origin: center;
		margin-right: auto;
	}

	.menu-btn.active div {
		margin-right: 0;
		margin-left: auto;
	}

	body.menu-open {
		overflow: hidden;
	}
}

@keyframes fadeInUpMobile {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDownMobile {
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}


@media (max-width: 426px) {

	/* Trust section mobile styles */
	/*  .trust-section {
		padding: 40px 0;
		position: relative;
	}

	
	.trust-section__header {
		text-align: center;
		margin-bottom: 30px;
		padding: 0 20px;
	}

	.trust-section__header h3 {
		text-align: left;
		margin-bottom: 4px;
		margin-top: 2px;
	}

	.trust-section__title {
		color: var(--text);
		font-family: 'Raleway-d', sans-serif;
		font-size: 1.7rem;
		font-weight: 300;
		letter-spacing: 0.06rem;
		text-align: left;
	}

	.trust-section__description {
		color: var(--text);
		font-family: 'Raleway-d', sans-serif;
		font-size: 0.9rem;
		font-weight: 300;
		line-height: 1.5;
		max-width: 300px;
		margin: 0 auto;
	}

	 */

	/* Карусель */
	.trust-section__carousel {
		position: relative;
		width: 100%;
	}

	.trust-section__items {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 0;
		padding: 0 0 20px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.trust-section__items::-webkit-scrollbar {
		display: none;
	}

	.trust-section__item {
		flex: 0 0 calc(100vw - 80px);
		max-width: calc(100vw - 80px);
		border: 1px solid var(--line);
		padding: 25px 20px;
		margin: 0 10px;
		min-height: 200px;
		scroll-snap-align: center;
		transition: all 0.3s ease;
		position: relative;
	}

	/* Активный слайд выделяем */
	.trust-section__item:first-child {
		background: var(--deep);
		border: 1px solid var(--line);
	}

	/* 	.trust-section__title-wrapper {
		display: flex;
		align-items: center;
		text-align: center;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 15px;
	} */

	.trust-section__item-title {
		/* max-width: none;
		text-align: center;
		
		color: var(--accent-text-gray);
		 */
		font-size: 1rem;
		font-weight: 700;
		line-height: 1.2;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		/* max-width: 100%; */
	}

	/* .trust-section__line {
		width: 100px;
		height: 1px;
		background-color: var(--accent-text-gray);
		margin: 8px 0;
	} */

	.trust-section__item-text {

		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	/* Стили для развернутого состояния */
	.trust-section__item.expanded .trust-section__item-title,
	.trust-section__item.expanded .trust-section__item-text {
		-webkit-line-clamp: unset;
		line-clamp: unset;
		overflow: visible;
		display: block;
	}

	.trust-section__item.expanded {
		min-height: auto;
		height: auto;
		z-index: 10;
		background: var(--deep);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	}



	/* Навигационные точки */
	.trust-section__nav-dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 20px;
		padding: 0 20px;
	}

	.trust-section__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--accent-text-gray);
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.trust-section__dot.active {
		background: var(--accent);
		transform: scale(1.2);
	}

	/* Анимация для навигационных точек */
	.trust-section__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--accent-text-gray);
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.trust-section__dot.active {
		background: var(--accent);
		transform: scale(1.2);
		animation: dotPulse 0.6s ease;
	}

	@keyframes dotPulse {
		0% {
			transform: scale(1);
			opacity: 0.7;
		}

		50% {
			transform: scale(1.4);
			opacity: 1;
		}

		100% {
			transform: scale(1.2);
			opacity: 1;
		}
	}

	/* Дополнительные стили для улучшения UX */
	.trust-section__dot:hover {
		transform: scale(1.1);
		background: var(--accent);
	}

	.trust-section__dot.active:hover {
		transform: scale(1.3);
	}

}


@media (max-width: 426px) {

	.titel-head {
		font-size: 3rem;
	}

	/* Hero секция для мобильных */
	/* .hero-row {
		flex-direction: column;
		min-height: 100dvh;
		min-height: 100vh;
		position: relative;
		padding: 0;
		gap: 0;
		justify-content: flex-end;
		animation: none;
		opacity: 1;
		transform: none;
	}

	.head-hero__left {
		position: relative;
		z-index: 10;
		background: linear-gradient(to top, rgba(30, 31, 36, 0.95) 0%, rgba(30, 31, 36, 0.7) 50%, transparent 100%);
		padding: 20px 20px 40px;
		gap: 15px;
		flex: 0 0 auto;
		width: 100%;
		margin-top: auto;
	}

	
	.hlavni_title {
		text-align: left;
		width: 100%;
	}

	.hlavni_title h3 {
		font-size: 0.75rem;
		margin-bottom: 5px;
		text-align: left;
	}

	.titel-head {
		font-size: 1.8rem;
		line-height: 1.2;
		letter-spacing: 0.05rem;
		margin-bottom: 10px;
		animation: none;
		opacity: 1;
		transform: none;
	}

	.titel-head span {
		display: block;
		color: var(--accent);
	}

	
	.title-description {
		font-size: 0.9rem;
		line-height: 1.4;
		text-align: left;
		margin-bottom: 15px;
		animation: none;
		opacity: 1;
		transform: none;
		color: var(--text);
	}
 */

	/* .partners-content {
		position: absolute;
		top: 10px;
		right: 10px;
		left: auto;
		bottom: auto;
		transform: none;
		width: auto;
		padding: 8px 10px;
		gap: 15px;
		z-index: 20;
		background: rgba(30, 31, 36, 0.8);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(171, 139, 128, 0.3);
	}

	.partners__item {
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.partners-content .framesi {
		height: 18px;
	}

	.partners-content .label_m {
		height: 15px;
		margin-top: 0;
	}

	.partner-info-trigger .info-icon {
		width: 12px;
		height: 12px;
		font-size: 10px;
	}

	.partner-tooltip {
		width: 280px;
		left: -140px;
		transform: translateY(-10px);
	}

	.partner-tooltip::after {
		left: 50%;
	} */


	/* .btn-hero {
		width: 100%;
		max-width: 280px;
		margin: 0 auto;
		padding: 14px 20px;
		font-size: 0.95rem;
		animation: none;
		opacity: 1;
		transform: none;
	}

	
		
	.hero-right {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		flex: 0 0 100%;
		animation: none;
		opacity: 1;
		transform: none;
		overflow: hidden;
	}

	.hero-slides {
		display: flex;
		height: 100%;
		gap: 1px;
		position: relative;
	}

	.hero-slide__img {
		flex: 1 1 calc((100% - 2px) / 3);
		height: 100%;
		max-width: calc((100% - 2px) / 3);
		opacity: 1;
		transform: none;
		animation: none;
		position: relative;
	}

	.hero-slide__img .hero {
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0.8;
	} */

	/* Убираем hover-эффекты на мобильных */
	.hero-slide__img:hover {
		transform: none;
		box-shadow: none;
		z-index: 1;
	}

	.hero-slide__img:hover .hero {
		opacity: 0.8;
		transform: none;
	}

	/* Убираем анимации для мобильных */
	@keyframes slideInLeft {
		to {
			opacity: 1;
			transform: none;
		}
	}

	@keyframes slideInRight {
		to {
			opacity: 1;
			transform: none;
		}
	}

	@keyframes fadeIn {
		to {
			opacity: 1;
		}
	}

	@keyframes fadeInUp {
		to {
			opacity: 1;
			transform: none;
		}
	}


	/* Добавляем safe-area для iPhone */
	@supports (padding-top: env(safe-area-inset-top)) {
		.partners-content {
			top: calc(10px + env(safe-area-inset-top));
		}

		.hero__left {
			padding-bottom: calc(40px + env(safe-area-inset-bottom));
		}
	}
}




.connect .row {
	/*
	grid-template-columns: 1fr 2fr 1fr;
	 grid-template-columns: 1fr minmax(200px, 500px) 1fr;
	grid-template-columns: 1fr minmax(200px, 1fr) 1fr;
	grid-template-columns: repeat(3, auto);
	grid-template-columns: auto minmax(200px, 500px) auto;
	grid-template-columns: min-content 200px 200px;
	grid-template-columns: max-content 500px, 500px; */
	grid-template-columns: 1fr 1fr 1fr;
	justify-items: center;
	align-items: center;
	margin: 50px 0;
}

.element {
	margin: 0;
	padding: 20px;
	color: #fff;
	background-color: #4f5460;
}

.self {
	justify-self: left;
}

/* contacts */

.contacts__menu-item {
	color: #fff;
}

a.link {
	transition: 0.5s color;
}

a.link:hover {
	color: var(--accent);
}

a.link:active {
	color: var(--accent);
}

.text-field {
	background-color: #4f5460;
	width: 100%;
	color: #fff;
	border: none;
	border-radius: 8px;
	outline: none;
	padding: 15px 25px;
	transition: 0.5s background-color;
}

.btn {
	background-color: var(--accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 15px 25px;
	transition: 0.5s background-color;
	outline: none;
}

.btn:hover {
	background-color: var(--accent-on-white);
}

.btn:active {
	background-color: var(--accent-on-white);
}

a.icon-link {
	transition: 0.5s color;
	color: #fff;
	font-size: 24px;
}

a.icon-link:hover {
	color: var(--accent);
}

a.icon-link:active {
	color: var(--accent);
}

.row.contacts__row {
	grid-template-columns: 1fr minmax(300px, 1fr) 1fr;
	align-items: start;
}

.contacts__menu {
	display: grid;
	gap: 10px;
}

.contacts__form {
	display: grid;
	gap: 10px;
}

.contacts__form-btn {
	justify-self: center;
}

.contacts__social {
	display: grid;
	gap: 10px;
	justify-self: right;
}

/* grid-section */

.grid .container-fluid .row {
	color: #fff;
	margin: 50px 0;
}

.row.grid__row {
	grid-template-columns: repeat(4, 1fr);
}

.row__item {
	padding: 15px;
	background-color: var(--deep);
}

.row__item:nth-child(2) {
	background-color: var(--accent);
	grid-column: 2/4;
	grid-row: 1/3;
}

.row__item:nth-child(6) {
	background-color: var(--accent);
	grid-column: 4/5;
	grid-row: 2/4;
}



@media (max-width: 768px) {

	.container,
	.container-fluid.container-fluid__zero {
		padding: 0 calc(var(--gutter-zero) * .5);
	}

	.hero {
		background-color: #090c0d;
	}

	.row.hero-row {
		height: calc(100vh - var(--top-line-height));
		display: flex;
		flex-direction: column;
		position: relative;
		padding: 0;
		margin: 0;
		width: 100%;
		overflow: hidden;
	}

	/* Левая колонка (текст и кнопка) поверх фото */
	.hero__left {
		position: absolute;
		bottom: 10%;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		grid-column: auto;
		z-index: 5;
		text-align: center;
		padding: 0 20px;
		width: 100%;
		margin: 0 auto;
	}

	/* Правая колонка (фото) на весь экран */
	.hero__right {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-height: 100%;
		grid-column: auto;
		background-image: url(../images/bove3.png);
		background-size: cover;
		background-position: center;
		z-index: 1;
	}

	/* Затемнение для лучшей читаемости текста */
	.hero__right::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 60%;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
		pointer-events: none;
		z-index: 2;
	}


	.hero__house-icons i {
		font-size: 14px;
	}

	.hero__left a {
		font-size: 0.9rem;
		color: #fff;
		letter-spacing: 0.04rem;
	}

	.hero__left {
		row-gap: 1rem;
	}

	.hero__title-description {
		text-align: center;
		line-height: 1.3;
		margin: 0;
	}

	.hero__title-description span {
		/* display: none; */
	}

	.herowrap {
		white-space: nowrap;
	}

	.hero__main-titel {
		margin-bottom: 0;
	}
}




/* works-section */

.work__color {
	background-color: var(--deep);
	padding: 4rem 0 10rem 0;
}

.row.work-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	align-items: center;
}

.work__line {
	height: 1px;
	background-color: #393D47;
	transform: rotate(90deg);
	width: 7rem;
	margin: 0 auto;
}

.work__left p {
	color: var(--text);
	text-align: right;
	margin-bottom: 0rem;
}

.work__right h3 {
	text-align: left;
}

.work__right-titel {
	color: var(--text);
	font-family: 'Raleway-d', sans-serif;
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 0.04rem;
	text-align: left;
	line-height: 1.2;
	margin-bottom: 0rem;
}

.work__bg-white {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 50%, rgba(255, 255, 255, 1) 100%);
	margin-bottom: -4rem;
}

.container-fluid__work {
	width: 1300px;
	margin: 0 auto;
	padding: 0 calc(var(--gutter) * .5);
}

.row.row__cards {
	grid-template-columns: repeat(4, 3fr);
	transform: translateY(-7.5rem);
	gap: 1.8rem;
}

/* card */

.card {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	box-shadow:
		0 10px 30px -5px rgba(0, 0, 0, 0.05),
		0 0 0 1px rgba(255, 255, 255, 0.8) inset;
	transition: all 0.3s ease;
}

/* Hover efekt pro interaktivitu */
.card:hover {
	background: rgba(255, 255, 255, 0.95);
	box-shadow:
		0 20px 40px -10px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(255, 255, 255, 1) inset;
	transform: translateY(-5px);
}

.card__img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	background-position: top;
	background-repeat: no-repeat;
}

.card__body {
	padding: 1.6rem;
}

.card__title {
	margin: 0 0 1.2rem 0;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--deep);
	line-height: 1.2;
	letter-spacing: -0.02em;
	border-bottom: 2px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 0.8rem;
}

.card__desc {
	margin: 0;
	padding: 0;
}

.card .card__desc li {
	margin-bottom: 14px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--deep);
	cursor: default;
	font-weight: 400;
	text-align: justify;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Zvýraznění ikon při hoveru na li */
.card .card__desc li:hover .heart-check img {
	opacity: 1;
	filter: brightness(0.2);
}

.card .card__desc .heart-check img {
	width: 1.4rem;
	height: auto;
	filter: brightness(0.4);
	margin-right: 10px;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.card .card__desc .heart-check {
	flex-shrink: 0;
	display: inline-flex;
	margin-top: 2px;
}

@media (max-width: 768px) {
	.row.work-row {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}

	.work__line {
		display: none;
	}

	.work__right {
		order: 1;
	}

	.work__left {
		order: 2;
	}

	.work__left p {
		text-align: center;
	}

	.work__right h3 {
		text-align: center;
	}

	.work__right-titel {
		text-align: center;
	}
}



/* grid-cards */

.grid-cards .container-fluid .row {
	color: #fff;
	margin: 50px 0;
}

.row.grid-cards__row {
	grid-template-columns: repeat(2, 1fr);
}

.row-cards__item {
	padding: 15px;
	background-color: var(--deep);
}

.row-cards__item:nth-child(3) {
	background-color: var(--accent);
	grid-column: 2/3;
	grid-row: 1/3;
}

@media(max-width: 700px) {
	.row.grid-cards__row {
		grid-template-columns: 1fr;
	}

	.row-cards__item:nth-child(3) {
		background-color: var(--accent);
		grid-column: auto;
		grid-row: auto;
	}
}

@media(max-width: 1024px) {
	.cards .row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(max-width: 768px) {
	.cards .row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 500px) {
	.cards .row {
		grid-template-columns: 1fr;
	}
}