/* ===== 首页「加盟优势」新设计（与招商加盟页视觉一致） ===== */
.home-adv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.home-adv-card {
	position: relative;
	background: #fff;
	border: 1px solid #f1e3e4;
	border-radius: 16px;
	padding: 38px 26px 30px;
	text-align: center;
	transition: all .35s ease;
	box-shadow: 0 8px 24px rgba(215,12,25,0.05);
	overflow: hidden;
}
.home-adv-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(to right, #d70c19, #fbe00e);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}
.home-adv-card:hover {
	transform: translateY(-8px);
	border-color: #d70c19;
	box-shadow: 0 18px 40px rgba(215,12,25,0.16);
}
.home-adv-card:hover::before {
	transform: scaleX(1);
}
.home-adv-ic {
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e23b46, #d70c19);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(215,12,25,0.3);
}
.home-adv-ic::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='20%206%209%2017%204%2012'/%3E%3C/svg%3E") no-repeat center / contain;
}
.home-adv-card h5 {
	font-size: 1.3rem;
	color: #1a1a1a;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 1px;
}
.home-adv-card p {
	font-size: .92rem;
	color: #6b6b6b;
	line-height: 1.85;
	padding: 0 4px;
}
@media (max-width: 980px) {
	.home-adv-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
@media (max-width: 560px) {
	.home-adv-grid {
		grid-template-columns: 1fr;
	}
	.home-adv-card {
		padding: 30px 20px 24px;
	}
}
