/* ================= ДІМпульс — стилі теми ================= */

:root {
	--dp-red: #e30613;
	--dp-red-dark: #b3040f;
	--dp-gray: #58595b;
	--dp-gray-light: #6d6e71;
	--dp-navy: #0e2143;
	--dp-navy-2: #17386b;
	--dp-blue: #1f6fc0;
	--dp-orange: #f7941d;
	--dp-green: #33a852;
	--dp-cyan: #2e9bd6;
	--dp-light: #f4f6fa;
	--dp-ink: #1f2937;
	--dp-muted: #5b6472;
	--dp-line: #e3e8f0;
	--dp-radius: 16px;
	--dp-shadow: 0 18px 40px -22px rgba(14, 33, 67, .35);
	--dp-container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Montserrat", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--dp-ink);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.dp-container {
	width: 100%;
	max-width: var(--dp-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Кнопки ---------- */
.dp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .2px;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	cursor: pointer;
	border: 2px solid transparent;
}
.dp-btn--primary { background: var(--dp-red); color: #fff; box-shadow: 0 12px 24px -12px rgba(227, 6, 19, .7); }
.dp-btn--primary:hover { background: var(--dp-red-dark); transform: translateY(-2px); }
.dp-btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.dp-btn--ghost:hover { background: rgba(255, 255, 255, .12); }

/* ---------- Заголовки секцій ---------- */
.dp-heading {
	text-align: center;
	font-size: clamp(24px, 3.4vw, 36px);
	font-weight: 800;
	letter-spacing: .5px;
	color: var(--dp-navy);
	margin: 0 0 44px;
	text-transform: uppercase;
}
.dp-heading::after {
	content: "";
	display: block;
	width: 66px;
	height: 4px;
	border-radius: 4px;
	background: var(--dp-red);
	margin: 16px auto 0;
}
.dp-heading--light { color: #fff; }
.dp-heading--light::after { background: var(--dp-cyan); }

/* ---------- Header ---------- */
.dp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--dp-line);
}
.dp-header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.dp-header__logo { display: inline-flex; align-items: center; }
.dp-header__logo img { height: 50px; width: auto; max-width: 190px; display: block; }
.dp-header__nav { display: flex; gap: 26px; margin-left: auto; font-weight: 600; font-size: 15px; }
.dp-header__nav a { color: var(--dp-gray); transition: color .15s; }
.dp-header__nav a:hover { color: var(--dp-red); }
.dp-header__phone {
	font-weight: 800;
	color: var(--dp-navy);
	font-size: 16px;
	white-space: nowrap;
}
.dp-header__phone:hover { color: var(--dp-red); }
.dp-header__cabinet {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--dp-red);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 20px;
	border-radius: 10px;
	white-space: nowrap;
	box-shadow: 0 10px 20px -12px rgba(227, 6, 19, .8);
	transition: background .15s ease, transform .15s ease;
}
.dp-header__cabinet:hover { background: var(--dp-red-dark); color: #fff; transform: translateY(-1px); }
.dp-header__cabinet svg { width: 18px; height: 18px; flex: none; }
.dp-burger { display: none; }

/* ---------- Hero ---------- */
.dp-hero {
	position: relative;
	color: #fff;
	background:
		radial-gradient(1200px 500px at 80% -10%, rgba(31, 111, 192, .45), transparent 60%),
		linear-gradient(135deg, #0b1c3a 0%, #123061 55%, #17386b 100%);
	overflow: hidden;
}
.dp-hero--image::before {
	content: "";
	position: absolute; inset: 0;
	background-image: var(--dp-hero-bg);
	background-size: cover;
	background-position: center;
	opacity: .28;
	z-index: 0;
}
.dp-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 40px;
	padding: clamp(64px, 9vw, 104px) 24px clamp(96px, 12vw, 150px);
}
.dp-hero__title {
	font-size: clamp(30px, 4.4vw, 52px);
	font-weight: 900;
	line-height: 1.06;
	letter-spacing: .5px;
	margin: 0;
	text-transform: uppercase;
}
.dp-hero__subtitle {
	font-size: clamp(18px, 2.6vw, 26px);
	font-weight: 700;
	color: var(--dp-cyan);
	margin: 14px 0 0;
}
.dp-hero__tagline {
	font-size: clamp(15px, 2vw, 19px);
	color: rgba(255, 255, 255, .85);
	margin: 22px 0 0;
	max-width: 520px;
}
.dp-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 36px;
}
.dp-hero__media {
	position: relative;
	z-index: 1;
}
.dp-hero__media img {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35));
	animation: dp-float 3s ease-in-out infinite;
}
@keyframes dp-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}
.dp-hero__skyline {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 120px;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	z-index: 0;
	pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
	.dp-hero__media img { animation: none; }
}

/* ---------- Секції ---------- */
.dp-section { padding: clamp(56px, 8vw, 90px) 0; }
.dp-section--light { background: var(--dp-light); }
.dp-section--dark {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0e2143 0%, #17386b 100%);
	color: #fff;
}
.dp-section--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url(../img/circuit-pattern.svg);
	background-size: 240px;
	background-position: center;
	opacity: .1;
	z-index: 0;
	pointer-events: none;
}
.dp-section--dark > .dp-container { position: relative; z-index: 1; }

/* ---------- Картки / колонки ---------- */
.dp-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.dp-threecol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.dp-card {
	background: #fff;
	border-radius: var(--dp-radius);
	padding: 38px 34px;
	box-shadow: var(--dp-shadow);
}
.dp-card--bordered { border-top: 4px solid var(--dp-red); }
.dp-card__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--dp-navy);
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: .3px;
}
.dp-card__title--sm { font-size: 18px; }
.dp-card__subtitle { font-weight: 700; color: var(--dp-blue); margin: 18px 0 12px; }
.dp-card__text { color: var(--dp-muted); margin: 0; }

/* ---------- Списки ---------- */
.dp-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dp-list li { position: relative; padding-left: 30px; color: var(--dp-ink); }
.dp-list--check li::before {
	content: "";
	position: absolute; left: 0; top: 4px;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--dp-red);
	box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--dp-red);
}
.dp-list--check li::after {
	content: "";
	position: absolute; left: 6px; top: 8px;
	width: 6px; height: 3px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}
.dp-list--dash li::before {
	content: "";
	position: absolute; left: 0; top: 12px;
	width: 12px; height: 3px; border-radius: 3px;
	background: currentColor;
	opacity: .55;
}
.dp-list--building li { padding-left: 34px; font-weight: 600; }
.dp-list--building li::before {
	content: "";
	position: absolute; left: 0; top: 2px;
	width: 20px; height: 20px;
	background: var(--dp-blue);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 21V6l7-3v4l7-3v17h-4v-4h-3v4H3Z'/></svg>") center/contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 21V6l7-3v4l7-3v17h-4v-4h-3v4H3Z'/></svg>") center/contain no-repeat;
}

/* ---------- Функціональні можливості (рядки 50/50) ---------- */
.dp-features { display: grid; gap: 34px; }
.dp-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--dp-line);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 22px 46px -30px rgba(14, 33, 67, .4);
	transition: transform .2s ease, box-shadow .2s ease;
}
.dp-feature:hover { transform: translateY(-4px); box-shadow: var(--dp-shadow); }
.dp-feature__media { position: relative; min-height: 330px; overflow: hidden; }
.dp-feature__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.dp-feature:hover .dp-feature__media img { transform: scale(1.04); }
.dp-feature--reverse .dp-feature__media { order: 2; }
.dp-feature__body {
	padding: clamp(30px, 4vw, 50px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.dp-feature__ico {
	width: 64px; height: 64px;
	border-radius: 16px;
	display: grid; place-items: center;
	color: #fff;
	margin-bottom: 22px;
	box-shadow: 0 14px 26px -14px currentColor;
}
.dp-feature__ico svg { width: 34px; height: 34px; }
.dp-ico--orange { background: linear-gradient(135deg, #f7941d, #f36f21); }
.dp-ico--green { background: linear-gradient(135deg, #37b34a, #1f9d57); }
.dp-ico--blue { background: linear-gradient(135deg, #2e9bd6, #1f6fc0); }
.dp-feature__title { font-size: clamp(18px, 2vw, 23px); font-weight: 800; color: var(--dp-navy); margin: 0 0 18px; text-transform: uppercase; line-height: 1.2; }
.dp-feature__body .dp-list { color: var(--dp-muted); font-size: 16px; gap: 12px; }

/* ---------- Додаткові послуги ---------- */
.dp-services { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.dp-service {
	background: #fff;
	border: 1px solid var(--dp-line);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 22px 46px -30px rgba(14, 33, 67, .4);
	transition: transform .2s ease, box-shadow .2s ease;
}
.dp-service:hover { transform: translateY(-5px); box-shadow: var(--dp-shadow); }
.dp-service__media { aspect-ratio: 16 / 9; overflow: hidden; }
.dp-service__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dp-service:hover .dp-service__media img { transform: scale(1.05); }
.dp-service__body { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; flex: 1; position: relative; }
.dp-service__ico {
	width: 62px; height: 62px;
	border-radius: 16px;
	display: grid; place-items: center;
	color: #fff;
	margin: -58px 0 20px;
	position: relative; z-index: 2;
	box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .45);
}
.dp-service__ico svg { width: 32px; height: 32px; }
.dp-service__title { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; color: var(--dp-navy); margin: 0 0 12px; text-transform: uppercase; line-height: 1.2; }
.dp-service__text { color: var(--dp-muted); margin: 0 0 18px; }
.dp-service__body .dp-list { margin-bottom: 26px; }
.dp-service__btn { margin-top: auto; align-self: flex-start; }

/* ---------- Архітектура ---------- */
.dp-arch {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}
.dp-arch__step {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 8px;
}
.dp-arch__step:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 27px;
	right: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, rgba(95, 208, 255, .2), rgba(95, 208, 255, .6));
	z-index: 0;
}
.dp-arch__num {
	position: relative;
	z-index: 1;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: var(--dp-red);
	box-shadow: 0 0 0 6px rgba(227, 6, 19, .18);
	display: grid; place-items: center;
	font-weight: 800;
	font-size: 20px;
	color: #fff;
}
.dp-arch__label {
	margin-top: 16px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.35;
	color: rgba(255, 255, 255, .92);
	max-width: 170px;
}

/* ---------- Переваги ---------- */
.dp-advantages {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.dp-advantage {
	background: #fff;
	border-radius: var(--dp-radius);
	padding: 30px 26px;
	text-align: center;
	box-shadow: var(--dp-shadow);
	transition: transform .18s ease;
}
.dp-advantage:hover { transform: translateY(-5px); }
.dp-advantage__ico {
	width: 70px; height: 70px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: grid; place-items: center;
	background: linear-gradient(135deg, #eaf1fb, #d7e6f8);
	color: var(--dp-blue);
}
.dp-advantage__ico svg { width: 36px; height: 36px; }
.dp-advantage:nth-child(3n+1) .dp-advantage__ico { color: var(--dp-red); background: linear-gradient(135deg, #fde7e8, #fbd3d5); }
.dp-advantage:nth-child(3n+3) .dp-advantage__ico { color: var(--dp-green); background: linear-gradient(135deg, #e3f5e8, #cdebd6); }
.dp-advantage__text { font-weight: 600; color: var(--dp-ink); margin: 0; }

/* ---------- Showcase (віддалений доступ) ---------- */
.dp-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
}
.dp-showcase__media img { width: 100%; filter: drop-shadow(0 26px 44px rgba(14, 33, 67, .28)); }
.dp-showcase__badge {
	display: inline-block;
	background: rgba(46, 155, 214, .12);
	color: var(--dp-blue);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .4px;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 30px;
	margin-bottom: 16px;
}
.dp-showcase__title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	color: var(--dp-navy);
	margin: 0 0 16px;
	line-height: 1.2;
}
.dp-showcase__desc { color: var(--dp-muted); margin: 0 0 22px; font-size: 17px; }

/* ---------- Footer ---------- */
.dp-footer {
	background: linear-gradient(135deg, #0b1c3a 0%, #15305d 100%);
	color: #fff;
}
.dp-footer__cta {
	text-align: center;
	font-size: clamp(18px, 3vw, 30px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .4px;
	padding: 46px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	background: var(--dp-red);
}
.dp-footer__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	padding: 50px 0;
}
.dp-footer__logo { height: 60px; width: auto; max-width: 220px; margin-bottom: 14px; display: block; }
.dp-footer__slogan { color: rgba(255, 255, 255, .7); margin: 0; max-width: 340px; }
.dp-footer__contacts { display: grid; gap: 14px; }
.dp-footer__contact { display: flex; align-items: center; gap: 12px; font-weight: 600; transition: color .15s; }
.dp-footer__contact:hover { color: var(--dp-cyan); }
.dp-footer__ico {
	width: 40px; height: 40px; flex: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, .1);
	display: grid; place-items: center;
	color: var(--dp-cyan);
}
.dp-footer__ico svg { width: 22px; height: 22px; }
.dp-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 20px 0;
	font-size: 13px;
	color: rgba(255, 255, 255, .55);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.dp-footer__policy { color: rgba(255, 255, 255, .72); text-decoration: underline; }
.dp-footer__policy:hover { color: var(--dp-cyan); }

/* ---------- Блог ---------- */
.dp-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.dp-pcard {
	background: #fff;
	border: 1px solid var(--dp-line);
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 18px 40px -30px rgba(14, 33, 67, .4);
	transition: transform .18s ease, box-shadow .18s ease;
}
.dp-pcard:hover { transform: translateY(-5px); box-shadow: var(--dp-shadow); }
.dp-pcard__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.dp-pcard__imglink { display: block; width: 100%; height: 100%; }
.dp-pcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dp-pcard:hover .dp-pcard__media img { transform: scale(1.05); }
.dp-pcard__cat {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	background: var(--dp-red); color: #fff;
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
	padding: 6px 13px; border-radius: 20px;
	box-shadow: 0 6px 14px -6px rgba(227, 6, 19, .7);
	transition: background .15s ease;
}
.dp-pcard__cat:hover { background: var(--dp-red-dark); color: #fff; }
.dp-archive__kicker { text-align: center; color: var(--dp-blue); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 6px; font-size: 14px; }
.dp-pcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.dp-pcard__date { font-size: 13px; color: var(--dp-blue); font-weight: 600; }
.dp-pcard__title { font-size: 19px; font-weight: 800; color: var(--dp-navy); margin: 8px 0 10px; line-height: 1.3; }
.dp-pcard__title a:hover { color: var(--dp-red); }
.dp-pcard__excerpt { color: var(--dp-muted); font-size: 15px; margin: 0 0 16px; flex: 1; }
.dp-pcard__more { color: var(--dp-red); font-weight: 700; font-size: 14px; margin-top: auto; }
.dp-pcard__more:hover { color: var(--dp-red-dark); }
.dp-posts__all { text-align: center; margin-top: 44px; }

.dp-pagination { margin-top: 40px; }
.dp-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.dp-pagination a, .dp-pagination span {
	display: inline-grid; place-items: center;
	min-width: 44px; height: 44px; padding: 0 12px;
	border-radius: 10px; border: 1px solid var(--dp-line);
	background: #fff; color: var(--dp-navy); font-weight: 700;
}
.dp-pagination .current { background: var(--dp-red); color: #fff; border-color: var(--dp-red); }
.dp-pagination a:hover { border-color: var(--dp-red); color: var(--dp-red); }

.dp-single { max-width: 820px; margin: 0 auto; }
.dp-single__back { color: var(--dp-blue); font-weight: 600; display: inline-block; margin-bottom: 20px; }
.dp-single__back:hover { color: var(--dp-red); }
.dp-single__date { color: var(--dp-blue); font-weight: 600; font-size: 14px; }
.dp-single__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: var(--dp-navy); line-height: 1.15; margin: 8px 0 24px; }
.dp-single__cover { border-radius: 18px; overflow: hidden; margin-bottom: 30px; aspect-ratio: 16 / 9; }
.dp-single__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dp-single__cta { margin-top: 34px; }

/* ---------- Кнопка «нагору» ---------- */
.dp-totop {
	position: fixed;
	right: 24px; bottom: 24px;
	z-index: 60;
	width: 50px; height: 50px;
	border: none;
	border-radius: 50%;
	background: var(--dp-red);
	color: #fff;
	cursor: pointer;
	display: grid; place-items: center;
	box-shadow: 0 12px 26px -8px rgba(227, 6, 19, .6);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity .25s ease, transform .25s ease, background .15s ease, visibility .25s;
}
.dp-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.dp-totop:hover { background: var(--dp-red-dark); transform: translateY(-3px); }
.dp-totop svg { width: 24px; height: 24px; }
@media (max-width: 560px) {
	.dp-totop { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

/* ---------- Пости/сторінки ---------- */
.dp-post { max-width: 820px; margin: 0 auto; }
.dp-post__title {
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 800;
	color: var(--dp-navy);
	line-height: 1.15;
	margin: 0 0 12px;
}
.dp-post__title::after {
	content: "";
	display: block;
	width: 64px; height: 4px;
	border-radius: 4px;
	background: var(--dp-red);
	margin: 18px 0 0;
}
.dp-post__content { color: var(--dp-ink); font-size: 16px; margin-top: 34px; }
.dp-post__content h2 {
	font-size: clamp(19px, 2.2vw, 24px);
	font-weight: 800;
	color: var(--dp-navy);
	margin: 34px 0 12px;
}
.dp-post__content h3 { font-size: 18px; font-weight: 700; color: var(--dp-navy); margin: 24px 0 10px; }
.dp-post__content p { margin: 0 0 14px; color: var(--dp-muted); }
.dp-post__content ul { margin: 0 0 16px; padding-left: 22px; color: var(--dp-muted); }
.dp-post__content li { margin-bottom: 8px; }
.dp-post__content a { color: var(--dp-blue); text-decoration: underline; }
.dp-post__content a:hover { color: var(--dp-red); }
.dp-post__content strong { color: var(--dp-ink); }

/* ================= Адаптив ================= */
@media (max-width: 900px) {
	.dp-twocol, .dp-threecol, .dp-features, .dp-advantages { grid-template-columns: 1fr; }
	.dp-hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: clamp(110px, 22vw, 160px); }
	.dp-hero__tagline { margin-left: auto; margin-right: auto; }
	.dp-hero__actions { justify-content: center; }
	.dp-hero__media { order: -1; }
	.dp-hero__media img { max-width: 360px; }
	.dp-showcase { grid-template-columns: 1fr; gap: 30px; }
	.dp-showcase__media { max-width: 460px; margin: 0 auto; }
	.dp-feature { grid-template-columns: 1fr; }
	.dp-services { grid-template-columns: 1fr; }
	.dp-feature--reverse .dp-feature__media { order: 0; }
	.dp-feature__media { min-height: 220px; }
	.dp-header__nav { display: none; }
	.dp-header__nav.is-open {
		display: flex;
		position: absolute;
		top: 76px; left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		background: #fff;
		border-bottom: 1px solid var(--dp-line);
		padding: 8px 24px 16px;
	}
	.dp-header__nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--dp-line); }
	.dp-header__logo { margin-right: auto; }
	.dp-header__cabinet { padding: 11px; }
	.dp-header__cabinet span { display: none; }
	.dp-burger {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 44px; height: 44px;
		background: none; border: none; cursor: pointer;
	}
	.dp-burger span { width: 24px; height: 2px; background: var(--dp-navy); margin: 0 auto; border-radius: 2px; transition: .2s; }
	.dp-arch__step { min-width: 100%; }
	.dp-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	.dp-arch { flex-direction: column; align-items: stretch; max-width: 340px; }
	.dp-arch__step { flex-direction: row; align-items: center; gap: 18px; text-align: left; padding: 12px 0; }
	.dp-arch__step:not(:first-child)::before {
		top: -50%;
		left: 27px;
		right: auto;
		width: 3px;
		height: 100%;
		background: linear-gradient(180deg, rgba(95, 208, 255, .2), rgba(95, 208, 255, .6));
	}
	.dp-arch__label { margin-top: 0; max-width: none; font-size: 16px; }
}

@media (max-width: 560px) {
	.dp-card { padding: 28px 22px; }
	.dp-hero__actions { flex-direction: column; }
	.dp-hero__actions .dp-btn { width: 100%; }
}
