.db-order-form-wrap,
.db-order-form-wrap * {
	box-sizing: border-box;
}

.db-order-form-wrap {
	width: 100%;
	padding: 64px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
	scroll-margin-top: 20px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #1a1d24;
}

.db-order-form-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 32px;
}

.db-order-form-head {
	text-align: center;
	margin-bottom: 36px;
}
.db-order-form-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #d52b1e;
	background: rgba(213, 43, 30, 0.08);
	padding: 6px 14px;
	border-radius: 14px;
	margin-bottom: 14px;
}
.db-order-form-title {
	font-family: 'Inter', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #0a0e1a;
	letter-spacing: -0.018em;
	line-height: 1.18;
	margin: 0 0 12px;
}
.db-order-form-sub {
	font-size: 16px;
	line-height: 1.55;
	color: #5a6478;
	max-width: 580px;
	margin: 0 auto;
}

.db-form-message {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 22px;
	border-radius: 12px;
	margin-bottom: 28px;
	border: 1px solid;
}
.db-form-message-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.db-form-message-icon svg {
	width: 21px;
	height: 21px;
}
.db-form-message h3 {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.db-form-message p {
	font-size: 14.5px;
	line-height: 1.55;
	margin: 0;
	color: #5a6478;
}
.db-form-success {
	background: rgba(34, 139, 34, 0.06);
	border-color: rgba(34, 139, 34, 0.25);
}
.db-form-success .db-form-message-icon {
	background: rgba(34, 139, 34, 0.12);
	color: #228b22;
}
.db-form-success h3 { color: #1a6f1a; }
.db-form-error-msg {
	background: rgba(213, 43, 30, 0.06);
	border-color: rgba(213, 43, 30, 0.25);
}
.db-form-error-msg .db-form-message-icon {
	background: rgba(213, 43, 30, 0.12);
	color: #d52b1e;
}
.db-form-error-msg h3 { color: #b32218; }

.db-order-form-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 28px;
	align-items: start;
}

.db-order-form {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 8px 32px -16px rgba(0, 57, 166, 0.12);
	position: relative;
	overflow: hidden;
}
.db-order-form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0039a6, #d52b1e);
}

.db-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.db-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 16px;
}
.db-field-full { grid-column: 1 / -1; }

.db-form-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.db-form-field label {
	font-size: 14px;
	font-weight: 600;
	color: #1a1d24;
	display: flex;
	align-items: center;
	gap: 4px;
	letter-spacing: -0.005em;
}
.db-required {
	color: #d52b1e;
	font-weight: 700;
}

.db-form-field input[type="text"],
.db-form-field input[type="email"],
.db-form-field input[type="tel"],
.db-form-field input[type="number"],
.db-form-field textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #d0d6e2;
	border-radius: 10px;
	background: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #0a0e1a;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}
.db-form-field input::placeholder,
.db-form-field textarea::placeholder {
	color: #8a93a6;
	font-weight: 400;
}
.db-form-field input:hover,
.db-form-field textarea:hover {
	border-color: #a8b2c4;
}
.db-form-field input:focus,
.db-form-field textarea:focus {
	outline: none;
	border-color: #0039a6;
	box-shadow: 0 0 0 3px rgba(0, 57, 166, 0.12);
	background: #fbfcff;
}
.db-form-field textarea {
	resize: vertical;
	min-height: 90px;
	line-height: 1.55;
}

.db-form-field input[type="number"]::-webkit-outer-spin-button,
.db-form-field input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.db-form-field input[type="number"] {
	-moz-appearance: textfield;
}

.db-field-has-error input,
.db-field-has-error textarea {
	border-color: #d52b1e;
	background: rgba(213, 43, 30, 0.03);
}
.db-field-has-error input:focus,
.db-field-has-error textarea:focus {
	border-color: #d52b1e;
	box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.12);
}
.db-form-error {
	font-size: 13px;
	font-weight: 600;
	color: #d52b1e;
	margin-top: 2px;
}

.db-field-consent {
	margin-top: 6px;
}
.db-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	cursor: pointer;
	user-select: none;
}
.db-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.db-checkbox-box {
	width: 20px;
	height: 20px;
	border: 1.5px solid #a8b2c4;
	border-radius: 5px;
	background: #ffffff;
	flex-shrink: 0;
	position: relative;
	transition: border-color 0.2s ease, background 0.2s ease;
	margin-top: 1px;
}
.db-checkbox-box::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform 0.2s ease;
}
.db-checkbox-label input[type="checkbox"]:checked + .db-checkbox-box {
	background: #0039a6;
	border-color: #0039a6;
}
.db-checkbox-label input[type="checkbox"]:checked + .db-checkbox-box::after {
	transform: rotate(45deg) scale(1);
}
.db-checkbox-label:hover .db-checkbox-box {
	border-color: #0039a6;
}
.db-checkbox-text {
	font-size: 13.5px;
	line-height: 1.5;
	color: #5a6478;
	font-weight: 500;
}
.db-checkbox-text a {
	color: #0039a6;
	text-decoration: underline;
	font-weight: 600;
}
.db-checkbox-text a:hover {
	color: #d52b1e;
}
.db-field-consent.db-field-has-error .db-checkbox-box {
	border-color: #d52b1e;
}

.db-field-submit {
	margin-top: 8px;
}
.db-form-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 28px;
	background: #d52b1e;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(213, 43, 30, 0.3);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.db-form-btn:hover {
	background: #b32218;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(213, 43, 30, 0.38);
}
.db-form-btn:active {
	transform: translateY(0);
}
.db-form-btn svg {
	width: 17px;
	height: 17px;
}

.db-form-aside {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 20px;
}

.db-manager-card {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-radius: 16px;
	padding: 24px 22px 22px;
	text-align: center;
	box-shadow: 0 8px 32px -16px rgba(0, 57, 166, 0.12);
	position: relative;
	overflow: hidden;
}
.db-manager-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0039a6, #d52b1e);
}

.db-manager-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 8px auto 16px;
	background-image: url('/wp-content/uploads/2026/04/i.webp');
	background-size: cover;
	background-position: center;
	background-color: #eef2fb;
	border: 3px solid #ffffff;
	box-shadow: 0 6px 20px rgba(0, 57, 166, 0.18);
	position: relative;
}
.db-manager-status {
	position: absolute;
	right: 6px;
	bottom: 6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #22c55e;
	border: 3px solid #ffffff;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
	animation: dbPulseGreen 2s infinite;
}
@keyframes dbPulseGreen {
	0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
	70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.db-manager-name {
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0a0e1a;
	letter-spacing: -0.015em;
	line-height: 1.2;
	margin-bottom: 5px;
}
.db-manager-position {
	font-size: 13.5px;
	color: #5a6478;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 14px;
}
.db-manager-online {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #1a6f1a;
	background: rgba(34, 139, 34, 0.1);
	padding: 6px 12px;
	border-radius: 12px;
}
.db-manager-online::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22c55e;
}

.db-manager-phone {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 16px 20px;
	background: #0039a6;
	color: #ffffff;
	text-decoration: none;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(0, 57, 166, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.db-manager-phone:hover {
	background: #002b80;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 57, 166, 0.32);
}
.db-manager-phone-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.db-manager-phone-icon svg {
	width: 19px;
	height: 19px;
	color: #ffffff;
}
.db-manager-phone-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	min-width: 0;
}
.db-manager-phone-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 5px;
}
.db-manager-phone-number {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.db-manager-quick {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.db-manager-quick-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 10px;
	border-radius: 11px;
	color: #ffffff;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -0.005em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.db-manager-quick-btn:hover {
	color: #ffffff;
	transform: translateY(-2px);
}
.db-manager-quick-btn svg {
	width: 17px;
	height: 17px;
}
.db-quick-wa {
	background: #25d366;
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}
.db-quick-wa:hover {
	box-shadow: 0 10px 22px rgba(37, 211, 102, 0.38);
}
.db-quick-tg {
	background: #229ed9;
	box-shadow: 0 6px 16px rgba(34, 158, 217, 0.28);
}
.db-quick-tg:hover {
	box-shadow: 0 10px 22px rgba(34, 158, 217, 0.38);
}

.db-manager-email {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 16px;
	background: #ffffff;
	border: 1.5px solid #d0d6e2;
	border-radius: 11px;
	color: #0039a6;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.db-manager-email:hover {
	background: #f7f9fc;
	border-color: #0039a6;
	color: #0039a6;
}
.db-manager-email svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 900px) {
	.db-order-form-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.db-form-aside {
		position: static;
		order: -1;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 14px;
		align-items: stretch;
	}
	.db-manager-card {
		grid-row: 1 / 3;
		padding: 18px 16px;
	}
	.db-manager-photo {
		width: 96px;
		height: 96px;
		margin: 4px auto 12px;
	}
	.db-manager-name { font-size: 18px; }
	.db-manager-phone { padding: 13px 18px; }
	.db-manager-phone-number { font-size: 16px; }
	.db-manager-quick { grid-column: 2; }
}

@media (max-width: 720px) {
	.db-order-form-wrap { padding: 48px 0; }
	.db-order-form-inner { padding: 0 16px; }
	.db-order-form { padding: 22px 18px; }
	.db-order-form-head { margin-bottom: 26px; }
	.db-order-form-title { font-size: 26px; }
	.db-order-form-sub { font-size: 15px; }

	.db-form-aside {
		grid-template-columns: 1fr;
	}
	.db-manager-card { grid-row: auto; }
	.db-manager-quick { grid-column: auto; }

	.db-form-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.db-form-field input,
	.db-form-field textarea {
		padding: 13px 15px;
		font-size: 16px;
	}
	.db-form-message {
		padding: 16px 18px;
		gap: 13px;
	}
	.db-form-message h3 { font-size: 17px; }
	.db-form-message p { font-size: 13.5px; }
}
