@import url("../assets/bootstrap/bootstrap.min.css");
@import url("../assets/jquery/jquery-ui/jquery-ui.css");
@import url("../assets/owlcarousel/owl.carousel.min.css");
@import url("../assets/fancybox/jquery.fancybox.min.css");
@import url("../assets/aos/aos.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../assets/fonts/fontawesome-free-6.7.2-web/css/all.min.css");
@import url("../assets/fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* General & Variables
* ----------------------------------------------------------------------------------------
*/
:root {
 --body-bg: #ffffff;
 --container-gradient: linear-gradient(90deg, #f1f5f9 0%, #ffffff 15%, #ffffff 100%);
 --pattern-color: rgba(14, 165, 233, 0.03);
 --p-sky: #0ea5e9;
 --p-blue: #0077ff;
 --p-dark: #111827;
 --p-text: #1e293b;
 --p-slate-500: #64748b;
 --p-slate-400: #94a3b8;
 --p-white: #ffffff;
 --p-border: #e2e8f0;
}
body {
	margin: 0;
	background-color: var(--body-bg);
	background-image: var(--container-gradient), radial-gradient(var(--pattern-color) 1px, transparent 1px);
	background-size: 100% 100%, 40px 40px;
	background-attachment: fixed;
	font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
	color: var(--p-text);
	line-height: 1.6;
}
html, body {
	overflow-x: hidden;
	width: 100%;
}
/*
* ----------------------------------------------------------------------------------------
* Recaptcha
* ----------------------------------------------------------------------------------------
*/
.grecaptcha-badge {
	display: none !important;
}
/* 
* ----------------------------------------------------------------------------------------
* Typography & Elements
* ----------------------------------------------------------------------------------------
*/
a {
	color: var(--p-blue);
	text-decoration: none;
	transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover {
	color: var(--p-sky);
}
ul, ol {
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}
li {
	margin-bottom: 0.5rem;
}
ul {
	list-style: none;
}
article ul li::before {
	content: "—";
	color: var(--p-sky);
	font-weight: bold;
	display: inline-block;
	width: 1.5rem;
	margin-left: -1.5rem;
}
article ol {
	list-style: none;
	counter-reset: ht-counter;
	padding-left: 1.5rem;
}
article ol li {
	counter-increment: ht-counter;
	position: relative;
}
article ol li::before {
	content: counter(ht-counter) ".";
	color: var(--p-sky);
	font-weight: bold;
	display: inline-block;
	width: 1.5rem;
	margin-left: -1.5rem;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--p-dark);
	font-weight: 800;
	line-height: 1.2;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
p {
	margin-bottom: 1.2rem;
}
::selection {
	background-color: var(--p-sky);
	color: var(--p-white);
}
hr {
	border: 0;
	border-top: 1px solid var(--p-border);
	margin: 2.5rem 0;
}
img {
	max-width: 100%;
	height: auto;
}
/* 
* ----------------------------------------------------------------------------------------
* Alert
* ----------------------------------------------------------------------------------------
*/

.alert {
 --p-alert-border: var(--p-border);
 --p-alert-accent: var(--p-slate-500);
	background: var(--p-white) !important;
	backdrop-filter: blur(10px);
	border: 1px solid var(--p-alert-border) !important;
	border-left: 4px solid var(--p-alert-accent) !important;
	border-radius: 0 !important;
	color: var(--p-text) !important;
	padding: 1.25rem 1.5rem !important;
	display: flex !important;
	align-items: center;
	gap: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	position: relative;
}
.alert i {
	font-size: 1.4rem;
	color: var(--p-alert-accent);
}
.alert-success {
 --p-alert-accent: #10b981;
 --p-alert-border: rgba(16, 185, 129, 0.2);
}
.alert-danger {
 --p-alert-accent: #ef4444;
 --p-alert-border: rgba(239, 68, 68, 0.2);
}
.alert-info, .alert-primary {
 --p-alert-accent: var(--p-sky);
 --p-alert-border: rgba(14, 165, 233, 0.2);
}
.alert-warning {
 --p-alert-accent: #f59e0b;
 --p-alert-border: rgba(245, 158, 11, 0.2);
}
.alert .btn-close {
	box-shadow: none !important;
	opacity: 0.5;
	transition: 0.3s;
	background-size: 10px;
}
.alert .btn-close:hover {
	opacity: 1;
	transform: rotate(90deg);
}
/*
* ----------------------------------------------------------------------------------------
* Article
* ----------------------------------------------------------------------------------------
*/
article #sync1 .item img {
	height: 450px;
	width: 100%;
	object-fit: cover;
	border: 1px solid var(--p-border);
	display: block;
}
article #sync1 .owl-nav .owl-prev, article #sync1 .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	background: rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	width: 45px;
	height: 70px;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	color: var(--p-dark) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	font-size: 1.5rem;
}
article #sync1 .owl-nav .owl-prev {
	left: 0;
}
article #sync1 .owl-nav .owl-next {
	right: 0;
}
article #sync1 .owl-nav .owl-prev:hover, article #sync1 .owl-nav .owl-next:hover {
	background: var(--p-sky) !important;
	color: var(--p-white) !important;
	border-color: var(--p-sky) !important;
	box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}
article #sync2 .item img {
	height: 85px;
	width: 100%;
	object-fit: cover;
	opacity: 0.5;
	border: 1px solid var(--p-border);
	transition: all 0.3s ease;
}
article #sync2 .owl-item.current img {
	opacity: 1;
	border: 2px solid var(--p-sky) !important;
	box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}
article #sync2 .item:hover img {
	opacity: 0.8;
	border-color: var(--p-sky);
}

@media (max-width: 991.98px) {
article #sync1 .item img {
	height: 350px;
}
article #sync2 .item img {
	height: 65px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Modal
* ----------------------------------------------------------------------------------------
*/

.modal-content {
	background: rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(25px) saturate(160%) !important;
	-webkit-backdrop-filter: blur(25px) saturate(160%) !important;
	border-radius: 0 !important;
	border: none !important;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
	overflow: hidden;
}
.modal-header {
	background: var(--p-sky) !important;
	backdrop-filter: blur(10px) !important;
	border-radius: 0 !important;
	border: none !important;
	padding: 20px 30px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}
.modal-title {
	color: var(--p-white) !important;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 2px;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 1.1rem;
}
.modal-header .btn-close {
	background-color: rgba(255, 255, 255, 0.2) !important;
	filter: invert(1) brightness(200%) !important;
	opacity: 1 !important;
	border-radius: 0 !important;
	padding: 12px !important;
	margin: 0 !important;
	transition: all 0.4s ease !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	background-size: 12px;
}
.modal-header .btn-close:hover {
	background-color: transparent !important;
	border-color: var(--p-white) !important;
	transform: rotate(90deg);
}
.modal-body {
	background: transparent !important;
	padding: 40px 30px !important;
	color: var(--p-text);
}
.modal-footer {
	border: none !important;
	padding: 20px 30px !important;
}
/*
* ----------------------------------------------------------------------------------------
* Aside
* ----------------------------------------------------------------------------------------
*/
aside {
 --side-width: 115px;
 --side-glass: rgba(255, 255, 255, 0.4);
 --side-border: rgba(0, 0, 0, 0.05);
 --side-accent: #0ea5e9;
 --side-text-active: #000000;
 --side-text-mute: #94a3b8;
 --side-transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	width: var(--side-width);
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background: var(--side-glass);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	border-right: 1px solid var(--side-border);
	display: flex;
	flex-direction: column;
	z-index: 2000;
}
aside header {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.4rem;
	color: var(--side-text-active);
}
aside nav {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
aside .nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 90px;
	color: var(--side-text-mute);
	text-decoration: none;
	transition: 0.3s ease;
	position: relative;
}
aside .nav-link i {
	font-size: 1.6rem;
	margin-bottom: 5px;
}
aside .nav-link span {
	font-size: 0.65rem;
	font-weight: 800;
	text-transform: uppercase;
}
aside .nav-link:hover, aside .nav-link.active {
	color: var(--side-text-active);
}
aside .nav-link.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 25%;
	width: 4px;
	height: 50%;
	background: var(--side-accent);
	border-radius: 0 4px 4px 0;
	box-shadow: 2px 0 15px rgba(14, 165, 233, 0.4);
}
aside .nav-item-wrapper {
	position: relative;
	width: 100%;
}
aside .submenu {
	position: absolute;
	left: var(--side-width);
	top: 0;
	width: 240px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(15px);
	border: 1px solid var(--side-border);
	border-left: none;
	padding: 30px;
	border-radius: 0 24px 24px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-20px) scaleX(0.95);
	transform-origin: left center;
	transition: var(--side-transition);
	box-shadow: 30px 0 50px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	z-index: 2100;
}
aside .nav-item-wrapper:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0) scaleX(1);
}
aside .submenu a {
	display: block;
	color: var(--side-text-mute);
	text-decoration: none;
	padding: 10px 0;
	font-size: 0.95rem;
	font-weight: 600;
	transition: 0.3s ease;
}
aside .submenu a:hover {
	color: var(--side-accent);
	transform: translateX(8px);
}

@media (max-width: 767.98px) {
aside {
	width: 100%;
	height: 75px;
	flex-direction: row;
	top: auto;
	bottom: 0;
	border-right: none;
	border-top: 1px solid var(--side-border);
	background: rgba(255, 255, 255, 0.95);
}
aside header {
	display: none;
}
aside nav {
	flex-direction: row !important;
	width: 100%;
	height: 100%;
	justify-content: space-around;
	align-items: center;
}
aside .nav-item-wrapper {
	width: auto;
	height: 100%;
	flex: 1;
}
aside .nav-link {
	height: 100%;
	width: 100%;
}
aside .nav-link span {
	display: none;
}
aside .nav-link.active::before {
	left: 25%;
	top: 0;
	width: 50%;
	height: 4px;
	border-radius: 0 0 4px 4px;
}
aside .submenu {
	left: 0;
	bottom: 75px;
	top: auto;
	width: 100vw;
	border-radius: 20px 20px 0 0;
	border: none;
	border-top: 1px solid var(--side-border);
	transform: translateY(20px);
}
aside .nav-item-wrapper:hover .submenu {
	transform: translateY(0);
}
}
/*
* ----------------------------------------------------------------------------------------
* Main
* ----------------------------------------------------------------------------------------
*/
main {
 --main-padding: 50px;
 --section-gap: 120px;
	margin-left: 115px;
	width: calc(100% - 115px);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.content-wrapper {
	flex: 1 0 auto;
}

@media (max-width: 767.98px) {
main {
	margin-left: 0;
	width: 100%;
	padding-bottom: 75px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/

footer {
 --footer-bg: rgba(255, 255, 255, 0.8);
 --footer-border: #f1f1f1;
	margin-top: auto;
	padding: 50px var(--main-padding);
	background: var(--footer-bg);
	border-top: 1px solid var(--footer-border);
}
/*
* ----------------------------------------------------------------------------------------
* Home
* ----------------------------------------------------------------------------------------
*/
#home {
 --accent: #0ea5e9;
 --color-work: #111827;
 --color-price: #64748b;
 --color-web: #0077ff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
}
#home small {
	display: block;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #94a3b8;
	margin-bottom: 1.5rem;
	position: relative;
	padding-left: 25px;
}
#home small::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 2px;
	background: var(--accent);
}
#home h1 {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -3px;
	margin-bottom: 2rem;
	background: linear-gradient(180deg, #0f172a 30%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#home h1 span {
	background: linear-gradient(135deg, var(--accent) 0%, #0369a1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 2px 10px rgba(14, 165, 233, 0.1));
}
#home p {
	font-size: 1.3rem;
	line-height: 1.6;
	color: #64748b;
	max-width: 700px;
	margin-bottom: 3rem;
	border-left: 4px solid #f1f5f9;
	padding-left: 30px;
}
#home p strong {
	color: #000;
	font-size: 1.4rem;
	font-weight: 800;
}
#home .btn {
	padding: 18px 40px;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	border-radius: 0 !important;
	border: none;
	color: #fff !important;
	transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}
#home .btn:nth-child(1) {
	background-color: var(--color-work);
}
#home .btn:nth-child(2) {
	background-color: var( --color-price);
}
#home .btn:nth-child(3) {
	background-color: var(--color-web);
}
#home .btn:hover {
	transform: translateY(-5px);
	filter: brightness(1.2);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
#home {
	align-items: flex-start !important;
	min-height: auto !important;
	padding-top: 20px !important;
}
#home h1 {
	font-size: 2.2rem;
	letter-spacing: -1px;
	margin-top: 10px;
}
#home p {
	font-size: 1rem;
	padding-left: 15px;
	margin-bottom: 2rem;
}
#home .btn {
	width: 100%;
	margin-bottom: 10px;
}
}
/*
* ----------------------------------------------------------------------------------------
* About
* ----------------------------------------------------------------------------------------
*/
#about {
 --about-bg: #111827;
 --about-accent: #0ea5e9;
 --about-text: #e2e8f0;
	background-color: var(--about-bg);
	background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
	background-size: 30px 30px;
	min-height: 100vh;
	padding: 120px 0;
	color: var(--about-text);
	position: relative;
	overflow: hidden;
}
.about-sticky {
	position: sticky;
	top: 120px;
}
#about small {
	display: block;
	color: var(--about-accent);
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
#about h2 {
	font-size: 5rem;
	font-weight: 900;
	color: var(--about-text);
	letter-spacing: -4px;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 30px;
}
.vertical-line {
	width: 2px;
	height: 150px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}
.line-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: var(--about-accent);
	box-shadow: 0 0 15px var(--about-accent);
}
.about-block .head {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--about-accent);
	margin-bottom: 20px;
	font-weight: 800;
}
.about-block p {
	font-size: 1.6rem;
	line-height: 1.5;
	color: #cbd5e1;
	max-width: 800px;
}
.about-block p strong {
	color: #fff;
	font-weight: 900;
}
.summary-box {
	padding: 40px;
	background: rgba(255, 255, 255, 0.03);
	border-left: 4px solid var(--about-accent);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.6;
	color: #fff;
	transition: 0.3s;
}
.summary-box:hover {
	background: rgba(14, 165, 233, 0.05);
}

@media (max-width: 767.98px) {
#about {
	padding: 80px 20px;
}
#about h2 {
	font-size: 3rem;
}
.about-block p {
	font-size: 1.2rem;
}
.about-sticky {
	position: relative;
	top: 0;
}
.vertical-line {
	height: 60px;
	margin-bottom: 40px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Portfolio
* ----------------------------------------------------------------------------------------
*/
#portfolio {
 --p-accent: #0ea5e9;
 --p-radius: 16px;
}
#portfolio .container-fluid {
	padding-top: 120px;
	padding-bottom: 120px;
	background: #fff;
}
#portfolio h3 {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -4px;
	line-height: 0.9;
	background: linear-gradient(180deg, #0f172a 30%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#portfolio small {
	display: block;
	font-weight: 800;
	letter-spacing: 5px;
	color: var(--p-accent);
	margin-bottom: 15px;
}
#portfolio .price-info {
	font-size: 1.1rem;
	font-weight: 700;
	color: #64748b;
	margin-top: 20px;
}
#portfolio .price-info span {
	color: #000;
}
#portfolio .view-all-top {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.9rem;
	border-bottom: 3px solid #000;
	padding-bottom: 5px;
	transition: 0.3s;
}
#portfolio .view-all-top:hover {
	color: var(--p-accent);
	border-color: var(--p-accent);
	transform: translateX(5px);
}
#portfolio .work-card-link {
	text-decoration: none;
	display: block;
	color: inherit;
}
#portfolio .work-card {
	position: relative;
	height: 450px;
	overflow: hidden;
	background: #f8fafc;
}
#portfolio .work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
#portfolio .admin-edit {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1000;
	width: 40px;
	height: 40px;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	opacity: 1;
	transition: 0.3s;
}
#portfolio .work-card:hover .admin-edit {
	opacity: 1;
}
#portfolio .portfolio-carousel .col {
	display: block;
	position: relative;
	margin: 15px 10px;
	border-radius: var(--p-radius);
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--p-accent) 25%, transparent);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#portfolio.portfolio-container .position-relative {
	display: block;
	position: relative;
	border-radius: var(--p-radius);
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--p-accent) 25%, transparent);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#portfolio .portfolio-carousel .col:hover .admin-edit {
	opacity: 1;
}
#portfolio .admin-edit:hover {
	background: var(--p-accent);
	color: #fff;
}
#portfolio .glass-label {
	position: absolute;
	bottom: 25px;
	left: 25px;
	right: 25px;
	background: rgba(14, 165, 233, 0.8);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 18px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 15px;
	transition: 0.4s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
#portfolio .label-info {
	display: flex;
	flex-direction: column;
}
#portfolio .site-url {
	font-weight: 900;
	font-size: 1rem;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.5px;
}
#portfolio .site-date {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	margin-top: 3px;
}
#portfolio .glass-label i {
	font-size: 1.5rem;
	color: #fff;
	transition: 0.3s;
}
#portfolio .work-card:hover img {
	transform: scale(1.05);
}
#portfolio .work-card:hover .glass-label {
	transform: translateY(-5px);
}
#portfolio .work-card:hover .glass-label i {
	transform: rotate(45deg);
}
#portfolio .owl-dots {
	display: flex !important;
	justify-content: center !important;
	align-items: center;
	width: 100% !important;
	margin-top: 40px !important;
}
#portfolio .owl-dot {
	outline: none !important;
	display: inline-block;
}
#portfolio .owl-dot span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	background: #e2e8f0 !important;
	border-radius: 30px;
	transition: all 0.3s ease;
}
#portfolio .owl-dot.active span {
	background: var(--p-accent) !important;
	width: 35px;
}

@media (max-width: 767.98px) {
#portfolio .container-fluid {
	padding: 80px 20px;
}
#portfolio .work-card {
	height: 350px;
}
#portfolio .admin-edit {
	opacity: 1;
	top: 15px;
	right: 15px;
}
#portfolio .glass-label {
	padding: 15px;
	bottom: 15px;
	left: 15px;
	right: 15px;
}
#portfolio .site-url {
	font-size: 0.8rem;
}
}
#portfolioModal {
 --p-sky: #0ea5e9;
 --p-blue: #0077ff;
 --p-dark: #111827;
 --p-text: #1e293b;
 --p-white: #ffffff;
}
#portfolioModal .portfolio-ajax-container {
	padding: 15px;
}
#portfolioModal .portfolio-header-title {
	font-size: clamp(22px, 4vw, 26px);
	font-weight: 900;
	margin-bottom: 20px;
	color: var(--p-dark);
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}
#portfolioModal .portfolio-main-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 25px;
	align-items: start;
}
#portfolioModal .image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
#portfolioModal .image-wrapper img {
	width: 100%;
	display: block;
}
#portfolioModal .glass-date {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(14, 165, 233, 0.85);
	backdrop-filter: blur(12px) saturate(180%);
	-webkit-backdrop-filter: blur(12px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	z-index: 10;
}
#portfolioModal .glass-date .m {
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0.5px;
}
#portfolioModal .glass-date .y {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 4px;
	opacity: 1;
	line-height: 1;
}
#portfolioModal .description-text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--p-text);
	font-weight: 500;
	margin-bottom: 25px;
}
/* Кнопка */
#portfolioModal .portfolio-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--p-blue);
	color: #fff;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 10px;
	font-weight: 700;
	width: 100%;
	transition: all 0.3s ease;
}
#portfolioModal .portfolio-link-btn:hover {
	background: var(--p-dark);
	transform: translateY(-2px);
}

@media (max-width: 850px) {
#portfolioModal .portfolio-main-grid {
	grid-template-columns: 1fr;
}
}
/*
* ----------------------------------------------------------------------------------------
* Contact
* ----------------------------------------------------------------------------------------
*/
#contact {
 --contact-bg: #e2e8f0;
 --contact-accent: #0ea5e9;
 --contact-glass: rgba(255, 255, 255, 0.4);
 --contact-glass-border: rgba(255, 255, 255, 0.6);
	background-color: var(--contact-bg);
	padding: 100px 0;
}
#contact .section-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -4px;
	line-height: 0.9;
	background: linear-gradient(180deg, #0f172a 30%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 4rem;
}
#contact .grid-topics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	width: 100%;
}
#contact .btn-check + .btn-square {
	position: relative;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: var(--contact-glass);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid var(--contact-glass-border);
	padding: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}
#contact .btn-check + .btn-square::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 18px;
	height: 18px;
	border: 2px solid var(--contact-glass-border);
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "bootstrap-icons";
	font-size: 14px;
	color: #fff;
	transition: 0.3s;
}
#contact .btn-check:checked + .btn-square {
	background: rgba(14, 165, 233, 0.1);
	border-color: var(--contact-accent);
}
#contact .btn-check:checked + .btn-square::after {
	content: "\F26E";
	background: var(--contact-accent);
	border-color: var(--contact-accent);
}

@media (max-width: 576px) {
#contact .grid-topics {
	grid-template-columns: 1fr;
}
}
#contact .divider-blue {
	border-left: 4px solid var(--contact-accent);
	padding-left: 3rem;
}
#contact .form-control {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(5px);
	border: 1px solid var(--contact-glass-border);
	border-radius: 0;
	padding: 12px;
}
#contact .btn-check:checked + .btn-outline-secondary {
	background-color: var(--contact-accent);
	border-color: var(--contact-accent);
	color: #fff;
}
#contact .contact-title-question {
	color: #1e293b;
}
#contact .label-uppercase {
	text-transform: uppercase;
	opacity: 0.5;
}
#contact .fw-black {
	font-weight: 900;
}
#contact .input-custom {
	border-radius: 0;
}
#contact .btn-submit-accent {
	background-color: var(--contact-accent);
	border-radius: 0;
	transition: all 0.3s ease;
	border: none;
}
#contact .btn-submit-accent:hover {
	background-color: #0284c7;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.4);
	color: #fff;
}
#contact .btn-submit-accent:active {
	transform: translateY(0);
}
#contact .btn-method {
	border-radius: 0;
	font-weight: 600;
	transition: all 0.2s ease;
}
#contact .btn-method:hover {
	border-color: var(--contact-accent);
	color: var(--contact-accent);
}

@media (max-width: 991px) {
#contact .divider-blue {
	border-left: none;
	border-top: 4px solid var(--contact-accent);
	padding-left: 0;
	padding-top: 2rem;
	margin-top: 2rem;
}
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/
footer {
 --f-bg: #111827;
 --f-accent: #0ea5e9;
 --f-text: #64748b;
 --f-light: #f1f5f9;
	background-color: var(--f-bg);
	padding: 80px 0 40px;
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-top: auto;
	text-align: center;
}
footer::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 450px;
	background: radial-gradient(circle at center, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0.08) 40%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}
footer .container {
	position: relative;
	z-index: 2;
}
.footer-glow-line {
	position: relative;
	margin: 50px auto 25px;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.footer-glow-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.4) 30%, #0ea5e9 50%, rgba(14, 165, 233, 0.4) 70%, transparent 100%);
	animation: moveGlow 4s linear infinite;
}
 @keyframes moveGlow {
 0% {
left: -100%;
}
 100% {
left: 100%;
}
}
footer .brand-display {
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -4px;
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}
footer .brand-display span {
	color: var(--f-accent);
}
footer .rehv-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}
footer .rehv-item {
	font-size: 0.95rem;
	color: #fff;
	font-family: monospace;
	font-weight: 600;
}
footer .rehv-sep {
	width: 6px;
	height: 6px;
	background-color: var(--f-accent);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--f-accent);
}
footer .bottom-line {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--f-text);
}
/*
* ----------------------------------------------------------------------------------------
* Smart Scroll Button
* ----------------------------------------------------------------------------------------
*/
#smart-scroll-top {
 --btn-size: 60px;
 --accent-color: #0ea5e9;
 --glass-color: rgba(255, 255, 255, 0.1);
 --border-color: rgba(255, 255, 255, 0.2);
	position: fixed;
	right: 40px;
	bottom: 40px;
	width: var(--btn-size);
	height: var(--btn-size);
	cursor: pointer;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#smart-scroll-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#smart-scroll-top .progress-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	background: var(--glass-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid var(--border-color);
	border-radius: 2px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	overflow: visible;
}
#smart-scroll-top .progress-path {
	stroke: var(--accent-color);
	stroke-width: 4px;
	stroke-dasharray: 384;
	stroke-dashoffset: 384;
	stroke-linejoin: miter;
	fill: none;
	filter: drop-shadow(0 0 8px var(--accent-color));
	transition: stroke-dashoffset 0.1s linear;
}
#smart-scroll-top .arrow-icon {
	position: relative;
	z-index: 5;
	width: 24px;
	height: 24px;
	color: #ffffff;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	transition: transform 0.3s ease;
}
#smart-scroll-top:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}
#smart-scroll-top:hover .arrow-icon {
	transform: translateY(-3px);
	color: var(--accent-color);
}
/*
* ----------------------------------------------------------------------------------------
* Heading
* ----------------------------------------------------------------------------------------
*/

#heading {
 --h-accent: #0ea5e9;
 --h-accent-dark: #0369a1;
 --h-text-color: #1f2937;
 --h-mute-color: #94a3b8;
	background: transparent;
	font-family: 'Inter', -apple-system, sans-serif;
}
#heading .ht-breadcrumbs-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 500;
}
#heading .home-link a {
	color: var(--h-accent);
	text-decoration: none;
	transition: color 0.2s;
}
#heading .home-link a:hover {
	color: var(--h-accent);
}
#heading .crumb-separator {
	color: var(--h-accent);
	font-size: 18px;
	line-height: 0;
}
#heading .crumb-item.active {
	color: var(--h-text-color);
}
#heading .ht-main-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px 60px;
}
#heading .ht-title {
	margin: 0;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--h-accent) 0%, var(--h-accent-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 2px 10px rgba(14, 165, 233, 0.1));
	flex: 0 1 auto;
}
#heading .ht-description {
	flex: 1 1 450px;
	padding-left: 25px;
	border-left: 3px solid var(--h-accent);
}
#heading .ht-text-inner {
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
}

@media (max-width: 991px) {
#heading .ht-breadcrumbs-row {
	display: none;
}
#heading.py-5 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}
#heading .ht-main-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
#heading .ht-description {
	padding-left: 20px;
	flex: none;
}
}
#heading .ht-text-inner {
	display: flex;
	align-items: center;
}
#heading .ht-meta-container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	color: var(--ht-text-descr, #64748b);
	font-size: 13px;
	font-weight: 500;
}
/* Элемент (дата, глаз и т.д.) */
#heading .ht-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
}
/* Иконки - делаем синими */
#heading .ht-meta-item i {
	color: var(--ht-accent, #0ea5e9);
	font-size: 14px;
	display: flex;
}
/* Кастомный разделитель */
#heading .ht-meta-divider {
	display: inline-block;
	width: 1px;
	height: 14px;
	background-color: var(--ht-border, #e2e8f0);
	margin: 0 4px;
}
/* Кнопка редактирования */
#heading .ht-edit-btn {
	color: var(--ht-accent, #0ea5e9);
	text-decoration: none;
	font-weight: 700;
	transition: opacity 0.2s;
	display: flex;
	align-items: center;
	gap: 6px;
}
#heading .ht-edit-btn:hover {
	opacity: 0.7;
}

/* На мобилках скрываем палочки, если переносится */
@media (max-width: 576px) {
#heading .ht-meta-divider {
	display: none;
}
#heading .ht-meta-container {
	gap: 10px 20px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Brief
* ----------------------------------------------------------------------------------------
*/
#briefForm {
 --main-blue: #0ea5e9;
 --main-black: #000000;
 --slate-400: #94a3b8;
 --slate-500: #64748b;
 --bg-white: #ffffff;
 --border-light: #e2e8f0;
 --border-hover: #cbd5e1;
 --bg-gradient-end: #f0f9ff;
 --bg-light-hover: #f8fafc;
 --accent-soft: rgba(14, 165, 233, 0.1);
 --danger: #ef4444;
 --success: #10b981;
	margin: 0 auto;
	border: 2px solid #e2e8f0 !important;
	box-shadow: none !important;
	border-radius: 12px;
	overflow: hidden;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(240,249,255,1) 100% ) !important;
}
#briefForm .row, #briefForm .col-lg-6 {
	background: transparent !important;
}
#briefForm .form-control {
	border: 2px solid #e2e8f0;
	border-radius: 15px;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--main-black);
	background-color: #ffffff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: none;
}
#briefForm .form-control:hover {
	border-color: var(--slate-400);
}
#briefForm .form-control:focus {
	border-color: var(--main-blue) !important;
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1) !important;
	outline: none;
}
#briefForm textarea.form-control {
	border-radius: 20px;
	min-height: 120px;
	resize: none;
}
 #briefForm .form-control::placeholder {
 color: var(--slate-400);
 font-weight: 300;
 opacity: 0.7;
}
 #briefForm .form-control:invalid:focus {
 border-color: #ef4444;
 box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}
#briefForm .btn-group {
	background-color: #f1f5f9;
	border-radius: 18px;
	padding: 6px;
	border: 2px solid var(--border-light);
	gap: 4px;
}
#briefForm .btn-outline-dark {
	border: none !important;
	border-radius: 14px !important;
	font-weight: 700;
	transition: all 0.3s ease;
	background: transparent;
	color: var(--slate-500);
}
#briefForm #light_mode:checked + .btn-outline-dark {
	background-color: #ffffff !important;
	color: var(--main-blue) !important;
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15) !important;
}
#briefForm #dark_mode:checked + .btn-outline-dark {
	background-color: var(--main-black) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}
#briefForm .btn-outline-dark:hover {
	background-color: rgba(0,0,0,0.05);
	color: var(--main-black);
}
.autocomplete-wrapper {
	position: relative;
	width: 100%;
}
#briefForm .suggestions-list {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	right: 0;
	background: #ffffff;
	border: 2px solid var(--main-blue);
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	display: none;
	overflow: hidden;
}
#briefForm .suggestions-list li {
	padding: 12px 20px;
	cursor: pointer;
	font-size: 1.05rem;
	color: var(--main-black);
	transition: all 0.2s ease;
	border-left: 4px solid transparent;
}
#briefForm .suggestions-list li:hover {
	background-color: #f0f9ff;
	color: var(--main-blue);
	border-left-color: var(--main-blue);
	padding-left: 25px;
}
#briefForm .suggestions-list li b {
	color: var(--main-blue);
	font-weight: 700;
}
#briefForm .color-checkbox input {
	display: none;
}
#briefForm .color-checkbox label {
	width: 45px;
	height: 45px;
	border-radius: 12px;
	cursor: pointer;
	border: 4px solid #f1f5f9;
	transition: all 0.3s ease;
	display: block;
}
#briefForm .color-checkbox input:checked + label {
	border-color: var(--dark);
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#briefForm .block-card {
	position: relative;
	height: 100%;
	padding: 30px !important;
	border-radius: 0 !important;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	background: rgba(255, 255, 255, 0.15) !important;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: hidden;
}
#briefForm .block-card .form-check-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
#briefForm .block-card::after {
	display: inline-block;
	font-family: 'bootstrap-icons' !important;
	content: "\F584";
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 1.3rem;
	color: var(--slate-400);
	transition: all 0.2s ease-in-out;
	opacity: 0.7;
	z-index: 10;
	pointer-events: none;
}
#briefForm .block-card:hover::after {
	opacity: 1;
	color: var(--main-blue);
}
 #briefForm .block-card:has(.form-check-input:checked)::after {
 content: "\F26D";
 color: var(--main-blue);
 opacity: 1;
 transform: scale(1.1);
}
 #briefForm .block-card:has(.form-check-input:checked) {
 border-color: var(--main-blue) !important;
 background: rgba(14, 165, 233, 0.05) !important;
}
#extra-features {
	border: 2px solid var(--border-light) !important;
	border-radius: 0;
}
#extra-features .feature-icon-box {
	min-width: 50px;
	height: 50px;
	background: var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.4rem;
}
#extra-features .view-example {
	color: var(--main-blue);
	text-decoration: none;
	border-bottom: 1px dashed var(--main-blue);
}
#extra-features .feature-row:hover .feature-icon-box {
	background: var(--main-black);
}
#briefForm .block-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 4px;
	background-color: var(--slate-400);
	transition: all 0.3s ease;
}
#briefForm .block-card:hover {
	background: rgba(255, 255, 255, 0.25) !important;
	transform: translateX(8px);
}
#briefForm .block-card:hover::before {
	background-color: var(--main-blue);
	width: 8px;
}
 #briefForm .block-card:has(.form-check-input:checked) {
 background: rgba(14, 165, 233, 0.12) !important;
 border-color: var(--main-blue) !important;
 box-shadow: inset 0 0 0 1px var(--main-blue);
}
 #briefForm .block-card:has(.form-check-input:checked)::before {
 background-color: var(--main-blue);
 width: 12px;
}
#briefForm .block-card label.fw-bold {
	display: block;
	font-size: 1.25rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--main-black);
	margin-bottom: 12px;
	cursor: pointer;
}
#briefForm .block-card label.fw-bold::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#briefForm .block-card .view-example {
	position: relative;
	z-index: 2;
	font-weight: 800;
	color: var(--main-blue);
	text-decoration: none;
	border-bottom: 2px solid var(--main-blue);
}
#briefForm .auth-submit-group {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	border: 2px solid var(--border-light) !important;
	border-radius: 0;
}
#briefForm #vk-auth-btn:hover {
	background-color: #0066DD;
	transform: translateY(-2px);
}
#briefForm #submit-btn {
	background-color: var(--main-blue);
	border: none;
	border-radius: 0;
	font-weight: 900;
	letter-spacing: 2px;
	transition: all 0.3s ease;
}
#briefForm #submit-btn:not(:disabled):hover {
	background-color: var(--main-black);
	transform: translateY(-2px);
}
#briefForm #submit-btn:disabled {
	background-color: var(--slate-400);
	opacity: 0.6;
	cursor: not-allowed;
}
#briefForm #auth-status-text {
	font-size: 0.75rem;
	letter-spacing: 0.5px;
}
#briefForm #auth-status-text.text-success {
	color: #10b981 !important;
}
#briefForm .extra-small {
	font-size: 0.75rem;
}
#briefForm .btn-method {
	border: 2px solid var(--main-blue);
	color: var(--main-blue);
	background: transparent;
	border-radius: 0;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
}
#briefForm .btn-method:hover {
	background-color: rgba(14, 165, 233, 0.05);
	color: var(--main-black);
	border-color: var(--main-black);
}
#briefForm .btn-check:checked + .btn-method {
	background-color: var(--main-blue) !important;
	border-color: var(--main-blue) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
	transform: translateY(-2px);
}
#briefForm .btn-method i {
	font-size: 1rem;
	transition: transform 0.3s ease;
}
#briefForm .btn-check:checked + .btn-method i {
	transform: scale(1.2);
}
 @keyframes fadeIn {
 from {
opacity: 0;
transform: translateY(10px);
}
 to {
opacity: 1;
transform: translateY(0);
}
}
/*
* ----------------------------------------------------------------------------------------
* Examples
* ----------------------------------------------------------------------------------------
*/
#exModal {
 --main-blue: #0ea5e9;
 --main-white: #ffffff;
 --main-black: #000000;
 --slide-overlay: rgba(0, 0, 0, 0.5);
 --nav-bg: rgba(255, 255, 255, 0.1);
}
#exModal .preview-carousel {
	position: relative;
	overflow: hidden;
}
#exModal .preview-carousel .item {
	height: 450px;
	background-size: cover;
	background-position: center;
	position: relative;
}
#exModal .preview-carousel .slide-overlay {
	width: 100%;
	height: 100%;
	background: var(--slide-overlay);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 60px;
}
#exModal .preview-carousel .slide-content {
	text-align: center;
	color: var(--main-white) !important;
}
#exModal .preview-carousel .slide-content h3 {
	color: var(--main-white) !important;
}
#exModal .preview-carousel .slide-btn {
	background: var(--main-blue);
	color: var(--main-white);
	border-radius: 0;
	padding: 12px 30px;
	font-weight: 800;
	text-transform: uppercase;
	border: none;
	margin-top: 20px;
	transition: 0.3s;
}
#exModal .preview-carousel .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0;
	z-index: 20;
	pointer-events: none;
}
#exModal .preview-carousel .owl-nav {
	display: block !important;
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	z-index: 100;
	pointer-events: none;
}
#exModal .preview-carousel .owl-nav {
	display: block !important;
	position: absolute;
	top: 40%;
	width: 100%;
	transform: translateY(-50%);
	z-index: 100;
	pointer-events: none;
}
#exModal .preview-carousel .owl-nav .owl-prev, #exModal .preview-carousel .owl-nav .owl-next {
	position: absolute;
	width: 60px;
	height: 80px;
	background: rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	color: #fff !important;
	font-size: 40px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	transition: 0.3s;
	border-radius: 0 !important;
	cursor: pointer;
}
#exModal .preview-carousel .owl-nav .owl-prev {
	left: 0;
}
#exModal .preview-carousel .owl-nav .owl-next {
	right: 0;
}
#exModal .preview-carousel .owl-nav :hover {
	background: var(--main-blue) !important;
	border-color: var(--main-blue) !important;
	opacity: 1;
}
#exModal .preview-carousel .owl-nav.disabled {
	display: block !important;
}
#exModal .owl-nav [class*='owl-'] {
	margin: 0 !important;
	padding: 0 !important;
}
#exModal .about-preview h2 {
	color: var(--main-black);
	text-transform: uppercase;
	letter-spacing: 2px;
}
#exModal .about-preview .lead {
	color: var(--slate-500);
	line-height: 1.6;
}
#exModal .about-preview li {
	font-size: 1.1rem;
	color: var(--main-black);
}
#exModal .about-preview .text-primary {
	color: var(--main-blue) !important;
	margin-right: 10px;
}
#exModal .about-img-placeholder {
	height: 300px;
	background-color: #f1f5f9;
	background-size: cover;
	background-position: center;
	border: 2px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--slate-400);
	font-weight: 900;
	text-transform: uppercase;
	position: relative;
}
#exModal .about-img-placeholder::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 165, 233, 0.05);
}
#exModal .benefit-icon {
	font-size: 3rem;
	color: var(--main-blue);
	margin-bottom: 20px;
	display: inline-block;
	transition: transform 0.3s ease;
}
#exModal .benefit-card:hover .benefit-icon {
	transform: scale(1.1);
}
#exModal .service-card {
	background: #fff;
	border: 1px solid var(--border-light);
	height: 100%;
	transition: all 0.3s ease;
	border-radius: 0 !important;
	overflow: hidden;
}
#exModal .service-card:hover {
	border-color: var(--main-blue);
	box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
#exModal .service-img {
	height: 200px;
	background-size: cover;
: center;
	background-color: #f1f5f9;
	border-bottom: 2px solid var(--main-blue);
}
#exModal .service-body {
	padding: 25px;
}
#exModal .service-card h4 {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	color: var(--main-black);
}
#exModal .service-card p {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 20px;
}
#exModal .service-link {
	color: var(--main-blue);
	text-decoration: none;
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 2px solid transparent;
	transition: 0.3s;
}
#exModal .service-link:hover {
	color: var(--main-black);
	border-bottom-color: var(--main-blue);
}
#exModal .service-link i {
	margin-left: 5px;
}
#exModal .gallery-card {
	background: #fff;
	border: 1px solid var(--border-light);
	transition: all 0.3s ease;
	cursor: pointer;
	height: 100%;
}
#exModal .gallery-img {
	height: 220px;
	background-size: cover;
	background-position: center;
	background-color: #f1f5f9;
	border-bottom: 2px solid var(--main-blue);
	transition: filter 0.3s ease;
}
#exModal .gallery-info {
	padding: 15px;
	background: #fff;
}
#exModal .gallery-info h5 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--main-black);
}
#exModal .gallery-info p {
	font-size: 0.8rem;
	margin-top: 3px !important;
}
#exModal .gallery-card:hover {
	border-color: var(--main-blue);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1);
}
#exModal .gallery-card:hover .gallery-img {
	filter: brightness(1.1);
}
#exModal .btn-outline-primary {
	color: var(--main-blue);
	border-color: var(--main-blue);
	letter-spacing: 1px;
	font-size: 0.8rem;
}
#exModal .btn-outline-primary:hover {
	background-color: var(--main-blue);
	color: #fff;
}
#exModal .step-item {
	padding: 30px 15px;
	background: rgba(14, 165, 233, 0.03);
	border: 1px solid var(--border-light);
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
}
#exModal .step-num {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 3rem;
	font-weight: 900;
	color: rgba(14, 165, 233, 0.1);
	line-height: 1;
	z-index: 0;
}
#exModal .step-icon {
	font-size: 2.5rem;
	color: var(--main-blue);
	margin-bottom: 20px;
	display: inline-block;
	position: relative;
	z-index: 1;
}
#exModal .step-item h5 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}
#exModal .step-item p {
	font-size: 0.85rem;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}
#exModal .step-item:hover {
	background: #fff;
	border-color: var(--main-blue);
	transform: translateY(-5px);
}
#exModal .step-item:hover .step-num {
	color: rgba(14, 165, 233, 0.2);
}
#exModal .contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
}
#exModal .contact-icon {
	font-size: 1.5rem;
	color: var(--main-blue);
}
#exModal .uppercase {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}
#exModal .social-btn {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1f5f9;
	color: var(--main-black);
	text-decoration: none;
	font-size: 1.2rem;
	transition: 0.3s;
}
#exModal .social-btn:hover {
	background: var(--main-blue);
	color: #fff;
	transform: translateY(-3px);
}
#exModal .map-placeholder {
	height: 350px;
	background-color: #e2e8f0;
	background-image: none;
	background-size: cover;
	background-position: center;
	position: relative;
	border: 1px solid var(--border-light);
}
#exModal .map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 165, 233, 0.1);
	backdrop-filter: blur(4px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--main-blue);
	font-weight: 800;
	text-transform: uppercase;
	gap: 10px;
}
#exModal .map-overlay i {
	font-size: 3rem;
}
#exModal #yandex-map-container {
	filter: grayscale(0.2) contrast(1.1);
	transition: filter 0.3s ease;
}
#exModal #yandex-map-container:hover {
	filter: grayscale(0);
}
#exModal .social-btn {
	color: var(--main-blue);
	border-color: var(--border-light) !important;
	text-decoration: none;
	transition: 0.3s;
}
#exModal .social-btn:hover {
	background: var(--main-blue);
	color: #fff;
	border-color: var(--main-blue) !important;
}
#yandex-map-container [class*="ymaps-2"][class*="-map"] {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
}
#yandex-map-container {
	position: relative;
	overflow: hidden;
}
#exModal .form-range {
	height: 1.5rem;
	padding: 0;
	background: transparent;
}
 #exModal .form-range::-webkit-slider-runnable-track {
 width: 100%;
 height: 8px;
 cursor: pointer;
 background: #e2e8f0;
 border-radius: 0;
 border: 1px solid #cbd5e1;
}
 #exModal .form-range::-moz-range-track {
 width: 100%;
 height: 8px;
 cursor: pointer;
 background: #e2e8f0;
 border-radius: 0;
 border: 1px solid #cbd5e1;
}
 #exModal .form-range::-webkit-slider-thumb {
 height: 24px;
 width: 12px;
 background: var(--main-blue);
 cursor: pointer;
 -webkit-appearance: none;
 margin-top: -9px;
 border-radius: 0;
 border: none;
 transition: background 0.3s ease;
}
 #exModal .form-range::-moz-range-thumb {
 height: 24px;
 width: 12px;
 background: var(--main-blue);
 cursor: pointer;
 border-radius: 0;
 border: none;
}
 #exModal .form-range:active::-webkit-slider-runnable-track {
 background: #f1f5f9;
}
 #exModal .form-range:focus::-webkit-slider-thumb {
 box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}
/*
* ----------------------------------------------------------------------------------------
* Price Section
* ----------------------------------------------------------------------------------------
*/
#price-section {
 --ht-accent: #0ea5e9;
 --ht-accent-dark: #0369a1;
 --ht-border: #e2e8f0;
 --ht-bg-hover: #f8fafc;
 --ht-text-title: #1e293b;
 --ht-text-descr: #64748b;
	margin: 40px 0;
	font-family: 'Inter', -apple-system, sans-serif;
}
#price-section .js-download-btn {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	background: #fff;
	border: 1px solid var(--ht-border);
	border-bottom: 3px solid var(--ht-accent);
	color: var(--ht-text-title);
	text-decoration: none;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 30px;
	animation: htPulse 3s infinite ease-in-out;
}
#price-section .js-download-btn i {
	color: var(--ht-accent);
	font-size: 1.4rem;
	transition: all 0.3s ease;
}
#price-section .js-download-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.15), transparent);
}
#price-section .js-download-btn:hover::after {
	left: 150%;
	transition: 0.8s ease-in-out;
}
#price-section .js-download-btn:hover {
	border-color: var(--ht-accent);
	color: var(--ht-accent);
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15) !important;
}
#price-section .js-download-btn:hover i {
	transform: scale(1.2) rotate(-5deg);
}
#price-section .js-download-btn::before {
	content: "XLSX";
	position: absolute;
	top: 0;
	right: 10px;
	background: var(--ht-accent);
	color: #fff;
	font-size: 8px;
	padding: 2px 6px;
	font-weight: 900;
	transform: translateY(-100%);
	transition: transform 0.2s ease;
}
#price-section .js-download-btn:hover::before {
	transform: translateY(0);
}
#price-section .ht-table {
	width: 100%;
	border-collapse: collapse;
	vertical-align: middle;
}
#price-section thead th {
	padding: 20px 15px;
	border-bottom: 2px solid var(--ht-accent);
	color: var(--ht-accent);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
}
#price-section tbody tr {
	border-bottom: 1px solid var(--ht-border);
	transition: all 0.2s ease;
}
#price-section tbody tr:hover {
	background-color: var(--ht-bg-hover);
}
#price-section td {
	padding: 22px 15px;
}
#price-section .ht-col-name {
	width: 25%;
	font-weight: 700;
	color: var(--ht-text-title);
	font-size: 16px;
}
#price-section .ht-col-descr {
	width: 45%;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ht-text-descr);
}
#price-section .ht-badge {
	display: inline-block;
	padding: 4px 10px;
	background: #f1f5f9;
	color: #475569;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
}
#price-section .ht-col-price {
	width: 15%;
	text-align: right;
	font-weight: 800;
	font-size: 18px;
	color: var(--ht-accent);
	white-space: nowrap;
}
 @keyframes htPulse {
 0% {
box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.3);
}
 70% {
box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
}
 100% {
box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
}
}

@media (max-width: 992px) {
#price-section .ht-col-descr {
	display: none;
}
#price-section .ht-col-name {
	width: 50%;
}
#price-section .ht-table thead th:nth-child(2) {
	display: none;
}
}

@media (max-width: 576px) {
#price-section .js-download-btn {
	width: 100%;
	justify-content: center;
}
}
/*
* ----------------------------------------------------------------------------------------
* Documents
* ----------------------------------------------------------------------------------------
*/

#documents {
	margin: 40px 0;
}
#documents .doc-card {
	background: var(--p-white);
	border: 1px solid var(--p-border);
	border-radius: 4px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
}
#documents .doc-card:hover {
	border-color: var(--p-sky);
	transform: translateY(-3px);
}
#documents .doc-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}
#documents .doc-icon-box {
	width: 45px;
	height: 45px;
	background: rgba(14, 165, 233, 0.05);
	color: var(--p-sky);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: 0.3s;
	border: 1px solid transparent;
}
#documents .doc-card:hover .doc-icon-box {
	background: var(--p-sky);
	color: var(--p-white);
}
#documents .doc-meta {
	text-align: right;
}
#documents .doc-ext {
	font-size: 10px;
	font-weight: 900;
	color: var(--p-sky);
	background: rgba(14, 165, 233, 0.1);
	padding: 2px 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#documents .doc-date {
	display: block;
	font-size: 11px;
	color: var(--p-slate-400);
	margin-top: 5px;
}
#documents .doc-body {
	margin-bottom: 25px;
	flex-grow: 1;
}
#documents .doc-title {
	font-weight: 700;
	color: var(--p-dark);
	font-size: 1.05rem;
	line-height: 1.4;
	display: block;
}
#documents .js-download-btn {
	display: inline-flex;
	align-items: center;
	color: var(--p-dark);
	text-decoration: none;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 5px;
	border-bottom: 2px solid var(--p-border);
	transition: 0.3s;
}
#documents .js-download-btn:hover {
	color: var(--p-sky);
	border-color: var(--p-sky);
}
#documents .js-download-btn i {
	font-size: 1rem;
}
#documents .ext-pdf i {
	color: #ef4444;
}
#documents .ext-xls i, #documents .ext-xlsx i {
	color: #10b981;
}
#documents .doc-card:hover i {
	color: inherit;
}
/*
* ----------------------------------------------------------------------------------------
* Error Page
* ----------------------------------------------------------------------------------------
*/
#error-page {
 --ep-sky: #0ea5e9;
 --ep-dark: #0f172a;
 --ep-border: #e2e8f0;
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: #ffffff;
	overflow: hidden;
	font-family: 'Inter', sans-serif;
}
#error-page .ep-404 {
	font-size: clamp(120px, 25vw, 280px);
	font-weight: 900;
	line-height: 1;
	position: relative;
	color: transparent;
	-webkit-text-stroke: 2px var(--ep-sky);
	margin-bottom: 20px;
	background: linear-gradient(to top, var(--ep-sky) 0%, var(--ep-sky) 100%);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 100% 0%;
	-webkit-background-clip: text;
	animation: ep-fill 4s infinite alternate ease-in-out;
}
#error-page .ep-404::before, #error-page .ep-404::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	-webkit-text-stroke: 0;
}
#error-page .ep-404::before {
	color: #ff0055;
	clip-path: inset(45% 0 45% 0);
	animation: ep-glitch-top 2s infinite;
}
#error-page .ep-404::after {
	color: var(--ep-sky);
	clip-path: inset(50% 0 30% 0);
	animation: ep-glitch-bottom 1.5s infinite;
	filter: drop-shadow(0 0 5px var(--ep-sky));
}
#error-page .ep-btn-reboot {
	position: relative;
	padding: 18px 45px;
	background: var(--ep-dark);
	border: none;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	cursor: pointer;
	overflow: hidden;
	transition: 0.3s;
}
#error-page .ep-btn-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
}
#error-page .ep-btn-glow {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
	transition: 0.5s;
	z-index: 1;
}
#error-page .ep-btn-reboot:hover .ep-btn-glow {
	left: 100%;
}
#error-page .ep-btn-reboot:hover {
	background: var(--ep-sky);
	box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
	transform: scale(1.05);
}

/* АНИМАЦИИ */
@keyframes ep-fill {
 0% {
background-size: 100% 0%;
}
 100% {
background-size: 100% 100%;
}
}
 @keyframes ep-glitch-top {
 0% {
transform: translate(0);
}
 20% {
transform: translate(-8px, 4px) skew(10deg);
}
 40% {
transform: translate(8px, -4px) skew(-10deg);
}
 60% {
transform: translate(-4px, 2px);
}
 100% {
transform: translate(0);
}
}
 @keyframes ep-glitch-bottom {
 0% {
transform: translate(0);
}
 10% {
transform: translate(10px, -2px);
opacity: 0.5;
}
 20% {
transform: translate(0);
opacity: 1;
}
 100% {
transform: translate(0);
}
}
#error-page .ep-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(var(--ep-border) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.5;
}
#error-page .ep-headline {
	font-weight: 900;
	font-size: 2.8rem;
	color: var(--ep-dark);
}
#error-page .ep-accent {
	color: var(--ep-sky);
	text-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}
#error-page .ep-desc {
	color: #64748b;
	font-size: 1.1rem;
}
#error-page .ep-status-bar {
	margin-top: 50px;
	font-family: monospace;
	color: #94a3b8;
}
#error-page .ep-blink {
	color: #ff0055;
	animation: blink 1s infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
