/**
 * Main Stylesheet
 * Alım Merkezi Noktası Burası Theme
 * Naberise Style - Modern Minimal
 */

:root {
	--color-primary: #000000;
	--color-text: #1a1a1a;
	--color-text-light: #666666;
	--color-bg: #ffffff;
	--color-bg-light: #f8f9fa;
	--color-border: #e0e0e0;
	--color-whatsapp: #25d366;
	--color-accent: #007bff;
	
	--font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 4rem;
	
	--container-width: 1200px;
	--border-radius: 12px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
	margin-bottom: var(--spacing-sm);
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-accent);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Container */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* ============================================
   HEADER - COMPLETE STRUCTURE
   ============================================ */

/* Site Header */
.site-header {
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Top Bar - Dark Blue Gray */
.header-top-bar {
	background-color: #2c3e50;
	padding: 1rem 0;
	width: 100%;
}

.header-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	gap: 0.875rem;
	flex-wrap: nowrap;
}

/* ============================================
   LOGO - PROFESSIONAL WITH ANIMATIONS
   ============================================ */

.header-logo {
	flex-shrink: 0;
	min-width: auto;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 0;
	text-decoration: none;
	color: #ffffff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.logo-link::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	transform: rotate(45deg);
	animation: logo-shimmer 3s ease-in-out infinite;
	z-index: 10;
	pointer-events: none;
}

@keyframes logo-shimmer {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	50% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
	100% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
}

.logo-link:hover {
	transform: translateY(-1px);
}

.logo-link:hover::before {
	animation-duration: 1.5s;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.2) 50%,
		transparent 70%
	);
}

/* Logo Icon Wrapper with Glow */
.logo-icon-wrapper {
	position: relative;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon {
	color: #ffffff;
	width: 28px;
	height: 28px;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1);
	animation: logo-icon-sync 3s ease-in-out infinite;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes logo-icon-sync {
	0%, 100% {
		filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1);
		transform: scale(1);
	}
	50% {
		filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.5)) brightness(1.15);
		transform: scale(1.02);
	}
}

.logo-link:hover .logo-icon {
	filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) brightness(1.25);
	transform: scale(1.05) rotate(5deg);
}

@keyframes logo-shine {
	0% {
		filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1);
	}
	50% {
		filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.8)) brightness(1.3);
	}
	100% {
		filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) brightness(1.2);
	}
}

/* Glow Effect - Synced with Logo */
.logo-glow {
	position: absolute;
	inset: -4px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	animation: glow-pulse-sync 3s ease-in-out infinite;
	z-index: 1;
}

@keyframes glow-pulse-sync {
	0%, 100% {
		opacity: 0;
		transform: scale(0.8);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.2);
	}
}

.logo-link:hover .logo-glow {
	opacity: 0.8;
	animation: glow-intense-sync 1.5s ease-in-out infinite;
}

@keyframes glow-intense-sync {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.3);
	}
}

@keyframes glow-intense {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	50% {
		opacity: 1;
		transform: scale(1.4);
	}
	100% {
		opacity: 0.8;
		transform: scale(1.2);
	}
}

/* Logo Text */
.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	position: relative;
	z-index: 2;
}

.logo-text::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 40%,
		rgba(255, 255, 255, 0.08) 50%,
		transparent 60%
	);
	transform: rotate(45deg);
	animation: text-shimmer 3s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}

@keyframes text-shimmer {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	50% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
	100% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
}

.logo-top {
	font-size: 0.85rem;
	color: #b0b0b0;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.8;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	animation: logo-top-sync 3s ease-in-out infinite;
}

@keyframes logo-top-sync {
	0%, 100% {
		opacity: 0.8;
		color: #b0b0b0;
	}
	50% {
		opacity: 0.95;
		color: #d0d0d0;
	}
}

.logo-link:hover .logo-top {
	color: #ffffff;
	opacity: 1;
	transform: translateX(2px);
}

.logo-main {
	font-size: 1.5rem;
	color: #ffffff;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.3px;
	display: block;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0;
	animation: logo-text-sync 3s ease-in-out infinite;
	white-space: nowrap;
}

@keyframes logo-text-sync {
	0%, 100% {
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 255, 255, 0.1);
		filter: brightness(1);
	}
	50% {
		text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 0 16px rgba(255, 255, 255, 0.2);
		filter: brightness(1.15);
	}
}

.logo-link:hover .logo-main {
	text-shadow: 0 4px 16px rgba(255, 255, 255, 0.4), 0 0 24px rgba(255, 255, 255, 0.3);
	transform: translateX(2px);
	filter: brightness(1.25);
}

/* Badge - Below Logo Main */
.logo-badge {
	font-size: 0.6rem;
	font-weight: 600;
	color: #25d366;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(32, 186, 90, 0.15) 100%);
	padding: 0.2rem 0.6rem;
	border-radius: 10px;
	border: 1px solid rgba(37, 211, 102, 0.3);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	animation: badge-shimmer 3s ease-in-out infinite;
	display: inline-block;
	line-height: 1.2;
	margin-top: 0.1rem;
}

@keyframes badge-shimmer {
	0%, 100% {
		box-shadow: 0 0 8px rgba(37, 211, 102, 0.2);
	}
	50% {
		box-shadow: 0 0 16px rgba(37, 211, 102, 0.4);
	}
}

.logo-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: badge-sweep 3s ease-in-out infinite;
}

@keyframes badge-sweep {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

.logo-link:hover .logo-badge {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.3) 0%, rgba(32, 186, 90, 0.2) 100%);
	border-color: rgba(37, 211, 102, 0.5);
	box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
	transform: scale(1.05);
}

/* Categories Button */
.header-categories-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	background-color: #34495e;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.header-categories-btn:hover {
	background-color: #1a252f;
}

.header-categories-btn svg {
	flex-shrink: 0;
	color: #ffffff;
}

/* Search Bar */
.header-search {
	flex: 1;
	min-width: 250px;
	max-width: 650px;
	margin: 0 auto;
}

.search-form {
	position: relative;
	display: flex;
	width: 100%;
}

.search-input {
	width: 100%;
	padding: 0.75rem 3rem 0.75rem 1.25rem;
	border: none;
	border-radius: 8px;
	font-size: 0.9375rem;
	color: var(--color-text);
	background-color: #f5f5f5;
	outline: none;
	transition: all 0.2s ease;
}

.search-input:focus {
	background-color: #ffffff;
	box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.search-input::placeholder {
	color: #999999;
}

.search-btn {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	color: #666666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.search-btn:hover {
	color: #2c3e50;
}

/* Right Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	min-width: fit-content;
}

.header-login-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	background-color: #ffffff;
	color: #2c3e50;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.header-login-btn:hover {
	background-color: #f0f0f0;
	color: #1a252f;
}

.header-login-btn svg {
	flex-shrink: 0;
	color: #2c3e50;
}

.header-sell-btn {
	padding: 0.625rem 1.25rem;
	background-color: #34495e;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.header-sell-btn:hover {
	background-color: #1a252f;
	color: #ffffff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.mobile-menu-btn span {
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	transition: var(--transition);
	display: block;
}

/* ============================================
   APPLE-STYLE NAVIGATION MENU
   Modern, minimal, elegant design
   ============================================ */

.apple-nav-menu {
	background: #ffffff;
	border-bottom: 1px solid rgba(44, 62, 80, 0.08);
	width: 100%;
	position: relative;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.apple-nav-menu::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(44, 62, 80, 0.06) 20%, 
		rgba(44, 62, 80, 0.06) 80%, 
		transparent 100%
	);
}

.apple-nav-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0.75rem var(--spacing-md);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.125rem;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.apple-nav-container::-webkit-scrollbar {
	display: none;
}

.apple-nav-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	text-decoration: none;
	color: #1a1a1a;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.01em;
	border-radius: 8px;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	white-space: nowrap;
	position: relative;
	background-color: transparent;
}

.apple-nav-item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background-color: rgba(44, 62, 80, 0.04);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.apple-nav-item:hover {
	color: #2c3e50;
	background-color: rgba(44, 62, 80, 0.04);
}

.apple-nav-item:hover::before {
	opacity: 1;
}

.apple-nav-item svg {
	flex-shrink: 0;
	color: #2c3e50;
	opacity: 0.7;
	transition: all 0.2s ease;
}

.apple-nav-item:hover svg {
	opacity: 1;
	color: #2c3e50;
	transform: translateY(-1px);
}

.apple-nav-item span {
	position: relative;
	z-index: 1;
}

/* Featured Item */
.apple-nav-featured {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(32, 186, 90, 0.05) 100%);
	border: 1px solid rgba(37, 211, 102, 0.15);
	color: #1a1a1a;
	font-weight: 600;
	margin: 0 0.25rem;
	padding: 0.75rem 1.25rem;
}

.apple-nav-featured::before {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(32, 186, 90, 0.08) 100%);
}

.apple-nav-featured:hover {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(32, 186, 90, 0.08) 100%);
	border-color: rgba(37, 211, 102, 0.25);
	color: #25d366;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.12);
}

.apple-nav-featured svg {
	color: #25d366;
	opacity: 0.9;
}

.apple-nav-featured:hover svg {
	color: #25d366;
	opacity: 1;
	transform: translateY(-1px) scale(1.05);
}

.apple-nav-arrow {
	margin-left: 0.25rem;
	opacity: 0.6;
	transition: all 0.2s ease;
}

.apple-nav-featured:hover .apple-nav-arrow {
	opacity: 1;
	transform: translateX(3px);
	color: #25d366;
}

/* Category Buttons */
.category-buttons {
	background-color: #ffffff;
	padding: 1rem 0;
	width: 100%;
	border-bottom: 1px solid #e0e0e0;
}

.category-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	flex-wrap: nowrap;
}

.category-btn {
	padding: 0.625rem 1.25rem;
	background-color: #f5f5f5;
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	white-space: nowrap;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.category-btn:hover {
	background-color: #e8e8e8;
	color: #2c3e50;
}

/* Responsive Header */
@media (max-width: 1024px) {
	.header-container {
		gap: 0.75rem;
	}
	
	.header-search {
		min-width: 250px;
		max-width: 500px;
	}
}

@media (max-width: 768px) {
	.header-top-bar {
		padding: 0.875rem 0;
	}
	
	.header-container {
		flex-wrap: wrap;
		gap: 0.75rem;
		padding: 0 var(--spacing-sm);
	}
	
	.header-logo {
		order: 1;
		flex: 0 0 auto;
		min-width: auto;
	}
	
	.logo-main {
		font-size: 1.25rem;
	}
	
	.header-search {
		min-width: 200px;
	}
	
	.logo-badge {
		font-size: 0.6rem;
		padding: 0.1rem 0.4rem;
	}
	
	.header-categories-btn {
		order: 2;
		flex: 0 0 auto;
		padding: 0.5rem 0.75rem;
		font-size: 0.8125rem;
	}
	
	.header-categories-btn span {
		display: none;
	}
	
	.header-actions {
		order: 3;
		gap: 0.5rem;
		flex: 0 0 auto;
	}

	.header-login-btn span {
		display: none;
	}

	.header-sell-btn {
		padding: 0.625rem 1rem;
		font-size: 0.8125rem;
	}
	
	.mobile-menu-btn {
		display: flex;
		order: 4;
	}
	
	.header-search {
		order: 5;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		margin: 0;
	}
	
	.apple-nav-menu {
		padding: 0.625rem 0;
	}
	
	.apple-nav-container {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding: 0 var(--spacing-sm);
		gap: 0.125rem;
	}
	
	.apple-nav-item {
		padding: 0.5rem 0.875rem;
		gap: 0.5rem;
		font-size: 0.8125rem;
	}
	
	.apple-nav-item svg {
		width: 16px;
		height: 16px;
	}
	
	.apple-nav-featured {
		padding: 0.625rem 1rem;
		margin: 0 0.125rem;
	}
	
	.apple-nav-arrow {
		width: 12px;
		height: 12px;
	}
	
	.category-container {
		padding: 0 var(--spacing-sm);
		gap: 0.5rem;
	}
	
	.category-btn {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.logo-top {
		display: none;
	}
	
	.logo-icon-wrapper {
		width: 26px;
		height: 26px;
	}
	
	.logo-icon {
		width: 22px;
		height: 22px;
	}
	
	.logo-main {
		font-size: 1.1rem;
	}
	
	.header-top-bar {
		padding: 0.75rem 0;
	}
	
	.logo-badge {
		font-size: 0.5rem;
		padding: 0.15rem 0.4rem;
		margin-top: 0.05rem;
	}
	
	.header-actions {
		gap: 0.375rem;
	}

	.header-login-btn {
		padding: 0.5rem;
	}

	.header-sell-btn {
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
	}
	
	.apple-nav-menu {
		padding: 0.5rem 0;
	}
	
	.apple-nav-container {
		padding: 0 var(--spacing-xs);
		gap: 0.125rem;
	}
	
	.apple-nav-item {
		padding: 0.5rem 0.625rem;
		gap: 0.375rem;
		font-size: 0.75rem;
	}
	
	.apple-nav-item svg {
		width: 15px;
		height: 15px;
	}
	
	.apple-nav-featured {
		padding: 0.5rem 0.875rem;
		margin: 0;
	}
	
	.apple-nav-arrow {
		width: 11px;
		height: 11px;
		margin-left: 0.25rem;
	}
}

/* ============================================
   OLD STYLES - KEPT FOR COMPATIBILITY
   ============================================ */

.banayeni-header {
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Top Bar - Dark Gray/Orange - Fixed Layout */
.banayeni-top-bar {
	background-color: #2c3e50;
	padding: 0.875rem 0;
	width: 100%;
}

.banayeni-top-content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	flex-wrap: nowrap;
}

/* Logo - Banayeni Style - Fixed */
.banayeni-logo {
	flex-shrink: 0;
	min-width: 180px;
}

.logo-link-banayeni {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: #ffffff;
}

.logo-icon {
	color: #ffffff;
	flex-shrink: 0;
}

.logo-text-wrapper {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.logo-top-text {
	font-size: 0.75rem;
	color: #b0b0b0;
	font-weight: 400;
	line-height: 1;
}

.logo-main-text {
	font-size: 1.25rem;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

/* Tüm Kategoriler Button - Top Bar - Fixed */
.all-categories-button-top {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	background-color: #34495e;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
	min-width: fit-content;
}

.all-categories-button-top:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.all-categories-button-top svg {
	flex-shrink: 0;
	color: #ffffff;
}

/* Search Bar - Banayeni Style - Fixed */
.banayeni-search {
	flex: 1;
	min-width: 300px;
	max-width: 600px;
	margin: 0 auto;
}

.search-form-banayeni {
	position: relative;
	display: flex;
	width: 100%;
}

.search-input-banayeni {
	width: 100%;
	padding: 0.875rem 3.5rem 0.875rem 1.25rem;
	border: none;
	border-radius: 8px;
	font-size: 0.9375rem;
	color: var(--color-text);
	background-color: #f5f5f5;
	outline: none;
	transition: all 0.2s ease;
}

.search-input-banayeni:focus {
	background-color: #ffffff;
	box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.search-input-banayeni::placeholder {
	color: #999999;
}

.search-button-banayeni {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	color: #666666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.search-button-banayeni:hover {
	color: #2c3e50;
}

/* Right Actions - Fixed */
.banayeni-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	min-width: fit-content;
}

.login-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	background-color: #ffffff;
	color: #2c3e50;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.login-button:hover {
	background-color: #f0f0f0;
	color: #1a252f;
}

.login-button svg {
	flex-shrink: 0;
}

.sell-button {
	padding: 0.625rem 1.25rem;
	background-color: #34495e;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.sell-button:hover {
	background-color: #1a252f;
	color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle-banayeni {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.mobile-menu-toggle-banayeni span {
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	transition: var(--transition);
	display: block;
}


/* Promotional Banner */
.promo-banner-banayeni {
	background-color: #e3f2fd;
	padding: 1rem 0;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-banner-content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}

.promo-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.promo-item svg {
	color: #1976d2;
	flex-shrink: 0;
}

.promo-text {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #1976d2;
	white-space: nowrap;
}

.promo-separator {
	width: 1px;
	height: 24px;
	background-color: rgba(0, 0, 0, 0.1);
}

/* Promotional Banner - Modern Creative - Fixed */
.promo-banner<｜tool▁sep｜>enyeni {
	background-color: #ffffff;
	padding: 0.875rem 0;
	width: 100%;
	border-bottom: 1px solid #e0e0e0;
}

.promo-banner-content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.promo-item-modern {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.5rem 1rem;
	text-decoration: none;
	color: var(--color-text);
	transition: all 0.2s ease;
	position: relative;
	flex-shrink: 0;
	min-width: fit-content;
	white-space: nowrap;
}

.promo-item-modern:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

.promo-item-featured {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(32, 186, 90, 0.1) 100%);
	border-radius: 8px;
	padding: 0.625rem 1.25rem;
	margin: 0 0.5rem;
	flex-shrink: 0;
	min-width: fit-content;
}

.promo-item-featured:hover {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(32, 186, 90, 0.15) 100%);
	transform: translateX(2px);
}

.promo-icon-modern {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 6px;
	color: #2c3e50;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
}

.promo-item-modern:hover .promo-icon-modern {
	background-color: #25d366;
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.promo-item-featured .promo-icon-modern {
	background-color: #25d366;
	color: #ffffff;
}

.promo-text-modern {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	white-space: nowrap;
	line-height: 1.4;
}

.promo-item-featured .promo-text-modern {
	color: #2c3e50;
	font-weight: 700;
}

.promo-arrow-modern {
	font-size: 1rem;
	font-weight: 700;
	color: #25d366;
	margin-left: 0.5rem;
	transition: transform 0.2s ease;
}

.promo-item-featured:hover .promo-arrow-modern {
	transform: translateX(4px);
	color: #20ba5a;
}

.promo-separator-modern {
	width: 1px;
	height: 32px;
	background-color: #d0d0d0;
	margin: 0 0.5rem;
	flex-shrink: 0;
}

/* Responsive Promo Banner */
@media (max-width: 1024px) {
	.promo-banner-content {
		gap: 0.5rem;
	}
	
	.promo-item-modern {
		padding: 0.5rem 0.75rem;
		font-size: 0.8125rem;
	}
	
	.promo-icon-modern {
		width: 28px;
		height: 28px;
	}
	
	.promo-text-modern {
		font-size: 0.8125rem;
	}
}

@media (max-width: 768px) {
	.promo-banner<｜tool▁sep｜>enyeni {
		padding: 0.75rem 0;
	}
	
	.promo-banner-content {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0.5rem;
	}
	
	.promo-item-modern {
		flex: 0 0 calc(50% - 0.25rem);
		padding: 0.625rem 0.75rem;
	}
	
	.promo-item-featured {
		flex: 1 1 100%;
		margin: 0.5rem 0;
		justify-content: center;
	}
	
	.promo-separator-modern {
		display: none;
	}
	
	.promo-text-modern {
		font-size: 0.75rem;
	}
	
	.promo-icon-modern {
		width: 24px;
		height: 24px;
	}
	
	.promo-icon-modern svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	.promo-item-modern {
		flex: 0 0 100%;
		justify-content: flex-start;
	}
	
	.promo-text-modern {
		font-size: 0.8125rem;
	}
}

/* ============================================
   HERO SECTION - CANVA STYLE CREATIVE BLOCKS
   ============================================ */

.hero-canva {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
	padding: 2rem 0;
	display: flex;
	align-items: center;
}

/* Background Decorations */
.hero-canva-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.hero-canva-bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	animation: blob-float 20s ease-in-out infinite;
}

.hero-canva-bg-blob-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	left: -100px;
	background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
	animation-delay: 0s;
}

.hero-canva-bg-blob-2 {
	width: 350px;
	height: 350px;
	bottom: -50px;
	right: -50px;
	background: radial-gradient(circle, rgba(44, 62, 80, 0.25) 0%, transparent 70%);
	animation-delay: 5s;
}

.hero-canva-bg-blob-3 {
	width: 300px;
	height: 300px;
	top: 50%;
	right: 20%;
	background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, transparent 70%);
	animation-delay: 10s;
}

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

.hero-canva-container {
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
	position: relative;
	z-index: 2;
}

/* Main Content */
.hero-canva-main {
	text-align: center;
	margin-top: 0;
}

.hero-canva-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(32, 186, 90, 0.08) 100%);
	border: 1px solid rgba(37, 211, 102, 0.2);
	color: #25d366;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero-guide-badge svg {
	width: 18px;
	height: 18px;
}

.hero-guide-title {
	margin: 0 0 1rem 0;
	font-size: 2.75rem;
	line-height: 1.1;
	letter-spacing: -0.04em;
	color: #0f172a;
	font-weight: 900;
}

.hero-guide-title-accent {
	display: block;
	color: #25d366;
}

.hero-guide-description {
	margin: 0 0 2rem 0;
	max-width: 32rem;
	color: var(--color-text-light);
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Form */
.hero-guide-form {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 0.75rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-guide-select-wrapper {
	position: relative;
}

.hero-guide-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.hero-guide-label svg {
	width: 16px;
	height: 16px;
	color: #25d366;
}

.hero-guide-select {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	font-size: 0.95rem;
	color: var(--color-text);
	background: #ffffff;
	cursor: pointer;
	transition: all 0.2s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 12px;
	padding-right: 2.5rem;
}

.hero-guide-select:hover {
	border-color: rgba(37, 211, 102, 0.3);
}

.hero-guide-select:focus {
	outline: none;
	border-color: #25d366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.hero-guide-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
	align-self: flex-end;
	white-space: nowrap;
}

.hero-guide-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.hero-guide-submit svg {
	width: 18px;
	height: 18px;
}

/* Stats */
.hero-guide-stats {
	display: flex;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.hero-guide-stat {
	text-align: left;
}

.hero-guide-stat-number {
	font-size: 2rem;
	font-weight: 900;
	color: #25d366;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.hero-guide-stat-label {
	font-size: 0.85rem;
	color: var(--color-text-light);
	font-weight: 600;
}

/* Quick Links */
.hero-guide-quick-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.hero-guide-quick-label {
	font-size: 0.85rem;
	color: var(--color-text-light);
	font-weight: 600;
}

.hero-guide-quick-link {
	padding: 0.5rem 1rem;
	background: rgba(37, 211, 102, 0.08);
	color: #25d366;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid rgba(37, 211, 102, 0.2);
	transition: all 0.2s ease;
}

.hero-guide-quick-link:hover {
	background: rgba(37, 211, 102, 0.15);
	border-color: rgba(37, 211, 102, 0.3);
	transform: translateY(-1px);
}

/* Visual */
.hero-guide-visual {
	position: relative;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-guide-map {
	position: relative;
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(44, 62, 80, 0.03) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(37, 211, 102, 0.1);
	overflow: hidden;
}

.hero-guide-map svg {
	width: 100%;
	height: 100%;
}

.hero-guide-categories {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.hero-guide-category-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.2s ease;
}

.hero-guide-category-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: rgba(37, 211, 102, 0.2);
}

.hero-guide-category-icon {
	font-size: 2rem;
	line-height: 1;
}

.hero-guide-category-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-guide-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.hero-guide-title {
		font-size: 2.4rem;
	}
	
	.hero-guide-form {
		grid-template-columns: 1fr;
	}
	
	.hero-guide-submit {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.hero-guide {
		padding: 2.5rem 0;
	}
	
	.hero-guide-title {
		font-size: 2rem;
	}
	
	.hero-guide-description {
		font-size: 1rem;
	}
	
	.hero-guide-stats {
		gap: 1.5rem;
	}
	
	.hero-guide-stat-number {
		font-size: 1.75rem;
	}
	
	.hero-guide-visual {
		min-height: 300px;
	}
	
	.hero-guide-map {
		height: 200px;
	}
}

@media (max-width: 480px) {
	.hero-guide {
		padding: 2rem 0;
	}
	
	.hero-guide-title {
		font-size: 1.75rem;
	}
	
	.hero-guide-form {
		padding: 1.25rem;
	}
	
	.hero-guide-stats {
		flex-direction: column;
		gap: 1rem;
	}
	
	.hero-guide-quick-links {
		flex-direction: column;
		align-items: flex-start;
	}
}

.hero-illusion::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 55%),
		radial-gradient(circle at 85% 35%, rgba(37, 211, 102, 0.08) 0%, transparent 55%),
		linear-gradient(to bottom, rgba(44, 62, 80, 0.04), transparent 40%);
	pointer-events: none;
}

.hero-illusion__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2.5rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Copy */
.hero-illusion__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(220, 38, 38, 0.1);
	color: #b91c1c;
	border: 1px solid rgba(220, 38, 38, 0.18);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.9rem;
}

.hero-illusion__title {
	margin: 0 0 0.9rem 0;
	font-size: 2.6rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #0f172a;
}

.hero-illusion__title-accent {
	display: block;
	color: #25d366;
}

.hero-illusion__desc {
	margin: 0 0 1.25rem 0;
	max-width: 34rem;
	color: var(--color-text-light);
	font-size: 1.05rem;
	line-height: 1.65;
}

.hero-illusion__ctas {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.hero-illusion__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	border-radius: 12px;
	padding: 0.9rem 1.2rem;
	white-space: nowrap;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.hero-illusion__btn--primary {
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	color: #ffffff;
	box-shadow: 0 10px 25px rgba(37, 211, 102, 0.22);
}

.hero-illusion__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.hero-illusion__btn--ghost {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(15, 23, 42, 0.14);
	color: #0f172a;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.hero-illusion__btn--ghost:hover {
	transform: translateY(-2px);
	border-color: rgba(37, 211, 102, 0.35);
}

.hero-illusion__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	color: rgba(15, 23, 42, 0.75);
	font-size: 0.9rem;
}

.hero-illusion__meta-item {
	white-space: nowrap;
}

/* Visual / Illusion */
.hero-illusion__visual {
	position: relative;
	min-height: 360px; /* keeps hero short */
}

.hero-illusion__blob {
	position: absolute;
	filter: blur(24px);
	opacity: 0.8;
	transform: translateZ(0);
}

.hero-illusion__blob--a {
	width: 220px;
	height: 220px;
	left: -40px;
	top: 20px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.45), transparent 65%);
}

.hero-illusion__blob--b {
	width: 260px;
	height: 260px;
	right: -50px;
	bottom: -30px;
	background: radial-gradient(circle at 40% 40%, rgba(37, 211, 102, 0.45), transparent 65%);
}

.hero-illusion__stage {
	position: relative;
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 900px;
}

.hero-illusion__glass {
	width: min(420px, 100%);
	height: 320px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(15, 23, 42, 0.10);
	box-shadow:
		0 18px 50px rgba(15, 23, 42, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transform: rotateX(8deg) rotateY(-10deg);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.hero-illusion__stage:hover .hero-illusion__glass {
	transform: rotateX(4deg) rotateY(-6deg) translateY(-2px);
	box-shadow:
		0 22px 60px rgba(15, 23, 42, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-illusion__glass::before {
	content: '';
	position: absolute;
	inset: -40%;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
	transform: rotate(12deg);
	opacity: 0.55;
	pointer-events: none;
}

.hero-illusion__glass-top {
	display: flex;
	gap: 0.5rem;
	padding: 0.9rem;
}

.hero-illusion__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	background: rgba(37, 211, 102, 0.12);
	color: #0f172a;
	font-size: 0.78rem;
	font-weight: 700;
	border: 1px solid rgba(37, 211, 102, 0.18);
}

.hero-illusion__chip--dark {
	background: rgba(44, 62, 80, 0.10);
	border-color: rgba(44, 62, 80, 0.18);
}

.hero-illusion__device {
	position: absolute;
	left: 1.1rem;
	right: 1.1rem;
	top: 3.2rem;
	bottom: 5.2rem;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-illusion__device img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	filter: saturate(1.05) contrast(1.02);
}

.hero-illusion__price {
	position: absolute;
	left: 1.1rem;
	right: 1.1rem;
	bottom: 1rem;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 0.25rem 0.75rem;
	padding: 0.85rem 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(15, 23, 42, 0.10);
}

.hero-illusion__price-title {
	grid-column: 1 / 2;
	font-size: 0.85rem;
	color: rgba(15, 23, 42, 0.7);
	font-weight: 700;
}

.hero-illusion__price-value {
	grid-column: 2 / 3;
	font-size: 1.6rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1;
}

.hero-illusion__price-sub {
	grid-column: 1 / 3;
	font-size: 0.82rem;
	color: rgba(15, 23, 42, 0.65);
	font-weight: 600;
}

.hero-illusion__tag {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(15, 23, 42, 0.12);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
	font-size: 0.85rem;
	font-weight: 700;
	color: #0f172a;
	white-space: nowrap;
}

.hero-illusion__tag--left {
	left: -10px;
}

.hero-illusion__tag--right {
	right: -10px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-illusion__title {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.hero-illusion {
		padding: 2rem 0;
	}

	.hero-illusion__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.hero-illusion__visual {
		min-height: 320px;
	}

	.hero-illusion__stage {
		height: 320px;
	}

	.hero-illusion__glass {
		transform: none;
	}

	.hero-illusion__ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-illusion__tag {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-illusion__title {
		font-size: 1.9rem;
	}

	.hero-illusion__desc {
		font-size: 1rem;
	}
}

/* ============================================
   HERO SUPPORT - Apple Support Style
   ============================================ */

.hero-support {
	width: 100%;
	background: #ffffff;
	padding: var(--spacing-md) 0;
	min-height: auto;
	display: flex;
	align-items: center;
}

/* ============================================
   HERO SHOWCASE - Ürün Alım Kategorileri
   Minimal Hepsiburada Style Slider - Optimized Height
   ============================================ */

.hero-showcase {
	width: 100%;
	padding: var(--spacing-md) 0;
	background: var(--color-bg-light);
	overflow: hidden;
	position: relative;
}

.hero-showcase-wrapper {
	width: 100%;
	position: relative;
}

.hero-showcase-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	position: relative;
	overflow: hidden;
}

/* Main Slider */
.hero-showcase-main {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--color-bg);
	border-radius: var(--border-radius);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-showcase-slider {
	width: 100%;
	position: relative;
}

.hero-showcase-track {
	display: flex;
	width: 100%;
	position: relative;
}

/* Slide */
.hero-showcase-slide {
	width: 100%;
	flex: 0 0 100%;
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-showcase-slide.active {
	display: block;
	opacity: 1;
	position: relative;
}

.hero-showcase-slide-inner {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: var(--spacing-lg);
	align-items: center;
	padding: var(--spacing-md);
	min-height: 300px;
}

.hero-showcase-slide-inner > * {
	min-width: 0;
}

/* Image */
.hero-showcase-image-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: calc(var(--border-radius) - 2px);
	overflow: hidden;
	background: var(--color-bg-light);
}

.hero-showcase-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.hero-showcase-slide.active .hero-showcase-image {
	transform: scale(1.02);
}

/* Content */
.hero-showcase-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--spacing-sm) 0;
	min-width: 0;
}

.hero-showcase-title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-text);
	margin: 0 0 var(--spacing-xs) 0;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
}

.hero-showcase-description {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-text-light);
	margin: 0 0 var(--spacing-sm) 0;
	overflow-wrap: anywhere;
}

/* Features List */
.hero-showcase-features {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--spacing-sm) 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero-showcase-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-text);
	min-width: 0;
}

.hero-showcase-feature span {
	overflow-wrap: anywhere;
}

.hero-showcase-feature svg {
	color: var(--color-accent);
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

/* Button */
.hero-showcase-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #ffffff;
	background: var(--color-accent);
	border-radius: calc(var(--border-radius) - 2px);
	text-decoration: none;
	transition: var(--transition);
	width: fit-content;
	margin-top: var(--spacing-xs);
}

.hero-showcase-button:hover {
	background: #0056b3;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.hero-showcase-button svg {
	width: 16px;
	height: 16px;
	transition: var(--transition);
}

.hero-showcase-button:hover svg {
	transform: translateX(2px);
}

/* Navigation Arrows - Minimal */
.hero-showcase-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	color: var(--color-text);
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-showcase-nav:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.hero-showcase-nav:active {
	transform: translateY(-50%) scale(0.95);
}

.hero-showcase-nav svg {
	width: 20px;
	height: 20px;
}

.hero-showcase-prev {
	left: var(--spacing-sm);
}

.hero-showcase-next {
	right: var(--spacing-sm);
}

/* Progress Indicator */
.hero-showcase-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--color-bg-light);
	z-index: 10;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	overflow: hidden;
}

.hero-showcase-progress-bar {
	height: 100%;
	background: var(--color-accent);
	width: 0%;
	transition: width 0.3s ease;
}

/* Thumbnail Previews - Minimal */
.hero-showcase-thumbnails {
	width: 100%;
	padding: var(--spacing-sm) 0 0 0;
	overflow: hidden;
}

.hero-showcase-thumbnails-track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-xs);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: var(--spacing-xs) 0;
}

.hero-showcase-thumbnails-track::-webkit-scrollbar {
	display: none;
}

.hero-showcase-thumbnail {
	flex: 0 0 auto;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 0;
	position: relative;
	transition: var(--transition);
	scroll-snap-align: center;
}

.hero-showcase-thumbnail-image {
	position: relative;
	width: 100px;
	height: 70px;
	border-radius: calc(var(--border-radius) - 4px);
	overflow: hidden;
	border: 2px solid transparent;
	transition: var(--transition);
	background: var(--color-bg);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-showcase-thumbnail.active .hero-showcase-thumbnail-image {
	border-color: var(--color-accent);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
	transform: scale(1.05);
}

.hero-showcase-thumbnail:hover .hero-showcase-thumbnail-image {
	border-color: var(--color-accent);
	transform: scale(1.08);
}

.hero-showcase-thumbnail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.hero-showcase-thumbnail:hover .hero-showcase-thumbnail-image img {
	transform: scale(1.1);
}

.hero-showcase-thumbnail-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0.25rem;
	opacity: 1;
	transition: var(--transition);
}

.hero-showcase-thumbnail.active .hero-showcase-thumbnail-overlay {
	background: linear-gradient(to top, rgba(0, 123, 255, 0.8) 0%, rgba(0, 123, 255, 0.2) 100%);
}

.hero-showcase-thumbnail-title {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}


/* Responsive */
@media (max-width: 1024px) {
	.hero-showcase {
		padding: var(--spacing-sm) 0;
	}
	
	.hero-showcase-slide-inner {
		grid-template-columns: 350px 1fr;
		gap: var(--spacing-md);
		min-height: 280px;
		padding: var(--spacing-sm);
	}
	
	.hero-showcase-image-wrapper {
		height: 260px;
	}
	
	.hero-showcase-title {
		font-size: 1.5rem;
	}
	
	.hero-showcase-description {
		font-size: 0.875rem;
	}
	
	.hero-showcase-thumbnail-image {
		width: 90px;
		height: 65px;
	}
}

@media (max-width: 768px) {
	.hero-showcase-slide-inner {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
		min-height: auto;
		padding: var(--spacing-sm);
	}
	
	.hero-showcase-image-wrapper {
		height: 200px;
		order: 1;
	}
	
	.hero-showcase-content {
		order: 2;
		padding: 0;
	}
	
	.hero-showcase-title {
		font-size: 1.375rem;
	}
	
	.hero-showcase-description {
		font-size: 0.8125rem;
	}
	
	.hero-showcase-feature {
		font-size: 0.8125rem;
	}
	
	.hero-showcase-button {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
		width: 100%;
	}
	
	.hero-showcase-nav {
		width: 36px;
		height: 36px;
		top: 42%;
	}
	
	.hero-showcase-nav svg {
		width: 18px;
		height: 18px;
	}
	
	.hero-showcase-thumbnail-image {
		width: 80px;
		height: 60px;
	}
}

@media (max-width: 480px) {
	.hero-showcase {
		padding: var(--spacing-xs) 0;
	}
	
	.hero-showcase-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-showcase-slide-inner {
		padding: var(--spacing-xs);
		gap: var(--spacing-xs);
	}
	
	.hero-showcase-image-wrapper {
		height: 180px;
	}
	
	.hero-showcase-title {
		font-size: 1.25rem;
		margin-bottom: 0.375rem;
	}
	
	.hero-showcase-description {
		font-size: 0.75rem;
		margin-bottom: var(--spacing-xs);
		line-height: 1.5;
	}
	
	.hero-showcase-feature {
		font-size: 0.75rem;
		gap: 0.375rem;
	}
	
	.hero-showcase-feature svg {
		width: 14px;
		height: 14px;
	}
	
	.hero-showcase-button {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}
	
	.hero-showcase-nav {
		width: 32px;
		height: 32px;
		display: none;
	}
	
	.hero-showcase-nav svg {
		width: 16px;
		height: 16px;
	}
	
	.hero-showcase-thumbnail-image {
		width: 70px;
		height: 50px;
	}
	
	.hero-showcase-thumbnail-title {
		font-size: 0.625rem;
	}
}

.hero-support-container {
	max-width: var(--container-width);
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--spacing-md);
}

.hero-support-header {
	text-align: center;
	margin-bottom: var(--spacing-md);
}

.hero-support-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0 0 1rem 0;
}

.hero-support-subtitle {
	font-size: 1.25rem;
	line-height: 1.5;
	color: #1d1d1f;
	margin: 0;
}

.hero-support-categories {
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 1rem;
	margin-bottom: var(--spacing-md);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	flex: 1 1 auto;
	min-width: 0;
}

.hero-support-categories-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow: hidden;
}

.hero-support-nav {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	background: #ffffff;
	color: #1f2937;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-support-nav:hover {
	border-color: #0071e3;
	color: #0071e3;
}

.hero-support-nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.hero-support-categories::-webkit-scrollbar {
	display: none;
}

.hero-support-category {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #1d1d1f;
	transition: transform 0.3s ease;
	flex: 0 0 auto;
	min-width: 130px;
}

.hero-support-category:hover {
	transform: translateY(-4px);
}

.hero-support-category-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1d1d1f;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.hero-support-category:hover .hero-support-category-icon {
	color: #0071e3;
}

.hero-support-category-icon svg {
	width: 100%;
	height: 100%;
}

.hero-support-category-label {
	font-size: 0.9375rem;
	font-weight: 400;
	text-align: center;
	transition: color 0.3s ease;
	line-height: 1.35;
	white-space: nowrap;
}

.hero-support-category:hover .hero-support-category-label {
	color: #0071e3;
}

.hero-support-help-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.hero-support-help-card {
	background: #f5f5f7;
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #1d1d1f;
	transition: all 0.3s ease;
}

.hero-support-help-card:hover {
	background: #e8e8ed;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-support-help-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.hero-support-help-icon svg {
	width: 100%;
	height: 100%;
}

.hero-support-help-title {
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-support {
		padding: var(--spacing-md) 0;
	}
	
	.hero-support-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-support-title {
		font-size: 3rem;
	}
	
	.hero-support-categories {
		gap: 1.5rem;
	}
	
	.hero-support-category {
		min-width: 120px;
	}
	
	.hero-support-category-icon {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 768px) {
	.hero-support {
		padding: var(--spacing-sm) 0;
		min-height: auto;
	}
	
	.hero-support-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-support-header {
		margin-bottom: var(--spacing-sm);
	}
	
	.hero-support-title {
		font-size: 2.5rem;
	}
	
	.hero-support-subtitle {
		font-size: 1.125rem;
	}
	
	.hero-support-categories {
		gap: 1rem;
		margin-bottom: var(--spacing-sm);
	}

	.hero-support-nav {
		width: 28px;
		height: 28px;
	}
	
	.hero-support-category {
		min-width: 110px;
	}
	
	.hero-support-category-icon {
		width: 45px;
		height: 45px;
	}
	
	.hero-support-category-label {
		font-size: 0.875rem;
	}
	
	.hero-support-help-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.hero-support-help-card {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-support {
		padding: var(--spacing-sm) 0;
	}
	
	.hero-support-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-support-title {
		font-size: 2rem;
	}
	
	.hero-support-subtitle {
		font-size: 1rem;
	}
	
	.hero-support-categories {
		gap: 0.75rem;
	}

	.hero-support-nav {
		width: 26px;
		height: 26px;
	}
	
	.hero-support-category {
		min-width: 100px;
	}
	
	.hero-support-category-icon {
		width: 40px;
		height: 40px;
	}
	
	.hero-support-category-label {
		font-size: 0.75rem;
	}
	
	.hero-support-help-card {
		padding: 1.25rem;
	}
	
	.hero-support-help-icon {
		width: 56px;
		height: 56px;
	}
	
	.hero-support-help-title {
		font-size: 1rem;
	}
}

/* Mobile overflow safety */
@media (max-width: 768px) {
	html,
	body,
	#page,
	.site,
	.site-main {
		max-width: 100%;
		overflow-x: hidden;
	}

	.hero-showcase,
	.hero-support,
	.hero-opportunities,
	.hero-switch,
	.hero-help-here,
	.hero-unlock,
	.hero-experience,
	.hero-all-models {
		overflow-x: clip;
	}
}

/* ============================================
   OLD HERO STYLES - KEPT FOR COMPATIBILITY
   ============================================ */

.hero-dual-cta {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0;
}

.hero-dual-cta {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0;
}

.hero-cta-container {
	position: relative;
	width: 100%;
	min-height: 500px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

/* Left Side - Orange */
.hero-left-orange {
	flex: 1;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	position: relative;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
}

.hero-left-orange::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hero-cta-box-left {
	background-color: #5d4037;
	padding: 1.75rem 2.5rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transform: rotate(-1deg);
	position: relative;
	z-index: 5;
}

.hero-cta-title-left {
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.1;
	margin: 0;
	text-transform: lowercase;
	letter-spacing: -0.02em;
}

.hero-desc-left {
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.5;
	position: relative;
	z-index: 5;
}

/* Middle - Diagonal Divider */
.hero-divider-middle {
	position: relative;
	width: 200px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
	z-index: 20;
}

.hero-divider-middle::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
	pointer-events: none;
}

.divider-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	z-index: 10;
	padding: 2rem 1rem;
}

.divider-text {
	font-size: 1.75rem;
	font-weight: 900;
	color: #1976d2;
	text-align: center;
	line-height: 1.2;
	text-shadow: 
		-1px -1px 0 #ffffff,
		1px -1px 0 #ffffff,
		-1px 1px 0 #ffffff,
		1px 1px 0 #ffffff;
	letter-spacing: 0.05em;
}

.divider-button {
	padding: 0.875rem 1.5rem;
	background-color: #ffffff;
	color: #1976d2;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.divider-button:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Right Side - Green */
.hero-right-green {
	flex: 1;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	position: relative;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
}

.hero-right-green::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hero-new-badge {
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	padding: 0.5rem 1rem;
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.hero-desc-right {
	color: #1a5d3a;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0 0 1.5rem 0;
	line-height: 1.5;
	text-align: right;
	position: relative;
	z-index: 5;
}

.hero-cta-box-right {
	background-color: #ffffff;
	padding: 1.75rem 2.5rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	position: relative;
	z-index: 5;
}

.hero-cta-title-right {
	font-size: 3rem;
	font-weight: 900;
	color: #20ba5a;
	line-height: 1.1;
	margin: 0;
	text-transform: lowercase;
	letter-spacing: -0.02em;
}

/* Responsive Hero */
@media (max-width: 1024px) {
	.hero-cta-container {
		min-height: 450px;
	}
	
	.hero-left-orange,
	.hero-right-green {
		padding: 2.5rem 2rem;
	}
	
	.hero-cta-title-left,
	.hero-cta-title-right {
		font-size: 2.5rem;
	}
	
	.hero-divider-middle {
		width: 150px;
	}
}

@media (max-width: 768px) {
	.hero-cta-container {
		flex-direction: column;
		min-height: auto;
	}
	
	.hero-left-orange,
	.hero-right-green {
		flex: none;
		padding: 2rem 1.5rem;
		min-height: 300px;
		align-items: flex-start;
	}
	
	.hero-right-green {
		align-items: flex-start;
	}
	
	.hero-divider-middle {
		width: 100%;
		height: 120px;
		background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
	}
	
	.divider-content {
		flex-direction: row;
		gap: 1rem;
		padding: 1.5rem;
	}
	
	.divider-text {
		font-size: 1.5rem;
		writing-mode: horizontal-tb;
	}
	
	.hero-cta-title-left,
	.hero-cta-title-right {
		font-size: 2rem;
	}
	
	.hero-desc-left,
	.hero-desc-right {
		font-size: 1rem;
		text-align: left;
	}
	
	.hero-cta-box-left,
	.hero-cta-box-right {
		padding: 1.5rem 2rem;
	}
	
	.hero-new-badge {
		top: 1.5rem;
		right: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-left-orange,
	.hero-right-green {
		padding: 1.5rem 1rem;
		min-height: 250px;
	}
	
	.hero-cta-title-left,
	.hero-cta-title-right {
		font-size: 1.75rem;
	}
	
	.hero-desc-left,
	.hero-desc-right {
		font-size: 0.9375rem;
	}
	
	.hero-cta-box-left,
	.hero-cta-box-right {
		padding: 1.25rem 1.5rem;
	}
	
	.hero-cta-box-left {
		transform: rotate(0deg);
	}
}

/* ============================================
   OLD HERO STYLES - KEPT FOR COMPATIBILITY
   ============================================ */

.hero-minimal {
	width: 100%;
	background-color: #ffffff;
}

.hero-minimal {
	width: 100%;
	background-color: #ffffff;
}

.hero-minimal-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* Top Cards - Single Row, Equal Spacing */
.hero-cards-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	padding: 1.5rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.hero-card-minimal {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	border-right: 1px solid #e0e0e0;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.hero-card-minimal:last-child {
	border-right: none;
}

.hero-card-minimal:hover {
	background-color: #f8f9fa;
}

.card-icon-minimal {
	width: 48px;
	height: 48px;
	border-radius: 0;
	background-color: #25d366;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
}

.card-text-minimal {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text);
	text-align: center;
	line-height: 1.3;
}

/* Main Banner - Single Row */
.hero-banner-minimal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 3rem 0;
	background: linear-gradient(135deg, #a8e6cf 0%, #25d366 100%);
	margin: 0 calc(-1 * var(--spacing-md));
	padding-left: var(--spacing-md);
	padding-right: var(--spacing-md);
}

.banner-left-minimal {
	flex: 1;
}

.banner-title-minimal {
	font-size: 3.5rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-right-minimal {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1rem;
}

.product-display-minimal {
	position: relative;
	width: 100%;
	max-width: 350px;
	background-color: #ffffff;
	border-radius: 0;
	padding: 1.5rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stock-badge-minimal {
	position: absolute;
	top: -12px;
	left: 1.5rem;
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.product-image-minimal {
	width: 100%;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem 0;
}

.product-image-minimal img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.price-box-minimal {
	background-color: #25d366;
	color: #ffffff;
	padding: 1.25rem;
	border-radius: 0;
	margin-top: 1rem;
}

.price-name-minimal {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.price-main-minimal {
	font-size: 1.75rem;
	font-weight: 900;
	margin: 0 0 0.5rem 0;
}

.price-installment-minimal {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	opacity: 0.95;
}

.price-note-minimal {
	font-size: 0.8125rem;
	font-weight: 500;
	margin: 0;
	opacity: 0.85;
}

.slider-minimal {
	display: flex;
	align-items: center;
	gap: 1rem;
	background-color: #ffffff;
	padding: 0.5rem 1rem;
	border-radius: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn-minimal {
	width: 32px;
	height: 32px;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	cursor: pointer;
	font-size: 1rem;
	color: #2c3e50;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-btn-minimal:hover {
	background-color: #25d366;
	color: #ffffff;
	border-color: #25d366;
}

.slider-count-minimal {
	font-size: 0.875rem;
	font-weight: 600;
	color: #2c3e50;
	min-width: 45px;
	text-align: center;
}

/* World Section - Clean Grid */
.hero-world-minimal {
	padding: 3rem 0;
}

.world-title-minimal {
	font-size: 2rem;
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 2rem 0;
	text-align: center;
}

.world-grid-minimal {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	overflow: hidden;
}

.world-item-minimal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	text-decoration: none;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.2s ease;
	background-color: #ffffff;
}

.world-item-minimal:nth-child(4n) {
	border-right: none;
}

.world-item-minimal:nth-child(n+5) {
	border-bottom: none;
}

.world-item-minimal:hover {
	background-color: #f8f9fa;
}

.world-item-minimal img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 0;
	margin-bottom: 1rem;
}

.world-item-minimal span {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-text);
	text-align: center;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
	.banner-title-minimal {
		font-size: 2.5rem;
	}
	
	.hero-cards-row {
		flex-wrap: wrap;
	}
	
	.hero-card-minimal {
		flex: 0 0 calc(25% - 1px);
		border-bottom: 1px solid #e0e0e0;
	}
	
	.hero-card-minimal:nth-child(4n) {
		border-right: none;
	}
	
	.hero-card-minimal:nth-child(n+5) {
		border-bottom: none;
	}
	
	.world-grid-minimal {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.world-item-minimal:nth-child(4n) {
		border-right: 1px solid #e0e0e0;
	}
	
	.world-item-minimal:nth-child(2n) {
		border-right: none;
	}
	
	.world-item-minimal:nth-child(n+3) {
		border-bottom: 1px solid #e0e0e0;
	}
	
	.world-item-minimal:nth-child(n+7) {
		border-bottom: none;
	}
}

@media (max-width: 768px) {
	.hero-banner-minimal {
		flex-direction: column;
		gap: 2rem;
	}
	
	.banner-title-minimal {
		font-size: 2rem;
		text-align: center;
	}
	
	.banner-right-minimal {
		width: 100%;
		align-items: center;
	}
	
	.hero-cards-row {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hero-card-minimal {
		flex: 0 0 calc(50% - 1px);
	}
	
	.hero-card-minimal:nth-child(2n) {
		border-right: none;
	}
	
	.hero-card-minimal:nth-child(n+3) {
		border-bottom: 1px solid #e0e0e0;
	}
	
	.hero-card-minimal:nth-child(n+7) {
		border-bottom: none;
	}
	
	.world-grid-minimal {
		grid-template-columns: 1fr;
	}
	
	.world-item-minimal {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}
	
	.world-item-minimal:last-child {
		border-bottom: none;
	}
}

@media (max-width: 480px) {
	.banner-title-minimal {
		font-size: 1.5rem;
	}
	
	.card-text-minimal {
		font-size: 0.75rem;
	}
	
	.card-icon-minimal {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}
}

/* Old Styles - Keep for compatibility */
.hero-easycep {
	width: 100%;
	background-color: #ffffff;
}

/* Top Navigation Cards */
.hero-top-cards {
	background-color: #ffffff;
	padding: 2rem 0;
	border-bottom: 1px solid #e8e8e8;
}

.hero-cards-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1.5rem;
}

.hero-card-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.hero-card-item:hover {
	transform: translateY(-5px);
}

.hero-card-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #ffffff;
	margin-bottom: 1rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-badge {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffff;
	color: #25d366;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-badge-small {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffff;
	color: #25d366;
	font-size: 0.5rem;
	font-weight: 700;
	padding: 0.25rem 0.375rem;
	border-radius: 10px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-badge-red {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.card-time {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-card-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
	line-height: 1.4;
}

/* Main Promotional Banner */
.hero-main-banner {
	background: linear-gradient(135deg, #a8e6cf 0%, #7dd3a0 50%, #25d366 100%);
	padding: 3rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.hero-main-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
				radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
	pointer-events: none;
}

.hero-banner-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	position: relative;
	z-index: 10;
}

.hero-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	margin-bottom: 2rem;
}

.hero-banner-left {
	flex: 1;
}

.hero-3d-text {
	font-size: 4.5rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	text-shadow: 
		0 4px 0 rgba(0, 0, 0, 0.1),
		0 8px 16px rgba(0, 0, 0, 0.15),
		0 0 0 rgba(0, 0, 0, 0.1),
		2px 2px 0 rgba(0, 0, 0, 0.1),
		4px 4px 0 rgba(0, 0, 0, 0.1);
	transform: perspective(500px) rotateX(5deg);
}

.hero-banner-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1.5rem;
}

.hero-product-display {
	position: relative;
	width: 100%;
	max-width: 400px;
}

.hero-limited-stock {
	position: absolute;
	top: -10px;
	left: 20px;
	background-color: #ffffff;
	padding: 0.75rem 1.25rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #dc2626;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	z-index: 20;
}

.hero-limited-stock svg {
	flex-shrink: 0;
}

.hero-product-image {
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-product-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

.hero-price-bubble {
	position: absolute;
	bottom: 20px;
	right: -20px;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	padding: 1.5rem 2rem;
	border-radius: 20px;
	color: #ffffff;
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
	z-index: 15;
	min-width: 200px;
}

.price-product-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.75rem 0;
}

.price-main {
	font-size: 2rem;
	font-weight: 900;
	margin: 0 0 0.5rem 0;
}

.price-installment {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	opacity: 0.95;
}

.price-note {
	font-size: 0.875rem;
	font-weight: 500;
	margin: 0;
	opacity: 0.85;
}

.hero-slider-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	background-color: #ffffff;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slider-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f5f5f5;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2c3e50;
	transition: all 0.3s ease;
}

.slider-arrow:hover {
	background-color: #25d366;
	color: #ffffff;
	transform: scale(1.1);
}

.slider-counter {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #2c3e50;
	min-width: 50px;
	text-align: center;
}

.hero-disclaimer {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-disclaimer p {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0;
	text-align: center;
}

/* EasyCep Dünyası Section */
.hero-world-section {
	background-color: #ffffff;
	padding: 3rem 0;
}

.hero-world-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-world-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 2rem 0;
	text-align: center;
}

.hero-world-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.world-card {
	background-color: #ffffff;
	border: 2px solid #e8e8e8;
	border-radius: 16px;
	padding: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.world-card:hover {
	border-color: #25d366;
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.world-card-image {
	width: 100%;
	height: 180px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
	background-color: #f5f5f5;
}

.world-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.world-card:hover .world-card-image img {
	transform: scale(1.05);
}

.world-card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-3d-text {
		font-size: 3.5rem;
	}
	
	.hero-cards-container {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 1rem;
	}
	
	.hero-card-icon {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 768px) {
	.hero-banner-content {
		flex-direction: column;
		gap: 2rem;
	}
	
	.hero-3d-text {
		font-size: 2.5rem;
		text-align: center;
	}
	
	.hero-banner-right {
		align-items: center;
		width: 100%;
	}
	
	.hero-product-display {
		max-width: 100%;
	}
	
	.hero-price-bubble {
		position: static;
		margin-top: 1rem;
		width: 100%;
	}
	
	.hero-cards-container {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.hero-world-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.hero-3d-text {
		font-size: 2rem;
	}
	
	.hero-cards-container {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hero-card-icon {
		width: 70px;
		height: 70px;
	}
	
	.hero-card-title {
		font-size: 0.75rem;
	}
	
	.hero-world-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-product-image {
		height: 350px;
	}
}

/* ============================================
   OLD HERO STYLES - KEPT FOR COMPATIBILITY
   ============================================ */

.hero-section-modern {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: 0;
	background-color: #f8f9fa;
}

.hero-modern-container {
	position: relative;
	width: 100%;
	min-height: 600px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

/* Left & Right Sides - Common Styles */
.hero-modern-left,
.hero-modern-right {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
	min-height: 600px;
}

.hero-modern-right {
	align-items: flex-end;
}

.hero-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	transition: opacity 0.3s ease;
}

.hero-modern-left .hero-image-overlay {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 140, 66, 0.95) 100%),
				url('https://images.unsplash.com/photo-1525547719571-a2d4ac8945e2?w=800&h=600&fit=crop&crop=center');
	background-size: cover;
	background-position: center;
	opacity: 1;
}

.hero-modern-right .hero-image-overlay {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(32, 186, 90, 0.95) 100%),
				url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=800&h=600&fit=crop&crop=center');
	background-size: cover;
	background-position: center;
	opacity: 1;
}

.hero-content-overlay {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hero-modern-right .hero-content-overlay {
	align-items: flex-end;
}

.hero-content-wrapper {
	width: 100%;
	max-width: 500px;
}

.hero-content-right {
	text-align: right;
}

/* Save Button - Modern */
.hero-save-btn-modern {
	position: absolute;
	top: 2rem;
	left: 2.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: rgba(220, 38, 38, 0.95);
	backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 20;
	box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.hero-save-btn-modern:hover {
	background: rgba(185, 28, 28, 0.95);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.hero-save-btn-modern svg {
	flex-shrink: 0;
}

/* CTA Box - Modern Glassmorphism */
.hero-cta-box-modern {
	padding: 2rem 2.5rem;
	border-radius: 16px;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.hero-cta-left {
	background: rgba(93, 64, 55, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-right {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-box-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-title-modern {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.1;
	margin: 0;
	text-transform: lowercase;
	letter-spacing: -0.02em;
}

.hero-cta-left .hero-title-modern {
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta-right .hero-title-modern {
	color: #20ba5a;
}

/* Description Text */
.hero-desc-modern {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.6;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* New Badge - Modern */
.hero-badge-modern {
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	padding: 0.625rem 1.25rem;
	background: rgba(220, 38, 38, 0.95);
	backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	z-index: 20;
	box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* Middle Divider - Modern */
.hero-modern-divider {
	position: relative;
	width: 220px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 60px rgba(255, 255, 255, 0.6), inset 0 0 40px rgba(255, 255, 255, 0.3);
	z-index: 30;
}

.hero-modern-divider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
	pointer-events: none;
}

.divider-content-modern {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	z-index: 10;
	padding: 2rem 1rem;
}

.divider-text-modern {
	font-size: 1.75rem;
	font-weight: 800;
	color: #2c3e50;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.divider-button-modern {
	padding: 1rem 2rem;
	background: #ffffff;
	color: #2c3e50;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(44, 62, 80, 0.15);
	transition: all 0.3s ease;
	white-space: nowrap;
	border: 2px solid transparent;
}

.divider-button-modern:hover {
	background: #2c3e50;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(44, 62, 80, 0.25);
	border-color: #2c3e50;
}

/* Responsive - Modern Hero */
@media (max-width: 1024px) {
	.hero-modern-container {
		min-height: 550px;
	}
	
	.hero-modern-left,
	.hero-modern-right {
		min-height: 550px;
	}
	
	.hero-content-overlay {
		padding: 2.5rem 2rem;
	}
	
	.hero-title-modern {
		font-size: 2.5rem;
	}
	
	.hero-modern-divider {
		width: 180px;
	}
}

@media (max-width: 768px) {
	.hero-modern-container {
		flex-direction: column;
		min-height: auto;
	}
	
	.hero-modern-left,
	.hero-modern-right {
		flex: none;
		min-height: 400px;
	}
	
	.hero-content-overlay {
		padding: 2rem 1.5rem;
	}
	
	.hero-modern-divider {
		width: 100%;
		height: 140px;
		background: linear-gradient(90deg, #ffffff 0%, #f8f9fa 100%);
	}
	
	.divider-content-modern {
		flex-direction: row;
		gap: 1.5rem;
		padding: 1.5rem;
	}
	
	.divider-text-modern {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		font-size: 1.5rem;
	}
	
	.hero-title-modern {
		font-size: 2rem;
	}
	
	.hero-desc-modern {
		font-size: 1.125rem;
		text-align: left;
	}
	
	.hero-content-wrapper {
		max-width: 100%;
	}
	
	.hero-content-right {
		text-align: left;
	}
	
	.hero-cta-box-modern {
		padding: 1.5rem 2rem;
	}
	
	.hero-save-btn-modern {
		top: 1.5rem;
		left: 1.5rem;
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}
	
	.hero-badge-modern {
		top: 1.5rem;
		right: 1.5rem;
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.hero-modern-left,
	.hero-modern-right {
		min-height: 350px;
	}
	
	.hero-content-overlay {
		padding: 1.5rem 1rem;
	}
	
	.hero-title-modern {
		font-size: 1.75rem;
	}
	
	.hero-desc-modern {
		font-size: 1rem;
	}
	
	.hero-cta-box-modern {
		padding: 1.25rem 1.5rem;
	}
	
	.hero-save-btn-modern span {
		display: none;
	}
	
	.divider-button-modern {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}
}

/* Old Hero Styles - Keep for compatibility */
.hero-section<｜tool▁sep｜>enyeni {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

.hero-gradient-container {
	position: relative;
	width: 100%;
	min-height: 500px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

/* Left Side - Orange */
.hero-left-orange {
	flex: 1;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	position: relative;
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
}

.hero-left-orange::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

/* Save Button */
.hero-save-button {
	position: absolute;
	top: 1.5rem;
	left: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 10;
}

.hero-save-button:hover {
	background-color: #b91c1c;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.hero-save-button svg {
	flex-shrink: 0;
}

/* CTA Overlay Left */
.hero-cta-overlay-left {
	background-color: #5d4037;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	margin: 2rem 0 1rem 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	z-index: 5;
}

.hero-cta-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	text-transform: lowercase;
}

.hero-cta-overlay-left .hero-cta-title {
	color: #ffffff;
}

/* Supporting Text Left */
.hero-supporting-text-left {
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.5;
	z-index: 5;
}

/* Middle - Diagonal Divider */
.hero-middle-divider {
	position: relative;
	width: 200px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
	z-index: 20;
}

.hero-middle-divider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
	pointer-events: none;
}

.hero-divider-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	z-index: 10;
}

.hero-or-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1976d2;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 0.1em;
}

.hero-sell-button-middle {
	padding: 0.875rem 1.5rem;
	background-color: #ffffff;
	color: #1976d2;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.hero-sell-button-middle:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Right Side - Green */
.hero-right-green {
	flex: 1;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	position: relative;
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
}

.hero-right-green::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

/* New Badge */
.hero-new-badge {
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	padding: 0.5rem 1rem;
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Supporting Text Right */
.hero-supporting-text-right {
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0 0 1.5rem 0;
	line-height: 1.5;
	text-align: right;
	z-index: 5;
}

/* CTA Overlay Right */
.hero-cta-overlay-right {
	background-color: #ffffff;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	z-index: 5;
}

.hero-cta-overlay-right .hero-cta-title {
	color: #20ba5a;
}

/* Responsive Hero */
@media (max-width: 1024px) {
	.hero-gradient-container {
		min-height: 450px;
	}
	
	.hero-left-orange,
	.hero-right-green {
		padding: 2.5rem 1.5rem;
	}
	
	.hero-cta-title {
		font-size: 2rem;
	}
	
	.hero-middle-divider {
		width: 150px;
	}
}

@media (max-width: 768px) {
	.hero-gradient-container {
		flex-direction: column;
		min-height: auto;
	}
	
	.hero-left-orange,
	.hero-right-green {
		flex: none;
		padding: 2rem 1.5rem;
		min-height: 300px;
	}
	
	.hero-middle-divider {
		width: 100%;
		height: 120px;
		background: linear-gradient(90deg, #ffffff 0%, #f5f5f5 100%);
	}
	
	.hero-divider-content {
		flex-direction: row;
		gap: 1rem;
	}
	
	.hero-or-text {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		font-size: 1.25rem;
	}
	
	.hero-cta-title {
		font-size: 1.75rem;
	}
	
	.hero-supporting-text-left,
	.hero-supporting-text-right {
		font-size: 1rem;
		text-align: left;
	}
	
	.hero-cta-overlay-left,
	.hero-cta-overlay-right {
		padding: 1.25rem 1.5rem;
	}
	
	.hero-save-button {
		top: 1rem;
		left: 1.5rem;
		padding: 0.375rem 0.75rem;
		font-size: 0.8125rem;
	}
	
	.hero-new-badge {
		top: 1rem;
		right: 1.5rem;
		padding: 0.375rem 0.75rem;
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.hero-left-orange,
	.hero-right-green {
		padding: 1.5rem 1rem;
		min-height: 250px;
	}
	
	.hero-cta-title {
		font-size: 1.5rem;
	}
	
	.hero-supporting-text-left,
	.hero-supporting-text-right {
		font-size: 0.9375rem;
	}
	
	.hero-cta-overlay-left,
	.hero-cta-overlay-right {
		padding: 1rem 1.25rem;
	}
	
	.hero-save-button span {
		display: none;
	}
}

/* Category Buttons */
.category-buttons-banayeni {
	background-color: #ffffff;
	padding: 1rem 0;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.category-buttons-content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	flex-wrap: nowrap;
}

.category-button {
	padding: 0.625rem 1.25rem;
	background-color: #f5f5f5;
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	white-space: nowrap;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.category-button:hover {
	background-color: #e8e8e8;
	color: #2c3e50;
}

/* Responsive - Mobile */
@media (max-width: 1024px) {
	.banayeni-top-content {
		gap: var(--spacing-sm);
	}
	
	.banayeni-search {
		max-width: 500px;
	}
}

@media (max-width: 768px) {
	.banayeni-top-bar {
		padding: 0.75rem 0;
	}
	
	.banayeni-top-content {
		flex-wrap: wrap;
		gap: 0.75rem;
		padding: 0 var(--spacing-sm);
	}
	
	.banayeni-logo {
		order: 1;
		flex: 1;
	}
	
	.logo-main-text {
		font-size: 1.125rem;
	}
	
	.all-categories-button-top {
		order: 2;
	}
	
	.banayeni-actions {
		order: 3;
		gap: 0.5rem;
	}
	
	.login-button span {
		display: none;
	}
	
	.sell-button {
		padding: 0.625rem 1rem;
		font-size: 0.8125rem;
	}
	
	.mobile-menu-toggle-banayeni {
		display: flex;
		order: 4;
	}
	
	.banayeni-search {
		order: 5;
		width: 100%;
		max-width: 100%;
		margin: 0;
		min-width: 100%;
	}
	
	.all-categories-button-top {
		padding: 0.5rem 0.75rem;
		font-size: 0.8125rem;
		flex: 0 0 auto;
	}
	
	.all-categories-button-top span {
		display: none;
	}
	
	.banayeni-logo {
		min-width: auto;
	}
	
	.promo-banner-content {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding: 0 var(--spacing-sm);
	}
	
	.promo-separator-modern {
		display: none;
	}
	
	.promo-separator {
		display: none;
	}
	
	.promo-text {
		font-size: 0.875rem;
	}
	
	.category-buttons-content {
		padding: 0 var(--spacing-sm);
		gap: 0.5rem;
	}
	
	.category-button {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.logo-top-text {
		display: none;
	}
	
	.logo-main-text {
		font-size: 1rem;
	}
	
	.banayeni-actions {
		gap: 0.375rem;
	}
	
	.login-button {
		padding: 0.5rem;
	}
	
	.sell-button {
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
	}
}

/* ============================================
   OLD GETMOBIL STYLE HEADER - REMOVED
   ============================================ */

/* Top Bar - Orange - Optimized Height - Perfect Alignment */
.header-top-bar-getmobil {
	background-color: #ff6b35;
	padding: 0.875rem 0;
	width: 100%;
	position: relative;
	z-index: 1000;
}

.header-top-content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
	height: 56px;
}

/* Logo - Perfect Alignment */
.header-logo-getmobil {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.logo-link {
	text-decoration: none;
	display: flex;
	align-items: center;
	height: 100%;
}

.logo-text-getmobil {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	white-space: nowrap;
	letter-spacing: -0.3px;
	line-height: 1;
}

/* Search Bar */
.header-search-getmobil {
	flex: 1;
	max-width: 600px;
	margin: 0 auto;
}

.search-form-getmobil {
	position: relative;
	display: flex;
	width: 100%;
}

.search-input-getmobil {
	width: 100%;
	padding: 0.75rem 3rem 0.75rem 1.125rem;
	border: none;
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--color-text);
	background-color: #ffffff;
	outline: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input-getmobil:focus {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	outline: none;
}

.search-input-getmobil::placeholder {
	color: #999999;
}

.search-button-getmobil {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	color: #666666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.search-button-getmobil:hover {
	color: var(--color-accent);
}

/* Header Actions - Perfect Alignment */
.header-actions-getmobil {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
	height: 100%;
}

.dealer-link {
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	background-color: #e55a2b;
	display: flex;
	align-items: center;
	height: 36px;
	line-height: 1;
}

.dealer-link:hover {
	background-color: #d44f22;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.user-icon-button,
.cart-icon-button {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	padding: 0;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.2s ease;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.user-icon-button:hover,
.cart-icon-button:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.1);
}

.user-icon-button svg,
.cart-icon-button svg {
	width: 20px;
	height: 20px;
}

.cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.625rem;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border: 2px solid #ffffff;
	box-shadow: 0 2px 4px rgba(220, 38, 38, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle-getmobil {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.mobile-menu-toggle-getmobil span {
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	transition: var(--transition);
	display: block;
}

/* Bottom Bar - White Navigation - Perfect Alignment */
.header-bottom-getmobil {
	background-color: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-bottom-content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing-md);
	min-height: 60px;
	height: 60px;
}

/* Navigation Menu - Perfect Alignment, No Shift */
.main-navigation-getmobil {
	flex: 1;
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-menu-getmobil {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
}

.nav-menu-getmobil > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-menu-getmobil > li > a {
	color: var(--color-text);
	font-weight: 500;
	font-size: 0.875rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.125rem;
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
	height: 100%;
	min-width: fit-content;
	line-height: 1.2;
}

.nav-menu-getmobil > li > a:hover {
	color: #ff6b35;
}

.dropdown-arrow {
	width: 10px;
	height: 10px;
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-top: 0.125rem;
	opacity: 0.6;
}

.menu-item-has-children:hover .dropdown-arrow {
	transform: rotate(180deg);
	opacity: 1;
}

/* Menu Badge - Perfect Position */
.menu-item-badge {
	position: relative;
}

.menu-badge {
	position: absolute;
	top: -8px;
	right: -12px;
	background-color: #ffd700;
	color: var(--color-primary);
	font-size: 0.625rem;
	font-weight: 800;
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	line-height: 1.2;
	white-space: nowrap;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	letter-spacing: 0.3px;
	text-transform: uppercase;
	z-index: 10;
}

/* Sub Menu - Perfect Alignment - No Shift */
.sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li {
	margin: 0;
}

.sub-menu a {
	display: block;
	padding: 0.625rem 1.25rem;
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.sub-menu a:hover {
	background-color: rgba(255, 107, 53, 0.08);
	color: #ff6b35;
}

/* CTA Button - Perfect Alignment, Sharp */
.header-cta-getmobil {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.cta-button-modern-minimal {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.125rem;
	background-color: #25d366;
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	height: 40px;
	line-height: 1;
}

.cta-button-modern-minimal:hover {
	background-color: #20ba5a;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	transform: translateY(-1px);
}

.cta-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.cta-icon-wrapper svg {
	width: 18px;
	height: 18px;
}

.cta-text {
	font-weight: 600;
	letter-spacing: 0.2px;
}

.cta-arrow {
	font-size: 0.875rem;
	transition: transform 0.2s ease;
	display: inline-block;
	margin-left: 0.125rem;
}

.cta-button-modern-minimal:hover .cta-arrow {
	transform: translateX(2px);
}

/* Hero Section - Naberise Style */
.hero-section-naberise {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.hero-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}

.hero-main-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--spacing-md);
}

.hero-title-line-1,
.hero-title-line-2 {
	display: block;
}

.hero-description-text {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-lg);
	max-width: 600px;
}

.hero-cta-buttons-naberise {
	display: flex;
	gap: var(--spacing-sm);
	flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--border-radius);
	text-decoration: none;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.cta-button-primary {
	background-color: var(--color-whatsapp);
	color: var(--color-bg);
}

.cta-button-primary:hover {
	background-color: #20ba5a;
	transform: translateY(-2px);
	color: var(--color-bg);
}

.cta-button-secondary {
	background-color: var(--color-primary);
	color: var(--color-bg);
}

.cta-button-secondary:hover {
	background-color: var(--color-accent);
	transform: translateY(-2px);
	color: var(--color-bg);
}

.hero-image-wrapper {
	position: relative;
}

.hero-image-placeholder {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 24px;
	padding: var(--spacing-lg);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-categories-minimal {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-md);
	width: 100%;
}

.category-minimal-item {
	background-color: var(--color-bg);
	border-radius: 16px;
	padding: var(--spacing-md);
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.category-minimal-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-minimal-icon {
	font-size: 3rem;
	display: block;
	margin-bottom: var(--spacing-xs);
}

.category-minimal-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	display: block;
}

/* About Section - Naberise Style */
.about-section-naberise {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.about-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}

.about-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: var(--spacing-md);
}

.about-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.about-image-placeholder {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 24px;
	padding: var(--spacing-lg);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-feature-item {
	background-color: var(--color-bg);
	border-radius: 16px;
	padding: var(--spacing-md);
	margin-bottom: var(--spacing-sm);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
	font-size: 2rem;
	margin-right: var(--spacing-sm);
}

.about-feature-item h3 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

/* Features Section - Naberise Style */
.features-section-naberise {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.section-title-naberise {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: var(--spacing-sm);
}

.section-subtitle-naberise {
	font-size: 1.125rem;
	text-align: center;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-xl);
	line-height: 1.6;
}

.features-grid-naberise {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
}

.feature-card-naberise {
	background-color: var(--color-bg);
	border-radius: 20px;
	padding: var(--spacing-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.feature-card-naberise:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image-placeholder {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 16px;
	padding: var(--spacing-md);
	margin-bottom: var(--spacing-md);
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon-large {
	font-size: 4rem;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
}

.feature-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text-light);
}

/* Discover Section - Naberise Style */
.discover-section-naberise {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.categories-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-md);
}

.category-showcase-item {
	background-color: var(--color-bg);
	border-radius: 16px;
	padding: var(--spacing-md);
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.category-showcase-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-showcase-icon {
	font-size: 3rem;
	display: block;
	margin-bottom: var(--spacing-xs);
}

.category-showcase-name {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
}

.category-showcase-action {
	font-size: 0.875rem;
	color: var(--color-accent);
	font-weight: 600;
}

/* CTA Section - Naberise Style */
.cta-section-naberise {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
	text-align: center;
}

.cta-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: var(--spacing-lg);
	color: var(--color-text);
}

.cta-title strong {
	color: var(--color-accent);
}

.cta-buttons-wrapper {
	display: flex;
	gap: var(--spacing-sm);
	justify-content: center;
	flex-wrap: wrap;
}

.cta-button-large {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: var(--border-radius);
	text-decoration: none;
	transition: var(--transition);
	background-color: var(--color-primary);
	color: var(--color-bg);
}

.cta-button-large:hover {
	background-color: var(--color-accent);
	transform: translateY(-2px);
	color: var(--color-bg);
}

.cta-button-large.secondary {
	background-color: var(--color-bg);
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.cta-button-large.secondary:hover {
	background-color: var(--color-primary);
	color: var(--color-bg);
}

/* Testimonials - Naberise Style */
.testimonials-section {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-md);
}

.testimonial-card {
	background-color: var(--color-bg);
	border-radius: 20px;
	padding: var(--spacing-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	margin: 0 auto var(--spacing-sm);
	border-radius: 50%;
	background-color: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-text {
	font-size: 1rem;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-sm);
	line-height: 1.7;
}

.testimonial-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
}

/* Help Center - Naberise Style */
.help-center-section {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--color-bg);
	border-radius: 12px;
	margin-bottom: var(--spacing-sm);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
	width: 100%;
	padding: var(--spacing-md);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	transition: var(--transition);
}

.faq-question:hover {
	background-color: var(--color-bg-light);
}

.faq-icon {
	flex-shrink: 0;
	color: var(--color-accent);
}

.faq-text {
	flex: 1;
	font-weight: 600;
	font-size: 1rem;
}

.faq-arrow {
	flex-shrink: 0;
	transition: var(--transition);
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

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

.faq-answer p {
	padding: 0 var(--spacing-md) var(--spacing-md);
	margin: 0;
	color: var(--color-text-light);
	line-height: 1.7;
}

/* Footer - Naberise Style */
.site-footer-naberise {
	background-color: var(--color-bg);
	border-top: 1px solid var(--color-border);
	padding: var(--spacing-xl) 0;
}

.footer-container-naberise {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.footer-content-naberise {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-lg);
}

.footer-logo-naberise {
	margin-bottom: var(--spacing-md);
}

.footer-links-naberise {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
}

.footer-links-naberise a {
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.footer-links-naberise a:hover {
	color: var(--color-accent);
}

.footer-social-naberise {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
}

.footer-social-naberise a {
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.footer-social-naberise a:hover {
	color: var(--color-accent);
}

.footer-contact-naberise a {
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.footer-contact-naberise a:hover {
	color: var(--color-accent);
}

.footer-copyright-naberise {
	grid-column: 1 / -1;
	text-align: center;
	padding-top: var(--spacing-md);
	border-top: 1px solid var(--color-border);
}

.footer-copyright-naberise p {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
}

/* Page Templates */
.page-content,
.single-content,
.archive-content,
.search-content,
.error-404-content,
.index-content {
	padding: var(--spacing-xl) 0;
}

.entry-title,
.archive-title,
.search-title {
	font-size: 2rem;
	margin-bottom: var(--spacing-md);
}

.entry-content {
	font-size: 1.125rem;
	line-height: 1.8;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--spacing-md);
}

.post-card {
	background-color: var(--color-bg);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.post-thumbnail {
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: var(--transition);
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.05);
}

.post-content {
	padding: var(--spacing-md);
}

.post-title {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-xs);
}

.post-title a {
	color: var(--color-text);
}

.post-title a:hover {
	color: var(--color-accent);
}

.post-excerpt {
	color: var(--color-text-light);
	margin-bottom: var(--spacing-sm);
	font-size: 0.9375rem;
}

.read-more {
	color: var(--color-accent);
	font-weight: 600;
	font-size: 0.875rem;
}

.error-404 {
	text-align: center;
	padding: var(--spacing-xl) 0;
}

.error-title {
	font-size: 6rem;
	font-weight: 800;
	color: var(--color-accent);
	margin-bottom: var(--spacing-sm);
}

.error-message {
	font-size: 1.5rem;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-md);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-content-wrapper,
	.about-content-wrapper {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	
	.hero-main-title {
		font-size: 2.5rem;
	}
	
	.nav-menu-modern {
		gap: var(--spacing-md);
	}
	
	.top-bar-links {
		gap: var(--spacing-sm);
	}
}

@media (max-width: 768px) {
	:root {
		--spacing-lg: 2rem;
		--spacing-xl: 3rem;
	}
	
	h1 { font-size: 2rem; }
	h2 { font-size: 2rem; }
	
	/* Top Bar Mobile */
	.top-bar-links {
		font-size: 0.625rem;
		gap: 0.5rem;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	
	.top-bar-links::-webkit-scrollbar {
		display: none;
	}
	
	/* Header Mobile */
	.header-content-modern {
		padding: 0 var(--spacing-sm);
	}
	
	.header-inner-modern {
		flex-wrap: wrap;
	}
	
	.main-navigation-modern {
		order: 3;
		width: 100%;
		display: none;
		margin-left: 0;
	}
	
	.main-navigation-modern.active {
		display: block;
	}
	
	.nav-menu-modern {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		padding: var(--spacing-md) 0;
	}
	
	.nav-menu-modern > li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}
	
	.nav-menu-modern > li > a {
		padding: var(--spacing-sm) 0;
		width: 100%;
		justify-content: space-between;
	}
	
	.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		border-top: 1px solid var(--color-border);
		border-radius: 0;
		margin-top: 0;
		display: none;
	}
	
	.menu-item-has-children.active .sub-menu {
		display: block;
	}
	
	.mobile-menu-toggle-modern {
		display: flex;
		order: 2;
	}
	
	.header-right-modern {
		order: 2;
		gap: var(--spacing-xs);
	}
	
	.social-icons-modern {
		gap: 0.25rem;
	}
	
	.social-icon {
		width: 28px;
		height: 28px;
	}
	
	.social-icon svg {
		width: 18px;
		height: 18px;
	}
	
	.cta-button-modern {
		padding: 0.625rem 1rem;
		font-size: 0.625rem;
	}
	
	.hero-main-title {
		font-size: 2rem;
	}
	
	.hero-description-text {
		font-size: 1.125rem;
	}
	
	.hero-cta-buttons-naberise {
		flex-direction: column;
	}
	
	.cta-button-primary,
	.cta-button-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.hero-categories-minimal {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.cta-buttons-wrapper {
		flex-direction: column;
	}
	
	.cta-button-large {
		width: 100%;
		justify-content: center;
	}
	
	/* Getmobil Header Mobile - Perfect Alignment */
	.header-top-bar-getmobil {
		padding: 0.75rem 0;
	}
	
	.header-top-content {
		flex-wrap: wrap;
		gap: 0.75rem;
		height: auto;
		min-height: 56px;
	}
	
	.header-logo-getmobil {
		order: 1;
		flex-shrink: 0;
	}
	
	.header-search-getmobil {
		order: 3;
		width: 100%;
		max-width: 100%;
		margin: 0;
		flex: 1 1 100%;
	}
	
	.header-actions-getmobil {
		order: 2;
		gap: 0.75rem;
	}
	
	.dealer-link {
		display: none;
	}
	
	.mobile-menu-toggle-getmobil {
		display: flex;
		order: 2;
	}
	
	/* Bottom Bar Mobile - Perfect Alignment */
	.header-bottom-getmobil {
		min-height: auto;
	}
	
	.header-bottom-content {
		flex-direction: column;
		align-items: stretch;
		padding: var(--spacing-sm);
		height: auto;
		min-height: auto;
		gap: var(--spacing-sm);
	}
	
	.main-navigation-getmobil {
		width: 100%;
		display: none;
		height: auto;
	}
	
	.main-navigation-getmobil.active {
		display: block;
	}
	
	.nav-menu-getmobil {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		height: auto;
	}
	
	.nav-menu-getmobil > li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
		height: auto;
		min-height: 48px;
	}
	
	.nav-menu-getmobil > li > a {
		padding: var(--spacing-sm) 0;
		width: 100%;
		justify-content: space-between;
		flex-direction: row;
		height: auto;
		min-height: 48px;
	}
	
	.nav-menu-getmobil .dropdown-arrow {
		margin-top: 0;
		margin-left: auto;
	}
	
	.nav-menu-getmobil .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		border-top: 1px solid var(--color-border);
		border-radius: 0;
		margin-top: 0;
		display: none;
		background-color: var(--color-bg-light);
		left: auto;
		top: auto;
	}
	
	.nav-menu-getmobil .menu-item-has-children.active .sub-menu {
		display: block;
	}
	
	.header-cta-getmobil {
		width: 100%;
		margin-top: 0;
		height: auto;
	}
	
	.cta-button-modern-minimal {
		width: 100%;
		justify-content: center;
		height: 44px;
	}
}

/* ============================================
   HERO CANVA - FEATURE BLOCKS
   ============================================ */

.hero-canva-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.875rem;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(32, 186, 90, 0.1) 100%);
	border: 1px solid rgba(37, 211, 102, 0.25);
	color: #25d366;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.12);
}

.hero-canva-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25d366;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-canva-title {
	margin: 0 auto 0.75rem auto;
	font-size: 2.5rem;
	line-height: 1.15;
	letter-spacing: -0.04em;
	color: #0f172a;
	font-weight: 900;
	max-width: 900px;
}

.hero-canva-title-highlight {
	display: inline-block;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.hero-canva-description {
	margin: 0 auto 1.25rem auto;
	max-width: 600px;
	color: var(--color-text-light);
	font-size: 1rem;
	line-height: 1.6;
}

.hero-canva-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
	transition: all 0.3s ease;
}

.hero-canva-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.hero-canva-cta svg {
	transition: transform 0.3s ease;
}

.hero-canva-cta:hover svg {
	transform: translateX(4px);
}

/* Hero Modern Benefits - Category Marquee */
.hero-modern-benefits {
	width: 100%;
	background: #ffffff;
	padding: 2.5rem 0;
	overflow: hidden;
	position: relative;
}

.hero-modern-benefits-track {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	width: max-content;
	overflow: visible;
	cursor: grab;
	will-change: transform;
	position: relative;
}

.hero-modern-benefits-track:active {
	cursor: grabbing;
}

.hero-modern-benefits-track.auto-scroll {
	animation: marquee-scroll 100s linear infinite;
}

.hero-modern-benefits-track.auto-scroll:hover {
	animation-play-state: paused;
}

.hero-modern-benefits-track.auto-scroll:active {
	animation-play-state: paused;
}

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

.hero-modern-benefits-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.hero-modern-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
	text-decoration: none;
	color: #1a1a1a;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 1rem;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	min-width: 140px;
	position: relative;
	overflow: hidden;
}

.hero-modern-category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(37, 211, 102, 0.02) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-modern-category-card:hover::before {
	opacity: 1;
}

.hero-modern-category-card:hover {
	transform: translateY(-4px);
	border-color: #25d366;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
}

.hero-modern-category-image {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f7;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.hero-modern-category-card:hover .hero-modern-category-image {
	transform: scale(1.05);
}

.hero-modern-category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.hero-modern-category-card:hover .hero-modern-category-image img {
	transform: scale(1.1);
}

.hero-modern-category-name {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.hero-modern-category-card:hover .hero-modern-category-name {
	color: #25d366;
}

/* ============================================
   HERO OPPORTUNITIES - Alım Merkezi Fırsatları
   ============================================ */

.hero-opportunities {
	width: 100%;
	background: #f5f5f7;
	padding: 4rem 0;
}

.hero-opportunities-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-opportunities-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 3rem;
	gap: 2rem;
}

.hero-opportunities-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0;
	flex: 1;
}

.hero-opportunities-shop-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #0071e3;
	font-size: 1.0625rem;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
	margin-top: 0.5rem;
	flex-shrink: 0;
}

.hero-opportunities-shop-link:hover {
	color: #0077ed;
}

.hero-opportunities-shop-link svg {
	transition: transform 0.3s ease;
}

.hero-opportunities-shop-link:hover svg {
	transform: translateX(4px);
}

.hero-opportunities-cards-wrapper {
	position: relative;
	overflow: hidden;
}

.hero-opportunities-cards-track {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 1rem;
	scroll-behavior: smooth;
}

.hero-opportunities-cards-track::-webkit-scrollbar {
	display: none;
}

.hero-opportunities-card {
	flex: 0 0 calc(25% - 1.125rem);
	min-width: calc(25% - 1.125rem);
	max-width: calc(25% - 1.125rem);
	background: #ffffff;
	border-radius: 18px;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
	scroll-snap-align: start;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-opportunities-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.hero-opportunities-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1d1d1f;
	flex-shrink: 0;
}

.hero-opportunities-icon svg {
	width: 100%;
	height: 100%;
}

.hero-opportunities-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1d1d1f;
	margin: 0;
}

.hero-opportunities-card-description {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #86868b;
	margin: 0;
	flex: 1;
}

.hero-opportunities-card-button {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #1d1d1f;
	color: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.hero-opportunities-card-button:hover {
	background: #25d366;
	transform: scale(1.1);
}

.hero-opportunities-card-button:active {
	transform: scale(0.95);
}

.hero-opportunities-card-button svg {
	width: 20px;
	height: 20px;
}

.hero-opportunities-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #e5e7eb;
	color: #1d1d1f;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-opportunities-nav:hover {
	background: #ffffff;
	border-color: #1d1d1f;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-50%) scale(1.1);
}

.hero-opportunities-nav:active {
	transform: translateY(-50%) scale(0.95);
}

.hero-opportunities-nav.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.hero-opportunities-prev {
	left: -22px;
}

.hero-opportunities-next {
	right: -22px;
}

/* ============================================
   HERO HELP CHOOSE - Bana Yardımcı Ol
   ============================================ */

.hero-help-choose {
	width: 100%;
	background: #f5f5f7;
	padding: 5rem 2rem;
}

.hero-help-choose-container {
	max-width: 1400px;
	margin: 0 auto;
}

.hero-help-choose-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
}

.hero-help-choose-text {
	flex: 0 0 40%;
	max-width: 500px;
}

.hero-help-choose-title {
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0 0 1.5rem 0;
}

.hero-help-choose-description {
	font-size: 1.25rem;
	line-height: 1.5;
	color: #86868b;
	margin: 0 0 2rem 0;
}

.hero-help-choose-button {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: #0071e3;
	color: #ffffff;
	font-size: 1.0625rem;
	font-weight: 400;
	text-decoration: none;
	border-radius: 22px;
	transition: all 0.3s ease;
}

.hero-help-choose-button:hover {
	background: #0077ed;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.hero-help-choose-visual {
	flex: 1;
	position: relative;
	height: 500px;
	max-width: 600px;
}

.hero-help-choose-device {
	position: absolute;
}

/* Monitor */
.hero-help-choose-monitor {
	top: 0;
	right: 0;
	width: 320px;
	height: 240px;
	z-index: 3;
}

.hero-help-choose-monitor-screen {
	width: 100%;
	height: 200px;
	background: #ffffff;
	border-radius: 12px 12px 0 0;
	border: 3px solid #1d1d1f;
	border-bottom: none;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-help-choose-monitor-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem;
}

.hero-help-choose-hello {
	font-size: 3rem;
	font-weight: 400;
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #ffeaa7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	letter-spacing: -0.02em;
	position: relative;
}

.hero-help-choose-cursor {
	position: absolute;
	right: 2rem;
	width: 2px;
	height: 2.5rem;
	background: #1d1d1f;
	animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

.hero-help-choose-monitor-stand {
	width: 120px;
	height: 40px;
	background: #1d1d1f;
	border-radius: 0 0 8px 8px;
	margin: 0 auto;
	position: relative;
}

.hero-help-choose-monitor-stand::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 8px;
	background: #1d1d1f;
	border-radius: 4px;
}

/* Laptop */
.hero-help-choose-laptop {
	bottom: 40px;
	left: 0;
	width: 280px;
	height: 200px;
	z-index: 2;
}

.hero-help-choose-laptop-screen {
	width: 100%;
	height: 160px;
	background: #1d1d1f;
	border-radius: 8px 8px 0 0;
	border: 2px solid #1d1d1f;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-help-choose-laptop-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	padding: 1rem;
	gap: 0.5rem;
}

.hero-help-choose-chart {
	flex: 1;
	background: linear-gradient(to top, #6c5ce7 0%, #a29bfe 100%);
	border-radius: 4px 4px 0 0;
	position: relative;
}

.hero-help-choose-chart-1 {
	height: 60%;
	background: linear-gradient(to top, #6c5ce7 0%, #a29bfe 100%);
}

.hero-help-choose-chart-2 {
	height: 80%;
	background: linear-gradient(to top, #00b894 0%, #55efc4 100%);
}

.hero-help-choose-chart-3 {
	height: 45%;
	background: linear-gradient(to top, #0984e3 0%, #74b9ff 100%);
}

.hero-help-choose-laptop-base {
	width: 100%;
	height: 6px;
	background: #1d1d1f;
	border-radius: 0 0 4px 4px;
	margin-top: -2px;
}

.hero-help-choose-laptop-base::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 4px;
	background: #1d1d1f;
	border-radius: 2px;
}

/* Desktop */
.hero-help-choose-desktop {
	bottom: 0;
	left: 40px;
	width: 180px;
	height: 140px;
	z-index: 1;
}

.hero-help-choose-desktop-body {
	width: 100%;
	height: 100%;
	background: #86868b;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-help-choose-desktop-slots {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 80%;
}

.hero-help-choose-slot {
	width: 100%;
	height: 3px;
	background: #1d1d1f;
	border-radius: 2px;
	opacity: 0.3;
}

/* Hero Opportunities Responsive */
@media (max-width: 1024px) {
	.hero-opportunities {
		padding: 3rem 0;
	}
	
	.hero-opportunities-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-opportunities-header {
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 2.5rem;
	}
	
	.hero-opportunities-title {
		font-size: 2.5rem;
	}
	
	.hero-opportunities-shop-link {
		align-self: flex-start;
	}
	
	.hero-opportunities-card {
		flex: 0 0 calc(33.333% - 1rem);
		min-width: calc(33.333% - 1rem);
		max-width: calc(33.333% - 1rem);
		padding: 2rem 1.5rem;
	}
	
	.hero-opportunities-nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero-opportunities {
		padding: 2.5rem 0;
	}
	
	.hero-opportunities-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-opportunities-title {
		font-size: 2rem;
	}
	
	.hero-opportunities-card {
		flex: 0 0 calc(50% - 0.75rem);
		min-width: calc(50% - 0.75rem);
		max-width: calc(50% - 0.75rem);
		padding: 1.75rem 1.25rem;
		gap: 1rem;
	}
	
	.hero-opportunities-icon {
		width: 56px;
		height: 56px;
	}
	
	.hero-opportunities-card-title {
		font-size: 1.25rem;
	}
	
	.hero-opportunities-card-description {
		font-size: 0.9375rem;
	}
	
	.hero-opportunities-card-button {
		width: 40px;
		height: 40px;
		bottom: 1.25rem;
		right: 1.25rem;
	}
}

@media (max-width: 480px) {
	.hero-opportunities {
		padding: 2rem 0;
	}
	
	.hero-opportunities-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-opportunities-title {
		font-size: 1.75rem;
	}
	
	.hero-opportunities-card {
		flex: 0 0 calc(85% - 0.5rem);
		min-width: calc(85% - 0.5rem);
		max-width: calc(85% - 0.5rem);
		padding: 1.5rem 1rem;
	}
	
	.hero-opportunities-icon {
		width: 48px;
		height: 48px;
	}
	
	.hero-opportunities-card-title {
		font-size: 1.125rem;
	}
	
	.hero-opportunities-card-description {
		font-size: 0.875rem;
	}
}

/* Hero Help Choose Responsive */
@media (max-width: 1024px) {
	.hero-help-choose {
		padding: 4rem 1.5rem;
	}
	
	.hero-help-choose-content {
		flex-direction: column;
		gap: 3rem;
	}
	
	.hero-help-choose-text {
		flex: 1;
		max-width: 100%;
		text-align: center;
	}
	
	.hero-help-choose-title {
		font-size: 3rem;
	}
	
	.hero-help-choose-visual {
		width: 100%;
		max-width: 100%;
		height: 400px;
	}
	
	.hero-help-choose-monitor {
		width: 280px;
		height: 210px;
		right: 10%;
	}
	
	.hero-help-choose-laptop {
		width: 240px;
		height: 170px;
		left: 5%;
	}
	
	.hero-help-choose-desktop {
		width: 150px;
		height: 120px;
		left: 0;
	}
}

@media (max-width: 768px) {
	.hero-help-choose {
		padding: 3rem 1rem;
	}
	
	.hero-help-choose-title {
		font-size: 2.5rem;
	}
	
	.hero-help-choose-description {
		font-size: 1.125rem;
	}
	
	.hero-help-choose-visual {
		height: 350px;
	}
	
	.hero-help-choose-monitor {
		width: 240px;
		height: 180px;
		right: 5%;
	}
	
	.hero-help-choose-hello {
		font-size: 2.5rem;
	}
	
	.hero-help-choose-laptop {
		width: 200px;
		height: 140px;
		left: 0;
	}
	
	.hero-help-choose-desktop {
		width: 120px;
		height: 100px;
		left: -10px;
	}
}

@media (max-width: 480px) {
	.hero-help-choose {
		padding: 2.5rem 1rem;
	}
	
	.hero-help-choose-title {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
	
	.hero-help-choose-description {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.hero-help-choose-button {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
	
	.hero-help-choose-visual {
		height: 280px;
	}
	
	.hero-help-choose-monitor {
		width: 200px;
		height: 150px;
		right: 0;
	}
	
	.hero-help-choose-hello {
		font-size: 2rem;
	}
	
	.hero-help-choose-laptop {
		width: 160px;
		height: 120px;
		left: -20px;
	}
	
	.hero-help-choose-desktop {
		width: 100px;
		height: 80px;
		left: -20px;
	}
}

/* ============================================
   HERO HELP HERE - Yardım Burada
   ============================================ */

.hero-help-here {
	width: 100%;
	background: #f5f5f7;
	padding: 5rem 0;
}

.hero-help-here-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-help-here-header {
	margin-bottom: 3rem;
}

.hero-help-here-title {
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0 0 0.5rem 0;
}

.hero-help-here-subtitle {
	font-size: 1.5rem;
	line-height: 1.4;
	color: #86868b;
	margin: 0;
}

.hero-help-here-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 1rem;
}

.hero-help-here-cards::-webkit-scrollbar {
	display: none;
}

.hero-help-here-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
	min-width: 300px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.hero-help-here-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-help-here-badge {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #86868b;
	margin-bottom: 1rem;
}

.hero-help-here-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #1d1d1f;
	margin: 0 0 0.5rem 0;
}

.hero-help-here-card-subtitle {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #1d1d1f;
	margin: 0 0 1rem 0;
}

.hero-help-here-card-description {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #86868b;
	margin: 0 0 1.5rem 0;
}

.hero-help-here-card-visual {
	margin-top: auto;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Specialist Avatar */
.hero-help-specialist-avatar {
	width: 120px;
	height: 160px;
	position: relative;
}

.hero-help-specialist-face {
	width: 80px;
	height: 80px;
	background: #fdbcb4;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
}

.hero-help-specialist-hair {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 60px;
	background: #2c2c2c;
	border-radius: 50% 50% 0 0;
}

.hero-help-specialist-eyes {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
}

.hero-help-specialist-eye {
	width: 8px;
	height: 8px;
	background: #1d1d1f;
	border-radius: 50%;
}

.hero-help-specialist-mouth {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 10px;
	border: 2px solid #1d1d1f;
	border-top: none;
	border-radius: 0 0 20px 20px;
}

.hero-help-specialist-shirt {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 80px;
	background: #25d366;
	border-radius: 8px;
}

.hero-help-specialist-logo {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 20px;
	height: 20px;
	background: #ffffff;
	border-radius: 50%;
}

/* Video Call Phone */
.hero-help-video-phone {
	width: 140px;
	height: 200px;
	position: relative;
}

.hero-help-phone-screen {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 20px;
	border: 3px solid #1d1d1f;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-help-phone-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 0.5rem;
}

.hero-help-phone-header {
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-help-phone-time {
	font-size: 0.625rem;
	font-weight: 600;
	color: #1d1d1f;
}

.hero-help-phone-shop {
	flex: 1;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	border-radius: 8px;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
}

.hero-help-phone-products {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hero-help-phone-product {
	width: 100%;
	height: 20px;
	background: #ffffff;
	border-radius: 4px;
}

.hero-help-phone-call {
	height: 60px;
	background: #1d1d1f;
	border-radius: 8px;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.hero-help-phone-call-avatar {
	width: 24px;
	height: 24px;
	background: #86868b;
	border-radius: 50%;
}

.hero-help-phone-call-controls {
	display: flex;
	gap: 0.25rem;
}

.hero-help-phone-control {
	width: 8px;
	height: 8px;
	background: #86868b;
	border-radius: 2px;
}

/* Store Session */
.hero-help-store-session {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-help-store-screen {
	width: 100%;
	height: 100px;
	background: #ffffff;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	margin-bottom: 1rem;
}

.hero-help-store-icon {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
	border-radius: 8px;
}

.hero-help-store-device {
	position: absolute;
	border-radius: 4px;
}

.hero-help-store-phone {
	width: 30px;
	height: 50px;
	background: #1d1d1f;
	bottom: 10px;
	right: 20px;
}

.hero-help-store-laptop {
	width: 50px;
	height: 35px;
	background: #86868b;
	bottom: 10px;
	right: 60px;
}

.hero-help-store-people {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	align-items: flex-end;
}

.hero-help-store-person {
	width: 30px;
	height: 40px;
	border-radius: 4px;
}

.hero-help-store-employee {
	background: #0071e3;
	height: 50px;
}

.hero-help-store-attendee {
	background: #86868b;
}

/* Consultation */
.hero-help-consultation {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-help-consultation-people {
	display: flex;
	gap: 0.5rem;
	align-items: flex-end;
}

.hero-help-consultation-person {
	width: 35px;
	height: 45px;
	border-radius: 4px;
}

.hero-help-consultation-employee {
	background: #0071e3;
	height: 50px;
}

.hero-help-consultation-customer-1 {
	background: #86868b;
	height: 40px;
}

.hero-help-consultation-customer-2 {
	background: #86868b;
	height: 35px;
}

.hero-help-consultation-device {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 40px;
	height: 50px;
	background: #1d1d1f;
	border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-help-here {
		padding: 4rem 0;
	}
	
	.hero-help-here-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-help-here-title {
		font-size: 3rem;
	}
	
	.hero-help-here-subtitle {
		font-size: 1.25rem;
	}
	
	.hero-help-here-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hero-help-here-card {
		min-width: auto;
	}
}

@media (max-width: 768px) {
	.hero-help-here {
		padding: 3rem 0;
	}
	
	.hero-help-here-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-help-here-title {
		font-size: 2.5rem;
	}
	
	.hero-help-here-subtitle {
		font-size: 1.125rem;
	}
	
	.hero-help-here-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.hero-help-here-card {
		padding: 1.5rem;
	}
	
	.hero-help-here-card-title {
		font-size: 1.25rem;
	}
	
	.hero-help-here-card-visual {
		height: 160px;
	}
}

@media (max-width: 480px) {
	.hero-help-here {
		padding: 2.5rem 0;
	}
	
	.hero-help-here-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-help-here-title {
		font-size: 2rem;
	}
	
	.hero-help-here-subtitle {
		font-size: 1rem;
	}
	
	.hero-help-here-card {
		padding: 1.25rem;
	}
	
	.hero-help-here-card-title {
		font-size: 1.125rem;
	}
	
	.hero-help-here-card-description {
		font-size: 0.9375rem;
	}
	
	.hero-help-here-card-visual {
		height: 140px;
	}
}

/* ============================================
   HERO SWITCH - Alım Merkezi'ne Geç
   ============================================ */

.hero-switch {
	width: 100%;
	background: #f5f5f7;
	padding: 5rem 0;
}

.hero-switch-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-switch-title {
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0 0 3rem 0;
}

.hero-switch-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.hero-switch-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.hero-switch-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-switch-card-title {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1d1d1f;
	margin: 0 0 1rem 0;
}

.hero-switch-card-description {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #86868b;
	margin: 0 0 1.5rem 0;
}

.hero-switch-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #0071e3;
	font-size: 1.0625rem;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
	margin-bottom: 2rem;
}

.hero-switch-card-link:hover {
	color: #0077ed;
}

.hero-switch-card-link svg {
	transition: transform 0.3s ease;
}

.hero-switch-card-link:hover svg {
	transform: translateX(4px);
}

.hero-switch-card-visual {
	margin-top: auto;
	height: 200px;
	position: relative;
}

/* Trade In Visual */
.hero-switch-visual-trade {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 2rem;
}

.hero-switch-device-old {
	width: 180px;
	height: 120px;
	background: #86868b;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-switch-device-old .hero-switch-device-screen {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	padding: 0.5rem;
}

.hero-switch-sticker {
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 4px;
}

.hero-switch-sticker-1 {
	top: 10px;
	left: 10px;
	background: #6c5ce7;
}

.hero-switch-sticker-2 {
	top: 10px;
	left: 40px;
	background: #ffffff;
	border: 2px solid #1d1d1f;
}

.hero-switch-sticker-3 {
	top: 10px;
	left: 70px;
	background: #ff6b6b;
}

.hero-switch-sticker-4 {
	top: 40px;
	left: 10px;
	background: #feca57;
}

.hero-switch-device-new {
	width: 200px;
	height: 140px;
	position: relative;
}

.hero-switch-device-new-screen {
	width: 100%;
	height: 120px;
	background: #1d1d1f;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-switch-pattern {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 50%, rgba(0, 113, 227, 0.1) 100%);
	position: relative;
}

.hero-switch-pattern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255, 255, 255, 0.05) 10px,
		rgba(255, 255, 255, 0.05) 20px
	);
}

.hero-switch-box {
	width: 220px;
	height: 20px;
	background: #ffffff;
	border-radius: 4px;
	margin: 0 auto;
	margin-top: -10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}

.hero-switch-box::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #ffffff;
}

/* Devices Collage Visual */
.hero-switch-visual-devices {
	height: 180px;
}

.hero-switch-device-collage {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-switch-device-item {
	position: absolute;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-switch-laptop-1 {
	width: 140px;
	height: 100px;
	background: #1d1d1f;
	left: 0;
	top: 20px;
	z-index: 2;
}

.hero-switch-laptop-1 .hero-switch-device-screen {
	width: 100%;
	height: 85px;
	background: #ffffff;
	border-radius: 6px;
	padding: 0.5rem;
	position: relative;
}

.hero-switch-app-message {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	border-radius: 4px;
	position: relative;
}

.hero-switch-app-message::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: 60%;
	height: 8px;
	background: #1976d2;
	border-radius: 4px;
}

.hero-switch-app-message::after {
	content: '';
	position: absolute;
	top: 25px;
	left: 10px;
	width: 40%;
	height: 6px;
	background: #64b5f6;
	border-radius: 3px;
}

.hero-switch-imac {
	width: 180px;
	height: 120px;
	background: #5ac8fa;
	left: 80px;
	top: 0;
	z-index: 3;
}

.hero-switch-imac .hero-switch-device-screen {
	width: 100%;
	height: 100px;
	background: #ffffff;
	border-radius: 6px;
	padding: 0.75rem;
	position: relative;
}

.hero-switch-app-document {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
	border-radius: 4px;
	position: relative;
}

.hero-switch-app-document::before {
	content: 'Plant Science';
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #7b1fa2;
}

.hero-switch-app-document::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 80%;
	height: 4px;
	background: #ba68c8;
	border-radius: 2px;
}

.hero-switch-desktop {
	width: 100px;
	height: 80px;
	background: #86868b;
	left: 120px;
	top: 60px;
	z-index: 1;
	border-radius: 6px;
}

.hero-switch-desktop .hero-switch-device-body {
	width: 100%;
	height: 100%;
	background: #86868b;
	border-radius: 6px;
	position: relative;
}

.hero-switch-laptop-2 {
	width: 150px;
	height: 110px;
	background: #86868b;
	right: 0;
	top: 10px;
	z-index: 2;
}

.hero-switch-laptop-2 .hero-switch-device-screen {
	width: 100%;
	height: 90px;
	background: #ffffff;
	border-radius: 6px;
	padding: 0.5rem;
	position: relative;
}

.hero-switch-app-calendar {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
	border-radius: 4px;
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	padding: 4px;
}

.hero-switch-app-calendar::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 4px;
	width: calc(100% - 8px);
	height: 8px;
	background: #ff9800;
	border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-switch {
		padding: 4rem 0;
	}
	
	.hero-switch-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-switch-title {
		font-size: 3rem;
	}
	
	.hero-switch-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-switch-card {
		padding: 2.5rem 2rem;
	}
	
	.hero-switch-card-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-switch {
		padding: 3rem 0;
	}
	
	.hero-switch-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-switch-title {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}
	
	.hero-switch-card {
		padding: 2rem 1.5rem;
	}
	
	.hero-switch-card-title {
		font-size: 1.75rem;
	}
	
	.hero-switch-card-description {
		font-size: 1rem;
	}
	
	.hero-switch-card-visual {
		height: 160px;
	}
	
	.hero-switch-device-old {
		width: 140px;
		height: 100px;
	}
	
	.hero-switch-device-new {
		width: 160px;
		height: 120px;
	}
	
	.hero-switch-visual-devices {
		height: 140px;
	}
}

@media (max-width: 480px) {
	.hero-switch {
		padding: 2.5rem 0;
	}
	
	.hero-switch-container {
		padding: 0 var(--spacing-sm);
	}
}

/* ============================================
   HERO SERVICES - Alım Merkezi Hizmetleri
   ============================================ */

.hero-services {
	width: 100%;
	background: #ffffff;
	padding: 5rem 0;
}

.hero-services-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-services-video-banner {
	margin-bottom: 4rem;
}

.hero-services-video-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	text-align: center;
	margin: 0 0 2rem 0;
}

.hero-services-video-screen {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	background: #1d1d1f;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-services-video-content {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #0071e3 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
}

.hero-services-video-people {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.hero-services-person {
	width: 120px;
	height: 160px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-services-person-head {
	width: 50px;
	height: 50px;
	background: #fdbcb4;
	border-radius: 50%;
	margin-bottom: 0.5rem;
	position: relative;
}

.hero-services-person-head::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 12px;
	width: 8px;
	height: 8px;
	background: #1d1d1f;
	border-radius: 50%;
}

.hero-services-person-head::after {
	content: '';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 8px;
	height: 8px;
	background: #1d1d1f;
	border-radius: 50%;
}

.hero-services-person-body {
	width: 80px;
	height: 100px;
	border-radius: 8px;
	position: relative;
}

.hero-services-person-1 .hero-services-person-body {
	background: #0071e3;
}

.hero-services-person-2 .hero-services-person-body {
	background: #25d366;
}

.hero-services-person-3 .hero-services-person-body {
	background: #ff6b6b;
}

.hero-services-video-logo {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.125rem;
	z-index: 2;
}

.hero-services-video-control {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	z-index: 2;
}

.hero-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.hero-services-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-services-card-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.hero-services-logo-icon {
	width: 40px;
	height: 40px;
	background: #1d1d1f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-shrink: 0;
}

.hero-services-logo-icon svg {
	width: 24px;
	height: 24px;
}

.hero-services-logo-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1d1d1f;
}

.hero-services-card-description {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #86868b;
	margin: 0;
	flex: 1;
}

.hero-services-card-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: #0071e3;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	border-radius: 22px;
	transition: all 0.3s ease;
	text-align: center;
	width: fit-content;
}

.hero-services-card-button:hover {
	background: #0077ed;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.hero-services-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #0071e3;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
	width: fit-content;
}

.hero-services-card-link:hover {
	color: #0077ed;
}

.hero-services-card-link svg {
	transition: transform 0.3s ease;
}

.hero-services-card-link:hover svg {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-services {
		padding: 4rem 0;
	}
	
	.hero-services-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-services-video-title {
		font-size: 3rem;
	}
	
	.hero-services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.hero-services-video-people {
		gap: 1.5rem;
	}
	
	.hero-services-person {
		width: 100px;
		height: 140px;
	}
}

@media (max-width: 768px) {
	.hero-services {
		padding: 3rem 0;
	}
	
	.hero-services-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-services-video-title {
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
	}
	
	.hero-services-video-content {
		padding: 2rem;
	}
	
	.hero-services-video-people {
		gap: 1rem;
	}
	
	.hero-services-person {
		width: 80px;
		height: 120px;
	}
	
	.hero-services-person-head {
		width: 40px;
		height: 40px;
	}
	
	.hero-services-person-body {
		width: 60px;
		height: 80px;
	}
	
	.hero-services-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-services-card-logo {
		margin-bottom: 0.75rem;
	}
}

@media (max-width: 480px) {
	.hero-services {
		padding: 2.5rem 0;
	}
	
	.hero-services-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-services-video-title {
		font-size: 2rem;
	}
	
	.hero-services-video-content {
		padding: 1.5rem;
	}
	
	.hero-services-video-people {
		gap: 0.75rem;
	}
	
	.hero-services-person {
		width: 70px;
		height: 100px;
	}
	
	.hero-services-person-head {
		width: 35px;
		height: 35px;
	}
	
	.hero-services-person-body {
		width: 50px;
		height: 65px;
	}
	
	.hero-services-logo-text {
		font-size: 1.25rem;
	}
	
	.hero-services-card-description {
		font-size: 1rem;
	}
}

/* ============================================
   HERO UNLOCK - Alım Merkezi Dünyasını Keşfedin
   ============================================ */

.hero-unlock {
	width: 100%;
	background: #f5f5f7;
	padding: 5rem 0;
}

.hero-unlock-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-unlock-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
	gap: 2rem;
}

.hero-unlock-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0;
	flex: 1;
}

.hero-unlock-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #0071e3;
	font-size: 1.0625rem;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
	margin-top: 0.5rem;
	flex-shrink: 0;
}

.hero-unlock-link:hover {
	color: #0077ed;
}

.hero-unlock-link svg {
	transition: transform 0.3s ease;
}

.hero-unlock-link:hover svg {
	transform: translateX(4px);
}

.hero-unlock-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.hero-unlock-text {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hero-unlock-section {
	border-top: 1px solid #d2d2d7;
	padding: 1.5rem 0;
}

.hero-unlock-section:last-child {
	border-bottom: 1px solid #d2d2d7;
}

.hero-unlock-section-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
}

.hero-unlock-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #1d1d1f;
	margin: 0;
}

.hero-unlock-chevron {
	color: #86868b;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.hero-unlock-section.expanded .hero-unlock-chevron {
	transform: rotate(180deg);
}

.hero-unlock-section-content {
	margin-top: 1rem;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.hero-unlock-section:not(.expanded) .hero-unlock-section-content {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}

.hero-unlock-section.expanded .hero-unlock-section-content {
	max-height: 500px;
	opacity: 1;
}

.hero-unlock-section-content p {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #1d1d1f;
	margin: 0;
}

.hero-unlock-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-unlock-laptop {
	width: 600px;
	height: 400px;
	position: relative;
	z-index: 2;
}

.hero-unlock-laptop-screen {
	width: 100%;
	height: 85%;
	background: #ffffff;
	border-radius: 8px 8px 0 0;
	border: 3px solid #1d1d1f;
	border-bottom: none;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-unlock-screen-content {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
	padding: 1rem;
	display: flex;
	flex-direction: column;
}

.hero-unlock-screen-header {
	height: 30px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 1rem;
}

.hero-unlock-screen-time {
	font-size: 0.75rem;
	color: #86868b;
}

.hero-unlock-screen-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-unlock-screen-title {
	font-size: 2rem;
	font-weight: 600;
	color: #1d1d1f;
}

.hero-unlock-screen-text {
	font-size: 1rem;
	line-height: 1.5;
	color: #86868b;
}

.hero-unlock-screen-features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
}

.hero-unlock-feature {
	padding: 0.5rem 1rem;
	background: #e8e8ed;
	border-radius: 6px;
	font-size: 0.875rem;
	color: #1d1d1f;
}

.hero-unlock-screen-footer {
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid #d2d2d7;
	padding-top: 0.5rem;
	margin-top: 1rem;
}

.hero-unlock-screen-footer span {
	font-size: 0.75rem;
	color: #86868b;
}

.hero-unlock-laptop-base {
	width: 120px;
	height: 8px;
	background: #1d1d1f;
	border-radius: 0 0 4px 4px;
	margin: 0 auto;
	position: relative;
}

.hero-unlock-laptop-base::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 4px;
	background: #1d1d1f;
	border-radius: 2px;
}

.hero-unlock-phone {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 200px;
	height: 350px;
	z-index: 3;
	transform: rotate(-8deg);
}

.hero-unlock-phone-screen {
	width: 100%;
	height: 100%;
	background: #1d1d1f;
	border-radius: 24px;
	border: 3px solid #1d1d1f;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-unlock-phone-header {
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #1d1d1f;
	padding: 0.5rem;
}

.hero-unlock-phone-header span {
	font-size: 0.75rem;
	color: #ffffff;
	font-weight: 600;
}

.hero-unlock-phone-content {
	flex: 1;
	background: #ffffff;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-unlock-phone-text {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #1d1d1f;
}

.hero-unlock-phone-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.hero-unlock-phone-actions button {
	padding: 0.375rem 0.75rem;
	background: #f5f5f7;
	border: 1px solid #d2d2d7;
	border-radius: 6px;
	font-size: 0.75rem;
	color: #1d1d1f;
	cursor: pointer;
}

.hero-unlock-phone-keyboard {
	background: #f5f5f7;
	padding: 0.5rem;
	border-top: 1px solid #d2d2d7;
}

.hero-unlock-keyboard-row {
	display: flex;
	justify-content: space-around;
	gap: 0.25rem;
}

.hero-unlock-keyboard-row span {
	font-size: 0.625rem;
	color: #1d1d1f;
	padding: 0.25rem 0.5rem;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid #d2d2d7;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-unlock {
		padding: 4rem 0;
	}
	
	.hero-unlock-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-unlock-header {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.hero-unlock-title {
		font-size: 3rem;
	}
	
	.hero-unlock-link {
		align-self: flex-start;
	}
	
	.hero-unlock-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.hero-unlock-visual {
		height: 400px;
		order: -1;
	}
	
	.hero-unlock-laptop {
		width: 100%;
		max-width: 500px;
		height: 350px;
	}
	
	.hero-unlock-phone {
		width: 160px;
		height: 280px;
		bottom: 20px;
	}
}

@media (max-width: 768px) {
	.hero-unlock {
		padding: 3rem 0;
	}
	
	.hero-unlock-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-unlock-title {
		font-size: 2.5rem;
	}
	
	.hero-unlock-content {
		gap: 2rem;
	}
	
	.hero-unlock-visual {
		height: 300px;
	}
	
	.hero-unlock-laptop {
		height: 250px;
	}
	
	.hero-unlock-phone {
		width: 120px;
		height: 210px;
		left: -20px;
		bottom: 10px;
	}
	
	.hero-unlock-section-title {
		font-size: 1.25rem;
	}
	
	.hero-unlock-section-content p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-unlock {
		padding: 2.5rem 0;
	}
	
	.hero-unlock-title {
		font-size: 2rem;
	}
	
	.hero-unlock-visual {
		height: 250px;
	}
	
	.hero-unlock-laptop {
		height: 200px;
	}
	
	.hero-unlock-phone {
		display: none;
	}
	
	.hero-unlock-section-title {
		font-size: 1.125rem;
	}
	
	.hero-unlock-section-content p {
		font-size: 0.9375rem;
	}
}

/* ============================================
   HERO EXPERIENCE - Alım Merkezi Deneyimi
   ============================================ */

.hero-experience {
	width: 100%;
	background: #ffffff;
	padding: 5rem 0;
}

.hero-experience-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-experience-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	text-align: center;
	margin: 0 0 4rem 0;
}

.hero-experience-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.hero-experience-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.hero-experience-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.hero-experience-badge {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #86868b;
	margin-bottom: 0.5rem;
}

.hero-experience-card-title {
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #1d1d1f;
	margin: 0;
}

.hero-experience-title-highlight {
	color: #0071e3;
}

.hero-experience-card-description {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #86868b;
	margin: 0;
}

.hero-experience-card-visual {
	margin-top: auto;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-experience-device {
	position: absolute;
	border-radius: 8px;
}

/* Evaluation Visual */
.hero-experience-visual-evaluation {
	justify-content: flex-start;
	align-items: flex-end;
}

.hero-experience-phone-eval {
	width: 100px;
	height: 180px;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.hero-experience-phone-screen {
	width: 100%;
	height: 100%;
	background: #1d1d1f;
	border-radius: 20px;
	border: 2px solid #1d1d1f;
	position: relative;
	overflow: hidden;
}

.hero-experience-phone-content {
	width: 100%;
	height: 100%;
	background: #ffffff;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
}

.hero-experience-phone-time {
	font-size: 0.625rem;
	color: #1d1d1f;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.5rem;
}

.hero-experience-phone-keyboard {
	flex: 1;
	background: #f5f5f7;
	border-radius: 4px;
}

.hero-experience-tablet-eval {
	width: 140px;
	height: 100px;
	left: 60px;
	bottom: 20px;
	z-index: 2;
}

.hero-experience-tablet-screen {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 12px;
	border: 2px solid #1d1d1f;
	position: relative;
	overflow: hidden;
}

.hero-experience-tablet-popup {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	background: #ffffff;
	border: 1px solid #d2d2d7;
	border-radius: 8px;
	padding: 0.75rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-experience-popup-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #1d1d1f;
}

.hero-experience-laptop-eval {
	width: 180px;
	height: 120px;
	left: 120px;
	bottom: 40px;
	z-index: 3;
}

.hero-experience-laptop-screen {
	width: 100%;
	height: 85%;
	background: #ffffff;
	border-radius: 8px 8px 0 0;
	border: 3px solid #1d1d1f;
	border-bottom: none;
	position: relative;
	overflow: hidden;
}

.hero-experience-laptop-content {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
	padding: 0.75rem;
}

.hero-experience-laptop-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1d1d1f;
}

/* Integration Visual */
.hero-experience-visual-integration {
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.hero-experience-watch {
	width: 50px;
	height: 50px;
	left: 0;
	z-index: 1;
}

.hero-experience-watch-body {
	width: 100%;
	height: 100%;
	background: #1d1d1f;
	border-radius: 50%;
}

.hero-experience-phone-int {
	width: 90px;
	height: 160px;
	left: 40px;
	z-index: 2;
}

.hero-experience-laptop-int {
	width: 160px;
	height: 100px;
	left: 100px;
	z-index: 3;
}

.hero-experience-tablet-int {
	width: 120px;
	height: 90px;
	left: 200px;
	z-index: 4;
	position: relative;
}

.hero-experience-tablet-content {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 8px;
	border: 2px solid #1d1d1f;
	padding: 0.5rem;
}

.hero-experience-pencil {
	position: absolute;
	top: -10px;
	right: -5px;
	width: 60px;
	height: 4px;
	background: #86868b;
	border-radius: 2px;
	transform: rotate(45deg);
}

.hero-experience-app-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #1d1d1f;
	text-align: center;
	margin-top: 0.5rem;
}

/* Security Visual */
.hero-experience-visual-security {
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hero-experience-laptop-sec {
	width: 140px;
	height: 90px;
	left: 0;
	top: 0;
	z-index: 1;
}

.hero-experience-tablet-sec {
	width: 120px;
	height: 85px;
	left: 100px;
	top: 10px;
	z-index: 2;
}

.hero-experience-logo-large {
	width: 80px;
	height: 80px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #ff3b30;
	z-index: 5;
	position: absolute;
}

.hero-experience-phone-sec {
	width: 80px;
	height: 140px;
	right: 60px;
	top: 0;
	z-index: 3;
}

.hero-experience-airpods {
	width: 60px;
	height: 40px;
	right: 0;
	top: 20px;
	z-index: 4;
}

.hero-experience-airpods-case {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 8px;
	border: 2px solid #1d1d1f;
}

.hero-experience-watch-sec {
	width: 45px;
	height: 45px;
	right: 0;
	bottom: 0;
	z-index: 4;
}

.hero-experience-screen-bg {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0071e3 0%, #25d366 100%);
	border-radius: 6px;
}

/* Personalization Visual */
.hero-experience-visual-personalization {
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero-experience-airpods-gift {
	width: 100px;
	height: 60px;
	z-index: 2;
}

.hero-experience-airpods-case-open {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 8px;
	border: 2px solid #1d1d1f;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0.5rem;
	position: relative;
}

.hero-experience-airpod {
	width: 30px;
	height: 30px;
	background: #f5f5f7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.625rem;
	font-weight: 600;
	color: #1d1d1f;
}

.hero-experience-confetti {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.hero-experience-confetti-item {
	position: absolute;
	border-radius: 50%;
}

.hero-experience-confetti-1 {
	width: 12px;
	height: 12px;
	background: #25d366;
	top: 10px;
	left: 10px;
}

.hero-experience-confetti-2 {
	width: 16px;
	height: 16px;
	background: #0071e3;
	top: 30px;
	right: 20px;
}

.hero-experience-confetti-3 {
	width: 10px;
	height: 10px;
	background: #ff9500;
	bottom: 20px;
	left: 20px;
}

.hero-experience-confetti-4 {
	width: 14px;
	height: 14px;
	background: #ff3b30;
	bottom: 10px;
	right: 10px;
}

.hero-experience-arrow {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	background: #f5f5f7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #86868b;
	z-index: 3;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-experience {
		padding: 4rem 0;
	}
	
	.hero-experience-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-experience-title {
		font-size: 3rem;
		margin-bottom: 3rem;
	}
	
	.hero-experience-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.hero-experience-card-visual {
		height: 160px;
	}
}

@media (max-width: 768px) {
	.hero-experience {
		padding: 3rem 0;
	}
	
	.hero-experience-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-experience-title {
		font-size: 2.5rem;
		margin-bottom: 2.5rem;
	}
	
	.hero-experience-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-experience-card {
		padding: 2rem 1.5rem;
	}
	
	.hero-experience-card-title {
		font-size: 1.5rem;
	}
	
	.hero-experience-card-visual {
		height: 140px;
	}
}

@media (max-width: 480px) {
	.hero-experience {
		padding: 2.5rem 0;
	}
	
	.hero-experience-title {
		font-size: 2rem;
	}
	
	.hero-experience-card {
		padding: 1.5rem 1rem;
	}
	
	.hero-experience-card-title {
		font-size: 1.25rem;
	}
	
	.hero-experience-card-description {
		font-size: 1rem;
	}
	
	.hero-experience-card-visual {
		height: 120px;
	}
}

/* ============================================
   HERO ALL MODELS - Tüm Modeller
   ============================================ */

.hero-all-models {
	width: 100%;
	background: #f5f5f7;
	padding: 3rem 0 5rem;
}

.hero-all-models-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.hero-all-models-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #d2d2d7;
}

.hero-all-models-nav-item {
	font-size: 1rem;
	font-weight: 400;
	color: #86868b;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
}

.hero-all-models-nav-item:hover {
	color: #1d1d1f;
}

.hero-all-models-nav-item.active {
	color: #1d1d1f;
	font-weight: 600;
}

.hero-all-models-nav-item.active::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 0;
	right: 0;
	height: 2px;
	background: #1d1d1f;
}

.hero-all-models-header {
	margin-bottom: 3rem;
}

.hero-all-models-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0;
}

.hero-all-models-title-bold {
	font-weight: 600;
}

.hero-all-models-title-light {
	font-weight: 400;
	color: #86868b;
}

.hero-all-models-scroll-wrapper {
	position: relative;
}

.hero-all-models-cards {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 1rem;
	scroll-behavior: smooth;
}

.hero-all-models-cards::-webkit-scrollbar {
	display: none;
}

.hero-all-models-card {
	flex: 0 0 380px;
	min-width: 380px;
	background: #ffffff;
	border-radius: 18px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	scroll-snap-align: start;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.hero-all-models-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-all-models-card-title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1d1d1f;
	margin: 0;
}

.hero-all-models-card-image {
	position: relative;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f7;
	border-radius: 12px;
	overflow: hidden;
}

.hero-all-models-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: #ff3b30;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.375rem 0.75rem;
	border-radius: 6px;
	z-index: 10;
}

.hero-all-models-device {
	position: relative;
}

/* Laptop */
.hero-all-models-laptop {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: -20px;
}

.hero-all-models-laptop-screen {
	width: 200px;
	height: 140px;
	background: #ffffff;
	border-radius: 8px 8px 0 0;
	border: 3px solid #1d1d1f;
	border-bottom: none;
	position: relative;
	overflow: hidden;
}

.hero-all-models-screen-1 {
	background: linear-gradient(135deg, #0071e3 0%, #ffffff 100%);
	z-index: 2;
	transform: rotate(-5deg);
}

.hero-all-models-screen-2 {
	background: linear-gradient(135deg, #feca57 0%, #1d1d1f 100%);
	z-index: 1;
	transform: rotate(5deg) translateX(-20px);
}

/* Computer */
.hero-all-models-computer {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: -20px;
}

.hero-all-models-computer-screen {
	width: 180px;
	height: 120px;
	background: #1d1d1f;
	border-radius: 8px;
	border: 2px solid #1d1d1f;
	position: relative;
	overflow: hidden;
}

.hero-all-models-computer-screen::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255, 255, 255, 0.05) 10px,
		rgba(255, 255, 255, 0.05) 20px
	);
}

/* Tablet */
.hero-all-models-tablet {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-all-models-tablet-screen {
	width: 240px;
	height: 180px;
	background: #0071e3;
	border-radius: 12px;
	border: 3px solid #1d1d1f;
	position: relative;
	overflow: hidden;
}

.hero-all-models-tablet-screen::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 20px,
		rgba(255, 255, 255, 0.1) 20px,
		rgba(255, 255, 255, 0.1) 40px
	);
}

.hero-all-models-tablet-button {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	background: #1d1d1f;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	z-index: 2;
}

.hero-all-models-mouse {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 30px;
	background: #ffffff;
	border-radius: 15px;
	border: 2px solid #1d1d1f;
}

/* Phone */
.hero-all-models-phone {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-all-models-phone-body {
	width: 120px;
	height: 200px;
	background: #86868b;
	border-radius: 24px;
	border: 3px solid #1d1d1f;
}

/* Monitor */
.hero-all-models-monitor {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-all-models-monitor-body {
	width: 280px;
	height: 180px;
	background: #86868b;
	border-radius: 8px;
	border: 3px solid #1d1d1f;
	position: relative;
}

.hero-all-models-monitor-body::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 8px;
	background: #1d1d1f;
	border-radius: 4px;
}

/* TV */
.hero-all-models-tv {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-all-models-tv-body {
	width: 300px;
	height: 200px;
	background: #1d1d1f;
	border-radius: 8px;
	border: 3px solid #1d1d1f;
	position: relative;
}

.hero-all-models-tv-body::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 10px solid #1d1d1f;
}

.hero-all-models-colors {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.hero-all-models-color {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #d2d2d7;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.hero-all-models-color:hover {
	transform: scale(1.2);
}

.hero-all-models-price {
	font-size: 1rem;
	line-height: 1.5;
	color: #1d1d1f;
	margin: 0;
}

.hero-all-models-buy-button {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: #0071e3;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	border-radius: 22px;
	transition: all 0.3s ease;
	text-align: center;
	width: fit-content;
	align-self: flex-end;
	margin-top: auto;
}

.hero-all-models-buy-button:hover {
	background: #0077ed;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.hero-all-models-scroll-arrow {
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #d2d2d7;
	color: #1d1d1f;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.hero-all-models-scroll-arrow:hover {
	background: #ffffff;
	border-color: #1d1d1f;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-50%) scale(1.1);
}

.hero-all-models-scroll-arrow:active {
	transform: translateY(-50%) scale(0.95);
}

.hero-all-models-scroll-arrow svg {
	width: 24px;
	height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-all-models {
		padding: 2.5rem 0 4rem;
	}
	
	.hero-all-models-container {
		padding: 0 var(--spacing-md);
	}
	
	.hero-all-models-nav {
		gap: 1.5rem;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	
	.hero-all-models-nav::-webkit-scrollbar {
		display: none;
	}
	
	.hero-all-models-title {
		font-size: 3rem;
	}
	
	.hero-all-models-card {
		flex: 0 0 340px;
		min-width: 340px;
	}
	
	.hero-all-models-scroll-arrow {
		right: -40px;
		width: 48px;
		height: 48px;
	}
}

@media (max-width: 768px) {
	.hero-all-models {
		padding: 2rem 0 3rem;
	}
	
	.hero-all-models-container {
		padding: 0 var(--spacing-sm);
	}
	
	.hero-all-models-nav {
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.hero-all-models-nav-item {
		font-size: 0.9375rem;
	}
	
	.hero-all-models-title {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}
	
	.hero-all-models-card {
		flex: 0 0 300px;
		min-width: 300px;
		padding: 1.5rem;
	}
	
	.hero-all-models-card-image {
		height: 240px;
	}
	
	.hero-all-models-card-title {
		font-size: 1.75rem;
	}
	
	.hero-all-models-scroll-arrow {
		right: -30px;
		width: 40px;
		height: 40px;
	}
	
	.hero-all-models-scroll-arrow svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	.hero-all-models {
		padding: 1.5rem 0 2.5rem;
	}
	
	.hero-all-models-title {
		font-size: 2rem;
	}
	
	.hero-all-models-card {
		flex: 0 0 280px;
		min-width: 280px;
		padding: 1.25rem;
	}
	
	.hero-all-models-card-image {
		height: 200px;
	}
	
	.hero-all-models-card-title {
		font-size: 1.5rem;
	}
	
	.hero-all-models-price {
		font-size: 0.9375rem;
	}
	
	.hero-all-models-buy-button {
		padding: 0.625rem 1.5rem;
		font-size: 0.9375rem;
	}
	
	.hero-all-models-scroll-arrow {
		right: -20px;
		width: 36px;
		height: 36px;
	}
	
	.hero-all-models-scroll-arrow svg {
		width: 18px;
		height: 18px;
	}
}
	
	.hero-switch-title {
		font-size: 2rem;
	}
	
	.hero-switch-card {
		padding: 1.5rem 1rem;
	}
	
	.hero-switch-card-title {
		font-size: 1.5rem;
	}
	
	.hero-switch-card-description {
		font-size: 0.9375rem;
	}
	
	.hero-switch-card-visual {
		height: 120px;
	}
	
	.hero-switch-visual-trade {
		gap: 1rem;
	}
	
	.hero-switch-device-old {
		width: 100px;
		height: 80px;
	}
	
	.hero-switch-device-new {
		width: 120px;
		height: 100px;
	}
	
	.hero-switch-visual-devices {
		height: 100px;
	}
	
	.hero-switch-laptop-1,
	.hero-switch-laptop-2 {
		width: 100px;
		height: 70px;
	}
	
	.hero-switch-imac {
		width: 120px;
		height: 90px;
		left: 50px;
	}
	
	.hero-switch-desktop {
		width: 70px;
		height: 60px;
		left: 80px;
		top: 40px;
	}
}

/* Hero Modern Benefits Responsive */
@media (max-width: 1024px) {
	.hero-modern-benefits {
		padding: 2rem 0;
	}
	
	.hero-modern-benefits-track {
		gap: 1.25rem;
	}
	
	.hero-modern-category-card {
		min-width: 130px;
		padding: 0.875rem;
	}
	
	.hero-modern-category-image {
		width: 70px;
		height: 70px;
	}
	
	.hero-modern-category-name {
		font-size: 0.875rem;
	}
}

@media (max-width: 768px) {
	.hero-modern-benefits {
		padding: 1.5rem 0;
	}
	
	.hero-modern-benefits-track {
		gap: 1rem;
	}
	
	.hero-modern-category-card {
		min-width: 120px;
		padding: 0.75rem;
		gap: 0.625rem;
	}
	
	.hero-modern-category-image {
		width: 60px;
		height: 60px;
		border-radius: 10px;
	}
	
	.hero-modern-category-name {
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.hero-modern-benefits {
		padding: 1.25rem 0;
	}
	
	.hero-modern-benefits-track {
		gap: 0.875rem;
	}
	
	.hero-modern-category-card {
		min-width: 110px;
		padding: 0.625rem;
		gap: 0.5rem;
	}
	
	.hero-modern-category-image {
		width: 56px;
		height: 56px;
		border-radius: 8px;
	}
	
	.hero-modern-category-name {
		font-size: 0.75rem;
	}
}

/* Hero Apple Panels Section */
.hero-apple-panels {
	width: 100%;
	background: #ffffff;
	overflow: hidden;
}

.hero-apple-panels-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	gap: 0;
}

.hero-apple-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	overflow: hidden;
	min-height: 600px;
}

.hero-apple-panel-content {
	padding: 3rem 2rem 2rem;
	z-index: 2;
	position: relative;
}

.hero-apple-panel-badge {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #86868b;
	margin-bottom: 1rem;
}

.hero-apple-panel-title {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #1d1d1f;
	margin: 0 0 1rem 0;
}

.hero-apple-panel-subtitle {
	font-weight: 400;
}

.hero-apple-panel-description {
	font-size: 1.1875rem;
	line-height: 1.4;
	color: #86868b;
	margin: 0;
}

.hero-apple-panel-image {
	flex: 1;
	position: relative;
	overflow: hidden;
	background: #f5f5f7;
}

.hero-apple-panel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-apple-phone-mockup {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: #f5f5f7;
}

.hero-apple-phone-screen {
	width: 280px;
	height: 560px;
	background: #000000;
	border-radius: 40px;
	padding: 20px 10px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-apple-phone-header {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
}

.hero-apple-phone-video-call {
	width: 60px;
	height: 60px;
	border-radius: 30px;
	overflow: hidden;
	border: 2px solid #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-apple-video-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-apple-phone-content {
	padding: 80px 20px 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #ffffff;
}

.hero-apple-phone-option {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
}

.hero-apple-phone-products {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: auto;
}

.hero-apple-phone-product {
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 0.8125rem;
	backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-apple-panels-container {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hero-apple-panel {
		min-height: 500px;
	}
	
	.hero-apple-panel-title {
		font-size: 2rem;
	}
	
	.hero-apple-panel-description {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.hero-apple-panels-container {
		grid-template-columns: 1fr;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		display: flex;
		flex-direction: row;
	}
	
	.hero-apple-panel {
		flex: 0 0 100%;
		min-height: 600px;
		scroll-snap-align: start;
	}
	
	.hero-apple-panel-content {
		padding: 2rem 1.5rem 1.5rem;
	}
	
	.hero-apple-panel-title {
		font-size: 1.75rem;
	}
	
	.hero-apple-panel-description {
		font-size: 0.9375rem;
	}
	
	.hero-apple-phone-screen {
		width: 240px;
		height: 480px;
	}
}

@media (max-width: 480px) {
	.hero-apple-panel {
		min-height: 550px;
	}
	
	.hero-apple-panel-content {
		padding: 1.5rem 1rem;
	}
	
	.hero-apple-panel-title {
		font-size: 1.5rem;
	}
	
	.hero-apple-phone-screen {
		width: 200px;
		height: 400px;
	}
}

/* ============================================
   HERO FEATURES - Full Width Autoplay
   Modern, Clean, Theme-integrated
   ============================================ */

.hero-features-section {
	width: 100%;
	padding: var(--spacing-sm) 0;
	background: var(--color-bg-light);
	overflow: hidden;
}

.hero-features-container {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.hero-features-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: var(--spacing-sm);
	padding: var(--spacing-xs) var(--spacing-md);
	width: 100%;
}

.hero-features-track::-webkit-scrollbar {
	display: none;
}

.hero-features-item {
	flex: 0 0 300px;
	min-width: 300px;
	max-width: 300px;
	scroll-snap-align: start;
}

.hero-features-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
}

.hero-features-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: var(--color-accent);
}

.hero-features-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-accent) 0%, #0056b3 100%);
	border-radius: 50%;
	color: #ffffff;
	margin-bottom: var(--spacing-sm);
	transition: var(--transition);
}

.hero-features-card:hover .hero-features-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
}

.hero-features-icon svg {
	width: 32px;
	height: 32px;
}

.hero-features-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 var(--spacing-xs) 0;
	line-height: 1.3;
}

.hero-features-description {
	font-size: 0.9375rem;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-features-section {
		padding: var(--spacing-xs) 0;
	}
	
	.hero-features-track {
		gap: var(--spacing-xs);
		padding: var(--spacing-xs) var(--spacing-sm);
	}
	
	.hero-features-item {
		flex: 0 0 260px;
		min-width: 260px;
		max-width: 260px;
	}
	
	.hero-features-card {
		padding: var(--spacing-sm);
	}
	
	.hero-features-icon {
		width: 56px;
		height: 56px;
		margin-bottom: var(--spacing-xs);
	}
	
	.hero-features-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.hero-features-title {
		font-size: 1rem;
	}
	
	.hero-features-description {
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.hero-features-item {
		flex: 0 0 240px;
		min-width: 240px;
		max-width: 240px;
	}
	
	.hero-features-icon {
		width: 48px;
		height: 48px;
	}
	
	.hero-features-icon svg {
		width: 24px;
		height: 24px;
	}
}

.hero-canva-block {
	position: relative;
	padding: 1.25rem;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	flex: 0 0 280px;
	min-width: 280px;
	max-width: 280px;
	scroll-snap-align: start;
}

.hero-canva-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-canva-block-primary {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(32, 186, 90, 0.05) 100%);
	border-color: rgba(37, 211, 102, 0.2);
}

.hero-canva-block-secondary {
	background: linear-gradient(135deg, rgba(44, 62, 80, 0.08) 0%, rgba(44, 62, 80, 0.05) 100%);
	border-color: rgba(44, 62, 80, 0.2);
}

.hero-canva-block-accent {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
	border-color: rgba(255, 107, 53, 0.2);
}

.hero-canva-block-success {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(32, 186, 90, 0.08) 100%);
	border-color: rgba(37, 211, 102, 0.25);
}

.hero-canva-block-decoration {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-canva-block:hover .hero-canva-block-decoration {
	opacity: 1;
}

.hero-canva-block-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.hero-canva-block-primary .hero-canva-block-icon {
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	color: #ffffff;
}

.hero-canva-block-secondary .hero-canva-block-icon {
	background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
	color: #ffffff;
}

.hero-canva-block-accent .hero-canva-block-icon {
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	color: #ffffff;
}

.hero-canva-block-success .hero-canva-block-icon {
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
	color: #ffffff;
}

.hero-canva-block:hover .hero-canva-block-icon {
	transform: scale(1.1) rotate(5deg);
}

.hero-canva-block-icon svg {
	width: 24px;
	height: 24px;
}

.hero-canva-block-content {
	position: relative;
	z-index: 2;
}

.hero-canva-block-number {
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1;
	color: #25d366;
	margin-bottom: 0.25rem;
}

.hero-canva-block-badge {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	border-radius: 6px;
	background: rgba(37, 211, 102, 0.15);
	color: #25d366;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.hero-canva-block-secondary .hero-canva-block-badge {
	background: rgba(44, 62, 80, 0.15);
	color: #2c3e50;
}

.hero-canva-block-accent .hero-canva-block-badge {
	background: rgba(255, 107, 53, 0.15);
	color: #ff6b35;
}

.hero-canva-block-label {
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.25rem;
	line-height: 1.2;
}

.hero-canva-block-desc {
	font-size: 0.8rem;
	color: var(--color-text-light);
	font-weight: 500;
	line-height: 1.4;
}

/* Stats Bar */
.hero-canva-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 2rem;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	margin: 0 var(--spacing-md);
}

.hero-canva-stat {
	text-align: center;
}

.hero-canva-stat-value {
	font-size: 2rem;
	font-weight: 900;
	color: #25d366;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.hero-canva-stat-label {
	font-size: 0.9rem;
	color: var(--color-text-light);
	font-weight: 600;
}

.hero-canva-stat-divider {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

/* Hero Features Responsive */
@media (max-width: 1024px) {
.hero-canva-features-section {
	width: 100%;
	padding: var(--spacing-lg) 0;
	background: var(--color-bg-light);
	margin-top: var(--spacing-lg);
	overflow: hidden;
}

.hero-canva-features {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: var(--spacing-sm);
	padding: var(--spacing-sm) var(--spacing-md);
	width: 100%;
}

.hero-canva-features::-webkit-scrollbar {
	display: none;
}
	
	.hero-canva-block {
		flex: 0 0 calc(33.333% - 0.5rem);
		min-width: calc(33.333% - 0.5rem);
		max-width: calc(33.333% - 0.5rem);
	}
}

@media (max-width: 768px) {
	.hero-canva {
		padding: 1.5rem 0;
	}
	
	.hero-canva-title {
		font-size: 1.75rem;
	}
	
	.hero-canva-description {
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}
	
	.hero-canva-cta {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.hero-canva-features {
		display: flex;
		flex-direction: row;
		grid-template-columns: none;
		gap: 0.625rem;
		margin-bottom: 1rem;
		padding: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.5rem;
	}
	
	.hero-canva-block {
		flex: 0 0 260px;
		min-width: 260px;
		scroll-snap-align: start;
		padding: 1rem;
	}
	
	.hero-canva-block-number {
		font-size: 2rem;
	}
	
	.hero-canva-block-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 0.5rem;
	}
	
	.hero-canva-block-icon svg {
		width: 20px;
		height: 20px;
	}
	
	.hero-canva-stats {
		flex-direction: column;
		gap: 1.5rem;
		padding: 1.5rem;
	}
	
	.hero-canva-stat-divider {
		width: 100%;
		height: 1px;
		background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
	}
}

@media (max-width: 480px) {
	.hero-canva {
		padding: 1.25rem 0;
	}
	
	.hero-canva-badge {
		margin-bottom: 0.5rem;
		padding: 0.35rem 0.75rem;
		font-size: 0.7rem;
	}
	
	.hero-canva-title {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	
	.hero-canva-description {
		font-size: 0.875rem;
		margin-bottom: 0.875rem;
	}
	
	.hero-canva-cta {
		width: 100%;
		justify-content: center;
		padding: 0.75rem 1.25rem;
		font-size: 0.875rem;
	}
	
	.hero-canva-features {
		display: flex;
		flex-direction: row;
		grid-template-columns: none;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.5rem;
		margin-bottom: 0.875rem;
		gap: 0.5rem;
	}
	
	.hero-canva-block {
		flex: 0 0 220px;
		min-width: 220px;
		max-width: 220px;
		scroll-snap-align: start;
		padding: 0.875rem;
	}
	
	.hero-canva-block-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 0.5rem;
	}
	
	.hero-canva-block-icon svg {
		width: 18px;
		height: 18px;
	}
	
	.hero-canva-block-number {
		font-size: 1.75rem;
	}
	
	.hero-canva-block-label {
		font-size: 0.9rem;
	}
	
	.hero-canva-block-desc {
		font-size: 0.75rem;
	}
}

/* ============================================
   HERO BEAUTIFUL SLIDER
   ============================================ */

.hero-beautiful-slider {
	position: relative;
	width: 100%;
	min-height: 500px;
	overflow: hidden;
	background: #0a0e1a;
}

.hero-slider-beautiful {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slider-beautiful-track {
	position: relative;
	width: 100%;
	height: 500px;
}

.hero-slide-beautiful {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.95);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide-beautiful.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	z-index: 2;
}

.hero-slide-beautiful-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.1);
	transition: transform 10s ease-out;
}

.hero-slide-beautiful.active .hero-slide-beautiful-bg {
	transform: scale(1);
}

.hero-slide-beautiful-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(1px);
}

.hero-slide-beautiful-content {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	color: #ffffff;
	max-width: 800px;
	margin: 0 auto;
}

.hero-slide-beautiful-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	animation: slideInDown 0.6s ease-out;
}

.hero-slide-beautiful-title {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 1rem 0;
	color: #ffffff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-slide-beautiful-desc {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 2rem 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-slide-beautiful-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2.5rem;
	background: #25d366;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-slide-beautiful-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	filter: brightness(1.1);
}

.hero-slide-beautiful-cta svg {
	transition: transform 0.3s ease;
}

.hero-slide-beautiful-cta:hover svg {
	transform: translateX(4px);
}

.hero-beautiful-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0;
}

.hero-beautiful-nav:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-50%) scale(1.1);
}

.hero-beautiful-prev {
	left: 2rem;
}

.hero-beautiful-next {
	right: 2rem;
}

.hero-beautiful-dots {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.hero-beautiful-dot {
	width: 10px;
	height: 10px;
	border: none;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 0;
	padding: 0;
	position: relative;
}

.hero-beautiful-dot:hover {
	background: rgba(255, 255, 255, 0.6);
	transform: scale(1.2);
}

.hero-beautiful-dot.active {
	background: #ffffff;
	width: 30px;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Responsive */
@media (max-width: 1024px) {
	.hero-beautiful-slider {
		min-height: 450px;
	}
	
	.hero-slider-beautiful-track {
		height: 450px;
	}
	
	.hero-slide-beautiful-title {
		font-size: 2.5rem;
	}
	
	.hero-slide-beautiful-desc {
		font-size: 1rem;
	}
	
	.hero-beautiful-nav {
		width: 44px;
		height: 44px;
	}
	
	.hero-beautiful-prev {
		left: 1rem;
	}
	
	.hero-beautiful-next {
		right: 1rem;
	}
}

@media (max-width: 768px) {
	.hero-beautiful-slider {
		min-height: 400px;
	}
	
	.hero-slider-beautiful-track {
		height: 400px;
	}
	
	.hero-slide-beautiful-content {
		padding: 1.5rem;
	}
	
	.hero-slide-beautiful-title {
		font-size: 2rem;
	}
	
	.hero-slide-beautiful-desc {
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}
	
	.hero-slide-beautiful-cta {
		padding: 0.875rem 2rem;
		font-size: 0.9375rem;
	}
	
	.hero-beautiful-nav {
		width: 40px;
		height: 40px;
		display: none;
	}
	
	.hero-beautiful-dots {
		bottom: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-beautiful-slider {
		min-height: 350px;
	}
	
	.hero-slider-beautiful-track {
		height: 350px;
	}
	
	.hero-slide-beautiful-title {
		font-size: 1.75rem;
	}
	
	.hero-slide-beautiful-desc {
		font-size: 0.875rem;
	}
	
	.hero-slide-beautiful-cta {
		padding: 0.75rem 1.75rem;
		font-size: 0.875rem;
	}
}

.hero-minimal-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.hero-minimal-track {
	position: relative;
	width: 100%;
	min-height: 200px;
	overflow: hidden;
}

.hero-minimal-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px);
	transition: all 0.4s ease;
}

.hero-minimal-slide.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	z-index: 2;
}

.hero-minimal-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	text-align: center;
	padding: 1.5rem 0;
}

.hero-minimal-title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	color: #1a1a1a;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.hero-minimal-subtitle {
	font-size: 0.875rem;
	font-weight: 500;
	color: #666666;
	letter-spacing: 0.02em;
}

.hero-minimal-cta {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: #25d366;
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
}

.hero-minimal-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.05);
}

.hero-slide-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	border: 1.5px solid;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	animation: slideInDown 0.6s ease-out;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	animation: pulse-dot 2s ease-in-out infinite;
	box-shadow: 0 0 12px currentColor;
}

.hero-slide-title {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-title-main {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #ffffff;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
	display: block;
}

.hero-title-sub {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
	display: block;
}

.hero-slide-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0;
	animation: slideInUp 0.8s ease-out 0.4s both;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-slide-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	width: 100%;
	max-width: 500px;
	animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-cta-primary,
.hero-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 1rem 2rem;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid;
	color: #ffffff;
	flex: 1;
	min-width: 160px;
	position: relative;
	overflow: hidden;
}

.hero-cta-primary {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.hero-cta-primary:hover::before {
	left: 100%;
}

.hero-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	filter: brightness(1.1);
}

.hero-cta-secondary {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.hero-cta-primary svg,
.hero-cta-secondary svg {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.hero-cta-primary:hover svg,
.hero-cta-secondary:hover svg {
	transform: translateX(4px);
}

/* Decorative Elements */
.hero-slide-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.3;
}

.hero-decoration-circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: float 6s ease-in-out infinite;
}

.hero-decoration-1 {
	width: 200px;
	height: 200px;
	top: 10%;
	right: 10%;
	animation-delay: 0s;
}

.hero-decoration-2 {
	width: 150px;
	height: 150px;
	bottom: 15%;
	left: 5%;
	animation-delay: 2s;
}

.hero-decoration-line {
	position: absolute;
	width: 2px;
	height: 100px;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
	top: 50%;
	right: 20%;
	transform: translateY(-50%);
	animation: pulse-line 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse-line {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.6; }
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Navigation */
.hero-minimal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	color: #1a1a1a;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border-radius: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-minimal-nav:hover {
	background: #f5f5f5;
	border-color: #d0d0d0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hero-minimal-nav:active {
	transform: translateY(-50%) scale(0.95);
}

.hero-minimal-prev {
	left: 0.5rem;
}

.hero-minimal-next {
	right: 0.5rem;
}

.hero-minimal-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.hero-minimal-dot {
	width: 8px;
	height: 8px;
	border: none;
	background: #d0d0d0;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 0;
	padding: 0;
	position: relative;
}

.hero-minimal-dot:hover {
	background: #a0a0a0;
	transform: scale(1.2);
}

.hero-minimal-dot.active {
	background: #25d366;
	width: 24px;
}

.hero-minimal-dot.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: currentColor;
	animation: dot-progress 6s linear forwards;
}

@keyframes dot-progress {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/* Bottom Navigation Pills */
.hero-slider-nav {
	position: relative;
	width: 100%;
	background: rgba(10, 14, 26, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 1rem;
	z-index: 10;
}

.hero-nav-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
	padding-bottom: 0.5rem;
}

.hero-nav-container::-webkit-scrollbar {
	height: 4px;
}

.hero-nav-container::-webkit-scrollbar-track {
	background: transparent;
}

.hero-nav-container::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
}

.hero-nav-pill {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1.25rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0;
	flex: 0 0 auto;
	scroll-snap-align: start;
	min-width: 120px;
	text-align: left;
}

.hero-nav-pill:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	transform: translateY(-2px);
}

.hero-nav-pill.active {
	background: rgba(255, 255, 255, 0.12);
	border-color: currentColor;
	color: currentColor;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-nav-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.hero-nav-pill.active .hero-nav-icon {
	opacity: 1;
}

.hero-nav-text {
	position: relative;
	z-index: 2;
	white-space: nowrap;
}

.hero-nav-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.hero-nav-progress-bar {
	height: 100%;
	width: 0%;
	background: currentColor;
	transition: width 0.1s linear;
	box-shadow: 0 0 8px currentColor;
}

.hero-nav-pill.active .hero-nav-progress-bar {
	animation: progress-fill 6s linear forwards;
}

@keyframes progress-fill {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/* Responsive */
@media (min-width: 768px) {
	.hero-minimal-slider {
		min-height: 240px;
	}
	
	.hero-minimal-container {
		padding: 2.5rem 2rem;
	}
	
	.hero-minimal-track {
		min-height: 220px;
	}
	
	.hero-minimal-title {
		font-size: 2.25rem;
	}
	
	.hero-minimal-subtitle {
		font-size: 1rem;
	}
	
	.hero-minimal-cta {
		padding: 0.875rem 2.5rem;
		font-size: 1rem;
	}
	
	.hero-minimal-nav {
		width: 44px;
		height: 44px;
	}
	
	.hero-minimal-prev {
		left: 1rem;
	}
	
	.hero-minimal-next {
		right: 1rem;
	}
}

@media (min-width: 1024px) {
	.hero-minimal-slider {
		min-height: 260px;
	}
	
	.hero-minimal-container {
		padding: 3rem 2rem;
	}
	
	.hero-minimal-track {
		min-height: 240px;
	}
	
	.hero-minimal-title {
		font-size: 2.5rem;
	}
	
	.hero-minimal-subtitle {
		font-size: 1.125rem;
	}
	
	.hero-minimal-content {
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.hero-minimal-slider {
		min-height: 240px;
	}
	
	.hero-minimal-container {
		padding: 1.5rem 1rem;
	}
	
	.hero-minimal-track {
		min-height: 200px;
	}
	
	.hero-minimal-content {
		padding: 1.25rem 0;
		gap: 1rem;
	}
	
	.hero-minimal-title {
		font-size: 1.5rem;
	}
	
	.hero-minimal-subtitle {
		font-size: 0.8125rem;
	}
	
	.hero-minimal-cta {
		padding: 0.625rem 1.75rem;
		font-size: 0.875rem;
		width: 100%;
		max-width: 280px;
	}
	
	.hero-minimal-nav {
		width: 36px;
		height: 36px;
		display: none;
	}
	
	.hero-minimal-dots {
		margin-top: 1.25rem;
		gap: 0.375rem;
	}
}

@media (max-width: 480px) {
	.hero-minimal-slider {
		min-height: 220px;
	}
	
	.hero-minimal-container {
		padding: 1.25rem 0.75rem;
	}
	
	.hero-minimal-track {
		min-height: 180px;
	}
	
	.hero-minimal-title {
		font-size: 1.375rem;
	}
	
	.hero-minimal-subtitle {
		font-size: 0.75rem;
	}
	
	.hero-minimal-cta {
		padding: 0.625rem 1.5rem;
		font-size: 0.8125rem;
	}
}

/* Home Blog Section */
.home-blog-section {
	padding: 4rem 0;
	background: #f8fafc;
	border-top: 1px solid #e5e7eb;
}

.home-blog-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.home-blog-title {
	margin: 0;
	font-size: 1.75rem;
	color: #1f2937;
}

.home-blog-all-link {
	text-decoration: none;
	font-weight: 600;
	color: #2c3e50;
	white-space: nowrap;
}

.home-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.home-blog-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.home-blog-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	background: #e2e8f0;
	overflow: hidden;
}

.home-blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-blog-thumb-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
	color: #475569;
}

.home-blog-content {
	padding: 1rem;
}

.home-blog-meta {
	font-size: 0.8rem;
	color: #64748b;
	margin-bottom: 0.5rem;
}

.home-blog-card-title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	line-height: 1.35;
}

.home-blog-card-title a {
	color: #111827;
	text-decoration: none;
}

.home-blog-card-title a:hover {
	color: #2c3e50;
}

.home-blog-excerpt {
	margin: 0;
	color: #4b5563;
	font-size: 0.92rem;
	line-height: 1.55;
}

.home-blog-empty {
	margin: 0;
	color: #64748b;
}

@media (max-width: 992px) {
	.home-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.home-blog-section {
		padding: 3rem 0;
	}

	.home-blog-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-blog-title {
		font-size: 1.4rem;
	}

	.home-blog-grid {
		grid-template-columns: 1fr;
	}
}
