/* ===== HERO SECTION - REDESIGNED ===== */

/* ===== HERO-TO-ABOUT SCROLL TRANSITION CONTAINER ===== */


.hero-wrapper {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible; /* Allow scaled image to overflow */
	background: #f3f3f3;
	z-index: 1;
	padding-top: 80px; /* Account for topbar */
	box-sizing: border-box;
}

/* ===== HERO ZOOM OVERLAY ===== */
/* No longer used - about section fades in directly */
.hero-zoom-overlay {
	display: none;
}

/* ===== BACKGROUND PATTERN ===== */
.hero-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.03;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(134, 77, 148, 0.5) 35px, rgba(134, 77, 148, 0.5) 36px);
	pointer-events: none;
}

/* ===== GRADIENT ORBS ===== */
.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.15;
	pointer-events: none;
	animation: float 20s ease-in-out infinite;
}

.orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--grad-left), transparent);
	top: -100px;
	right: -100px;
	animation-delay: 0s;
}

.orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--grad-right), transparent);
	bottom: 150px;
	left: -100px;
	animation-delay: 5s;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -30px) scale(1.1); }
	66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* ===== HERO CONTAINER (Grid Layout) ===== */
.hero-container {
	position: relative;
	z-index: 10;
	width: 90%;
	max-width: 1650px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	padding: 60px 0;
}

/* ===== LEFT CONTENT ===== */
.hero-content-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ===== HERO BADGE ===== */
.hero-badge {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	padding: 6px 30px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(134, 77, 148, 0.2);
	border-radius: var(--radius-full, 50px);
	font-size: var(--font-size-sm, 0.875rem);
	font-weight: var(--font-weight-medium, 500);
	color: var(--grad-left);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.badge-dot {
	width: 6px;
	height: 6px;
	background: var(--full-grad);
	border-radius: 50%;
	position: relative;
	top:3px;
	left:2px;
	animation: pulse 2s ease-in-out infinite;
}

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

/* ===== HERO TITLE ===== */
.hero-title {
	font-family: var(--font-brand);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: var(--font-weight-bold, 700);
	line-height: var(--line-height-tight, 1.15);
	color: var(--dark);
	margin: 0;
}

/* ===== HERO DESCRIPTION ===== */
.hero-description {
	font-family: var(--font-sans);
	font-size: var(--font-size-md, 1.125rem);
	line-height: var(--line-height-relaxed, 1.7);
	color: #555;
	max-width: 540px;
	margin: 0;
}

.hero-description strong {
	color: var(--dark);
	font-weight: var(--font-weight-semibold, 600);
}

/* ===== CTA BUTTONS ===== */
.hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 8px;
	align-items: center;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: var(--radius-full, 50px);
	font-family: var(--font-sans);
	font-size: var(--font-size-base, 15px);
	font-weight: var(--font-weight-medium, 500);
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-cta-primary {
	background: var(--full-grad);
	color: white;
	box-shadow: 0 4px 14px rgba(134, 77, 148, 0.25);
}

.hero-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(134, 77, 148, 0.35);
}

.hero-cta-primary:active {
	transform: translateY(0);
}

.hero-cta-secondary {
	background: white;
	color: var(--dark);
	border: 1.5px solid rgba(134, 77, 148, 0.3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-cta-secondary:hover {
	border-color: var(--grad-left);
	background: rgba(134, 77, 148, 0.04);
	transform: translateY(-1px);
}

.hero-cta .cta-icon {
	width: 16px;
	height: 16px;
}

/* ===== TRUST INDICATORS ===== */
.hero-trust {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: var(--font-size-sm, 14px);
	color: #666;
}

.trust-icon {
	width: 20px;
	height: 20px;
	color: var(--grad-left);
	stroke: var(--grad-left);
}

/* ===== RIGHT CONTENT - IMAGE ===== */
.hero-image-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Image wrapper is styled in scroll transition section below */

/* ===== FLOATING STATS ===== */
.floating-stat {
	display:none; /*NOT NOW BABE*/
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--radius-lg);
	padding: var(--spacing-sm) var(--spacing-md);
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.06),
		0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-1 {
	top: 10%;
	left: 20px;
}

.stat-2 {
	bottom: 15%;
	right: 20px;
	max-width: 220px;
}

.stat-label {
	font-family: var(--font-sans);
	font-size: var(--font-size-xs, 12px);
	color: #888;
	font-weight: var(--font-weight-medium, 500);
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing-wide, 0.5px);
	margin-bottom: 4px;
}

.stat-value {
	font-family: var(--font-mono);
	font-size: var(--font-size-xl, 24px);
	font-weight: var(--font-weight-bold, 700);
	background: var(--full-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
	position: absolute;
	bottom: 12vh;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.6;
	transition: opacity 0.3s;
	z-index: 10;
}

.scroll-indicator:hover {
	opacity: 1;
}

.scroll-indicator.hidden {
	opacity: 0;
	pointer-events: none;
}

.scroll-text {
	font-family: var(--font-sans);
	font-size: var(--font-size-xs, 12px);
	color: #888;
	font-weight: var(--font-weight-medium, 500);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.scroll-arrow {
	width: 24px;
	height: 24px;
	border-right: 2px solid var(--grad-left);
	border-bottom: 2px solid var(--grad-left);
	transform: rotate(45deg);
	animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
	0%, 100% {
		transform: rotate(45deg) translateY(0);
		opacity: 0.6;
	}
	50% {
		transform: rotate(45deg) translateY(8px);
		opacity: 1;
	}
}

/* ===== LEGACY CTA BUTTON SUPPORT (for other sections) ===== */
.cta-button {
	max-width: 220px;
	pointer-events: all;
	opacity: 1;
	min-width: 180px;
	padding: 0.75rem 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	border-radius: var(--radius-full);
	font-size: var(--font-size-base);
	cursor: pointer;
	border: none;
	transition:
		transform var(--transition-fast),
		box-shadow var(--transition-fast),
		background-color var(--transition-fast);
}

.cta-button.cta-primary {
	background: var(--full-grad);
	color: white;
	box-shadow: var(--shadow-sm);
}

.cta-button.cta-primary:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: var(--shadow-md);
}

.cta-button.cta-primary:active {
	transform: translateY(0) scale(0.98);
}

.cta-button.cta-secondary {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid var(--grad-left);
	color: var(--dark);
}

.cta-button.cta-secondary:hover {
	background: rgba(255, 255, 255, 0.7);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.cta-button:not(.cta-primary):not(.cta-secondary) {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 0.6px solid var(--grad-left);
}

.cta-button:not(.cta-primary):not(.cta-secondary):hover {
	border: 0.6px solid var(--grad-right);
	box-shadow: 1px 1px 4px var(--shadow);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.cta-text {
	font-size: var(--font-size-md);
	font-weight: 400;
}

.cta-text-logo {
	font-size: var(--font-size-xl);
	font-family: var(--font-brand);
	font-weight: 500;
}

/* ===== SCROLL TRANSITION ANIMATION STATES ===== */
/* Animations removed - elements display statically */

/* Hero image container - stays in place */
.hero-image-container {
	position: relative;
	z-index: 2;
	left: 4%;
	touch-action: pan-y; /* Allow vertical scroll to pass through */
}

/* Hero image wrapper - static display */
.hero-image-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--radius-lg, 16px);
	overflow: clip; /* Use clip for visual clipping without scroll blocking */
	touch-action: pan-y; /* Allow vertical scroll to pass through */
}

/* The actual image */
.hero-image {
	width: 100%;
	max-width: 1100px;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: inherit;
	
}

/* ===== RESPONSIVE DESIGN: hero image () ===== */
@media(max-width:1920px){
	/* Avoid enforcing large minimum widths that force horizontal scrolling */
	

	.hero-image{
		width: 100%;
		min-width: 0;
	}

	.hero-content-left{
		min-width: 0;
	}

	.stat-2{
		right:20px;
	}

	
}

/* ===== RESPONSIVE: TABLET (1250px) ===== */
@media (max-width: 1250px) {
	.hero-wrapper {
		min-height: 100vh;
		padding: 100px 0 60px; /* Top padding for topbar */
		align-items: flex-start; /* Align to top so first content is always visible */
	}



	.hero-container {
		gap: 40px;
		grid-template-columns: 1fr;
		margin-top: 0;

	}

	.hero-content-left {
		text-align: center;
		align-items: center;
	}

	.hero-badge {
		margin: 0 auto;
	}

	.hero-title {
		text-align: center;
	}

	.hero-description {
		max-width: 600px;
		text-align: center;
	}

	.hero-ctas {
		justify-content: center;
	}

	.hero-trust {
		justify-content: center;
	}

	.floating-stat {
		display: none;
	}

	.hero-image-wrapper {
		max-width: 100%;
	}

}




/* ===== RESPONSIVE: MOBILE (768px) ===== */
@media (max-width: 768px) {
	.hero-wrapper {
		min-height: 100vh;
		padding: 90px 0 60px; /* Top padding for topbar */
		align-items: flex-start;
	}

	.hero-container {
		width: 92%;
		padding: 20px 0;
		gap: 32px;
		margin-top: 0;
	}

	.hero-image{
		margin-top:50px;
	}

	.hero-content-left {
		gap: 20px;
	}

	.hero-badge {
		font-size: var(--font-size-xs, 12px);
		padding: 5px 12px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-description {
		font-size: var(--font-size-base, 1rem);
		max-width:85%;
	}

	.hero-ctas {
		flex-direction: column;
		width: 100%;
	}

	.hero-cta {
		width: 100%;
		justify-content: center;
		max-width: 320px;
	}

	.hero-trust {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.scroll-indicator {
		display: none;
	}

	.orb-1, .orb-2 {
		width: 250px;
		height: 250px;
	}
}

/* ===== RESPONSIVE: SMALL MOBILE (480px) ===== */
@media (max-width: 520px) {
	.hero-wrapper {
		padding: 80px 0 50px; /* Top padding for topbar */
	}

	.hero-cta{
		width:40%
	}

	.hero-container {
		padding: 10px 0;
	}

	.hero-title {
		font-size: 1.75rem;
	}

	.hero-description {
		font-size: 0.95rem;
	}

	.hero-cta {
		padding: 10px 24px;
		font-size: 14px;
	}

	.trust-item {
		font-size: 13px;
	}
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
	.hero-zoom-overlay {
		display: none;
	}

	.hero-image-wrapper {
		transform: none !important;
	}

	.hero-content-left,
	.floating-stat,
	.scroll-indicator,
	.hero-background-pattern,
	.gradient-orb {
		opacity: 1 !important;
	}
}



@media (max-width: 500px) {
	.hero-wrapper{
		padding-top: 70px; /* Slightly reduced for very small screens */
	}
}
