.db-protection,
.db-protection * {
	box-sizing: border-box;
}

.db-protection {
	--db-tri-blue: #0039a6;
	--db-tri-red: #d52b1e;
	--db-ink: #0a0e1a;
	--db-ink-soft: #5a6478;
	--db-cta: #d52b1e;
	--db-maxw: 1400px;

	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	color: var(--db-ink);
	width: 100%;
	padding: 70px 0;
	position: relative;
	background:
		radial-gradient(circle at 85% 15%, rgba(213, 43, 30, 0.04) 0, transparent 40%),
		radial-gradient(circle at 10% 85%, rgba(0, 57, 166, 0.06) 0, transparent 45%),
		#fbfcff;
}

.db-protection .db-protection-inner {
	max-width: var(--db-maxw);
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
}

.db-protection .db-protection-head {
	text-align: center;
	margin-bottom: 56px;
}
.db-protection .db-protection-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.6px;
	color: var(--db-tri-blue);
	background: rgba(0, 57, 166, 0.08);
	padding: 7px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.db-protection .db-protection-head h2 {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--db-ink);
	line-height: 1.15;
	margin: 0 0 14px 0;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.db-protection .db-protection-head p {
	font-size: 16px;
	color: var(--db-ink-soft);
	max-width: 640px;
	margin: 14px auto 0;
}

.db-protection .db-protection-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 56px;
	align-items: center;
}

/* Левая часть — фото */
.db-protection .db-protection-image {
	position: relative;
}
.db-protection .db-protection-image-frame {
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	padding: 28px;
	border: 1px solid rgba(0, 57, 166, 0.1);
	box-shadow: 0 30px 60px -20px rgba(0, 57, 166, 0.18);
	overflow: hidden;
	display: flex;
	gap: 24px;
}
.db-protection .db-protection-image-frame::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffffff 0 33.33%, var(--db-tri-blue) 33.33% 66.66%, var(--db-tri-red) 66.66% 100%);
}
.db-protection .db-protection-image-frame img {
width: 50%;
height: auto;
display: block;
}
.db-protection .db-protection-badge {
	position: absolute;
	top: -22px;
	right: -22px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--db-cta) 0%, #e84236 100%);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 30px rgba(213, 43, 30, 0.4);
	transform: rotate(8deg);
	z-index: 2;
}
.db-protection .db-protection-badge-num {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 42px;
	line-height: 1;
	margin-bottom: 2px;
}
.db-protection .db-protection-badge-text {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	line-height: 1.25;
}

/* Правая часть — список */
.db-protection .db-protection-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 24px;
}
.db-protection .db-protection-item {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.db-protection .db-protection-item::before {
	display: none;
}
.db-protection .db-protection-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--db-tri-blue) 0%, #1e56c4 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease;
}
.db-protection .db-protection-icon::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--db-tri-red);
}
.db-protection .db-protection-icon svg {
	width: 22px;
	height: 22px;
	color: #ffffff;
	position: relative;
	z-index: 1;
}
.db-protection .db-protection-item:hover .db-protection-icon {
	transform: translateY(-2px);
}
.db-protection .db-protection-content h3 {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--db-ink);
	line-height: 1.25;
	margin: 4px 0 6px 0;
}
.db-protection .db-protection-content p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--db-ink-soft);
	margin: 0;
}

@media (max-width: 1100px) {
	.db-protection .db-protection-grid {
		gap: 40px;
	}
	.db-protection .db-protection-list {
		gap: 24px 20px;
	}
}

@media (max-width: 900px) {
	.db-protection { padding: 56px 0; }
	.db-protection .db-protection-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}
	.db-protection .db-protection-image {
		max-width: 520px;
		margin: 0 auto;
	}
	.db-protection .db-protection-head { margin-bottom: 40px; }
}

@media (max-width: 600px) {
	.db-protection { padding: 44px 0; }
	.db-protection .db-protection-inner { padding: 0 16px; }
	.db-protection .db-protection-head h2 { font-size: 24px; }
	.db-protection .db-protection-head p { font-size: 14px; }
	.db-protection .db-protection-image-frame {
		padding: 18px;
		border-radius: 14px;
	}
	.db-protection .db-protection-badge {
		width: 88px;
		height: 88px;
		top: -16px;
		right: -10px;
	}
	.db-protection .db-protection-badge-num { font-size: 34px; }
	.db-protection .db-protection-badge-text { font-size: 9px; }
	.db-protection .db-protection-list {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.db-protection .db-protection-icon {
		width: 42px;
		height: 42px;
		border-radius: 10px;
	}
	.db-protection .db-protection-icon svg { width: 20px; height: 20px; }
	.db-protection .db-protection-content h3 { font-size: 17px; }
}
