/* Hero Section */
.hero-section {
	width: 100%;
	height: 40vh;
	min-height: 240px;
	position: relative;
	overflow: hidden;
}

.hero-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 0% 70%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-text {
	position: absolute;
	bottom: 5%;
	left: 4rem;
	text-align: left;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.hero-text p {
	font-size: 1.5rem;
	font-weight: 500;
}

/* Intro Section */
.intro-section {
	background: #fff;
	padding: 32px 0;
}

.intro-section .mine-site-container h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 24px;
	text-align: left;
}

.intro-section .mine-site-container p {
	font-size: 1.3rem;
	color: #666;
	max-width: 800px;
	margin: 0;
	line-height: 1.6;
	text-align: left;
}

/* Features Section */
.features-section {
	padding: 80px 0;
	background: #f7f9fb;
}

.features-layout {
	display: flex;
	gap: 64px;
	align-items: center;
}

.features-images {
	flex: 2;
	margin-right: 32px;
	min-width: 420px;
	margin-top: 32px;
}

.main-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
	margin-bottom: 16px;
}

.image-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.image-row img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.features-content {
	flex: 2.5;
}

.badges {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.badge {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.badge.peak {
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	color: white;
}

.badge.premium {
	background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
	color: #333;
}

.product-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 2.2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 30%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: left;
	margin-bottom: 8px;
}

.tm {
	font-size: 1.2em;
}

.product-desc {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 32px;
	line-height: 1.6;
}

.feature-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.feature-card {
	background: #f7f9fb;
	padding: 12px 24px 16px;
	border-radius: 12px;
	border-left: 5px solid;
	border-image: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	border-image-slice: 1;
}

.feature-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 10px 0;
}

.feature-card p {
	font-size: 1rem;
	color: #666;
	margin: 0;
}

.tech-highlights {
	background: #fff;
	padding: 24px 32px 20px;
	border-radius: 12px;
	margin: 48px 0 32px 0;
	display: flex;
	flex-direction: column;
	height: 180px;
}

.tech-highlights h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 16px 0;
}

.highlight-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 24px;
	margin-top: auto;
}

.highlight-value {
	font-size: 1.4rem;
	font-weight: 700;
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0;
}

.highlight-label {
	font-size: 0.85rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	justify-content: space-between;
}

.btn-outline {
	background: #f7f9fb;
	color: #A00020;
	border: 2px solid;
	border-image: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	border-image-slice: 1;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	background-clip: padding-box;
}

.btn-outline span {
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn-primary {
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

/* --- 喷砂页面新样式 (abla-) --- */

.abla-hero-section {
	width: 100%;
	height: 40vh;
	min-height: 240px;
	position: relative;
	overflow: hidden;
}

.abla-hero-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abla-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.abla-hero-text {
	position: absolute;
	bottom: 5%;
	left: 4rem;
	text-align: left;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.abla-hero-text h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.abla-hero-text p {
	font-size: 1.5rem;
	font-weight: 500;
}

.abla-intro-section {
	background: #f7f9fb;
	padding: 0px 0;
}

.abla-intro-section .mine-site-container h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 24px;
	text-align: left;
}

.abla-intro-section .mine-site-container p {
	font-size: 1.3rem;
	color: #666;
	max-width: 800px;
	margin: 0;
	line-height: 1.6;
	text-align: left;
}

.abla-anchor {
	height: 0;
	overflow: visible;
}

.abla-premium-section {
	padding: 0px 0;
	background: #f7f9fb;
}

.abla-jadecut-section {
	padding: 80px 0;
	background: #fff;
}

.abla-layout {
	display: flex;
	gap: 64px;
	align-items: center;
}

.abla-layout--reverse {
	flex-direction: row-reverse;
	/* JadeCut section layout */
}

.abla-images {
	flex: 2;
	margin-right: 32px;
	min-width: 420px;
	margin-top: 32px;
}

.abla-layout--reverse .abla-images {
	margin-right: 0;
	margin-left: 32px;
	/* Reverse margin for JadeCut */
}

.abla-main-image {
	width: 100%;
	height: 400px;
	/* You might need to adjust height based on image aspect ratio */
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
	margin-bottom: 16px;
}

.abla-image-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.abla-image-row img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.abla-content {
	flex: 2.5;
}

.abla-badges {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.abla-badge {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
	/* Ensure proper alignment */
}

.abla-badge--peak {
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	color: white;
}

.abla-badge--premium {
	background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
	color: #333;
}

.abla-badge--recommended {
	background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
	color: white;
}

.abla-badge--savings {
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
}

.abla-badge--upgrade {
	background: linear-gradient(135deg, #757575 0%, #212121 100%);
	color: white;
}

.abla-product-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 2.2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 30%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: left;
	margin-bottom: 8px;
}

.abla-product-title--jadecut {
	background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 30%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.abla-product-desc {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 32px;
	line-height: 1.6;
}

.abla-product-desc--additional {
	margin-bottom: 12px;
	padding-top: 2%;
}

.abla-feature-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.abla-feature-card {
	background: #f7f9fb;
	padding: 12px 24px 16px 24px;
	border-radius: 12px;
	border-left: 5px solid;
	border-image: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	border-image-slice: 1;
}

.abla-feature-card--jadecut {
	margin-bottom: 1%;
	background: #fff;
	padding: 12px 24px 16px 24px;
	border-radius: 12px;
	border-left: 5px solid;
	border-image: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
	border-image-slice: 1;
}

.abla-feature-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 10px 0;
}

.abla-feature-card p {
	font-size: 1rem;
	color: #666;
	margin: 0;
}

.abla-tech-highlights {
	background: #fff;
	padding: 24px 32px 20px 32px;
	border-radius: 12px;
	margin: 48px 0 32px 0;
	display: flex;
	flex-direction: column;
	height: 180px;
}

.abla-tech-highlights--jadecut {
	background: #f8f9fa;
}

.abla-tech-highlights h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 16px 0;
}

.abla-highlight-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 24px;
	margin-top: auto;
}

.abla-highlight-value {
	font-size: 1.5rem;
	/* Adjusted from original */
	font-weight: 700;
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	/* Default to OneGarnet */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0;
}

.abla-tech-highlights--jadecut .abla-highlight-value {
	font-weight: 700;
	background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0;
}

.abla-highlight-label {
	font-size: 0.9rem;
	/* Adjusted from original */
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.abla-cta-buttons {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	justify-content: space-between;
}

.abla-btn-outline {
	background: #f7f9fb;
	color: #A00020;
	border: 2px solid;
	border-image: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	border-image-slice: 1;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	background-clip: padding-box;
	width: auto;
	/* Prevent stretching in mobile */
}

.abla-btn-outline span {
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.abla-btn-outline--jadecut {
	background: #fff;
	color: #1B5E20;
	border-image: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
}

.abla-btn-outline--jadecut span {
	background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.abla-btn-primary {
	background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	width: auto;
	/* Prevent stretching in mobile */
}

.abla-btn-primary--jadecut {
	background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
}

/* --- 响应式设计 (Responsive Design) --- */

@media (max-width: 1024px) {

	/* Adapt for medium screens, e.g., tablets */
	.features-layout,
	.abla-layout {
		flex-direction: column;
		gap: 32px;
	}

	.features-images,
	.abla-images {
		margin-right: 0;
		margin-left: 0;
		/* Reset JadeCut reverse margin */
		min-width: auto;
	}

	.abla-layout--reverse .abla-images {
		margin-left: 0;
		/* Ensure JadeCut images also reset correctly */
	}

	.highlight-grid,
	.abla-highlight-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	/* Adapt for small screens, e.g., mobile phones */

	/* Hero Section */
	.abla-hero-text,
	.hero-text {
		left: 2rem;
		/* Reduce side padding */
		bottom: 10%;
	}

	.abla-hero-text h1,
	.hero-text h1 {
		font-size: 1.5rem;
		/* Reduce font size */
	}

	.abla-hero-text p,
	.hero-text p {
		font-size: 1rem;
		/* Reduce font size */
	}

	/* Intro Sections */
	.abla-intro-section .mine-site-container h2,
	.intro-section .mine-site-container h2 {
		font-size: 1.2rem;
	}

	.abla-intro-section .mine-site-container p,
	.intro-section .mine-site-container p {
		font-size: 1rem;
	}

	/* Layout */
	.features-section,
	.abla-premium-section,
	.abla-jadecut-section {
		padding: 0px 0;
		/* Reduce vertical padding */
	}

	.features-layout,
	.abla-layout {
		flex-direction: column;
		/* Always stack vertically */
		gap: 24px;
	}

	.features-images,
	.abla-images,
	.features-content,
	.abla-content {
		flex: none;
		/* Remove flex behavior */
		width: 100%;
	}

	/* Images */
	.main-image,
	.abla-main-image {
		height: 300px;
		/* Adjust height for mobile */
	}

	.image-row img,
	.abla-image-row img {
		height: 200px;
		/* Adjust height for mobile */
	}

	/* Badges */
	.badges,
	.abla-badges {
		margin-top: 3%;
		display: flex;
		align-items: center;
		gap: 10%;
		margin-bottom: 24px;
		padding-top: 5%;
	}

	.abla-badges {}

	.abla-badge {
		width: calc(33.333% - 8px);
		/* Float-like behavior using flex/grid equivalent */
		text-align: center;
		font-size: 0.8rem;
		/* Smaller font for mobile */
	}

	/* Product Titles */
	.product-title,
	.abla-product-title {
		font-size: 1.5rem;
	}

	.abla-product-title--jadecut {
		padding-top: 12%;
		font-size: 1.3rem;
	}

	/* Feature Cards */
	.feature-cards,
	.abla-feature-cards {
		grid-template-columns: 1fr;
		/* Single column */
		gap: 16px;
		/* Smaller gap */
	}

	.feature-card,
	.abla-feature-card {
		margin-bottom: 1%;
	}

	.feature-card h4,
	.abla-feature-card h4 {
		font-size: 1.15rem;
	}

	.feature-card p,
	.abla-feature-card p {
		font-size: 1rem;
	}

	/* Tech Highlights */
	.tech-highlights,
	.abla-tech-highlights {
		padding: 14px 12px 12px 12px;
		/* Adjust padding */
		height: auto;
		/* Let height be flexible */
		margin: 32px 0;
		/* Adjust margin */
	}

	.highlight-grid,
	.abla-highlight-grid {
		grid-template-columns: 1fr 1fr;
		/* Two columns on mobile */
		gap: 16px;
		/* Smaller gap */
	}

	.highlight-value,
	.abla-highlight-value {
		font-size: 0.8rem;
		/* Smaller font */
	}

	.highlight-label,
	.abla-highlight-label {
		font-size: 0.6rem;
		/* Smaller font */
	}

	/* CTA Buttons */
	.cta-buttons,
	.abla-cta-buttons {
		flex-direction: column;
		/* Stack buttons vertically */
		align-items: stretch;
		/* Make buttons full width */
	}

	.btn-outline,
	.abla-btn-outline,
	.btn-primary,
	.abla-btn-primary {
		width: 100%;
		/* Full width */
	}

	/* JadeCut specific mobile adjustments */
	.abla-product-desc--additional {
		padding-top: 3%;
	}

	.abla-btn-outline--jadecut,
	.abla-btn-primary--jadecut {
		width: 50%;
		/* Float-like effect */
		float: left;
		padding: 16px 12px;
		/* Adjust padding */
	}

	.abla-btn-primary--jadecut {
		padding: 16px 24px;
		/* Slightly different padding */
	}

	.abla-cta-buttons:after {
		/* Clear floats */
		content: "";
		display: table;
		clear: both;
	}

	.abla-cta-buttons>div {
		/* Add spacing after floated buttons */
		padding: 6%;
	}

	/* Model Styles (for download modal) */
	#download-modal div {
		max-width: 440px;
		width: 95vw;
		padding: 40px 36px 36px 36px;
	}

	#download-modal h3 {
		font-size: 1.4rem;
	}

	#download-modal input {
		font-size: 1rem;
	}

	#download-modal button.ermail,
	#download-modal button.rgmail {
		font-size: 1rem;
	}
}

/* --- 公共样式 --- */

.hover-effect {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-effect:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}