/* Premium assurance panel — homepage and City Landing pages. */
body.aps-home .guarantee-panel,
body.page-template-city-landing .guarantee-panel {
	padding: clamp(34px, 4vw, 56px);
	border-color: rgba(225, 20, 35, .44);
	background:
		radial-gradient(circle at 88% 12%, rgba(225, 20, 35, .20), transparent 28%),
		linear-gradient(135deg, #1c0b10 0%, #0e0809 55%, #16090d 100%);
	box-shadow: 0 26px 70px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(247, 241, 238, .03);
}

.guarantee-panel-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .42;
	background-image:
		linear-gradient(rgba(247, 241, 238, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(247, 241, 238, .035) 1px, transparent 1px);
	background-size: 36px 36px;
	mask-image: linear-gradient(115deg, #000 0%, transparent 78%);
}

.guarantee-head,
.guarantee-grid,
.guarantee-footer {
	position: relative;
	z-index: 2;
}

.guarantee-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
}

.guarantee-head .section-title {
	max-width: 760px;
	margin-bottom: 0;
}

.guarantee-intro {
	max-width: 620px;
	margin: 22px 0 0;
	color: #c9b8b6;
	font-size: 15px;
	line-height: 1.65;
}

.guarantee-seal {
	display: grid;
	place-content: center;
	width: 124px;
	height: 124px;
	padding: 14px;
	text-align: center;
	border: 1px solid rgba(225, 20, 35, .58);
	background: radial-gradient(circle at 50% 35%, rgba(225, 20, 35, .24), rgba(8, 5, 6, .65) 70%);
	box-shadow: inset 0 0 0 6px rgba(225, 20, 35, .06), 0 0 34px rgba(225, 20, 35, .18);
	clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
}

.guarantee-seal span {
	color: #f7f1ee;
	font-family: var(--aps-display);
	font-size: 34px;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: .9;
}

.guarantee-seal small {
	display: block;
	margin-top: 8px;
	color: #ff8b93;
	font-family: var(--aps-mono);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.45;
	text-transform: uppercase;
}

body.aps-home .guarantee-grid,
body.page-template-city-landing .guarantee-grid {
	gap: 14px;
	margin-top: 38px;
}

body.aps-home .guarantee,
body.page-template-city-landing .guarantee {
	display: flex;
	min-height: 220px;
	flex-direction: column;
	padding: 22px 20px 20px;
	border-color: rgba(247, 241, 238, .14);
	background: linear-gradient(155deg, rgba(255, 255, 255, .075), rgba(0, 0, 0, .22));
	box-shadow: inset 0 1px 0 rgba(247, 241, 238, .05);
}

body.aps-home .guarantee::before,
body.page-template-city-landing .guarantee::before {
	width: 52px;
	height: 3px;
	background: linear-gradient(90deg, var(--aps-red), rgba(225, 20, 35, .12));
}

body.aps-home .guarantee:hover,
body.page-template-city-landing .guarantee:hover {
	transform: translateY(-6px);
	border-color: rgba(225, 20, 35, .68);
	background: linear-gradient(155deg, rgba(225, 20, 35, .16), rgba(0, 0, 0, .28));
	box-shadow: 0 20px 48px rgba(0, 0, 0, .48), 0 0 32px rgba(225, 20, 35, .16);
}

.guarantee-top {
	margin-bottom: 13px;
}

body.aps-home .guarantee .icon-box,
body.page-template-city-landing .guarantee .icon-box {
	border-color: rgba(225, 20, 35, .56);
	background: rgba(225, 20, 35, .10);
	box-shadow: 0 0 18px rgba(225, 20, 35, .13);
}

.g-num {
	color: #a79391;
	font-size: 8px;
	letter-spacing: .18em;
}

.guarantee-rule {
	width: 100%;
	height: 1px;
	margin: 0 0 18px;
	background: linear-gradient(90deg, rgba(225, 20, 35, .6), rgba(247, 241, 238, .10), transparent);
}

.guarantee .k {
	margin: 0;
	font-size: clamp(30px, 2.55vw, 38px);
	letter-spacing: .01em;
}

.guarantee .v {
	margin-top: 7px;
	color: #f7f1ee;
	font-size: 14px;
}

.guarantee .d {
	margin-top: 10px;
	color: #c9b8b6;
}

.guarantee-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(247, 241, 238, .12);
	color: #b8a9a7;
	font-family: var(--aps-mono);
	font-size: 9px;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.guarantee-footer span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.guarantee-footer svg {
	color: var(--aps-red);
	flex: none;
}

@media (max-width: 700px) {
	.guarantee-head {
		grid-template-columns: 1fr;
	}

	.guarantee-seal {
		width: 96px;
		height: 96px;
	}

	.guarantee-seal span {
		font-size: 28px;
	}

	.guarantee-intro {
		font-size: 14px;
	}

	body.aps-home .guarantee,
	body.page-template-city-landing .guarantee {
		min-height: 0;
	}
}