svg {
	max-width: 100%;
	height: auto;
}

section {
	position: relative;
	overflow-x: hidden;
}

:root {
	--accent: #C9A45C;
	--bg-card: #161616;
	--bg-dark: #1c1c1c;
	--text-dim: #a0a0a0;
	--text-main: #dbdbdb;
	--text-white: #ffffff;
	--border-color: #222222;
	--grid-color: rgba(221, 221, 221, 0.1);
	--transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
	background-color: var(--bg-dark);
	background-image: url("bg-pattern.svg");
	background-repeat: repeat;
	color: var(--text-main);
	font-family: 'Manrope', sans-serif;
	overflow-x: hidden;
	letter-spacing: 0;
	font-size: 1rem;
	line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
	body {
		cursor: none;
	}
}

h1, h2, .h2, h3, .display-5 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3.h3-style {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

@media (max-width: 575.98px) {
	h3.h3-style {
		font-size: 1.25rem;
	}
}

.cursor,
.cursor-follower {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	border-radius: 50%;
	z-index: 9999;
	will-change: transform;
}

.cursor {
	width: 10px;
	height: 10px;
	background: var(--accent);
}

.cursor-follower {
	width: 40px;
	height: 40px;
	border: 1px solid var(--accent);
	z-index: 9998;
}

@media (hover: none) and (pointer: coarse) {
	.cursor,
  .cursor-follower {
		display: none;
	}
}

.noise {
	background: url("noise.svg") repeat;
	position: fixed;
	inset: 0;
	opacity: 0.04;
	pointer-events: none;
	z-index: 999;
}

.accent {
	color: var(--accent);
}

.navbar {
	background: rgba(30, 30, 30, 1);
	padding: 2rem 0;
	transition: var(--transition);
}

.navbar.scrolled {
	backdrop-filter: blur(10px);
	background: rgba(13, 13, 13, 0.8);
	padding: 1rem 0;
}

.navbar-brand {
	color: var(--text-main) !important;
	font-family: 'Space Grotesk';
	font-size: 1.5rem;
	font-weight: 700;
}

.nav-link {
	color: var(--accent) !important;
	font-weight: 500;
	margin-left: 0.6rem;
	transition: var(--transition);
}

.nav-item .phone {
	color: var(--text-white) !important;
	font-weight: 700;
}

.nav-link:hover {
	color: var(--accent) !important;
}

.hero {
	position: relative;
	padding: 250px 0;
}

@media (max-width: 575.98px) {
	.hero {
		padding: 180px 0 80px 0;
	}
}

.hero-title {
	font-size: calc(2rem + 4vw);
	line-height: 1;
	margin-bottom: 2rem;
}

@media (min-width: 992px) {
	.hero-text {
		max-width: 70%;
	}
}

.hero-stats {
	border-left: 1px solid var(--accent);
	padding-left: 2rem;
}

@media (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
    .hero-stats-tablet {
        display: flex;
        gap: 2rem;
    }
    
    .hero-stats-tablet > div:first-child {
        margin-bottom: 0;
    }
}

section[data-text] {
	position: relative;
}

section[data-text]::after {
	content: attr(data-text);
	position: absolute;
	right: 0;
	bottom: 0;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: clamp(10rem, 30vw, 40rem);
	line-height: 1;
	opacity: 0.03;
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
	--x: 0%;
	--y: 0%;
	transform: translate(var(--x), var(--y));
}

.hero::after {
	--y: -10%;
}

#services::after {
	--y: -50%;
}

#money::after {
	--y: -20%;
}

#contacts::after {
	--y: -10%;
}

@media (max-width: 767.98px) {
	section[data-text]::after {
		display: none;
	}
}

.hero {
	overflow: hidden;
}

.btn-main {
	background: var(--accent);
	border: none;
	border-radius: 0;
	color: black;
	font-weight: 600;
	padding: 1.25rem 2.5rem;
	transition: var(--transition);
}

.btn-main:hover {
	background: var(--accent);
	color: white;
}

.btn-outline-main {
	border: 1px solid var(--accent);
	border-radius: 0;
	color: var(--accent);
	padding: 1.25rem 2.5rem;
	transition: var(--transition);
}

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

.section-num {
	color: var(--accent);
	display: block;
	font-weight: 500;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

#services {
	overflow: hidden;
	position: relative;
}

.service-row {
	padding: 3rem 0;
	position: relative;
	transition: var(--transition);
}

@media (max-width: 575.98px) {
	.service-row {
		padding: 1rem 0;
	}
}

.service-row h3 {
	font-size: clamp(1.625rem, 4vw, 2.25rem);
	line-height: 1.1;
	margin: 0 0 1rem 0;
}

.service-row h3:hover {
	color: var(--accent);
}

.service-row .bi {
	color: var(--accent);
	font-size: 2rem;
	opacity: 0;
	transition: var(--transition);
}

.service-row:hover .bi {
	opacity: 1;
	transform: translateX(10px);
}

@media (max-width: 767.98px) {
	.service-row svg {
		display: none;
	}
}

#money {
	position: relative;
	overflow: hidden;
}

.illustration-container {
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 420px;
}

.svg-anim path, .svg-anim circle, .svg-anim rect {
	stroke-width: 1.5;
}

.anim-float {
	animation: float 6s ease-in-out infinite;
}

.anim-pulse {
	animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(0.95);
		opacity: 0.7;
	}
}

.bento-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	height: 100%;
	padding: 2.5rem;
	transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
	.bento-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 20px 40px rgba(0,0,0,0.35);
		border-color: var(--accent);
	}
}

@media (hover: none) {
	.bento-card:active {
		background: #1a1a1a;
		border-color: var(--accent);
		transition: duration 0.1s;
	}
}

#contacts {
	position: relative;
	overflow: hidden;
}

#form label {
	color: var(--accent);
}

#form a {
	color: var(--accent);
}

#form a:hover {
	text-decoration: none;
}

.form-control {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--border-color);
	border-radius: 0;
	color: var(--text-white);
	padding: 0;
	transition: var(--transition);
}

.form-control:focus {
	background: transparent;
	border-color: var(--accent);
	box-shadow: none;
	color: white;
}

#form input::placeholder,
#form textarea::placeholder {
	color: rgba(199, 197, 197, 0.8);
	opacity: 1;
}

.form-check-input:checked {
	background-color: var(--accent);
	border-color: var(--accent);
}

.form-check-input:focus {
	box-shadow: 0 0 0 0.25rem rgba(201, 164, 92, 0.25);
	border-color: var(--accent);
}

footer {
	color: var(--text-dim);
	padding: 4rem 0;
}

footer a {
	color: var(--text-dim);
}

@media (min-width: 768px) {
	.w-md-auto {
		width: auto !important;
	}
}



#_uwndWnd1 {
	font-family: 'Manrope', sans-serif !important;
}

.xw-plain {
    box-shadow: none !important;
}

.xw-shadow {
    box-shadow: none !important;
}


/* cookie */

.cookie-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    
    padding: 12px 20px;
    background: rgba(13, 13, 13, 0.8); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    max-width: calc(100% - 60px); 
    box-sizing: border-box;
}

.cookie-banner .cookie-text {
    margin-right: 20px;
    line-height: 1.4;
    color: var(--text-dim);
}

.cookie-banner .cookie-btn {
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap; 
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%; 
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 16px 20px;
        
        flex-wrap: wrap; 
        justify-content: space-between;
    }
    
    .cookie-banner .cookie-text {
        margin-right: 10px;
        flex: 1;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .cookie-banner {
        gap: 10px;
    }
    .cookie-banner .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(30px); }
}

/* messengers */

.contact-messengers .text-dim {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.messenger-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--accent);
  transition: var(--transition);
}

.messenger-link:hover {
  opacity: 0.9;
  transform: scale(1.06);
}

.messenger-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.messenger-link a {
  color: var(--accent);
  text-decoration: none;
}

/* sticky-brief */

.sticky-brief {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 26px;
	background: rgba(201, 164, 92, 0.12);
	color: #fff;
	border: 1px solid rgba(201, 164, 92, 0.35);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

.sticky-brief:hover {
	background: rgba(201, 164, 92, 0.25);
	color: #fff;
	transform: translateY(-3px);
}

.sticky-brief svg {
	color: #c9a45c;
}

.btn-close-custom {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.6);
	font-size: 22px;
	cursor: pointer;
	transition: all 0.2s;
	padding: 0;
	line-height: 1;
}

.btn-close-custom:hover {
	background: rgba(255, 0, 0, 0.2);
	color: #fff;
	border-color: rgba(255, 0, 0, 0.3);
}
