.entry-content .db-guarantees,
.page-content .db-guarantees,
.db-page .db-guarantees {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
}
.db-guarantees,
.db-guarantees * {
	box-sizing: border-box;
}

.db-guarantees {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #1a1d24;
	padding: 60px 0;
	background: #f7f9fc;
	position: relative;
	overflow: hidden;
}

.db-guarantees::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(0, 57, 166, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.db-guarantees::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(213, 43, 30, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.db-guarantees-inner {
	max-width: 1450px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
	z-index: 1;
}

.db-guarantees-head {
	text-align: center;
	margin-bottom: 40px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.db-guarantees-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #0039a6;
	background: rgba(0, 57, 166, 0.08);
	padding: 6px 14px;
	border-radius: 14px;
	margin-bottom: 14px;
}
.db-guarantees-head h2 {
	font-family: 'Inter', sans-serif;
	font-size: 34px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.022em;
	line-height: 1.15;
	margin: 0 0 12px;
}
.db-guarantees-head p {
	font-size: 16px;
	line-height: 1.6;
	color: #5a6478;
	margin: 0;
}

.db-guarantees-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 32px;
}

.db-guarantee-card {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 14px;
	padding: 26px 24px;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.db-guarantee-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #0039a6 0%, #d52b1e 100%);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.35s ease;
}
.db-guarantee-card:hover {
	transform: translateY(-4px);
	border-color: #c0c8d8;
	box-shadow: 0 16px 36px -18px rgba(0, 57, 166, 0.22);
}
.db-guarantee-card:hover::before {
	transform: scaleY(1);
}

.db-guarantee-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, #eef2fb 0%, #ffffff 100%);
	border: 1px solid #d0d6e2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0039a6;
	margin-bottom: 18px;
	transition: background 0.25s ease, transform 0.25s ease;
}
.db-guarantee-card:hover .db-guarantee-icon {
	background: linear-gradient(135deg, #0039a6 0%, #1e4fb8 100%);
	border-color: #0039a6;
	color: #ffffff;
	transform: rotate(-4deg);
}
.db-guarantee-icon svg {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.db-guarantee-card h3 {
	font-family: 'Inter', sans-serif;
	font-size: 19px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.018em;
	line-height: 1.25;
	margin: 0 0 10px;
}
.db-guarantee-card p {
	font-size: 14.5px;
	line-height: 1.6;
	color: #5a6478;
	margin: 0;
}

.db-guarantees-footer {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 16px;
	padding: 22px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.db-guarantees-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0039a6, #d52b1e);
}

.db-guarantees-docs {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	min-width: 280px;
}
.db-guarantees-docs-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(0, 57, 166, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0039a6;
	flex-shrink: 0;
}
.db-guarantees-docs-icon svg {
	width: 22px;
	height: 22px;
}
.db-guarantees-docs-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	line-height: 1.4;
}
.db-guarantees-docs-text strong {
	font-family: 'Inter', sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	color: #0a0e1a;
	letter-spacing: -0.008em;
}
.db-guarantees-docs-text span {
	font-size: 13.5px;
	color: #5a6478;
	font-weight: 500;
}

.db-guarantees-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 24px;
	background: #d52b1e;
	color: #ffffff;
	text-decoration: none;
	border-radius: 10px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -0.005em;
	box-shadow: 0 6px 18px rgba(213, 43, 30, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}
.db-guarantees-btn:hover {
	background: #b32218;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(213, 43, 30, 0.38);
}
.db-guarantees-btn svg {
	width: 15px;
	height: 15px;
}

@media (max-width: 1024px) {
	.db-guarantees-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.db-guarantees {
		padding: 44px 0;
	}
	.db-guarantees-inner {
		padding: 0 16px;
	}
	.db-guarantees-head {
		margin-bottom: 28px;
	}
	.db-guarantees-head h2 {
		font-size: 26px;
	}
	.db-guarantees-head p {
		font-size: 14.5px;
	}
	.db-guarantees-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 22px;
	}
	.db-guarantee-card {
		padding: 22px 20px;
	}
	.db-guarantee-icon {
		width: 46px;
		height: 46px;
		margin-bottom: 14px;
	}
	.db-guarantee-icon svg {
		width: 22px;
		height: 22px;
	}
	.db-guarantee-card h3 {
		font-size: 17px;
	}
	.db-guarantee-card p {
		font-size: 14px;
	}
	.db-guarantees-footer {
		padding: 18px 20px;
		gap: 16px;
		flex-direction: column;
		align-items: stretch;
	}
	.db-guarantees-docs {
		min-width: 0;
	}
	.db-guarantees-btn {
		justify-content: center;
		width: 100%;
	}
}
