/**
 * Homepage Sections CSS - Dark Theme with Lime Green Accents
 * Matches the ehsankhanseo.expert design
 *
 * @package kadence
 */

:root {
	--home-accent: #a3e635;
	--home-accent-hover: #84cc16;
	--home-dark: #0a0a0a;
	--home-dark-alt: #0f0f0f;
	--home-card: #141414;
	--home-border: #1f1f1f;
	--home-text: #ffffff;
	--home-text-muted: #9ca3af;
	--home-text-secondary: #6b7280;
}

/* ===== BASE CONTAINER ===== */
.home-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}

/* Full-width sections with contained content */
.home-hero-section,
.home-services-section,
.home-who-section,
.home-koray-section,
.home-why-section,
.home-results-section,
.home-testimonials-section,
.home-products-section,
.home-cta-section,
.home-blog-section {
	width: 100%;
	max-width: 100%;
}

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

.home-section-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--home-accent);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
	display: block;
}

.home-section-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--home-text);
	margin-bottom: 16px;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.home-section-subtitle {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--home-text-muted);
	margin-bottom: 50px;
	max-width: 800px;
	line-height: 1.7;
}

/* ===== HERO SECTION ===== */
.home-hero-section {
	padding: 100px 0 80px;
	background: var(--home-dark);
	position: relative;
	overflow: hidden;
}

.home-hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top right, rgba(163, 230, 53, 0.08) 0%, transparent 50%),
	            radial-gradient(ellipse at bottom left, rgba(163, 230, 53, 0.05) 0%, transparent 40%);
	pointer-events: none;
}

.home-hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.home-hero-badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(163, 230, 53, 0.1);
	color: var(--home-accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
	border-left: 3px solid var(--home-accent);
}

.home-hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--home-text);
	line-height: 1.1;
	margin-bottom: 24px;
}

.home-hero-desc {
	font-size: 1.1rem;
	color: var(--home-text-muted);
	line-height: 1.7;
	margin-bottom: 16px;
}

.home-hero-desc-secondary {
	font-size: 0.95rem;
	color: var(--home-text-secondary);
	line-height: 1.6;
	margin-bottom: 32px;
}

.home-hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.home-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.home-btn-primary {
	background: var(--home-accent);
	color: var(--home-dark);
}

.home-btn-primary:hover {
	background: var(--home-accent-hover);
	transform: translateY(-2px);
}

.home-btn-outline {
	border: 1px solid var(--home-border);
	color: var(--home-text);
}

.home-btn-outline:hover {
	border-color: var(--home-accent);
	color: var(--home-accent);
}

.home-hero-image-wrapper {
	position: relative;
	aspect-ratio: 3/4;
	background: var(--home-card);
	border: 1px solid var(--home-border);
	overflow: hidden;
	max-width: 400px;
	margin: 0 auto;
}

.home-hero-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== SERVICES SECTION ===== */
.home-services-section {
	padding: 100px 0;
	background: var(--home-dark-alt);
}

.home-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.home-service-card {
	background: var(--home-card);
	border: 1px solid var(--home-border);
	padding: 40px;
	transition: all 0.3s ease;
}

.home-service-card:hover {
	border-color: var(--home-accent);
	transform: translateY(-4px);
}

.home-service-number {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--home-accent);
	margin-bottom: 16px;
}

.home-service-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--home-text);
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.home-service-desc {
	font-size: 1rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.7;
	margin-bottom: 24px;
}

.home-service-link {
	color: var(--home-accent);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.home-service-link:hover {
	gap: 12px;
}

/* ===== WHO I HELP SECTION ===== */
.home-who-section {
	padding: 100px 0;
	background: var(--home-dark);
}

.home-who-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.home-who-image img {
	width: 100%;
	border-radius: 4px;
}

.home-who-intro {
	font-size: 1rem;
	color: var(--home-text-muted);
	margin-bottom: 40px;
}

.home-who-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.home-who-item {
	display: flex;
	gap: 20px;
}

.home-who-num {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--home-accent);
	flex-shrink: 0;
	width: 40px;
}

.home-who-h {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--home-text);
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}

.home-who-p {
	font-size: 1rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.7;
}

/* ===== KORAY FRAMEWORK SECTION ===== */
.home-koray-section {
	padding: 100px 0;
	background: var(--home-dark-alt);
}

.home-koray-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.home-koray-step {
	background: var(--home-card);
	border: 1px solid var(--home-border);
	padding: 40px 30px;
	position: relative;
	transition: all 0.3s ease;
}

.home-koray-step:hover {
	border-color: var(--home-accent);
}

.home-step-num {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--home-accent);
	margin-bottom: 20px;
	display: block;
}

.home-step-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--home-text);
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.home-step-desc {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.6;
}

/* ===== WHY EHSAN SECTION ===== */
.home-why-section {
	padding: 100px 0;
	background: var(--home-dark);
}

.home-why-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
}

.home-why-intro {
	font-size: 1rem;
	color: var(--home-text-muted);
	margin-bottom: 40px;
}

.home-why-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.home-why-card {
	background: rgba(163, 230, 53, 0.05);
	border-left: 3px solid var(--home-accent);
	padding: 30px;
}

.home-why-card-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--home-text);
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}

.home-why-card-text {
	font-size: 1rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.7;
	margin-bottom: 12px;
}

.home-why-card-text:last-child {
	margin-bottom: 0;
}

.home-why-image img {
	width: 100%;
	border-radius: 4px;
}

/* ===== CLIENT RESULTS SECTION ===== */
.home-results-section {
	padding: 100px 0;
	background: var(--home-dark-alt);
}

.home-results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.home-result-card {
	background: var(--home-card);
	border: 1px solid var(--home-border);
	overflow: hidden;
	transition: all 0.3s ease;
}

.home-result-card:hover {
	border-color: var(--home-accent);
}

.home-result-chart {
	aspect-ratio: 16/10;
	background: var(--home-dark);
	overflow: hidden;
}

.home-result-chart img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.home-result-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--home-text);
	padding: 24px 24px 0;
	margin: 0;
	letter-spacing: -0.01em;
}

.home-result-desc {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.6;
	padding: 16px 24px 24px;
	margin: 0;
}

.home-results-footer {
	margin-top: 40px;
	text-align: center;
}

.home-results-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--home-accent);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.home-results-link:hover {
	gap: 12px;
}

/* ===== TESTIMONIALS/REVIEWS SECTION ===== */
.home-testimonials-section,
.home-reviews-section {
	padding: 100px 0;
	background: var(--home-dark);
}

.home-reviews-header {
	text-align: center !important;
	margin-bottom: 60px !important;
	margin-top: 40px !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

.home-reviews-header .home-section-title,
.home-reviews-header .home-section-label {
	text-align: center !important;
	width: 100% !important;
}

/* ===== PRODUCTS SECTION ===== */
.home-products-section {
	padding: 100px 0;
	background: var(--home-dark-alt);
}

.home-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.home-product-card {
	background: var(--home-card);
	border: 1px solid var(--home-border);
	padding: 40px;
	transition: all 0.3s ease;
}

.home-product-card:hover {
	border-color: var(--home-accent);
	transform: translateY(-4px);
}

.home-product-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--home-text);
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.home-product-desc {
	font-size: 1rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.7;
}

.home-products-footer {
	text-align: center;
}

.home-products-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--home-accent);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.home-products-link:hover {
	gap: 12px;
}

/* ===== CTA SECTION ===== */
.home-cta-section {
	padding: 100px 0;
	background: var(--home-dark);
	text-align: center;
}

.home-cta-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin-bottom: 30px;
}

.home-cta-title span {
	display: block;
}

.home-cta-title .title-white {
	color: var(--home-text);
}

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

.home-cta-text {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--home-text-muted);
	line-height: 1.8;
	margin-bottom: 35px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.home-cta-text p {
	margin-bottom: 16px;
}

.home-cta-text .cta-text-secondary {
	font-size: 1rem;
	font-weight: 400;
	color: var(--home-text-secondary);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.home-cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.home-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.home-cta-btn-primary {
	background: var(--home-accent);
	color: var(--home-dark);
}

.home-cta-btn-primary:hover {
	background: var(--home-accent-hover);
	transform: translateY(-2px);
}

.home-cta-btn-secondary {
	background: var(--home-card);
	border: 1px solid var(--home-border);
	color: var(--home-text);
}

.home-cta-btn-secondary:hover {
	background: var(--home-border);
	color: var(--home-text);
}

/* ===== BLOG SECTION ===== */
.home-blog-section {
	padding: 100px 0;
	background: var(--home-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.home-hero-grid,
	.home-who-grid,
	.home-why-grid {
		grid-template-columns: 1fr;
	}

	.home-services-grid,
	.home-koray-steps,
	.home-results-grid,
	.home-products-grid {
		grid-template-columns: 1fr;
	}

	.home-hero-image {
		display: none;
	}
}

@media (max-width: 768px) {
	.home-container {
		padding: 0 24px;
	}

	.home-hero-section {
		padding: 60px 0 40px;
	}

	.home-services-section,
	.home-who-section,
	.home-koray-section,
	.home-why-section,
	.home-results-section,
	.home-testimonials-section,
	.home-reviews-section,
	.home-products-section,
	.home-cta-section,
	.home-blog-section {
		padding: 60px 0;
	}

	.home-hero-buttons,
	.home-cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.home-btn,
	.home-cta-btn {
		justify-content: center;
	}
}

/* ===== HOME HERO V2 - Screenshot Design ===== */
.home-hero-section-v2 {
	padding: 60px 0 80px;
	background: var(--home-dark);
	position: relative;
	overflow: hidden;
}

.home-container-v2 {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}

.home-hero-grid-v2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* Badge */
.home-hero-badge-v2 {
	display: inline-block;
	padding: 6px 12px;
	background: rgba(163, 230, 53, 0.1);
	border: 1px solid rgba(163, 230, 53, 0.3);
	color: var(--home-accent);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

/* Stacked Headline */
.home-hero-title-v2 {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 700;
	line-height: 0.95;
	margin-bottom: 12px;
}

.home-hero-title-v2 span {
	display: block;
	font-size: clamp(1.5rem, 3.5vw, 2.75rem);
}

.home-hero-title-v2 .line-white {
	color: var(--home-text);
}

.home-hero-title-v2 .line-green {
	color: var(--home-accent);
}

/* Subtitle */
.home-hero-subtitle-v2 {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--home-text-secondary);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 32px;
}

/* Description */
.home-hero-desc-v2 {
	max-width: 480px;
	margin-bottom: 32px;
}

.home-hero-desc-v2 p {
	font-size: 0.9rem;
	color: var(--home-text-muted);
	line-height: 1.6;
	margin-bottom: 12px;
}

.home-hero-desc-v2 p:last-child {
	margin-bottom: 0;
	font-size: 0.8rem;
	color: var(--home-text-secondary);
}

/* Buttons */
.home-hero-buttons-v2 {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.home-btn-v2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.home-btn-primary-v2 {
	background: var(--home-accent);
	color: var(--home-dark);
	border: none;
}

.home-btn-primary-v2:hover {
	background: var(--home-accent-hover);
}

.home-btn-outline-v2 {
	background: transparent;
	border: 1px solid var(--home-border);
	color: var(--home-text);
}

.home-btn-outline-v2:hover {
	border-color: var(--home-accent);
	color: var(--home-accent);
}

/* Image */
.home-hero-image-v2 {
	position: relative;
}

.home-hero-image-wrapper-v2 {
	position: relative;
	aspect-ratio: 3/4;
	background: var(--home-card);
	overflow: hidden;
	max-height: 520px;
}

.home-hero-image-wrapper-v2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Dark Overlay with Authority Score */
.home-hero-overlay-v2 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	padding: 16px 20px;
}

.home-hero-overlay-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-hero-overlay-text {
	display: flex;
	flex-direction: column;
}

.home-hero-overlay-label {
	font-size: 0.6rem;
	font-weight: 700;
	color: var(--home-text-secondary);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.home-hero-overlay-score {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--home-accent);
}

.home-hero-overlay-bars {
	display: flex;
	gap: 3px;
	align-items: flex-end;
	height: 28px;
}

.home-hero-overlay-bars .bar {
	width: 3px;
	background: var(--home-accent);
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
	.home-hero-grid-v2 {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.home-hero-image-v2 {
		order: -1;
		max-width: 400px;
		margin: 0 auto;
	}
	
	.home-hero-image-wrapper-v2 {
		max-height: 400px;
	}
}

@media (max-width: 768px) {
	.home-container-v2 {
		padding: 0 24px;
	}
	
	.home-hero-section-v2 {
		padding: 40px 0 60px;
	}
	
	.home-hero-title-v2 span {
		font-size: clamp(1.25rem, 6vw, 2rem);
	}
	
	.home-hero-buttons-v2 {
		flex-direction: column;
	}
	
	.home-btn-v2 {
		justify-content: center;
	}
}

/* ===== HOME HERO TOPICAL MAP DESIGN ===== */
/* ===== HOME HERO TOPICAL MAP DESIGN - Bolder Typography Version ===== */
.home-hero-topical {
	padding: 100px 0 120px;
	background: var(--home-dark);
	position: relative;
	overflow: hidden;
}

.home-hero-topical::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse at 80% 50%, rgba(163, 230, 53, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(163, 230, 53, 0.04) 0%, transparent 40%);
	pointer-events: none;
}

.home-hero-topical-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
	position: relative;
	z-index: 1;
}

.home-hero-topical-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

/* Label with dot */
.home-hero-topical-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--home-text-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 24px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 2px;
}

.home-hero-topical-label .label-dot {
	width: 6px;
	height: 6px;
	background: var(--home-accent);
	border-radius: 50%;
	display: inline-block;
}

/* Title - Bold Typography like design */
.home-hero-topical-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: 28px;
	letter-spacing: -0.02em;
}

.home-hero-topical-title .title-line {
	display: block;
	font-size: clamp(2.8rem, 5.5vw, 4rem);
	color: var(--home-text);
}

.home-hero-topical-title .title-green {
	color: var(--home-accent);
}

/* Description */
.home-hero-topical-desc {
	max-width: 640px;
	margin-bottom: 32px;
}

.home-hero-topical-desc .desc-primary {
	font-size: 1rem;
	font-weight: 400;
	color: var(--home-text-muted);
	line-height: 1.7;
	margin-bottom: 16px;
}

.home-hero-topical-desc .desc-secondary {
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--home-text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* Buttons */
.home-hero-topical-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.hero-btn-primary {
	background: var(--home-accent);
	color: var(--home-dark);
	border: none;
}

.hero-btn-primary:hover {
	background: #b8e055;
	transform: translateY(-1px);
}

.hero-btn-outline {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--home-text);
}

.hero-btn-outline:hover {
	border-color: var(--home-accent);
	color: var(--home-accent);
}

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

/* Visual / Image */
.home-hero-topical-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.home-hero-topical-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 4/5;
	background: var(--home-card);
	overflow: hidden;
}

.home-hero-topical-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Corner decorations */
.image-corner {
	position: absolute;
	width: 40px;
	height: 40px;
	border-color: var(--home-accent);
	pointer-events: none;
	z-index: 2;
}

.image-corner-tl {
	top: -1px;
	left: -1px;
	border-top: 2px solid var(--home-accent);
	border-left: 2px solid var(--home-accent);
}

.image-corner-tr {
	top: -1px;
	right: -1px;
	border-top: 2px solid var(--home-accent);
	border-right: 2px solid var(--home-accent);
}

.image-corner-bl {
	bottom: -1px;
	left: -1px;
	border-bottom: 2px solid var(--home-accent);
	border-left: 2px solid var(--home-accent);
}

.image-corner-br {
	bottom: -1px;
	right: -1px;
	border-bottom: 2px solid var(--home-accent);
	border-right: 2px solid var(--home-accent);
}

/* Image label */
.hero-image-label {
	position: absolute;
	bottom: 20px;
	left: 0;
	background: rgba(10, 10, 10, 0.9);
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	border-left: 3px solid var(--home-accent);
}

.hero-image-label .label-title {
	font-size: 0.6rem;
	font-weight: 600;
	color: var(--home-text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-image-label .label-name {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--home-text);
}

/* Decorative squares */
.hero-decorative-squares {
	display: grid;
	grid-template-columns: repeat(3, 14px);
	grid-template-rows: repeat(2, 14px);
	gap: 8px;
	align-self: center;
}

.hero-decorative-squares span {
	width: 14px;
	height: 14px;
	background: var(--home-accent);
	opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
	.home-hero-topical-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.home-hero-topical-visual {
		order: -1;
		max-width: 400px;
		margin: 0 auto;
	}
	
	.hero-decorative-squares {
		display: none;
	}
	
	.topical-map-illustration {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.home-hero-topical {
		padding: 60px 0 80px;
	}
	
	.home-hero-topical-container {
		padding: 0 24px;
	}
	
	.home-hero-topical-title .title-line {
		font-size: clamp(1.8rem, 7vw, 2.5rem);
	}
	
	.home-hero-topical-buttons {
		flex-direction: column;
	}
	
	.hero-btn {
		justify-content: center;
		width: 100%;
	}
	
	.image-corner {
		width: 30px;
		height: 30px;
	}
}