.db-about-page,
.db-about-page *,
.db-delivery-page,
.db-delivery-page * {
	box-sizing: border-box;
}

.db-about-page,
.db-delivery-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #1a1d24;
	background: #ffffff;
}

.db-about-container,
.db-delivery-container {
	max-width: 1450px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ============================================
   ОБЩИЕ: заголовки секций, hero
   ============================================ */

.db-about-section-title,
.db-delivery-section-title {
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 28px;
	text-align: center;
}

.db-about-section-head,
.db-delivery-section-head {
	text-align: center;
	margin-bottom: 32px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.db-about-section-head h2,
.db-delivery-section-head h2 {
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 10px;
}
.db-about-section-head p,
.db-delivery-section-head p {
	font-size: 16px;
	line-height: 1.55;
	color: #5a6478;
	margin: 0;
}

/* ============================================
   СТРАНИЦА "О КОМПАНИИ"
   ============================================ */

.db-about-hero {
	padding: 48px 0 44px;
	background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
	border-bottom: 1px solid #e4e8f0;
}
.db-about-hero-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}
.db-about-hero-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-about-hero h1 {
	font-family: 'Inter', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 0 0 14px;
	max-width: 780px;
}
.db-about-hero p {
	font-size: 17px;
	line-height: 1.6;
	color: #5a6478;
	margin: 0;
	max-width: 720px;
}
.db-about-hero-years {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 32px;
	background: linear-gradient(135deg, #0039a6 0%, #1e4fb8 100%);
	color: #ffffff;
	border-radius: 18px;
	min-width: 170px;
	box-shadow: 0 16px 40px -18px rgba(0, 57, 166, 0.5);
	position: relative;
	overflow: hidden;
}
.db-about-hero-years::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffffff 33%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 66%, #d52b1e 66%);
}
.db-about-hero-years-num {
	font-family: 'Inter', sans-serif;
	font-size: 72px;
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #ffffff;
	margin-bottom: 8px;
}
.db-about-hero-years-label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.3;
}

.db-about-story {
	padding: 56px 0;
}
.db-about-story-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}
.db-about-story h2 {
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 18px;
}
.db-about-story-body {
	font-size: 16px;
	line-height: 1.7;
	color: #5a6478;
}
.db-about-story-body p { margin: 0 0 1em; }
.db-about-story-body p:last-child { margin: 0; }
.db-about-story-image {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 50px -20px rgba(0, 57, 166, 0.25);
}
.db-about-story-image img {
	width: 100%;
	height: auto;
	display: block;
}

.db-about-stats {
	padding: 40px 0;
	background: #f7f9fc;
}
.db-about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.db-about-stat {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 14px;
	padding: 28px 22px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.db-about-stat::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0039a6, #d52b1e);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.db-about-stat:hover {
	transform: translateY(-3px);
	border-color: #c0c8d8;
	box-shadow: 0 14px 30px -14px rgba(0, 57, 166, 0.2);
}
.db-about-stat:hover::before { transform: scaleX(1); }
.db-about-stat-num {
	font-family: 'Inter', sans-serif;
	font-size: 40px;
	font-weight: 800;
	color: #0039a6;
	letter-spacing: -0.025em;
	line-height: 1;
	margin-bottom: 8px;
}
.db-about-stat-label {
	font-size: 14px;
	color: #5a6478;
	font-weight: 500;
	line-height: 1.4;
}

.db-about-values {
	padding: 56px 0;
}
.db-about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.db-about-value-card {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 14px;
	padding: 28px 26px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.db-about-value-card:hover {
	transform: translateY(-3px);
	border-color: #c0c8d8;
	box-shadow: 0 14px 30px -14px rgba(0, 57, 166, 0.18);
}
.db-about-value-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	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;
}
.db-about-value-icon svg {
	width: 24px;
	height: 24px;
}
.db-about-value-card:hover .db-about-value-icon {
	background: linear-gradient(135deg, #0039a6 0%, #1e4fb8 100%);
	border-color: #0039a6;
	color: #ffffff;
}
.db-about-value-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-about-value-card p {
	font-size: 14.5px;
	line-height: 1.6;
	color: #5a6478;
	margin: 0;
}

.db-about-licenses {
	padding: 56px 0;
	background: #f7f9fc;
}
.db-about-licenses-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.db-about-license {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 12px;
	padding: 16px;
	display: block;
	text-decoration: none;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.db-about-license:hover {
	transform: translateY(-3px);
	border-color: #0039a6;
	box-shadow: 0 14px 30px -14px rgba(0, 57, 166, 0.22);
}
.db-about-license img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	background: #f7f9fc;
	border-radius: 8px;
}
.db-about-license-caption {
	margin-top: 12px;
	font-size: 13px;
	color: #5a6478;
	font-weight: 500;
	text-align: center;
}

.db-about-cta {
	padding: 56px 0;
}
.db-about-cta-inner {
	background: linear-gradient(135deg, #0039a6 0%, #1e4fb8 100%);
	border-radius: 20px;
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.db-about-cta-inner::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
	border-radius: 50%;
}
.db-about-cta-text {
	flex: 1;
	min-width: 280px;
	position: relative;
	z-index: 1;
}
.db-about-cta-text h2 {
	font-family: 'Inter', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 10px;
}
.db-about-cta-text p {
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
}
.db-about-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: #d52b1e;
	color: #ffffff;
	text-decoration: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.005em;
	box-shadow: 0 10px 26px rgba(213, 43, 30, 0.35);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}
.db-about-cta-btn:hover {
	background: #b32218;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(213, 43, 30, 0.45);
}
.db-about-cta-btn svg {
	width: 17px;
	height: 17px;
}

/* ============================================
   СТРАНИЦА "ДОСТАВКА И ОПЛАТА"
   ============================================ */

.db-delivery-hero {
	padding: 48px 0 40px;
	background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
	border-bottom: 1px solid #e4e8f0;
}
.db-delivery-hero-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-delivery-hero h1 {
	font-family: 'Inter', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 0 0 14px;
	max-width: 780px;
}
.db-delivery-hero p {
	font-size: 17px;
	line-height: 1.6;
	color: #5a6478;
	margin: 0;
	max-width: 780px;
}

.db-delivery-methods {
	padding: 56px 0;
}
.db-delivery-methods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.db-delivery-method {
	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-delivery-method::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #0039a6, #d52b1e);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease;
}
.db-delivery-method:hover {
	transform: translateY(-3px);
	border-color: #c0c8d8;
	box-shadow: 0 14px 30px -14px rgba(0, 57, 166, 0.2);
}
.db-delivery-method:hover::before { transform: scaleY(1); }
.db-delivery-method-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, #eef2fb 0%, #ffffff 100%);
	border: 1px solid #d0d6e2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0039a6;
	margin-bottom: 16px;
}
.db-delivery-method-icon svg {
	width: 24px;
	height: 24px;
}
.db-delivery-method h3 {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.015em;
	line-height: 1.25;
	margin: 0 0 10px;
}
.db-delivery-method p {
	font-size: 14px;
	line-height: 1.55;
	color: #5a6478;
	margin: 0 0 14px;
}
.db-delivery-method-price {
	display: inline-block;
	padding: 6px 12px;
	background: rgba(0, 57, 166, 0.08);
	color: #0039a6;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.005em;
}

.db-delivery-tariffs {
	padding: 56px 0;
	background: #f7f9fc;
}
.db-delivery-table-wrap {
	max-width: 900px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 32px -18px rgba(0, 57, 166, 0.15);
}
.db-delivery-table {
	width: 100%;
	border-collapse: collapse;
}
.db-delivery-table thead {
	background: linear-gradient(135deg, #0039a6 0%, #1e4fb8 100%);
}
.db-delivery-table th {
	padding: 16px 22px;
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #ffffff;
}
.db-delivery-table td {
	padding: 16px 22px;
	border-bottom: 1px solid #e4e8f0;
	font-size: 15px;
	color: #1a1d24;
	font-weight: 500;
}
.db-delivery-table tbody tr:last-child td {
	border-bottom: none;
}
.db-delivery-table tbody tr:hover {
	background: #f7f9fc;
}
.db-delivery-table td:first-child {
	font-weight: 600;
	color: #0a0e1a;
}
.db-delivery-table td:last-child {
	font-weight: 700;
	color: #0039a6;
	white-space: nowrap;
}

.db-delivery-payment {
	padding: 56px 0;
}
.db-delivery-payment-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.db-delivery-payment-card {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 14px;
	padding: 26px 24px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.db-delivery-payment-card:hover {
	transform: translateY(-3px);
	border-color: #c0c8d8;
	box-shadow: 0 14px 30px -14px rgba(0, 57, 166, 0.18);
}
.db-delivery-payment-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: rgba(0, 57, 166, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0039a6;
	margin-bottom: 16px;
}
.db-delivery-payment-icon svg {
	width: 24px;
	height: 24px;
}
.db-delivery-payment-card h3 {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.015em;
	line-height: 1.25;
	margin: 0 0 10px;
}
.db-delivery-payment-card p {
	font-size: 14px;
	line-height: 1.55;
	color: #5a6478;
	margin: 0;
}

.db-delivery-process {
	padding: 56px 0;
	background: #f7f9fc;
}
.db-delivery-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}
.db-delivery-step {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 14px;
	padding: 26px 24px;
	position: relative;
}
.db-delivery-step-num {
	font-family: 'Inter', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #0039a6;
	letter-spacing: -0.025em;
	line-height: 1;
	margin-bottom: 12px;
	opacity: 0.85;
}
.db-delivery-step h3 {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	font-weight: 800;
	color: #0a0e1a;
	letter-spacing: -0.012em;
	line-height: 1.25;
	margin: 0 0 8px;
}
.db-delivery-step p {
	font-size: 13.5px;
	line-height: 1.55;
	color: #5a6478;
	margin: 0;
}

.db-delivery-faq {
	padding: 56px 0;
}
.db-delivery-faq .db-faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ============================================
   АДАПТИВ
   ============================================ */

@media (max-width: 1100px) {
	.db-about-stats-grid,
	.db-delivery-methods-grid,
	.db-delivery-payment-grid,
	.db-delivery-process-grid,
	.db-about-licenses-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.db-about-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.db-about-hero-inner {
		grid-template-columns: 1fr;
	}
	.db-about-hero-years {
		justify-self: start;
	}
	.db-about-story-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 720px) {
	.db-about-container,
	.db-delivery-container { padding: 0 16px; }

	.db-about-hero { padding: 32px 0 28px; }
	.db-about-hero h1 { font-size: 30px; }
	.db-about-hero p { font-size: 15px; }
	.db-about-hero-years {
		padding: 18px 24px;
		min-width: 140px;
	}
	.db-about-hero-years-num { font-size: 56px; }

	.db-about-story { padding: 40px 0; }
	.db-about-story h2 { font-size: 24px; }
	.db-about-story-body { font-size: 15px; }

	.db-about-stats { padding: 30px 0; }
	.db-about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.db-about-stat { padding: 22px 16px; }
	.db-about-stat-num { font-size: 32px; }

	.db-about-values,
	.db-about-licenses { padding: 40px 0; }
	.db-about-section-title,
	.db-delivery-section-title,
	.db-about-section-head h2,
	.db-delivery-section-head h2 { font-size: 24px; margin-bottom: 22px; }
	.db-about-values-grid,
	.db-about-licenses-grid { grid-template-columns: 1fr; }
	.db-about-license img { height: 180px; }

	.db-about-cta { padding: 40px 0; }
	.db-about-cta-inner {
		padding: 30px 24px;
		flex-direction: column;
		text-align: center;
		align-items: stretch;
	}
	.db-about-cta-text h2 { font-size: 22px; }
	.db-about-cta-btn { justify-content: center; }

	.db-delivery-hero { padding: 32px 0 28px; }
	.db-delivery-hero h1 { font-size: 30px; }
	.db-delivery-hero p { font-size: 15px; }

	.db-delivery-methods,
	.db-delivery-tariffs,
	.db-delivery-payment,
	.db-delivery-process,
	.db-delivery-faq { padding: 40px 0; }

	.db-delivery-methods-grid,
	.db-delivery-payment-grid,
	.db-delivery-process-grid { grid-template-columns: 1fr; gap: 12px; }

	.db-delivery-method,
	.db-delivery-payment-card,
	.db-delivery-step { padding: 22px 20px; }

	.db-delivery-table th,
	.db-delivery-table td {
		padding: 12px 14px;
		font-size: 13.5px;
	}
	.db-delivery-table th { font-size: 11.5px; }
}
