.hero {
	position: relative;
	min-height: 100vh;
	padding: 100px 0 0;
	max-width: 1800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--bg);
}
.hero-body {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.hero-top-badge {
	position: absolute;
	top: 28px;
	right: 40px;
	display: flex;
	align-items: center;
	gap: 9px;
	z-index: 10;
	opacity: 0;
	animation: hero-fade-in 0.6s ease 0.3s forwards;
}
.hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	animation: hero-pulse 2.2s ease-in-out infinite;
}
@keyframes hero-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.35;
		transform: scale(0.75);
	}
}
.hero-badge-text {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--white);
}
.hero-text-zone {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-row {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 4;
}
.hero-big-word {
	display: block;
	font-size: clamp(80px, 14.5vw, 220px);
	font-weight: 900;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	line-height: 0.9;
	white-space: nowrap;
}
.hero-row-top .hero-big-word {
	opacity: 0;
	animation: hero-slide-left 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.05s
		forwards;
}
.hero-row-bottom .hero-big-word {
	text-align: right;
	color: var(--gold);
	opacity: 0;
	animation: hero-slide-right 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s
		forwards;
}
@keyframes hero-slide-left {
	from {
		opacity: 0;
		transform: translateX(-80px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes hero-slide-right {
	from {
		opacity: 0;
		transform: translateX(80px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes hero-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes hero-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes hero-scale-in {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.86);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}
.hero-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: clamp(260px, 42vw, 640px);
	aspect-ratio: 4/5;
	border-radius: 10px;
	overflow: hidden;
	z-index: 2;
	opacity: 0;
	animation: hero-scale-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 55%,
		rgba(0, 0, 0, 0.3) 100%
	);
	pointer-events: none;
}
.hero-bottom {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 32px 40px 44px;
	gap: 32px;
}
.hero-copy {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 520px;
	opacity: 0;
	animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.hero-desc {
	font-size: clamp(16px, 1.5vw, 22px);
	color: var(--white-dim);
	line-height: 1.7;
	font-weight: 400;
}
.hero-follow {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.hero-follow-label {
	font-size: clamp(13px, 1.1vw, 17px);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white-dim);
	white-space: nowrap;
}
.hero-social-icons {
	display: flex;
	align-items: center;
	gap: 12px;
}
.hero-social-icon {
	width: clamp(44px, 3.5vw, 56px);
	height: clamp(44px, 3.5vw, 56px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white-dim);
	font-size: clamp(16px, 1.3vw, 22px);
	text-decoration: none;
	transition:
		color 0.22s ease,
		border-color 0.22s ease,
		background 0.22s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease;
}
.hero-social-icon:hover {
	color: var(--gold);
	border-color: var(--gold-border);
	background: var(--gold-dim);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}
.hero-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	opacity: 0;
	animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
	flex-shrink: 0;
}
.hero-avatars-stack {
	display: flex;
	align-items: center;
}
.hero-avatar {
	width: clamp(42px, 3.2vw, 58px);
	height: clamp(42px, 3.2vw, 58px);
	border-radius: 50%;
	border: 2.5px solid var(--bg);
	overflow: hidden;
	margin-right: -14px;
	background: #222;
	flex-shrink: 0;
}
.hero-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-avatar-last {
	margin-right: 0;
}
.hero-meta-text-block {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}
.hero-stars-row {
	display: flex;
	align-items: center;
	gap: 3px;
}
.hero-stars-row i {
	font-size: clamp(14px, 1.2vw, 20px);
	color: var(--gold);
}
.hero-rating-score {
	font-size: clamp(15px, 1.3vw, 22px);
	font-weight: 700;
	color: var(--white);
	margin-left: 6px;
}
.hero-clients-line {
	font-size: clamp(14px, 1.2vw, 20px);
	font-weight: 600;
}
.hero-clients-line span {
	color: var(--white-dim);
	font-weight: 600;
}
.hero-partners {
	position: relative;
	z-index: 10;
	padding: 0 0 56px;
	opacity: 0;
	animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
	display: flex;
	align-items: center;
	gap: 0;
    margin-top: 80px;
}
.hero-partners-label {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
	padding: 0 0 0 40px;
	flex-shrink: 0;
}
.hero-partners-track {
	position: relative;
	flex: 1;
	height: 64px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-partners-track::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 8rem;
	right: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.hero-partners-logos {
	list-style: none;
	display: flex;
	align-items: center;
	animation: hero-scroll-left 40s linear infinite;
}
.hero-partners-logos li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0 28px;
}
.hero-partners-logos li img {
	height: 36px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.6;
	transition:
		opacity 0.3s ease,
		filter 0.3s ease;
}
.hero-partners-logos li:hover img {
	opacity: 1;
	filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}
.hero-partners-sep {
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.3);
	flex-shrink: 0;
}
@keyframes hero-scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@media (max-width: 900px) {
	.hero-image {
		width: clamp(200px, 50vw, 400px);
	}
	.hero-big-word {
		font-size: clamp(64px, 14vw, 140px);
	}
}
@media (max-width: 640px) {
	.hero {
		padding: 80px 0 0;
	}
	.hero-top-badge {
		right: 24px;
		top: 20px;
	}
	.hero-big-word {
		font-size: clamp(52px, 15.5vw, 100px);
	}
	.hero-image {
		width: clamp(150px, 52vw, 260px);
	}
	.hero-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 24px 36px;
		gap: 28px;
	}
	.hero-meta {
		align-items: flex-start;
		width: 100%;
	}
	.hero-meta-text-block {
		align-items: flex-start;
	}
	.hero-partners {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 0 40px;
		gap: 14px;
	}
	.hero-partners-label {
		padding: 0 0 0 24px;
	}
	.hero-partners-track::after {
		width: 4rem;
	}
}
@media (max-width: 420px) {
	.hero-big-word {
		font-size: clamp(42px, 16vw, 72px);
	}
	.hero-image {
		width: 52vw;
	}
}

.serv-section {
	width: 100%;
	background: var(--bg);
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}

.serv-inner {
	max-width: 1800px;
	margin: 100px auto;
	padding: 0 60px;
	position: relative;
}

.serv-header {
    flex-direction: column;
    gap: 20px;
}

.serv-header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.serv-title {
    font-size: clamp(52px, 8vw, 128px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
	margin-bottom: 50px;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.serv-title.in-view {
    opacity: 1;
    transform: translateY(0);
}

.serv-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.serv-tag.in-view {
	opacity: 1;
	transform: translateY(0);
}

.serv-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.serv-tag-text {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white-dim);
}

.serv-explore-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border: 1px solid var(--gold-border);
	border-radius: 6px;
	color: var(--gold);
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.04em;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.2s ease,
		box-shadow 0.25s ease;
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.6s ease 0.15s,
		transform 0.6s ease 0.15s,
		background 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease;
	flex-shrink: 0;
}

.serv-explore-btn.in-view {
	opacity: 1;
	transform: translateY(0);
}

.serv-explore-btn:hover {
	background: var(--gold);
	color: #000;
	box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
}

.serv-explore-btn i {
	font-size: 11px;
	transition: transform 0.2s ease;
}

.serv-explore-btn:hover i {
	transform: translateX(3px);
}

.serv-list {
	position: relative;
	list-style: none;
}

.serv-hover-img {
	position: absolute;
	top: 0;
	right: -20px;
	width: clamp(280px, 22vw, 400px);
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	transform: scale(0.96) translateY(8px);
	z-index: 20;
}

.serv-hover-img.visible {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.serv-hover-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.serv-item {
	position: relative;
	display: grid;
	grid-template-columns: 80px 1fr auto;
	align-items: center;
	gap: 0 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--white-faint);
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.serv-item:first-child {
	border-top: 1px solid var(--white-faint);
}

.serv-item.in-view {
	opacity: 1;
	transform: translateY(0);
}

.serv-item-num {
	font-size: 12px;
	font-weight: 500;
	color: var(--white-dim);
	letter-spacing: 0.06em;
	padding-top: 4px;
	align-self: flex-start;
	transition: color 0.25s ease;
}

.serv-item-name {
	font-size: clamp(36px, 5vw, 76px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--white);
	transition:
		color 0.25s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	align-items: center;
	gap: 18px;
}

.serv-item-sub {
	font-size: 13px;
	color: var(--white-dim);
	font-weight: 400;
	letter-spacing: 0;
	margin-top: 6px;
	max-width: 340px;
	line-height: 1.5;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-height 0.4s ease,
		opacity 0.35s ease,
		margin-top 0.3s ease;
}

.serv-item:hover .serv-item-sub {
	max-height: 60px;
	opacity: 1;
	margin-top: 10px;
}

.serv-item-text {
	display: flex;
	flex-direction: column;
}

.serv-item-arrow {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--white-dim);
	flex-shrink: 0;
	transition:
		border-color 0.25s ease,
		color 0.25s ease,
		background 0.25s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.serv-item:hover .serv-item-name {
	color: var(--gold);
	transform: translateX(8px);
}

.serv-item:hover .serv-item-num {
	color: var(--gold);
}

.serv-item:hover .serv-item-arrow {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-dim);
	transform: rotate(-45deg);
}

.serv-item.active .serv-item-name {
  color: var(--gold);
  transform: translateX(8px);
}

.serv-item.active .serv-item-num {
  color: var(--gold);
}

.serv-item.active .serv-item-arrow {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: rotate(-45deg);
}

.serv-item.active .serv-item-sub {
  max-height: 60px;
  opacity: 1;
  margin-top: 10px;
}

.serv-bottom {
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.serv-bottom.in-view {
	opacity: 1;
	transform: translateY(0);
}

.serv-explore-btn-lg {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 40px;
	background: var(--gold);
	color: #000;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	letter-spacing: 0.03em;
	transition:
		background 0.25s ease,
		transform 0.2s ease,
		box-shadow 0.25s ease;
}

.serv-explore-btn-lg:hover {
	background: #e0c040;
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.serv-explore-btn-lg i {
	transition: transform 0.2s ease;
}

.serv-explore-btn-lg:hover i {
	transform: translateX(4px);
}

@media (max-width: 900px) {
	.serv-inner {
		padding: 0 40px;
	}

	.serv-hover-img {
		display: none;
	}

	.serv-item-name {
		font-size: clamp(28px, 5.5vw, 56px);
	}

	.serv-item {
		grid-template-columns: 56px 1fr auto;
		gap: 0 20px;
	}
}

@media (max-width: 600px) {
	.serv-section {
		padding: 70px 0 60px;
	}

	.serv-inner {
		padding: 0 24px;
	}

	.serv-header {
		margin-bottom: 44px;
		flex-wrap: wrap;
		gap: 16px;
	}

	.serv-item {
		grid-template-columns: 44px 1fr auto;
		gap: 0 14px;
		padding: 22px 0;
	}

	.serv-item-name {
		font-size: clamp(24px, 7vw, 42px);
	}

	.serv-item-arrow {
		width: 40px;
		height: 40px;
		font-size: 15px;
	}

	.serv-item-num {
		font-size: 11px;
	}
}

.faq-section {
	width: 100%;
	padding: 100px 0 110px;
	background: var(--bg);
	position: relative;
}

.faq-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 60px;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-container.in-view {
	opacity: 1;
	transform: translateY(0);
}

.faq-header {
	text-align: center;
	margin-bottom: 64px;
}

.faq-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

.faq-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	animation: faqPulse 2s ease-in-out infinite;
}

@keyframes faqPulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.5);
	}
}

.faq-tag-text {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

.faq-title {
	font-size: clamp(42px, 5.5vw, 72px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.95;
	color: var(--white);
}

.faq-title span {
	color: var(--gold);
}

.faq-desc {
	font-size: 16px;
	color: var(--white-dim);
	line-height: 1.75;
	max-width: 600px;
	margin: 24px auto 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:hover {
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

.faq-item:first-child:hover {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
	border-bottom-color: var(--gold-border);
}

.faq-item.active:first-child {
	border-top-color: var(--gold-border);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 0;
	background: none;
	border: none;
	color: var(--white);
	font-family: var(--font);
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.faq-item.active .faq-question {
	color: var(--gold);
}

.faq-question:hover {
	color: var(--gold);
}

.faq-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	background: var(--white);
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::before {
	width: 14px;
	height: 2px;
	border-radius: 1px;
}

.faq-icon::after {
	width: 2px;
	height: 14px;
	border-radius: 1px;
}

.faq-item.active .faq-icon {
	border-color: var(--gold);
	background: var(--gold);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
	background: var(--bg);
}

.faq-item.active .faq-icon::after {
	transform: rotate(90deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-answer {
	max-height: 400px;
}

.faq-answer-content {
	padding: 0 0 28px;
	font-size: 15px;
	color: var(--white-dim);
	line-height: 1.8;
	padding-right: 48px;
}

@media (max-width: 768px) {
	.faq-section {
		padding: 70px 0 80px;
	}
	.faq-container {
		padding: 0 24px;
	}
	.faq-header {
		margin-bottom: 44px;
	}
	.faq-question {
		font-size: 16px;
		padding: 24px 0;
	}
	.faq-answer-content {
		font-size: 14px;
		padding: 0 0 24px;
		padding-right: 32px;
	}
	.faq-icon {
		width: 32px;
		height: 32px;
	}
	.faq-icon::before {
		width: 12px;
	}
	.faq-icon::after {
		height: 12px;
	}
}

@media (max-width: 480px) {
	.faq-title {
		font-size: 36px;
	}
	.faq-question {
		font-size: 15px;
		padding: 20px 0;
	}
	.faq-answer-content {
		font-size: 13px;
		padding: 0 0 20px;
		padding-right: 20px;
	}
	.faq-icon {
		width: 28px;
		height: 28px;
	}
	.faq-icon::before {
		width: 10px;
	}
	.faq-icon::after {
		height: 10px;
	}
}

.abt-section {
	position: relative;
	width: 100%;
	padding: 110px 0 100px;
	margin: 100px 0;
	/* background-image: url("../../images/office-modern.jpg"); */
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.abt-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.93) 0%,
		rgba(0, 0, 0, 0.9) 50%,
		rgba(0, 0, 0, 0.95) 100%
	);
	z-index: 0;
}

.abt-inner {
	position: relative;
	z-index: 1;
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 20px;
}

.abt-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	opacity: 0;
	transform: translateX(-40px);
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-tag.in-view {
	opacity: 1;
	transform: translateX(0);
}

.abt-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.abt-tag-text {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

.abt-top-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-bottom: 1px solid var(--white-faint);
	padding-bottom: 72px;
}

.abt-top-left {
	padding-right: 60px;
	border-right: 1px solid var(--white-faint);
	opacity: 0;
	transform: translateX(-60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.abt-top-left.in-view {
	opacity: 1;
	transform: translateX(0);
}

.abt-headline {
	font-size: clamp(32px, 3.8vw, 58px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--white);
	margin-bottom: 40px;
}

.abt-headline span {
	color: var(--gold);
}

.abt-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	color: var(--white);
	font-family: var(--font);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition:		background 0.25s ease,		border-color 0.25s ease,		color 0.25s ease,		transform 0.2s ease,		box-shadow 0.25s ease;
}

.abt-cta:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.abt-cta i {
	font-size: 11px;
	transition: transform 0.2s ease;
}

.abt-cta:hover i {
	transform: translateX(3px);
}

.abt-top-right {
	padding-left: 60px;
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.abt-top-right.in-view {
	opacity: 1;
	transform: translateX(0);
}

.abt-bottom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	padding-top: 72px;
}

.abt-bottom-left {
	padding-right: 60px;
	border-right: 1px solid var(--white-faint);
	opacity: 0;
	transform: translateX(-60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.abt-bottom-left.in-view {
	opacity: 1;
	transform: translateX(0);
}

.abt-stat-big {
	font-size: clamp(72px, 10vw, 148px);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 0.9;
	color: var(--gold);
}

.abt-stat-big span {
	color: var(--gold);
}

.abt-stat-label {
	font-size: 14px;
	font-weight: 400;
	color: var(--white-dim);
	margin-top: 16px;
	letter-spacing: 0.02em;
}

.abt-bottom-right {
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.abt-bottom-right.in-view {
	opacity: 1;
	transform: translateX(0);
}

.abt-desc {
	font-size: clamp(14px, 1.2vw, 17px);
	color: var(--white-dim);
	line-height: 1.75;
	max-width: 540px;
	margin-bottom: 52px;
}

.abt-stats-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.abt-stat-item {
	padding-right: 40px;
}

.abt-stat-item:last-child {
	padding-right: 0;
	padding-left: 40px;
	border-left: 1px solid var(--white-faint);
}

.abt-stat-num {
	font-size: clamp(42px, 5.5vw, 80px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--gold);
}

.abt-stat-num span {
	color: var(--gold);
}

.abt-stat-sub {
	font-size: 13px;
	color: var(--white-dim);
	margin-top: 8px;
	font-weight: 400;
	letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
	.abt-inner {
		padding: 0 40px;
	}

	.abt-top-left {
		padding-right: 40px;
	}

	.abt-top-right {
		padding-left: 40px;
	}

	.abt-bottom-left {
		padding-right: 40px;
	}

	.abt-bottom-right {
		padding-left: 40px;
	}
}

@media (max-width: 768px) {
	.abt-section {
		padding: 80px 0 70px;
	}

	.abt-inner {
		padding: 0 24px;
	}

	.abt-top-grid {
		grid-template-columns: 1fr;
		gap: 48px;
		padding-bottom: 48px;
	}

	.abt-top-left {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid var(--white-faint);
		padding-bottom: 48px;
	}

	.abt-top-right {
		padding-left: 0;
	}

	.abt-bottom-grid {
		grid-template-columns: 1fr;
		gap: 48px;
		padding-top: 48px;
	}

	.abt-bottom-left {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid var(--white-faint);
		padding-bottom: 48px;
	}

	.abt-bottom-right {
		padding-left: 0;
	}

	.abt-desc {
		margin-bottom: 36px;
	}
}

@media (max-width: 480px) {
	.abt-stats-row {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.abt-stat-item:last-child {
		padding-left: 0;
		border-left: none;
		border-top: 1px solid var(--white-faint);
		padding-top: 32px;
	}
}

.tes-section {
	width: 100%;
	padding: 100px 0 110px;
	margin: 100px 0;
	overflow: hidden;
	position: relative;
}

.tes-header {
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 64px;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tes-header.in-view {
	opacity: 1;
	transform: translateY(0);
}

.tes-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

.tes-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
}

.tes-tag-text {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

.tes-title {
	font-size: clamp(42px, 5.5vw, 80px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.95;
	color: var(--white);
}

.tes-title span {
	color: var(--gold);
}

.tes-header-right {
	max-width: 400px;
	flex-shrink: 0;
}

.tes-desc {
	font-size: 16px;
	color: var(--white-dim);
	line-height: 1.75;
}

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

.tes-track-wrap {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.tes-track-wrap::-webkit-scrollbar {
	display: none;
}

.tes-track {
	display: flex;
	gap: 24px;
	width: max-content;
	will-change: transform;
	padding: 0 24px;
}

.tes-card {
	flex-shrink: 0;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 340px;
}

.tes-stat-card {
	width: 340px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px;
}

.tes-stat-card.gold-bg {
	background: var(--gold);
}

.tes-stat-card.white-bg {
	background: var(--white);
}

.tes-stat-num {
	font-size: clamp(64px, 7vw, 96px);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
}

.gold-bg .tes-stat-num {
	color: #000;
}
.white-bg .tes-stat-num {
	color: var(--gold);
}

.tes-stat-label {
	font-size: 16px;
	font-weight: 600;
	margin-top: 10px;
	letter-spacing: 0.01em;
	line-height: 1.4;
}

.gold-bg .tes-stat-label {
	color: rgba(0, 0, 0, 0.65);
}
.white-bg .tes-stat-label {
	color: rgba(0, 0, 0, 0.55);
}

.tes-quote-card {
	width: 480px;
	background: #0d0d0d;
	border: 1px solid var(--white-faint);
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 0.3s ease;
}

.tes-quote-card:hover {
	border-color: var(--gold-border);
}

.tes-quote-icon {
	font-size: 24px;
	color: var(--gold);
	opacity: 0.6;
	margin-bottom: 16px;
}

.tes-quote-text {
	font-size: 18px;
	color: var(--white-dim);
	line-height: 1.7;
	flex: 1;
}

.tes-quote-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
	flex-shrink: 0;
}

.tes-author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--gold);
}

.tes-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tes-author-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}

.tes-author-role {
	font-size: 13px;
	color: var(--white-dim);
	margin-top: 3px;
}

.tes-stars {
	display: flex;
	gap: 3px;
	margin-top: 5px;
}

.tes-stars i {
	font-size: 12px;
	color: var(--gold);
}

.tes-img-card {
	width: 380px;
	position: relative;
}

.tes-img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tes-img-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.tes-img-overlay {
	position: absolute;
	bottom: 28px;
	left: 28px;
	z-index: 2;
}

.tes-img-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.3;
}

.tes-img-company {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 4px;
}

.tes-img-tag {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	background: var(--gold);
	color: #000;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 100px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tes-stat-num span,
.tes-stat-label span {
	font-size: 0.5em;
}

@media (max-width: 768px) {
	.tes-section {
		padding: 70px 0 80px;
	}
	.tes-header {
		padding: 0 24px;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 44px;
	}
	.tes-header-right {
		max-width: 100%;
	}
	.tes-card {
		height: 300px;
	}
	.tes-stat-card {
		width: 280px;
		padding: 28px;
	}
	.tes-quote-card {
		width: 380px;
		padding: 28px;
	}
	.tes-img-card {
		width: 300px;
	}
	.tes-track {
		padding: 0 20px;
		gap: 20px;
	}
	.tes-quote-text {
		font-size: 15px;
	}
	.tes-stat-label {
		font-size: 14px;
	}
	.tes-author-name {
		font-size: 15px;
	}
	.tes-img-name {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.tes-card {
		height: 280px;
	}
	.tes-stat-card {
		width: 240px;
		padding: 24px;
	}
	.tes-quote-card {
		width: 320px;
		padding: 24px;
	}
	.tes-img-card {
		width: 260px;
	}
	.tes-track {
		padding: 0 16px;
		gap: 16px;
	}
	.tes-quote-text {
		font-size: 14px;
	}
	.tes-stat-num {
		font-size: clamp(48px, 8vw, 64px);
	}
}

.cta-section {
	width: 100%;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}

.cta-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.cta-background {
	display: flex;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}

.cta-bg-left {
	flex: 1;
	background: var(--bg-surface);
	position: relative;
}

.cta-bg-right {
	flex: 1;
	background: #d4af37;
	position: relative;
}

.cta-diagonal {
	position: absolute;
	right: -50px;
	top: 0;
	bottom: 0;
	width: 150px;
	background: var(--bg-surface);
	transform: skewX(-10deg);
	z-index: 1;
}

.cta-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	max-width: 650px;
	text-align: center;
}

.cta-title {
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 20px;
}

.cta-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin-bottom: 32px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 24px;
	background: #ffffff;
	color: var(--bg-surface);
	text-decoration: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #ffffff;
}

.cta-button:hover {
	background: transparent;
	color: #ffffff;
	gap: 16px;
}

.cta-button i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.cta-button:hover i {
	transform: translateX(4px);
}

@media (max-width: 1024px) {
	.cta-section {
		padding: 60px 20px;
	}

	.cta-background {
		height: 380px;
	}

	.cta-content {
		left: 50px;
		transform: translateY(-50%);
		max-width: 500px;
		text-align: left;
	}

	.cta-title {
		font-size: 48px;
	}

	.cta-desc {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: 50px 16px;
	}

	.cta-background {
		height: auto;
		min-height: 400px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--bg-surface);
	}

	.cta-bg-left {
		display: none;
	}

	.cta-bg-right {
		display: none;
	}

	.cta-diagonal {
		display: none;
	}

	.cta-content {
		position: static;
		transform: none;
		padding: 40px 30px;
	}

	.cta-title {
		font-size: 36px;
	}

	.cta-desc {
		font-size: 14px;
	}

	.cta-button {
		padding: 12px 28px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.cta-background {
		border-radius: 16px;
		min-height: 380px;
	}

	.cta-content {
		padding: 30px 24px;
	}

	.cta-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.cta-desc {
		font-size: 13px;
		margin-bottom: 24px;
	}

	.cta-button {
		width: 100%;
		justify-content: center;
	}
}

