:root {
	--dark: #0e1f3b;
	--dark-2: #08152d;
	--accent: #f97316;
	--text: #f2f5fc;
	--muted: #c0c9de;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Geologica, Inter, Arial, sans-serif;
	background: #071326;
	color: var(--text);
	overflow-x: hidden;
}

a {
	color: var(--text);
	text-decoration: none;
}

button,
input,
textarea {
	font-family: Geologica, Inter, Arial, sans-serif;
}

#app {
	min-height: 100vh;
}

.container {
	width: min(1260px, calc(100% - 48px));
	margin: 0 auto;
}

.page {
	overflow-x: hidden;
}

.hero {
	background: url("../img/portrait-engineers-work-hours-job-site 1.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	min-height: 760px;
	padding-top: 185px;
	padding-bottom: 77px;
}

.hero::after {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 36.47%, #0f172a 100%);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.topbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	background-color: #0f172a4d;
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #ffffff14;
}

.topbar-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	text-decoration: none;
}

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-text span:first-child {
	font-weight: 700;
	font-size: 15px;
	line-height: 19px;
	color: #ffffff;
}

.brand-text span:last-child {
	font-weight: 300;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 0.96px;
	color: #ffffff;
}

.menu {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
}

.menu-item a {
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #cbd5e1;
	padding: 8px;
}

.menu-item.active {
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	color: #fff;
	border-radius: 12px;
}

.topbar-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.topbar-mobile-actions {
	display: none;
	align-items: center;
	gap: 14px;
}

.topbar-call-btn {
	border: 0;
	padding: 10px 18px;
	border-radius: 16px;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 44px;
	border: 0;
	border-radius: 0;
	background: transparent;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	cursor: pointer;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 44px;
	height: 2.5px;
	background: #ffffff;
	border-radius: 2px;
}

.phone {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #cbd5e1;
}

.cta,
.ghost,
.wpcf7 .wpcf7-submit {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 18px;
	gap: 10px;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	border: 0;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.cta,
.wpcf7 .wpcf7-submit {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
	padding: 16px 27px;
}

.ghost {
	display: flex;
	align-items: center;
	gap: 7px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
	padding: 16px 27px;
	background: transparent;
	border: 1px solid #ffffff40;
}

.wpcf7 .wpcf7-submit {
	margin-top: 17px;
}

/*mobile menu*/

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 30;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.mobile-menu.open {
	visibility: visible;
	opacity: 1;
}

.mobile-menu-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.55);
}

.mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100%;
	background: #0f172a;
	background-size: cover;
	background-position: center;
	padding: 14px 18px 28px;
	display: flex;
	flex-direction: column;
	gap: 33px;
	transform: translateX(100%);
	transition: transform 0.25s ease;
}

.mobile-menu.open .mobile-menu-panel {
	transform: translateX(0);
}

.mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-mark {
	display: flex;
	align-items: center;
}

.brand-mark img {
	width: 58px;
	height: 36px;
	object-fit: contain;
}

.mobile-brand {
	gap: 12px;
}

.mobile-brand-mark {
	height: 48px;
}

.mobile-menu-head-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mobile-call-btn {
	border: 0;
	padding: 10px 18px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	cursor: pointer;
}

.mobile-call-btn path {
	stroke: #ffffff;
}

.mobile-menu-close {
	position: relative;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.mobile-menu-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
}

.mobile-menu-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;
	color: #cbd5e1;
	text-decoration: none;
}

.mobile-menu-nav {
	display: grid;
	gap: 6px;
	margin-top: 23px;
}

.mobile-menu-nav .menu-item {
	display: block;
	text-align: left;
	width: fit-content;
	padding: 16px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 36px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
}

.mobile-menu-nav .menu-item.active {
	color: #ffffff;
}

.mobile-menu-footer {
	margin-top: auto;
	display: grid;
	gap: 16px;
}

.mobile-menu-footer > p {
	margin: 0;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #ffffff;
}

.mobile-menu-footer a,
.mobile-menu-footer .mobile-menu-address {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-transform: capitalize;
	color: #64748b;
}

.mobile-menu-footer svg {
	flex-shrink: 0;
}

/*modals*/

.modal-root {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: none;
}

.modal-root.open {
	display: block;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: radial-gradient(66% 74% at 15% 8%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%), rgba(2, 6, 23, 0.72);
}

.modal-window {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(520px, calc(100% - 24px));
	padding: 32px;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(2, 6, 23, 0.28);
	overflow: hidden;
}

.modal-window::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
}

.modal-window.open {
	display: block;
}

.modal-close {
	padding: 0;
	position: absolute;
	top: 32px;
	right: 32px;
	border: 0;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.modal-close svg {
	display: block;
}

.modal-icone-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f973161a;
	border-radius: 16px;
	padding: 13px;
	width: fit-content;
}

.modal-icon-request {
	margin-top: 4px;
}

.modal-window h3 {
	margin: 10px 0 0;
	font-weight: 900;
	font-size: 22px;
	line-height: 1.25;
	color: #0f172a;
}

.modal-window p {
	margin: 10px 0 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #64748b;
}

.modal-form {
	margin-top: 24px;
	display: grid;
	gap: 17px;
}

.modal-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.modal-field {
	display: grid;
	gap: 8px;
}

.modal-field span,
.wpcf7 label {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #64748b;
}

.modal-field span b,
.wpcf7 label b {
	color: #f97316;
}

.modal-form input,
.modal-form textarea,
.modal-form select,
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 13px 14px;
	font-size: 14px;
	line-height: 20px;
	color: #0f172a;
	outline: none;
	margin-top: 8px;
}

.modal-form textarea {
	resize: vertical;
	min-height: 94px;
}

/*.modal-form select {
	appearance: none;
	background:
		linear-gradient(45deg, transparent 50%, #0f172a 50%) calc(100% - 20px) calc(50% - 3px) / 8px 8px
			no-repeat,
		linear-gradient(135deg, #0f172a 50%, transparent 50%) calc(100% - 14px) calc(50% - 3px) / 8px
			8px no-repeat,
		#fff;
}*/

.modal-submit {
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	font-size: 16px;
	line-height: 20px;
	border-radius: 16px;
}

.wpcf7-response-output {
	color: black;
}

.modal-window .modal-privacy {
	margin: 0;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	color: #94a3b8;
}

.modal-privacy a {
	color: #64748b;
	text-decoration: underline;
}

[data-modal="call"] h3 {
	font-size: 22px;
}

[data-modal="call"] p {
	font-size: 14px;
}

[data-modal="certificate"] {
	width: min(667px, calc(100% - 24px));
	padding: 0;
}

[data-modal="certificate"] .modal-close {
	position: relative;
	top: unset;
	right: unset;
}

.certificate-sheet {
	position: relative;
	background: #ffffff;
	overflow: hidden;
}

.certificate-meta {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.certificate-meta h4 {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	color: #0f172a;
}

.certificate-meta p {
	margin: 4px 0 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #64748b;
}

.certificate-download {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	white-space: nowrap;
}

.certificate-block {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* iframe-предпросмотр PDF заполняет «лист» модалки */
.certificate-frame {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 60vh;
	border: 0;
}

/* клик по иконке внутри кнопки PDF засчитываем самой ссылке, а не <svg>/<path> */
.dsg-reports__pdf svg {
	pointer-events: none;
}

body.menu-open,
body.modal-open {
	overflow: hidden;
}

.cta-small {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	padding: 10px 18px;
	text-align: center;
	color: #ffffff;
}

.hero-copy {
	max-width: 698px;
}

.hero-copy h1 {
	font-weight: 900;
	font-size: 72px;
	line-height: 78px;
	color: #ffffff;
	margin: 0;
	text-transform: none;
	margin-bottom: 20px;
}

.hero-copy h1 span {
	color: var(--accent);
}

.hero-copy p {
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
	margin: 0;
}

.hero-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 55px;
}

.stats {
	margin-top: 113px;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 159px;
}

.stats article {
	padding-right: 16px;
}

.stat-value {
	font-weight: 200;
	font-size: 64px;
	line-height: 80px;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
}

.stat-label {
	margin: 0;
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	color: #64748b;
}

.advantages {
	padding: 48px 0 72px;
	background: #0f172a;
}

.label {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 16px;
}

.label::before {
	content: "";
	width: 32px;
	height: 2px;
	background-color: var(--accent);
}

.advantages h2 {
	font-weight: 900;
	font-size: 42px;
	line-height: 50px;
	color: #ffffff;
	margin: 0;
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 95.67px;
	margin-top: 64px;
}

.card {
	min-height: 195px;
}

.card-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 16px;
	background-color: #f973161a;
}

.card h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
	margin: 0;
	margin-bottom: 16px;
}

.card p {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	color: #64748b;
}

.company {
	background: #ffffff;
	color: #0f172a;
	padding: 100px 0 76px;
}

.company-label {
	margin-bottom: 20px;
}

.company-title {
	font-weight: 700;
	font-size: 45px;
	line-height: 119%;
	letter-spacing: 0.02em;
	color: #0f172a;
	margin: 0;
}

.company-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.media-card {
	border-radius: 6px;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.media-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-card-large {
	width: 100%;
	min-height: 707px;
}

.company-story {
	display: flex;
	flex-direction: column;
}

.media-card-top {
	width: 100%;
	max-height: 325px;
	position: relative;
}

.media-card-top::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000033;
}

.media-card-top svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.company-story h3 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.company-story p {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.company-cta {
	width: fit-content;
	margin-top: 30px;
	line-height: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
}

.services {
	margin-top: 100px;
}

.services-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.services-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.02em;
	color: var(--accent);
}

.service-list {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.service-card h3 {
	margin: 0;
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 0.02em;
	text-transform: capitalize;
	color: #0f172a;
}

.service-image {
	min-height: 353px;
}

.service-image img {
	border-radius: 6px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-image-3 {
	background:
		radial-gradient(circle at 78% 25%, rgba(249, 115, 22, 0.65), transparent 26%), linear-gradient(120deg, #e2e8f0 0%, #cbd5e1 42%, #94a3b8 100%);
}

.service-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
}

.services-dots {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.services-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #d1d5db;
}

.services-dots span.active {
	background: #f97316;
}

.quote {
	padding: 158px 0 161px;
	background: url("../img/32ewqe5644g3t6345wqe22.png");
	background-size: cover;
	background-position: center;
}

.quote-inner {
	display: flex;
	gap: 45px;
	position: relative;
	z-index: 1;
	max-width: 1224px;
}

.quote-text {
	display: flex;
	gap: 46px;
	margin: 0;
	font-weight: 600;
	font-size: 45px;
	line-height: 70px;
	color: #ffffff;
}

.quote-mark {
	font-weight: 400;
	text-transform: uppercase;
	color: #f0a500;
}

.quote-author {
	margin: 37px 0 0;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 18px;
	line-height: 180%;
	color: #ffffff;
}

.quote-author span:first-child {
	font-weight: 600;
	color: #ffffff;
}

.quote-author span:first-child::after {
	content: "|";
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;
}

.quote-author span:last-child {
	color: #64748b;
}

.quote-dots {
	margin-top: 26px;
	display: flex;
	gap: 10px;
}

.quote-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #64748b;
}

.quote-dots span.active {
	background: #ffffff;
}

.project-cta {
	background: #f8fafc;
	padding: 90px 0;
}

.project-cta-inner {
	text-align: center;
}

.project-cta p {
	margin: 19px auto 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	color: #64748b;
}

.project-cta .project-label {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 26px;
	background: #f9731626;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--accent);
	text-transform: uppercase;
}

.project-cta h2 {
	margin: 33px auto 0;
	font-weight: 900;
	font-size: 48px;
	line-height: 60px;
	text-align: center;
	color: #0f172a;
}

.project-actions {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.project-actions .cta,
.project-actions .ghost {
	display: flex;
	align-items: center;
}

.project-call {
	background: #ffffff;
	border: 1px solid #f97316;
	color: #f97316;
}

.footer {
	background: linear-gradient(180deg, #0f172a 0%, #0f172a 100%);
	padding: 64px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 35px;
}

.footer-brand .brand-text span:first-child {
	font-weight: 700;
	font-size: 15px;
	line-height: 19px;
	color: #ffffff;
}

.footer-brand .brand-text span:last-child {
	font-weight: 300;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 0.96px;
	color: #64748b;
}

.footer-brand p {
	margin: 18px 0 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	color: #64748b;
	max-width: 280px;
}

.messengers-block {
	margin-top: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.messenger {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	color: #ffffff;
}

.messenger-instagram {
	background: radial-gradient(230.93% 230.93% at 102.01% 2.03%, #f9ed32 0%, #ee2a7b 36%, #d22a8a 44%, #8b2ab2 60%, #1b2af0 83%, #002aff 88%);
}

.messenger-facebook {
	background: #0b84ee;
}

.messenger-whatsapp {
	background: #48c95f;
}

.footer-col h4 {
	margin: 0 0 16px;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #ffffff;
}

.footer-col a,
.footer-col p {
	display: flex;
	align-items: center;
	gap: 13.25px;
	margin: 0 0 11px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #64748b;
	text-decoration: none;
}

.footer-bottom {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-bottom p {
	margin: 0;
	font-weight: 200;
	font-size: 12px;
	line-height: 16px;
	color: #334155;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 26px;
}

.footer-bottom-links a {
	text-decoration: none;
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #334155;
}

/*about page*/

.about-hero {
	padding: 110px 0 221px;
	min-height: 690px;
	display: flex;
	align-items: center;
	background: url("../img/portrait-engineers-work-hours-job-site 1 (1).png");
}

.about-hero .label {
	margin-bottom: 175px;
}

.about-hero h1 {
	max-width: 937px;
	margin: 0 auto;
	font-weight: 900;
	font-size: 60px;
	line-height: 66px;
	text-align: center;
	color: #ffffff;
}

.about-hero-text {
	max-width: 803px;
	margin: 20px auto 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 29px;
	text-align: center;
	color: #94a3b8;
}

.about-history {
	padding: 100px 0;
	background: #ffffff;
}

.about-history h2 {
	margin: 0;
	font-weight: 700;
	font-size: 45px;
	line-height: 119%;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.history-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.history-timeline {
	margin: 0;
	padding: 0;
	list-style: none;
}

.history-timeline li {
	display: grid;
	grid-template-columns: 36px 1fr;
	column-gap: 16px;
	position: relative;
	padding-bottom: 53px;
}

.history-timeline li::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 36px;
	bottom: 0;
	width: 1px;
	background: #e2e8f0;
}

.history-timeline li:last-child {
	padding-bottom: 0;
}

.history-timeline li:last-child::before {
	display: none;
}

.year-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #94a3b8;
	font-size: 12px;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.year-dot.active {
	background: #f97316;
	color: #ffffff;
}

.history-timeline p {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	color: #64748b;
}

.history-timeline .history-year {
	margin: 0 0 4px;
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	color: #f97316;
}

.history-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 30px;
}

.history-gallery img {
	width: 100%;
	height: 100%;
	min-height: 0;
	border-radius: 12px;
	object-fit: cover;
	display: block;
}

.history-gallery img:first-child {
	height: 547px;
}

.history-gallery img:nth-child(2) {
	height: 278px;
}

.history-gallery img:last-child {
	height: 237px;
}

.history-gallery-main {
	grid-row: 1 / span 2;
}

.about-values {
	padding: 100px 0;
	background: #f8fafc;
}

.about-values h2 {
	margin: 0;
	font-weight: 900;
	font-size: 42px;
	line-height: 50px;
	color: #0f172a;
}

.values-grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 95.67px;
}

.value-card {
	padding: 0 4px;
}

.value-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f973161a;
	color: #f97316;
	font-size: 16px;
	margin-bottom: 16px;
}

.value-card h3 {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #0f172a;
}

.value-card p {
	margin: 16px 0 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	color: #64748b;
}

.about-team {
	padding: 100px 0;
	background: #ffffff;
}

.about-team h2 {
	margin: 0;
	font-weight: 700;
	font-size: 45px;
	line-height: 119%;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.team-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.team-card {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
}

.team-photo {
	height: 290px;
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-info {
	padding: 20px;
}

.team-info h3 {
	margin: 0;
	font-weight: 700;
	font-size: 15px;
	line-height: 22px;
	color: #0f172a;
}

.team-info .role {
	margin: 4px 0 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #f97316;
}

.team-info .experience {
	margin: 8px 0 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #94a3b8;
}

.team-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.team-dots span {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #cbd5e1;
}

.team-dots .active {
	background: #f97316;
}

.about-clients {
	padding: 100px 0;
	background: #0f172a;
}

.clients-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
}

.about-clients h2 {
	margin: 0;
	font-weight: 900;
	font-size: 36px;
	line-height: 43px;
	color: #ffffff;
}

.clients-head > p {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #64748b;
}

.clients-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.clients-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.clients-list li {
	position: relative;
	min-height: 54px;
	display: flex;
	align-items: center;
	padding: 16px 20px 16px 44px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	color: #cbd5e1;
}

.clients-list li::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f97316;
}

.clients-note {
	margin: 60px 0 0;
	font-size: 14px;
	line-height: 20px;
	color: #475569;
}

/*services page*/

.services-hero {
	padding: 110px 0 86px;
	min-height: 367px;
	display: flex;
	align-items: center;
	background: url("../img/portrait-engineers-work-hours-job-site 1 (1).png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.services-hero .label {
	margin-bottom: 88px;
}

.services-hero h1 {
	max-width: 937px;
	margin: 0 auto;
	font-weight: 900;
	font-size: 60px;
	line-height: 66px;
	text-align: center;
	color: #ffffff;
}

.services-hero-text {
	max-width: 803px;
	margin: 20px auto 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 29px;
	text-align: center;
	color: #94a3b8;
}

.services-catalog {
	padding: 100px 0 152px;
	background: #ffffff;
}

.services-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.services-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.services-card-image {
	position: relative;
	height: 500px;
	border-radius: 12px;
	overflow: hidden;
}

.services-card-image::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 46%;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 77.1%);
	pointer-events: none;
}

.services-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-card h3 {
	margin: 0;
	position: absolute;
	left: 25px;
	right: 25px;
	bottom: 25px;
	z-index: 1;
	font-weight: 900;
	font-size: 20px;
	line-height: 26px;
	color: #ffffff;
}

.services-card p {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #64748b;
}

.services-card-actions {
	display: grid;
	gap: 12px;
}

.service-call {
	border: 1px solid #f97316;
	color: #f97316;
	background: #ffffff;
}

/* Full-bleed sections that center their own content regardless of theme container. */
.dsg-section {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}
.dsg-container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Shared eyebrow badge. */
.dsg-badge {
	display: flex;
	align-items: center;
	gap: 12px;
}
.dsg-badge__line {
	display: block;
	width: 32px;
	height: 2px;
	border-radius: 9999px;
	background: #f97316;
	flex: none;
}
.dsg-badge__text {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f97316;
}

/* ===== Block 1 — Hero =========================================== */
.dsg-hero {
	background: #0f172a;
}
.dsg-hero__inner {
	display: flex;
	align-items: center;
	gap: 64px;
	padding-top: 80px;
	padding-bottom: 80px;
}
.dsg-hero__content {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.dsg-hero__title {
	font-weight: 900;
	font-size: 60px;
	line-height: 66px;
	color: #ffffff;
}
.dsg-hero__lead {
	max-width: 560px;
	font-weight: 400;
	font-size: 18px;
	line-height: 28.8px;
	color: #94a3b8;
}
.dsg-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Buttons */
.dsg-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	border-radius: 16px;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	white-space: nowrap;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background-color 0.15s ease;
}
.dsg-btn svg {
	flex: none;
}
.dsg-btn--primary {
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	color: #ffffff;
	font-weight: 700;
}
.dsg-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px -6px rgba(249, 115, 22, 0.45);
	color: #fff;
}
.dsg-btn--outline {
	background: transparent;
	border: 1px solid #f97316;
	color: #f97316;
	font-weight: 600;
}
.dsg-btn--outline:hover {
	background: rgba(249, 115, 22, 0.08);
	color: #f97316;
}

/* Hero stats */
.dsg-hero__stats {
	display: flex;
	gap: 32px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dsg-stat__num {
	font-weight: 900;
	font-size: 28px;
	line-height: 42px;
	color: #f97316;
}
.dsg-stat__label {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #64748b;
}

/* Hero media */
.dsg-hero__media {
	position: relative;
	flex: none;
	width: 480px;
}
.dsg-hero__photo {
	position: relative;
	height: 560px;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.dsg-hero__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0) 100%);
}
.dsg-hero__card {
	position: absolute;
	left: -24px;
	top: 502px;
	width: 267px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.dsg-hero__card-icon {
	flex: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(249, 115, 22, 0.2);
}
.dsg-hero__card-title {
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
}
.dsg-hero__card-sub {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #64748b;
}

/* ===== Block 2 — Services ======================================= */
.dsg-services {
	background: #ffffff;
}
.dsg-services__inner {
	padding-top: 80px;
	padding-bottom: 80px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.dsg-section-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.dsg-section-title {
	margin-top: 16px;
	font-weight: 900;
	font-size: 44px;
	line-height: 55px;
	color: #0f172a;
}
.dsg-section-lead {
	margin-top: 20px;
	max-width: 680px;
	font-weight: 400;
	font-size: 18px;
	line-height: 29.25px;
	color: #64748b;
}

.dsg-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}
.dsg-card {
	padding: 28px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}
.dsg-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(249, 115, 22, 0.1);
}
.dsg-card__title {
	margin-top: 20px;
	font-weight: 700;
	font-size: 17px;
	line-height: 25.5px;
	color: #0f172a;
}
.dsg-card__text {
	margin-top: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 22.75px;
	color: #64748b;
}

/* ===== Block 3 — Work steps ===================================== */
.dsg-steps {
	background: #0f172a;
}
.dsg-steps__inner {
	padding-top: 100px;
	padding-bottom: 100px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.dsg-steps .dsg-section-head {
	align-items: center;
	text-align: center;
}
.dsg-steps .dsg-badge {
	justify-content: center;
}
.dsg-steps .dsg-section-title {
	margin-top: 16px;
	color: #ffffff;
	text-align: center;
}

.dsg-steps__track {
	position: relative;
}
.dsg-steps__line {
	position: absolute;
	top: 28px;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
}
.dsg-steps__items {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 16px;
}
.dsg-step {
	flex: 1 1 0;
	max-width: 192px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.dsg-step__num {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: linear-gradient(135deg, #f97316 0%, #ffa86b 100%);
	box-shadow:
		0px 4px 6px -4px rgba(249, 115, 22, 0.3),
		0px 10px 15px -3px rgba(249, 115, 22, 0.3);
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
}
.dsg-step__title {
	margin-top: 24px;
	font-weight: 700;
	font-size: 14px;
	line-height: 17.5px;
	color: #ffffff;
}
.dsg-step__text {
	margin-top: 8px;
	font-weight: 400;
	font-size: 12px;
	line-height: 19.5px;
	color: #64748b;
}

/* ===== Responsive =============================================== */
@media (max-width: 1024px) {
	.dsg-hero__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 48px;
	}
	.dsg-hero__media {
		width: 100%;
	}
	.dsg-hero__photo {
		height: 420px;
	}
	.dsg-hero__title {
		font-size: 44px;
		line-height: 50px;
	}
	.dsg-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.dsg-steps__line {
		display: none;
	}
	.dsg-steps__items {
		flex-wrap: wrap;
		row-gap: 48px;
	}
	.dsg-step {
		flex: 0 0 calc(33.333% - 16px);
	}
}
@media (max-width: 680px) {
	.dsg-hero__title {
		font-size: 34px;
		line-height: 40px;
	}
	.dsg-section-title {
		font-size: 32px;
		line-height: 40px;
	}
	.dsg-hero__stats {
		gap: 20px;
		flex-wrap: wrap;
	}
	.dsg-services__grid {
		grid-template-columns: 1fr;
	}
	.dsg-step {
		flex: 0 0 calc(50% - 16px);
	}
	.dsg-hero__card {
		left: 0;
	}
	.dsg-btn {
		flex: 1 1 auto;
		justify-content: center;
	}
}

/*documents page*/

.documents-hero {
	padding: 110px 0 86px;
	min-height: 367px;
	display: flex;
	align-items: center;
	background: url("../img/portrait-engineers-work-hours-job-site 1 (1).png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.documents-hero .label {
	margin-bottom: 88px;
}

.documents-hero h1 {
	margin: 0 auto;
	font-weight: 900;
	font-size: 60px;
	line-height: 66px;
	text-align: center;
	color: #ffffff;
}

.documents-hero-text {
	margin: 20px auto 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 29px;
	text-align: center;
	color: #94a3b8;
}

.documents-list {
	padding: 100px 0;
	background: #ffffff;
}

.documents-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.document-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
	padding: 16px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid #f1f5f9;
	box-shadow: 0 7px 24px rgba(15, 23, 42, 0.05);
}

.document-card h3 {
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
	color: #0f172a;
}

.document-card p {
	margin: 10px 0 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #64748b;
}

.document-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.document-year {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	color: #f97316;
}

.document-pdf {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #64748b;
}

/*contacts page*/

.contacts-hero {
	padding: 110px 0 86px;
	min-height: 367px;
	display: flex;
	align-items: center;
	background: url("../img/portrait-engineers-work-hours-job-site 1 (1).png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contacts-hero .label {
	margin-bottom: 88px;
}

.contacts-hero h1 {
	margin: 0 auto;
	font-weight: 900;
	font-size: 60px;
	line-height: 66px;
	text-align: center;
	color: #ffffff;
}

.contacts-hero-text {
	margin: 20px auto 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 29px;
	text-align: center;
	color: #94a3b8;
}

.contacts-content {
	padding: 100px 0 30px;
	background: #ffffff;
}

.contacts-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 35px;
}

.contacts-info h2 {
	margin: 0;
	font-weight: 900;
	font-size: 32px;
	line-height: 48px;
	color: #0f172a;
}

.contacts-cards {
	margin-top: 40px;
	display: grid;
	gap: 10px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #0f172a0f;
}

.contact-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #f97316;
	background: #f973161a;
}

.contact-title {
	margin: 0;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #94a3b8;
}

.contact-value {
	display: inline-block;
	margin-top: 3px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #0f172a;
}

.contact-note {
	margin: 4px 0 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #94a3b8;
}

.contacts-socials {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.social-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px;
	border-radius: 16px;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
}

.social-whatsapp {
	background: linear-gradient(90deg, #22c55e 0%, #34d399 100%);
}

.social-telegram {
	background: linear-gradient(90deg, #0ea5e9 0%, #3b82f6 100%);
}

.contacts-form-card {
	padding: 26px;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid #0f172a14;
	box-shadow: 0px 4px 40px 0px #0f172a0f;
}

.contacts-form-card h3 {
	margin: 0;
	font-weight: 900;
	font-size: 24px;
	line-height: 36px;
	color: #0f172a;
}

.contacts-form-card > p {
	margin: 20px 0 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #64748b;
}

.contacts-form {
	margin-top: 20px;
	display: grid;
	gap: 20px;
}

.contacts-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.contacts-field {
	display: grid;
	gap: 8px;
}

.contacts-field span {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #64748b;
}

.contacts-field input,
.contacts-field textarea {
	width: 100%;
	border: 1px solid #0f172a1a;
	border-radius: 16px;
	padding: 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: rgba(15, 23, 42, 0.5);
	outline: none;
	background: #f8fafc;
	transition: border-color 0.2s ease;
}

.contacts-field input:focus,
.contacts-field textarea:focus {
	border-color: #f97316;
}

.contacts-field textarea {
	resize: vertical;
	min-height: 96px;
}

.contacts-submit {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	border: none;
	border-radius: 16px;
	padding: 16px;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
}

.contacts-privacy {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #94a3b8;
}

.contacts-privacy a {
	color: #0f172a;
}

.contacts-map {
	padding: 0 0 100px;
	background: #ffffff;
}

.contacts-map-frame {
	height: 318px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.contacts-map-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 1080px) {
	.about-hero h1,
	.about-history h2 {
		font-size: 46px;
	}

	.history-grid {
		grid-template-columns: 1fr;
	}

	.history-gallery {
		height: 360px;
	}

	.about-values h2,
	.about-team h2 {
		font-size: 42px;
	}

	.values-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.clients-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.about-clients h2 {
		font-size: 42px;
	}

	.services-hero h1 {
		font-size: 46px;
		line-height: 1.14;
	}

	.services-cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.documents-hero h1 {
		font-size: 46px;
		line-height: 1.14;
	}

	.documents-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contacts-hero h1 {
		font-size: 46px;
		line-height: 1.14;
	}

	.contacts-grid {
		grid-template-columns: 1fr;
	}

	.contacts-form-card h3 {
		font-size: 34px;
		line-height: 1.18;
	}

	.clients-grid {
		grid-template-columns: 1fr;
	}

	.stats,
	.cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.company-title,
	.company-story h3 {
		font-size: 40px;
		line-height: 1.14;
	}

	.service-list {
		grid-template-columns: 1fr;
	}

	.service-card h3 {
		font-size: 24px;
		line-height: 1.24;
	}

	.quote-text,
	.project-cta h2 {
		font-size: 42px;
		line-height: 1.14;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom-links {
		flex-wrap: wrap;
		gap: 12px 22px;
	}
	.history-gallery img:first-child,
	.history-gallery img:nth-child(2),
	.history-gallery img:last-child {
		height: 100%;
	}
}

@media (max-width: 992px) {
	.topbar {
		padding: 10px 0;
	}

	.menu {
		display: none;
	}

	.topbar-actions {
		display: none;
	}

	.topbar-mobile-actions {
		display: flex;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.hero {
		padding-top: 150px;
	}

	.hero-copy h1 {
		font-size: 56px;
		line-height: 1.12;
	}

	.stats {
		margin-top: 72px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.about-hero {
		padding: 76px 0 62px;
		min-height: auto;
	}

	.about-hero h1,
	.about-history h2 {
		font-size: 34px;
	}

	.about-hero-text {
		font-size: 15px;
	}

	.about-history {
		padding: 60px 0;
	}

	.history-grid {
		margin-top: 34px;
		gap: 24px;
	}

	.history-gallery {
		height: 260px;
	}

	.about-values,
	.about-team {
		padding: 56px 0;
	}

	.about-values h2,
	.about-team h2 {
		font-size: 34px;
	}

	.values-grid,
	.team-grid {
		grid-template-columns: 1fr;
	}

	.team-photo {
		height: 220px;
	}

	.about-clients {
		padding: 56px 0 62px;
	}

	.about-clients h2 {
		font-size: 34px;
	}

	.services-hero {
		padding: 76px 0 62px;
		min-height: auto;
	}

	.services-hero h1 {
		font-size: 34px;
	}

	.services-hero-text {
		font-size: 15px;
	}

	.documents-hero {
		padding: 76px 0 62px;
		min-height: auto;
	}

	.documents-hero h1 {
		font-size: 34px;
	}

	.documents-hero-text {
		font-size: 15px;
	}

	.documents-grid {
		grid-template-columns: 1fr;
	}

	.contacts-hero {
		padding: 76px 0 62px;
		min-height: auto;
	}

	.contacts-hero h1 {
		font-size: 34px;
	}

	.contacts-hero-text {
		font-size: 15px;
	}

	.contacts-content {
		padding: 56px 0 28px;
	}

	.contacts-info h2 {
		font-size: 34px;
		line-height: 1.18;
	}

	.contact-value {
		font-size: 16px;
	}

	.contacts-socials {
		grid-template-columns: 1fr;
	}

	.contacts-form-card {
		padding: 20px;
	}

	.contacts-form-card h3 {
		font-size: 30px;
	}

	.contacts-form-row {
		grid-template-columns: 1fr;
	}

	.contacts-submit {
		font-size: 16px;
	}

	.contacts-map {
		padding-bottom: 62px;
	}

	.services-cards-grid {
		grid-template-columns: 1fr;
	}

	.mobile-menu-panel {
		width: 100vw;
		padding: 30px;
	}

	.mobile-menu-nav .menu-item {
		font-size: 30px;
	}

	.mobile-menu-footer > p {
		font-size: 12px;
	}

	.modal-window {
		padding: 22px 18px;
	}

	.modal-window h3 {
		font-size: 28px;
	}

	.modal-form-row {
		grid-template-columns: 1fr;
	}

	.modal-submit {
		font-size: 15px;
	}

	[data-modal="certificate"] {
		width: min(760px, calc(100% - 18px));
	}

	.certificate-sheet h3 {
		font-size: 36px;
	}

	.certificate-meta h4 {
		font-size: 24px;
	}

	.services-card h3 {
		font-size: 30px;
	}

	.container {
		width: min(1160px, calc(100% - 32px));
	}

	.hero {
		min-height: auto;
		padding-top: 104px;
		padding-bottom: 34px;
	}

	.hero-content {
		padding-top: 59px;
	}

	.hero-copy h1 {
		font-size: 32px;
		line-height: 1.15;
	}

	.hero-copy p {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
		margin-top: 30px;
	}

	.stats {
		margin-top: 52px;
		grid-template-columns: 1fr;
		gap: 16px;
		place-items: center;
	}

	.stat-value {
		font-size: 42px;
		text-align: center;
	}

	.advantages h2 {
		font-size: 32px;
	}

	.cards {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.company {
		padding: 52px 0 62px;
	}

	.company-title,
	.company-story h3 {
		font-size: 30px;
		line-height: 1.2;
	}

	.company-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.media-card-large {
		min-height: 330px;
	}

	.company-cta {
		width: 100%;
	}

	.media-card-top {
		min-height: 190px;
	}

	.services-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.service-image {
		min-height: 210px;
	}

	.quote {
		padding: 144px 0;
	}

	.quote-inner {
		flex-direction: column;
		gap: 20px;
	}

	.quote-text,
	.project-cta h2 {
		font-size: 30px;
		line-height: 1.2;
	}

	.quote-author {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.project-cta {
		padding: 54px 0;
	}

	.project-actions {
		flex-direction: column;
	}

	.project-actions .cta,
	.project-actions .ghost {
		width: 100%;
	}

	.footer {
		padding: 50px 0;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	[data-modal="certificate"] {
		padding: 12px;
	}

	.certificate-sheet {
		padding: 18px 14px 14px;
	}

	.certificate-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.certificate-meta h4 {
		font-size: 22px;
	}

	.footer-bottom {
		margin-top: 8px;
	}

	.footer-bottom-links {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ===== Hover states ===== */

/* Заполненные кнопки (оранжевая заливка) -> на ховере становятся «контурными» (без заливки) */
.cta,
.wpcf7 .wpcf7-submit,
.contacts-submit,
.certificate-download,
.topbar-call-btn,
.mobile-call-btn {
	transition:
		background 0.3s ease,
		color 0.3s ease,
		box-shadow 0.3s ease;
}

.cta:hover,
.wpcf7 .wpcf7-submit:hover,
.contacts-submit:hover,
.certificate-download:hover,
.topbar-call-btn:hover,
.mobile-call-btn:hover {
	background: transparent;
	color: var(--accent);
	box-shadow: inset 0 0 0 1.5px var(--accent);
}

/* Иконки внутри заполненных кнопок перекрашиваем в акцент, чтобы они не пропадали без заливки */
.cta:hover svg path,
.wpcf7 .wpcf7-submit:hover svg path,
.contacts-submit:hover svg path,
.certificate-download:hover svg path,
.topbar-call-btn:hover svg path,
.mobile-call-btn:hover path {
	stroke: var(--accent);
}

/* Контурная кнопка (.ghost) -> на ховере получает заливку */
.ghost {
	transition:
		background 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease;
}

.ghost:hover {
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	border-color: transparent;
	color: #ffffff;
}

/* .project-call: белая заливка + оранжевый контур -> на ховере оранжевая заливка + белый текст */
.project-call {
	transition:
		background 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease;
}

.project-call:hover {
	background: linear-gradient(90deg, #f97316 0%, #ffa86b 100%);
	border-color: transparent;
	color: #ffffff;
}

.project-call:hover svg path {
	stroke: #ffffff;
}

/* Соцкнопки (зелёная/синяя заливка) -> на ховере становятся контурными в фирменном цвете */
.social-btn {
	transition:
		background 0.3s ease,
		color 0.3s ease,
		box-shadow 0.3s ease;
}

.social-whatsapp:hover {
	color: #22c55e;
}

.social-telegram:hover {
	color: #0ea5e9;
}

.social-btn:hover {
	background: transparent;
	box-shadow: inset 0 0 0 1.5px currentColor;
}

.social-btn:hover svg path {
	fill: currentColor;
}

/* Навигация меню -> на ховере просто чуть темнее */
.menu-item a {
	transition: color 0.3s ease;
}

.menu-item:not(.active) a:hover {
	color: #94a3b8;
}

.mobile-menu-nav .menu-item {
	transition: color 0.3s ease;
}

.mobile-menu-nav .menu-item:not(.active):hover {
	color: #cbd5e1;
}

/* Ссылки в футере -> на ховере чуть темнее (как в навигации шапки) */
.footer-col a {
	transition: color 0.3s ease;
}

.footer-col a:hover {
	color: #475569;
}

.dsg-faq {
	/* Палитра секции (взята из макета node 215-2072) */
	--faq-orange: #f97316;
	--faq-orange-border: rgba(249, 115, 22, 0.4);
	--faq-dark: #0f172a;
	--faq-body: #64748b;
	--faq-answer: #475569;
	--faq-border: #e2e8f0;
	--faq-circle: #f1f5f9;

	font-family: Geologica, Inter, Arial, sans-serif;
	background: #fff;
	padding: 80px 0;
	color: var(--faq-dark);
}

.dsg-faq__inner {
	display: flex;
	align-items: flex-start;
	gap: 0;
	max-width: 1258px;
	margin: 0 auto;
}

/* ---- Left column: intro ----
   В макете колонки 584 + 674 = 1258 (ширина контейнера), без отступа:
   визуальный зазор даёт текст, не заполняющий левую колонку. */
.dsg-faq__intro {
	flex: 1 1 584px;
	max-width: 584px;
}

.dsg-faq__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dsg-faq__line {
	width: 32px;
	height: 2px;
	border-radius: 999px;
	background: var(--faq-orange);
}

.dsg-faq__eyebrow-text {
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--faq-orange);
}

.dsg-faq__title {
	margin: 16px 0 0;
	font-weight: 900;
	font-size: 44px;
	line-height: 55px;
	color: var(--faq-dark);
}

.dsg-faq__lead {
	margin: 30px 0 0;
	max-width: 459px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: var(--faq-body);
}

/* ---- Right column: accordion ---- */
.dsg-faq__list {
	flex: 1 1 674px;
	max-width: 674px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dsg-faq__item {
	border: 1px solid var(--faq-border);
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.dsg-faq__head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
	padding: 20px;
	border: 0;
	background: transparent;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.dsg-faq__q {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 22.5px;
	color: var(--faq-dark);
	transition: color 0.2s ease;
}

.dsg-faq__icon {
	flex: none;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--faq-circle);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease;
}

.dsg-faq__icon svg {
	width: 14px;
	height: 14px;
	display: block;
	transition: transform 0.25s ease;
}

.dsg-faq__icon svg path {
	stroke: #475569;
	transition: stroke 0.2s ease;
}

.dsg-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.dsg-faq__answer-inner {
	padding: 0 20px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 22.75px;
	color: var(--faq-answer);
}

/* ---- Open state ---- */
.dsg-faq__item.is-open {
	border-color: var(--faq-orange-border);
	box-shadow:
		0 2px 4px -2px rgba(0, 0, 0, 0.1),
		0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dsg-faq__item.is-open .dsg-faq__q {
	color: var(--faq-orange);
}

.dsg-faq__item.is-open .dsg-faq__icon {
	background: var(--faq-orange);
}

.dsg-faq__item.is-open .dsg-faq__icon svg {
	transform: rotate(180deg);
}

.dsg-faq__item.is-open .dsg-faq__icon svg path {
	stroke: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
	.dsg-faq__inner {
		flex-direction: column;
		gap: 32px;
		max-width: 674px;
	}

	.dsg-faq__intro,
	.dsg-faq__list {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.dsg-faq {
		padding: 56px 0;
	}

	.dsg-faq__title {
		font-size: 30px;
		line-height: 1.25;
	}
}

/* ============================================================
   Секция «Примеры отчётов» / портфолио (node 215-1935)
   ============================================================ */
.dsg-reports {
	--rep-orange: #f97316;
	--rep-dark: #0f172a;
	--rep-muted: #64748b;
	--rep-slate: #94a3b8;
	--rep-border: #e2e8f0;
	--rep-track: #f1f5f9;
	--rep-fill: #00c950;

	font-family: Geologica, Inter, Arial, sans-serif;
	background: #fff;
	padding: 80px 0;
	color: var(--rep-dark);
}

.dsg-reports__inner {
	max-width: 1256px;
	margin: 0 auto;
}

/* ---- Шапка ---- */
.dsg-reports__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dsg-reports__line {
	width: 32px;
	height: 2px;
	border-radius: 999px;
	background: var(--rep-orange);
}

.dsg-reports__eyebrow-text {
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rep-orange);
}

.dsg-reports__title {
	margin: 16px 0 0;
	font-weight: 900;
	font-size: 44px;
	line-height: 55px;
	color: var(--rep-dark);
}

/* ---- Сетка карточек ---- */
.dsg-reports__grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.dsg-reports__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--rep-border);
	border-radius: 16px;
	overflow: hidden;
}

/* ---- Медиа (фото + бейджи) ---- */
.dsg-reports__media {
	position: relative;
	height: 192px;
	flex: none;
}

.dsg-reports__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsg-reports__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}

.dsg-reports__cat,
.dsg-reports__status {
	position: absolute;
	z-index: 1;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	white-space: nowrap;
}

.dsg-reports__cat {
	left: 12px;
	bottom: 12px;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
}

.dsg-reports__status {
	top: 12px;
	right: 12px;
}

.dsg-reports__status--done {
	background: #dcfce7;
	color: #008236;
}

.dsg-reports__status--progress {
	background: #dbeafe;
	color: #1447e6;
}

/* ---- Тело карточки ---- */
.dsg-reports__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 20px;
}

.dsg-reports__name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--rep-dark);
}

.dsg-reports__type {
	margin: 4px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--rep-muted);
}

/* ---- Статистика ---- */
.dsg-reports__stats {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-top: 16px;
}

.dsg-reports__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: none;
}

.dsg-reports__stat-num {
	font-size: 20px;
	font-weight: 900;
	line-height: 28px;
}

.dsg-reports__stat-num--issues {
	color: var(--rep-orange);
}

.dsg-reports__stat-num--fixed {
	color: #00a63e;
}

.dsg-reports__stat-label,
.dsg-reports__progress-label {
	font-size: 11px;
	font-weight: 400;
	line-height: 16.5px;
	color: var(--rep-slate);
}

.dsg-reports__progress {
	flex: 1 1 auto;
	min-width: 0;
}

.dsg-reports__bar {
	margin-top: 8px;
	height: 6px;
	border-radius: 999px;
	background: var(--rep-track);
	overflow: hidden;
}

.dsg-reports__bar-fill {
	height: 100%;
	border-radius: 999px;
	background: var(--rep-fill);
}

.dsg-reports__progress-label {
	display: block;
	margin-top: 4px;
	text-align: center;
}

/* ---- Футер (объём работ + PDF) ---- */
.dsg-reports__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--rep-track);
}

.dsg-reports__scope {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: var(--rep-slate);
}

.dsg-reports__pdf {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 0;
	border-radius: 10px;
	background: rgba(249, 115, 22, 0.1);
	color: var(--rep-orange);
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.dsg-reports__pdf:hover {
	background: rgba(249, 115, 22, 0.18);
	color: var(--rep-orange);
}

.dsg-reports__pdf svg {
	display: block;
	width: 12px;
	height: 12px;
}

/* ---- Адаптив ---- */
@media (max-width: 991.98px) {
	.dsg-reports__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.dsg-reports__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-inline: auto;
	}
}

@media (max-width: 575.98px) {
	.dsg-reports {
		padding: 56px 0;
	}

	.dsg-reports__title {
		font-size: 30px;
		line-height: 1.25;
	}
}
