.digimode-ae-page #header,
.digimode-ae-page #footer,
.digimode-ae-page .page-top,
.digimode-ae-page .breadcrumbs-wrap,
.digimode-ae-page .porto-block,
.digimode-ae-page .porto-sticky-navbar {
	display: none !important;
}

.digimode-ae-page #main,
.digimode-ae-page #content,
.digimode-ae-page .main-content,
.digimode-ae-page .page-content,
.digimode-ae-page .entry-content,
.digimode-ae-page .container {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.digimode-ae-page .row,
.digimode-ae-page .main-content-wrap,
.digimode-ae-page article.page,
.digimode-ae-page .post-content,
.digimode-ae-page .dm-site {
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

.digimode-ae-page .sidebar,
.digimode-ae-page .porto-blog-sidebar {
	display: none !important;
}

.digimode-ae-page {
	--dm-green: #11b861;
	--dm-green-dark: #147402;
	--dm-green-soft: #e8f7ef;
	--dm-ink: #15201d;
	--dm-graphite: #24312e;
	--dm-muted: #64706b;
	--dm-line: #dfe8e2;
	--dm-soft: #f5f8f6;
	--dm-white: #ffffff;
	--dm-steel: #edf2f4;
	--dm-shadow: 0 18px 48px rgba(21, 32, 29, 0.1);
	background: var(--dm-white);
	color: var(--dm-ink);
}

.dm-site,
.dm-site * {
	box-sizing: border-box;
}

.dm-site {
	min-height: 100vh;
	background: var(--dm-white);
	color: var(--dm-ink);
	font-family: Inter, Arial, Helvetica, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

.dm-site a {
	color: inherit;
	text-decoration: none;
}

.dm-shell {
	width: min(1210px, calc(100% - 48px));
	margin: 0 auto;
}

.dm-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(21, 32, 29, 0.08);
	box-shadow: 0 10px 30px rgba(21, 32, 29, 0.04);
	backdrop-filter: blur(14px);
}

.dm-header-inner {
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.dm-brand,
.dm-footer-logo {
	display: inline-flex;
	align-items: center;
	min-width: 150px;
}

.dm-logo-img {
	display: block;
	width: 156px;
	max-width: 100%;
	height: auto;
}

.dm-logo-text {
	font-size: 28px;
	font-weight: 800;
	color: var(--dm-ink);
}

.dm-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	font-size: 15px;
	font-weight: 800;
	color: var(--dm-graphite);
}

.dm-nav a {
	padding: 28px 0;
	border-bottom: 2px solid transparent;
}

.dm-nav a:hover {
	color: var(--dm-green-dark);
	border-bottom-color: var(--dm-green);
}

.dm-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.dm-lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	color: var(--dm-muted);
}

.dm-lang-switch a[aria-current="page"] {
	color: var(--dm-green-dark);
}

.dm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dm-btn:hover {
	transform: translateY(-1px);
}

.dm-btn-primary {
	background: #0b7f22;
	color: var(--dm-white) !important;
	box-shadow: 0 12px 24px rgba(20, 116, 2, 0.18);
}

.dm-btn-primary:hover {
	background: #0f6420;
}

.dm-btn-secondary {
	background: var(--dm-white);
	border-color: var(--dm-line);
	color: var(--dm-ink) !important;
}

.dm-btn-secondary:hover {
	border-color: var(--dm-green);
	color: var(--dm-green-dark) !important;
}

.dm-btn-small {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 14px;
}

.dm-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--dm-line);
	border-radius: 6px;
	background: var(--dm-white);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.dm-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--dm-ink);
}

.dm-mobile-menu {
	display: none;
	position: fixed;
	top: 78px;
	left: 0;
	right: 0;
	padding: 20px 24px 24px;
	background: var(--dm-white);
	border-bottom: 1px solid var(--dm-line);
	box-shadow: 0 20px 40px rgba(21, 32, 29, 0.12);
}

.dm-mobile-menu a {
	display: block;
	padding: 12px 0;
	font-weight: 800;
	color: var(--dm-graphite);
}

.dm-mobile-menu.is-open {
	display: block;
}

.dm-mobile-cta {
	margin-top: 8px;
	padding: 12px 16px !important;
	border-radius: 6px;
	background: var(--dm-green-dark);
	color: var(--dm-white) !important;
	text-align: center;
}

.dm-hero {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.9)),
		repeating-linear-gradient(90deg, rgba(21, 32, 29, 0.04) 0 1px, transparent 1px 96px),
		var(--dm-soft);
	border-bottom: 1px solid var(--dm-line);
	padding: 64px 0;
}

.dm-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
	gap: 66px;
	align-items: center;
}

.dm-eyebrow,
.dm-section-label {
	margin: 0 0 16px;
	color: var(--dm-green-dark);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dm-hero h1,
.dm-section h2,
.dm-contact-section h2 {
	margin: 0;
	color: var(--dm-ink);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.06;
}

.dm-hero h1 {
	max-width: 610px;
	font-size: 54px;
}

.dm-lead {
	max-width: 590px;
	margin: 24px 0 0;
	color: var(--dm-muted);
	font-size: 19px;
	font-weight: 500;
}

.dm-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.dm-partner {
	display: grid;
	grid-template-columns: auto 160px;
	align-items: center;
	gap: 6px 14px;
	max-width: 450px;
	margin-top: 36px;
	padding: 18px;
	border: 1px solid var(--dm-line);
	border-left: 4px solid var(--dm-green);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 14px 36px rgba(21, 32, 29, 0.06);
	color: var(--dm-muted);
	font-size: 13px;
	font-weight: 700;
}

.dm-partner small {
	grid-column: 1 / -1;
	font-size: 12px;
	color: var(--dm-muted);
}

.dm-partner-logo {
	display: block;
	width: 150px;
	height: auto;
}

.dm-hero-media {
	position: relative;
	margin: 0;
	min-width: 0;
}

.dm-hero-media::before {
	content: "";
	position: absolute;
	top: -18px;
	right: -18px;
	width: 44%;
	height: 44%;
	border-top: 4px solid var(--dm-green);
	border-right: 4px solid var(--dm-green);
	border-radius: 8px;
	opacity: 0.86;
}

.dm-hero-img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 540px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 28px 70px rgba(21, 32, 29, 0.16);
}

.dm-hero-media figcaption {
	position: absolute;
	z-index: 2;
	left: 24px;
	right: 24px;
	bottom: 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 8px;
	background: rgba(17, 26, 23, 0.9);
	color: var(--dm-white);
	backdrop-filter: blur(10px);
}

.dm-hero-media figcaption span {
	display: grid;
	gap: 4px;
	padding: 18px 16px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.74);
}

.dm-hero-media figcaption strong {
	display: block;
	color: var(--dm-white);
	font-size: 26px;
	line-height: 1;
}

.dm-section {
	padding: 92px 0;
}

.dm-section-white {
	background: var(--dm-white);
}

.dm-section-soft {
	background: var(--dm-soft);
}

.dm-section-head {
	max-width: 720px;
	margin: 0 auto 46px;
	text-align: center;
}

.dm-section-head h2,
.dm-section h2,
.dm-contact-section h2 {
	font-size: 42px;
}

.dm-section-head p:not(.dm-section-label),
.dm-section-intro,
.dm-copy p,
.dm-contact-section p {
	color: var(--dm-muted);
	font-size: 17px;
}

.dm-section-intro {
	max-width: 440px;
	margin: 20px 0 0;
	font-weight: 700;
}

.dm-split {
	display: grid;
	grid-template-columns: 0.84fr 1.16fr;
	gap: 64px;
	align-items: start;
}

.dm-copy p {
	margin: 0 0 16px;
}

.dm-copy h3 {
	margin: 0 0 14px;
	color: var(--dm-ink);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

.dm-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.dm-check-list li {
	position: relative;
	min-height: 56px;
	padding: 14px 16px 14px 42px;
	border: 1px solid var(--dm-line);
	border-radius: 8px;
	background: var(--dm-white);
	color: var(--dm-graphite);
	font-weight: 800;
	box-shadow: 0 10px 26px rgba(21, 32, 29, 0.04);
}

.dm-check-list li::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 16px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--dm-green);
}

.dm-check-list li::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 22px;
	width: 5px;
	height: 9px;
	border: solid var(--dm-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.dm-about-note {
	margin-top: 28px;
	padding: 24px;
	border: 1px solid var(--dm-line);
	border-left: 4px solid var(--dm-green);
	border-radius: 8px;
	background: var(--dm-soft);
	box-shadow: 0 12px 32px rgba(21, 32, 29, 0.05);
}

.dm-about-note h3 {
	margin-top: 0;
}

.dm-about-note p:last-child {
	margin-bottom: 0;
}

.dm-region-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.dm-region-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 13px;
	border: 1px solid rgba(17, 184, 97, 0.28);
	border-radius: 999px;
	background: var(--dm-white);
	color: var(--dm-green-dark);
	font-size: 13px;
	font-weight: 900;
}

.dm-site[dir="rtl"] .dm-check-list li {
	padding-right: 42px;
	padding-left: 16px;
}

.dm-site[dir="rtl"] .dm-check-list li::before {
	right: 16px;
	left: auto;
}

.dm-site[dir="rtl"] .dm-check-list li::after {
	right: 22px;
	left: auto;
}

.dm-site[dir="rtl"] .dm-about-note {
	border-right: 4px solid var(--dm-green);
	border-left-width: 1px;
}

.dm-image-band {
	position: relative;
	height: 220px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(17, 26, 23, 0.22);
	background-blend-mode: multiply;
	border-top: 1px solid var(--dm-line);
	border-bottom: 1px solid var(--dm-line);
}

.dm-system-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dm-system-card,
.dm-industry-card,
.dm-why-grid article {
	border: 1px solid var(--dm-line);
	border-radius: 8px;
	background: var(--dm-white);
}

.dm-system-card {
	position: relative;
	min-height: 310px;
	padding: 28px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(21, 32, 29, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dm-system-card::before,
.dm-industry-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--dm-green);
	opacity: 0.82;
}

.dm-system-card:hover,
.dm-industry-card:hover {
	transform: translateY(-3px);
	border-color: rgba(17, 184, 97, 0.36);
	box-shadow: var(--dm-shadow);
}

.dm-system-featured {
	background:
		linear-gradient(135deg, rgba(17, 184, 97, 0.14), transparent 48%),
		var(--dm-ink);
	color: var(--dm-white);
	border-color: var(--dm-ink);
}

.dm-card-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 30px;
	margin-bottom: 26px;
	border-radius: 999px;
	background: var(--dm-green-soft);
	color: var(--dm-green);
	font-size: 13px;
	font-weight: 900;
}

.dm-system-card h3 {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 900;
	color: inherit;
}

.dm-system-card strong {
	display: block;
	margin-bottom: 16px;
	color: var(--dm-green-dark);
	font-size: 14px;
}

.dm-system-featured strong {
	color: var(--dm-green);
}

.dm-system-featured .dm-card-index {
	background: rgba(17, 184, 97, 0.16);
	color: var(--dm-white);
}

.dm-system-card p {
	margin: 0;
	color: var(--dm-muted);
	font-size: 15px;
}

.dm-system-featured p {
	color: rgba(255, 255, 255, 0.74);
}

.dm-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.dm-chip-row span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--dm-green-soft);
	color: var(--dm-green-dark);
	font-size: 12px;
	font-weight: 900;
}

.dm-system-featured .dm-chip-row span {
	background: rgba(17, 184, 97, 0.18);
	color: var(--dm-white);
}

.dm-industry-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dm-industry-card {
	position: relative;
	min-height: 232px;
	padding: 26px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(21, 32, 29, 0.05);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 22px;
	border-radius: 8px;
	background: var(--dm-green-soft);
	color: var(--dm-green-dark);
	box-shadow: inset 0 0 0 1px rgba(17, 184, 97, 0.14);
}

.dm-icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dm-industry-card h3 {
	margin: 0 0 8px;
	color: var(--dm-ink);
	font-size: 21px;
	font-weight: 900;
}

.dm-industry-card p {
	margin: 0;
	color: var(--dm-muted);
	font-size: 15px;
}

.dm-section-ink {
	background:
		linear-gradient(135deg, rgba(17, 184, 97, 0.12), transparent 36%),
		var(--dm-ink);
	color: var(--dm-white);
}

.dm-section-ink h2 {
	color: var(--dm-white);
}

.dm-section-ink .dm-section-head p:not(.dm-section-label) {
	color: rgba(255, 255, 255, 0.72);
}

.dm-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
}

.dm-why-grid article {
	min-height: 250px;
	padding: 28px;
	background: #1d2b27;
	border: 0;
	color: var(--dm-white);
}

.dm-why-grid span {
	display: block;
	margin-bottom: 34px;
	color: var(--dm-green);
	font-size: 14px;
	font-weight: 900;
}

.dm-why-grid h3 {
	margin: 0 0 10px;
	color: var(--dm-white);
	font-size: 21px;
	font-weight: 900;
}

.dm-why-grid p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

.dm-contact-section {
	background:
		linear-gradient(180deg, #ffffff 0, var(--dm-soft) 100%);
}

.dm-contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 54px;
	align-items: start;
}

.dm-contact-list {
	display: grid;
	gap: 14px;
	margin-top: 30px;
}

.dm-contact-list a,
.dm-contact-list p {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 12px;
	align-items: center;
	margin: 0;
	color: var(--dm-graphite);
	font-weight: 800;
}

.dm-contact-list strong {
	color: var(--dm-ink);
	font-weight: 900;
}

.dm-contact-list .dm-icon {
	margin-bottom: 0;
}

.dm-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 28px;
	border: 1px solid var(--dm-line);
	border-radius: 8px;
	background: var(--dm-white);
	box-shadow: var(--dm-shadow);
	border-top: 4px solid var(--dm-green);
}

.dm-form label {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: var(--dm-graphite);
	font-size: 13px;
	font-weight: 900;
}

.dm-form input,
.dm-form select,
.dm-form textarea {
	width: 100%;
	min-height: 46px;
	padding: 11px 12px;
	border: 1px solid var(--dm-line);
	border-radius: 6px;
	background: #fbfdfc;
	color: var(--dm-ink);
	font: inherit;
	font-size: 15px;
}

.dm-form textarea {
	min-height: 132px;
	resize: vertical;
}

.dm-form input:focus,
.dm-form select:focus,
.dm-form textarea:focus {
	outline: 3px solid rgba(17, 184, 97, 0.14);
	border-color: var(--dm-green);
}

.dm-form-wide {
	grid-column: 1 / -1;
}

.dm-footer {
	padding: 60px 0 30px;
	background:
		linear-gradient(135deg, rgba(17, 184, 97, 0.12), transparent 38%),
		#111a17;
	color: var(--dm-white);
}

.dm-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.75fr 0.75fr 0.9fr;
	gap: 38px;
}

.dm-footer-logo {
	margin-bottom: 18px;
}

.dm-footer .dm-logo-img {
	filter: brightness(0) invert(1);
}

.dm-footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
}

.dm-footer h3 {
	margin: 0 0 14px;
	color: var(--dm-white);
	font-size: 15px;
	font-weight: 900;
}

.dm-footer a {
	display: block;
	margin-bottom: 9px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 14px;
	font-weight: 700;
}

.dm-footer a:hover {
	color: var(--dm-green);
}

.dm-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.dm-socials a {
	margin: 0;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
}

.dm-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dm-footer-bottom p:first-child {
	max-width: 720px;
}

.dm-site[dir="rtl"] {
	text-align: right;
}

.dm-site[dir="rtl"] .dm-nav,
.dm-site[dir="rtl"] .dm-header-actions,
.dm-site[dir="rtl"] .dm-hero-actions,
.dm-site[dir="rtl"] .dm-socials {
	flex-direction: row-reverse;
}

@media (max-width: 1100px) {
	.dm-nav {
		gap: 16px;
		font-size: 14px;
	}

	.dm-hero h1 {
		font-size: 50px;
	}

	.dm-hero-img {
		height: 520px;
	}
}

@media (max-width: 980px) {
	.dm-shell {
		width: min(100% - 36px, 760px);
	}

	.dm-nav,
	.dm-header-actions .dm-btn {
		display: none;
	}

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

	.dm-hero {
		padding: 50px 0 64px;
	}

	.dm-hero-grid,
	.dm-split,
	.dm-contact-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.dm-hero h1 {
		font-size: 44px;
	}

	.dm-lead {
		font-size: 18px;
	}

	.dm-hero-img {
		height: 440px;
	}

	.dm-hero-media::before {
		top: -12px;
		right: -12px;
	}

	.dm-section {
		padding: 72px 0;
	}

	.dm-section-head h2,
	.dm-section h2,
	.dm-contact-section h2 {
		font-size: 38px;
	}

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

	.dm-footer-bottom {
		display: grid;
	}
}

@media (max-width: 640px) {
	.dm-shell {
		width: calc(100% - 32px);
	}

	.dm-header-inner {
		height: 68px;
	}

	.dm-mobile-menu {
		top: 68px;
	}

	.dm-brand,
	.dm-footer-logo {
		min-width: 118px;
	}

	.dm-logo-img {
		width: 130px;
	}

	.dm-lang-switch {
		font-size: 12px;
	}

	.dm-hero {
		padding: 40px 0 54px;
	}

	.dm-hero h1 {
		font-size: 36px;
	}

	.dm-lead {
		font-size: 17px;
	}

	.dm-hero-actions {
		display: grid;
	}

	.dm-btn {
		width: 100%;
	}

	.dm-partner {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.dm-hero-img {
		height: 330px;
	}

	.dm-hero-media::before {
		display: none;
	}

	.dm-hero-media figcaption {
		position: static;
		grid-template-columns: 1fr;
		margin-top: 10px;
		border-color: var(--dm-line);
		background: var(--dm-ink);
	}

	.dm-section {
		padding: 58px 0;
	}

	.dm-section-head {
		margin-bottom: 30px;
		text-align: start;
	}

	.dm-section-head h2,
	.dm-section h2,
	.dm-contact-section h2 {
		font-size: 30px;
	}

	.dm-check-list,
	.dm-system-grid,
	.dm-industry-grid,
	.dm-why-grid,
	.dm-contact-grid,
	.dm-form,
	.dm-footer-grid {
		grid-template-columns: 1fr;
	}

	.dm-system-card,
	.dm-industry-card,
	.dm-why-grid article {
		min-height: auto;
	}

	.dm-image-band {
		height: 180px;
	}

	.dm-contact-list a,
	.dm-contact-list p {
		grid-template-columns: 42px 1fr;
	}

	.dm-form {
		padding: 20px;
	}
}
