@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/inter-700.woff2') format('woff2');
}

:root {
	--dm-accent: #B91C1C;
	--dm-accent-hover: #991B1B;
	--dm-accent-light: #FEE2E2;
	--dm-bg-dark: #0B0F1A;
	--dm-bg-dark-alt: #111827;
	--dm-bg-alt: #F8FAFC;
	--dm-bg-white: #FFFFFF;
	--dm-text-primary: #111827;
	--dm-text-light: #E2E8F0;
	--dm-text-muted-dark: #94A3B8;
	--dm-text-muted-light: #6B7280;
	--dm-border-dark: #1F2937;
	--dm-border-light: #E5E7EB;
	--dm-radius: 8px;
	--dm-radius-lg: 16px;
	--dm-shadow: 0 4px 24px rgba(0,0,0,0.10);
	--dm-shadow-dark: 0 4px 32px rgba(0,0,0,0.40);
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: #111827;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-weight: 700;
	margin-top: 0;
}

h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

h4 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
}

.dm-text-lg {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
}

.dm-label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

a {
	color: #B91C1C;
	text-decoration: none;
}

a:hover {
	color: #991B1B;
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
}

.dm-btn-primary {
	display: inline-block;
	background-color: #B91C1C;
	color: #ffffff;
	border: 2px solid #B91C1C;
	border-radius: 8px;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.dm-btn-primary:hover {
	background-color: #991B1B;
	border-color: #991B1B;
	color: #ffffff;
	text-decoration: none;
}

.dm-btn-ghost {
	display: inline-block;
	background-color: transparent;
	color: #B91C1C;
	border: 2px solid #B91C1C;
	border-radius: 8px;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

.dm-btn-ghost:hover {
	background-color: #FEE2E2;
	color: #991B1B;
	text-decoration: none;
}

.dm-btn-dark-ghost {
	display: inline-block;
	background-color: transparent;
	color: #E2E8F0;
	border: 2px solid #E2E8F0;
	border-radius: 8px;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.dm-btn-dark-ghost:hover {
	background-color: rgba(255,255,255,0.1);
	color: #E2E8F0;
	text-decoration: none;
}

.dm-section {
	padding: 80px 0;
}

.dm-section-dark {
	background-color: #0B0F1A;
	color: #E2E8F0;
}

.dm-section-dark-alt {
	background-color: #111827;
	color: #E2E8F0;
}

.dm-section-alt {
	background-color: #F8FAFC;
	color: #111827;
}

.dm-section-title {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #B91C1C;
	margin-bottom: 12px;
}

.dm-section-dark .dm-section-title {
	color: #B91C1C;
}

.dm-nav {
	background-color: transparent;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 18px 0;
}

.dm-nav.dm-nav-scrolled {
	background-color: rgba(11, 15, 26, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 12px 0;
	box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.dm-nav-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.dm-nav-brand img {
	height: 32px;
	width: auto;
}

.dm-nav-link {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: #E2E8F0;
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 6px;
	transition: color 0.2s ease;
}

.dm-nav-link:hover {
	color: #B91C1C;
	text-decoration: none;
}

.dm-nav-link.active {
	color: #B91C1C;
}

.navbar-toggler {
	border: 1px solid rgba(226, 232, 240, 0.4);
	padding: 6px 10px;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(226, 232, 240, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dm-hero {
	background-color: #0B0F1A;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 100px;
	position: relative;
	overflow: hidden;
}

.dm-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11, 15, 26, 0.72);
	z-index: 1;
}

.dm-hero .container {
	position: relative;
	z-index: 2;
}

.dm-hero h1 {
	color: #FFFFFF;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.dm-hero-center {
	text-align: center;
}

.dm-hero-left {
	text-align: left;
}

.dm-hero p {
	color: #E2E8F0;
	font-size: 18px;
	line-height: 1.7;
	max-width: 600px;
	margin-bottom: 36px;
}

.dm-hero-center p {
	margin-left: auto;
	margin-right: auto;
}

.dm-hero-mini {
	min-height: auto;
	padding: 70px 0;
}

.dm-hero-mini h1 {
	font-size: 42px;
}

.dm-hero-light {
	background-color: #F8FAFC;
}

.dm-hero-light::before {
	display: none;
}

.dm-hero-light h1 {
	color: #111827;
}

.dm-hero-light p {
	color: #6B7280;
}

.dm-stats-bar {
	background-color: #111827;
	padding: 60px 0;
}

.dm-stat-item {
	text-align: center;
	padding: 24px;
	border-right: 1px solid #1F2937;
}

.dm-stat-item:last-child {
	border-right: none;
}

.dm-stat-number {
	font-size: 42px;
	font-weight: 700;
	color: #B91C1C;
	line-height: 1.1;
	display: block;
}

.dm-stat-label {
	font-size: 14px;
	font-weight: 500;
	color: #94A3B8;
	letter-spacing: 0.02em;
	display: block;
	margin-top: 8px;
}

.dm-stat-sub {
	font-size: 12px;
	font-weight: 400;
	color: #64748B;
	display: block;
	margin-top: 6px;
	line-height: 1.5;
}

.dm-feature-card {
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-feature-card:hover {
	box-shadow: 0 4px 24px rgba(0,0,0,0.10);
	border-color: #B91C1C;
}

.dm-feature-icon {
	width: 48px;
	height: 48px;
	background-color: #FEE2E2;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #B91C1C;
	font-size: 20px;
	flex-shrink: 0;
}

.dm-feature-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 12px;
}

.dm-feature-card p {
	font-size: 15px;
	color: #6B7280;
	line-height: 1.65;
	margin-bottom: 0;
	flex: 1;
}

.dm-process {
	background-color: #0B0F1A;
	padding: 80px 0;
}

.dm-process-item {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	padding: 28px 0;
	border-bottom: 1px solid #1F2937;
}

.dm-process-item:last-child {
	border-bottom: none;
}

.dm-process-number {
	font-size: 42px;
	font-weight: 700;
	color: #B91C1C;
	line-height: 1;
	min-width: 72px;
	flex-shrink: 0;
}

.dm-process-content h4 {
	font-size: 20px;
	font-weight: 600;
	color: #E2E8F0;
	margin-bottom: 10px;
}

.dm-process-content p {
	font-size: 16px;
	color: #94A3B8;
	margin-bottom: 0;
	line-height: 1.65;
}

.dm-process-icon {
	width: 44px;
	height: 44px;
	background-color: #1F2937;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B91C1C;
	font-size: 18px;
	flex-shrink: 0;
}

.dm-trust {
	background-color: #0B0F1A;
	padding: 80px 0;
}

.dm-trust-stat {
	text-align: center;
}

.dm-trust-stat .dm-stat-number {
	font-size: 52px;
}

.dm-trust-stat p {
	font-size: 16px;
	color: #94A3B8;
	margin-top: 8px;
}

.dm-cta-banner {
	background-color: #0B0F1A;
	padding: 80px 0;
	text-align: center;
	border-top: 1px solid #1F2937;
}

.dm-cta-banner h2 {
	color: #E2E8F0;
	margin-bottom: 16px;
}

.dm-cta-banner p {
	color: #94A3B8;
	font-size: 18px;
	max-width: 560px;
	margin: 0 auto 36px;
}

.dm-cta-card {
	padding: 80px 0;
}

.dm-cta-card .dm-card-inner {
	background-color: #0B0F1A;
	border-radius: 16px;
	padding: 56px 48px;
	text-align: center;
	border: 1px solid #1F2937;
}

.dm-cta-card h2 {
	color: #E2E8F0;
	margin-bottom: 16px;
}

.dm-cta-card p {
	color: #94A3B8;
	font-size: 18px;
	margin-bottom: 32px;
}

.dm-footer {
	background-color: #0B0F1A;
	padding: 64px 0 0;
	border-top: 1px solid #1F2937;
}

.dm-footer-brand img {
	height: 32px;
	width: auto;
	margin-bottom: 16px;
}

.dm-footer-brand p {
	font-size: 14px;
	color: #94A3B8;
	line-height: 1.6;
	margin-bottom: 0;
}

.dm-footer-heading {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #E2E8F0;
	margin-bottom: 20px;
}

.dm-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dm-footer-links li {
	margin-bottom: 10px;
}

.dm-footer-links a {
	font-size: 14px;
	color: #94A3B8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.dm-footer-links a:hover {
	color: #B91C1C;
	text-decoration: none;
}

.dm-footer-contact p {
	font-size: 14px;
	color: #94A3B8;
	margin-bottom: 10px;
	line-height: 1.5;
}

.dm-footer-contact i {
	color: #B91C1C;
	margin-right: 8px;
	width: 16px;
}

.dm-footer-bottom {
	border-top: 1px solid #1F2937;
	padding: 24px 0;
	margin-top: 48px;
}

.dm-footer-bottom p {
	font-size: 13px;
	color: #94A3B8;
	margin-bottom: 0;
}

.dm-footer-disclaimer {
	font-size: 12px;
	color: #6B7280;
	line-height: 1.6;
	margin-top: 8px;
}

.dm-timeline {
	padding: 80px 0;
	background-color: #0B0F1A;
}

.dm-timeline-track {
	display: flex;
	gap: 0;
	position: relative;
}

.dm-timeline-track::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #1F2937;
	z-index: 0;
}

.dm-timeline-step {
	flex: 1;
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.dm-timeline-dot {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #B91C1C;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-size: 18px;
	margin: 0 auto 20px;
	border: 3px solid #0B0F1A;
}

.dm-timeline-step h4 {
	font-size: 18px;
	font-weight: 600;
	color: #E2E8F0;
	margin-bottom: 10px;
}

.dm-timeline-step p {
	font-size: 14px;
	color: #94A3B8;
	line-height: 1.6;
}

.dm-alternating-row {
	padding: 64px 0;
}

.dm-alternating-row:nth-child(odd) {
	background-color: #FFFFFF;
}

.dm-alternating-row:nth-child(even) {
	background-color: #F8FAFC;
}

.dm-alternating-img {
	border-radius: 8px;
	width: 100%;
	height: 340px;
	object-fit: cover;
}

.dm-alternating-content {
	padding: 24px 0;
}

.dm-alternating-content h3 {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
}

.dm-alternating-content p {
	font-size: 16px;
	color: #6B7280;
	line-height: 1.7;
	margin-bottom: 24px;
}

.dm-story-section {
	padding: 80px 0;
	background-color: #FFFFFF;
}

.dm-story-left h2 {
	font-size: 36px;
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
}

.dm-story-right p {
	font-size: 16px;
	color: #6B7280;
	line-height: 1.7;
	margin-bottom: 20px;
}

.dm-milestone-card {
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	padding: 28px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.dm-milestone-number {
	font-size: 48px;
	font-weight: 700;
	color: #B91C1C;
	line-height: 1;
	display: block;
}

.dm-milestone-label {
	font-size: 15px;
	font-weight: 500;
	color: #6B7280;
	margin-top: 8px;
	display: block;
}

.dm-principles {
	padding: 80px 0;
	background-color: #F8FAFC;
}

.dm-principle-card {
	background-color: #FFFFFF;
	border-radius: 8px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #E5E7EB;
}

.dm-principle-icon {
	width: 48px;
	height: 48px;
	background-color: #FEE2E2;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B91C1C;
	font-size: 20px;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.dm-principle-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 12px;
}

.dm-principle-card p {
	font-size: 15px;
	color: #6B7280;
	line-height: 1.65;
	margin-bottom: 0;
}

.dm-team-card {
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.dm-team-card:hover {
	box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.dm-team-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}

.dm-team-body {
	padding: 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.dm-team-name {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.dm-team-role {
	font-size: 14px;
	font-weight: 500;
	color: #B91C1C;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}

.dm-team-bio {
	font-size: 15px;
	color: #6B7280;
	line-height: 1.65;
	margin-bottom: 0;
}

.dm-contact-section {
	padding: 80px 0;
	background-color: #FFFFFF;
}

.dm-contact-form-wrap {
	background-color: #F8FAFC;
	border-radius: 8px;
	padding: 40px;
}

.dm-form-label {
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	margin-bottom: 8px;
	display: block;
}

.dm-form-control {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	color: #111827;
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	transition: border-color 0.2s ease;
	font-family: inherit;
}

.dm-form-control:focus {
	outline: none;
	border-color: #B91C1C;
}

.dm-form-control::placeholder {
	color: #9CA3AF;
}

textarea.dm-form-control {
	resize: vertical;
	min-height: 140px;
}

.dm-contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 28px;
}

.dm-contact-info-icon {
	width: 44px;
	height: 44px;
	background-color: #FEE2E2;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B91C1C;
	font-size: 18px;
	flex-shrink: 0;
}

.dm-contact-info-content h5 {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.dm-contact-info-content p {
	font-size: 15px;
	color: #6B7280;
	margin-bottom: 0;
	line-height: 1.5;
}

.dm-blog-card {
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.dm-blog-card:hover {
	box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.dm-blog-thumb-link {
	display: block;
	overflow: hidden;
}

.dm-blog-thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.dm-blog-card:hover .dm-blog-thumb {
	transform: scale(1.03);
}

.dm-blog-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.dm-blog-date {
	font-size: 13px;
	font-weight: 500;
	color: #94A3B8;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
	display: block;
}

.dm-blog-title {
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin-bottom: 12px;
}

.dm-blog-title a {
	color: #111827;
	text-decoration: none;
	transition: color 0.2s ease;
}

.dm-blog-title a:hover {
	color: #B91C1C;
}

.dm-blog-excerpt {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.65;
	margin-bottom: 0;
	flex: 1;
}

.dm-blog-read-more {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: #B91C1C;
	text-decoration: none;
	margin-top: auto;
	padding-top: 16px;
	transition: color 0.2s ease;
}

.dm-blog-read-more:hover {
	color: #991B1B;
	text-decoration: underline;
}

.dm-article-hero {
	background-color: #0B0F1A;
	padding: 70px 0;
	text-align: center;
}

.dm-article-hero h1 {
	font-size: 38px;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.dm-article-hero .dm-label {
	color: #94A3B8;
}

.dm-article-body {
	padding: 60px 0 80px;
	background-color: #FFFFFF;
}

.dm-article-content {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 24px;
}

.dm-article-content p {
	font-size: 17px;
	color: #374151;
	line-height: 1.8;
	margin-bottom: 24px;
}

.dm-article-content h2 {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-top: 48px;
	margin-bottom: 16px;
}

.dm-article-content h3 {
	font-size: 22px;
	font-weight: 600;
	color: #111827;
	margin-top: 32px;
	margin-bottom: 12px;
}

.dm-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 24px 0;
}

.dm-article-content ul, .dm-article-content ol {
	margin-bottom: 24px;
	padding-left: 28px;
}

.dm-article-content li {
	font-size: 17px;
	color: #374151;
	line-height: 1.8;
	margin-bottom: 8px;
}

.dm-legal-body {
	padding: 60px 0 80px;
	background-color: #FFFFFF;
}

.dm-legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}

.dm-legal-content h2 {
	font-size: 26px;
	font-weight: 700;
	color: #111827;
	margin-top: 48px;
	margin-bottom: 16px;
}

.dm-legal-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-top: 32px;
	margin-bottom: 12px;
}

.dm-legal-content p {
	font-size: 16px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 20px;
}

.dm-legal-content ul {
	margin-bottom: 20px;
	padding-left: 24px;
}

.dm-legal-content li {
	font-size: 16px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 8px;
}

.dm-gdpr-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0B0F1A;
	border-top: 1px solid #1F2937;
	padding: 18px 0;
	z-index: 9999;
	display: none;
}

.dm-gdpr-banner.dm-gdpr-show {
	display: block;
}

.dm-gdpr-banner p {
	font-size: 14px;
	color: #94A3B8;
	margin-bottom: 0;
	line-height: 1.5;
}

.dm-gdpr-btn-accept {
	background-color: #B91C1C;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.dm-gdpr-btn-accept:hover {
	background-color: #991B1B;
}

.dm-gdpr-btn-decline {
	background-color: transparent;
	color: #94A3B8;
	border: 1px solid #374151;
	border-radius: 6px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	margin-left: 8px;
	transition: color 0.2s ease;
}

.dm-gdpr-btn-decline:hover {
	color: #E2E8F0;
}

.dm-404 {
	background-color: #0B0F1A;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px;
}

.dm-404-number {
	font-size: 120px;
	font-weight: 700;
	color: #B91C1C;
	line-height: 1;
	display: block;
	margin-bottom: 16px;
}

.dm-404-title {
	font-size: 28px;
	font-weight: 600;
	color: #E2E8F0;
	margin-bottom: 16px;
}

.dm-404-text {
	font-size: 16px;
	color: #94A3B8;
	margin-bottom: 36px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.dm-404-logo {
	height: 32px;
	width: auto;
	margin-bottom: 48px;
}

@media (max-width: 991px) {
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 28px;
	}
	.dm-hero h1 {
		font-size: 38px;
	}
	.dm-hero-mini h1 {
		font-size: 32px;
	}
	.dm-timeline-track {
		flex-direction: column;
	}
	.dm-timeline-track::before {
		display: none;
	}
	.dm-timeline-step {
		display: flex;
		gap: 16px;
		text-align: left;
		align-items: flex-start;
	}
	.dm-timeline-dot {
		margin: 0;
		flex-shrink: 0;
	}
	.dm-stat-item {
		border-right: none;
		border-bottom: 1px solid #1F2937;
	}
	.dm-stat-item:last-child {
		border-bottom: none;
	}
	.dm-cta-card .dm-card-inner {
		padding: 40px 24px;
	}
	.dm-process-number {
		font-size: 32px;
		min-width: 56px;
	}
}

@media (max-width: 767px) {
	.dm-hero {
		padding: 100px 0 70px;
		min-height: auto;
	}
	.dm-hero h1 {
		font-size: 32px;
	}
	.dm-hero p {
		font-size: 16px;
	}
	.dm-section {
		padding: 56px 0;
	}
	.dm-stats-bar {
		padding: 40px 0;
	}
	h2 {
		font-size: 26px;
	}
	.dm-404-number {
		font-size: 80px;
	}
}

.dm-nav .navbar-nav {
	gap: 4px;
}

@media (max-width: 991px) {
	.dm-nav .navbar-collapse {
		background-color: rgba(11, 15, 26, 0.98);
		padding: 16px 20px;
		border-radius: 0 0 8px 8px;
		margin-top: 8px;
	}
	.dm-nav-link {
		padding: 10px 14px;
		display: block;
	}
}

/* Logo dark/light variant swap */
.logo-img,
.dm-nav-brand img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
/* Default: site-wide nav sits on dark hero or dark-scrolled bg -> show LIGHT logo */
.dm-nav .logo-img--dark { display: none; }
.dm-nav .logo-img--light { display: inline-block; }

/* Light-hero pages: while nav is transparent (not yet scrolled), flip to DARK logo + DARK text */
body.hero-light .dm-nav:not(.dm-nav-scrolled) .logo-img--dark { display: inline-block; }
body.hero-light .dm-nav:not(.dm-nav-scrolled) .logo-img--light { display: none; }
body.hero-light .dm-nav:not(.dm-nav-scrolled) .dm-nav-link { color: #0B0F1A; }
body.hero-light .dm-nav:not(.dm-nav-scrolled) .dm-nav-link:hover,
body.hero-light .dm-nav:not(.dm-nav-scrolled) .dm-nav-link.active { color: #B91C1C; }
body.hero-light .dm-nav:not(.dm-nav-scrolled) .navbar-toggler { border-color: rgba(17,24,39,0.4); }
body.hero-light .dm-nav:not(.dm-nav-scrolled) .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17,24,39,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
