/**
 * Hero Section Styles
 */

.gt-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: calc(32px + var(--gt-header-height) + 90px);
	overflow: hidden;
}

.gt-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #1a1a1a;
}

.gt-hero__bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: none;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.05s linear, visibility 0.05s linear;
}

.gt-hero__bg-video.is-loaded {
	opacity: 1;
	visibility: visible;
	transition: none;
}

.gt-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.594) 25.07%, rgba(0, 0, 0, 0) 88.65%);
}

.gt-hero__content {
	position: relative;
	z-index: 2;
	padding-bottom: 180px;
}

.gt-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 24px;
	background: linear-gradient(to right, rgba(255, 147, 0, 0.21) 61.594%, rgba(153, 88, 0, 0) 100%);
	margin-bottom: 20px;
}

.gt-hero__badge span {
	font-family: var(--gt-font-body);
	font-size: 16px;
	font-weight: 500;
	color: var(--gt-white);
	white-space: nowrap;
}

.gt-hero__badge strong {
	color: var(--gt-primary);
}

.gt-hero__title {
	margin-bottom: 16px;
	font-family: var(--gt-font-body);
}

.gt-hero__title-line {
	display: block;
	font-family: var(--gt-font-body);
	font-size: clamp(36px, 5vw, 55px);
	font-weight: 600;
	color: var(--gt-white);
	line-height: 1.1;
}

.gt-hero__title-line--bold {
	font-size: clamp(40px, 5.5vw, 60px);
	font-weight: 600;
}

.gt-hero__divider {
	width: 149px;
	height: 2px;
	background: linear-gradient(to right, var(--gt-primary), transparent);
	margin: 16px 0 24px;
}

.gt-hero__subtitle {
	font-family: var(--gt-font-body);
	font-size: 18px;
	font-weight: 400;
	color: var(--gt-white);
	line-height: 1.5;
	margin-bottom: 40px;
}

.gt-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.gt-hero__feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gt-hero__feature-icon {
	width: 57px;
	height: 51px;
	background: rgba(255, 147, 0, 0.2);
	border-radius: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.gt-hero__feature span {
	font-family: var(--gt-font-body);
	font-size: 15px;
	font-weight: 300;
	color: var(--gt-white);
	line-height: 1.3;
	max-width: 120px;
}

/* Trust Bar */
.gt-hero__trust {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 30px 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.gt-hero__trust-inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

.gt-hero__trust-label {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.gt-hero__trust-label span {
	font-family: var(--gt-font-body);
	font-size: 20px;
	font-weight: 600;
	color: var(--gt-white);
	white-space: nowrap;
}

.gt-hero__trust-label::after {
	content: '';
	width: 1px;
	height: 41px;
	background: rgba(255, 255, 255, 0.3);
	margin-left: 20px;
}

/* Marquee */
.gt-marquee {
	flex: 1;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.gt-marquee__track {
	display: flex;
	align-items: center;
	gap: 60px;
	animation: gt-marquee 12s linear infinite;
	will-change: transform;
}

.gt-marquee__item {
	flex-shrink: 0;
	height: 60px;
	display: flex;
	align-items: center;
}

.gt-marquee__item img {
	height: 48px;
	width: auto;
	max-width: 143px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	transition: opacity var(--gt-duration) var(--gt-ease);
}

.gt-marquee__item--tanishq img {
	height: 72px;
	max-width: 200px;
}

.gt-marquee__item:hover img {
	opacity: 1;
}

@keyframes gt-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.gt-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
	}
}
