/* --- 英雄区样式 (Hero Section) --- */
.hero-card {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hero-white-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 55%;
	background: white;
	z-index: 2;
}

.hero-curve-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 54%; 
	width: 150px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.hero-image-area {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	z-index: 1;
	overflow: hidden;
	background-color: #f0f0f0;
}

.tilted-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: 150%;
	transform: rotate(-12deg) translateY(-15%) translateX(-10%);
}

.grid-img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.grid-img:hover { 
	transform: scale(1.02); 
}

.btn-berry {
	background-color: var(--brand-berry);
	color: white;
	transition: all 0.3s ease;
}

.btn-berry:hover {
	background-color: #6b1d2c;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(136, 37, 56, 0.3);
}

/* 信任条 Logo 样式 */
.media-logo {
	height: 28px;
	object-fit: contain;
	opacity: 0.6;
	transition: all 0.3s;
	filter: grayscale(100%);
}

.media-logo:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.hero-white-bg { 
		width: 100%; 
		clip-path: none; 
	}
	
	.hero-curve-divider { 
		display: none; 
	}
	
	.hero-image-area { 
		position: relative; 
		width: 100%; 
		height: 300px; 
		margin-top: -50px; 
		z-index: 0; 
		transform: scaleY(-1); 
		clip-path: ellipse(150% 100% at 50% 100%); 
	}
	
	.hero-image-area .tilted-grid { 
		transform: rotate(-12deg) scaleY(-1); 
	}
	
	.hero-card { 
		display: flex; 
		flex-direction: column-reverse;
		min-height: 450px;
		border-radius: 1rem;
	}
}

@media (max-width: 768px) {
	.hero-card {
		min-height: 400px;
		border-radius: 0.75rem;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	}

	.hero-image-area {
		height: 250px;
	}

	.grid-img {
		height: 180px;
	}
}

@media (max-width: 640px) {
	.hero-card {
		min-height: 350px;
		border-radius: 0.5rem;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	.hero-image-area {
		height: 200px;
	}

	.grid-img {
		height: 150px;
	}

	.tilted-grid {
		gap: 12px;
	}
}
