@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-semibold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'JetBrains Mono';
	src: url('../fonts/jetbrains-mono-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #374151;
	background-color: #F8F9FA;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #0F172A;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #7C2D12;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #9A3412;
}

code, pre {
	font-family: 'JetBrains Mono', 'Courier New', monospace;
	font-size: 14px;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	max-width: 1200px;
}

.db-accent { color: #7C2D12; }
.db-text-muted { color: #64748B; }

.db-btn-primary {
	display: inline-block;
	padding: 12px 28px;
	background-color: #7C2D12;
	color: #FFFFFF;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
	text-decoration: none;
}

.db-btn-primary:hover {
	background-color: #9A3412;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.db-btn-secondary {
	display: inline-block;
	padding: 12px 28px;
	background-color: transparent;
	color: #7C2D12;
	border: 2px solid #7C2D12;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-decoration: none;
}

.db-btn-secondary:hover {
	background-color: rgba(124, 45, 18, 0.08);
	color: #7C2D12;
}

.db-btn-ghost {
	display: inline-block;
	padding: 12px 28px;
	background-color: rgba(255, 255, 255, 0.08);
	color: #F1F5F9;
	border: 1px solid #1E293B;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-decoration: none;
}

.db-btn-ghost:hover {
	background-color: rgba(255, 255, 255, 0.14);
	color: #F1F5F9;
}

.db-btn-white {
	display: inline-block;
	padding: 12px 28px;
	background-color: #FFFFFF;
	color: #7C2D12;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-decoration: none;
}

.db-btn-white:hover {
	background-color: #F1F5F9;
	color: #7C2D12;
}

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 64px;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav.nav-transparent {
	background-color: transparent;
}

.site-nav.nav-solid {
	background-color: #0D1117;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-nav.nav-scrolled {
	background-color: rgba(13, 17, 23, 0.96);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
}

.site-nav .navbar {
	height: 64px;
	padding: 0 24px;
}

.site-nav .navbar-brand img {
	height: 36px;
	width: auto;
}

.site-nav .navbar-nav .nav-link {
	color: #CBD5E1;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 8px 14px;
	transition: color 0.2s ease;
}

.site-nav .navbar-nav .nav-link:hover {
	color: #F1F5F9;
}

.site-nav .navbar-nav .nav-link.active {
	color: #7C2D12;
	font-weight: 600;
}

.site-nav .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.2);
	padding: 4px 8px;
}

.site-nav .navbar-toggler-icon {
	background-image: none;
}

.site-nav .navbar-toggler i {
	color: #F1F5F9;
	font-size: 18px;
}

.site-nav .nav-cta {
	margin-left: 12px;
	padding: 8px 20px;
	background-color: #7C2D12;
	color: #FFFFFF;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: background-color 0.2s ease;
	text-decoration: none;
}

.site-nav .nav-cta:hover {
	background-color: #9A3412;
	color: #FFFFFF;
}

@media (max-width: 991px) {
	.site-nav .navbar-collapse {
		background-color: #0D1117;
		border-top: 1px solid #1E293B;
		padding: 16px 0;
		margin-top: 0;
	}

	.site-nav .navbar-nav .nav-link {
		padding: 10px 24px;
	}

	.site-nav .nav-cta {
		margin: 8px 24px 0;
		display: inline-block;
	}
}

.db-hero-main {
	min-height: 100vh;
	padding-top: 64px;
	background-color: #0D1117;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* On wide screens: use hero image as full-bleed background, hide inline img */
@media (min-width: 992px) {
	.db-hero-main {
		background-image:
			linear-gradient(90deg, rgba(13,17,23,0.94) 0%, rgba(13,17,23,0.82) 45%, rgba(13,17,23,0.55) 75%, rgba(13,17,23,0.35) 100%),
			url('../media/hero-concept.webp');
		background-size: cover;
		background-position: center right;
		background-repeat: no-repeat;
	}
}

.db-hero-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 30% 50%, rgba(124, 45, 18, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(28, 37, 51, 0.8) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.db-hero-main .container {
	position: relative;
	z-index: 2;
	padding-top: 40px;
	padding-bottom: 60px;
}

.db-hero-main .db-hero-label {
	display: inline-block;
	padding: 4px 14px;
	background-color: rgba(124, 45, 18, 0.15);
	color: #7C2D12;
	border: 1px solid rgba(124, 45, 18, 0.3);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.db-hero-main h1 {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #F1F5F9;
	margin-bottom: 24px;
}

.db-hero-main h1 em {
	font-style: normal;
	color: #7C2D12;
}

.db-hero-main .db-hero-sub {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.65;
	color: #CBD5E1;
	margin-bottom: 36px;
	max-width: 520px;
}

.db-hero-main .db-hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.db-hero-main .db-hero-img-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.db-hero-main .db-hero-img-wrap img {
	width: 100%;
	max-width: 620px;
	border-radius: 10px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
	.db-hero-main h1 { font-size: 38px; }
	.db-hero-main .db-hero-img-wrap { margin-top: 40px; justify-content: center; }
}

@media (max-width: 767px) {
	.db-hero-main h1 { font-size: 32px; }
}

.db-hero-compact {
	padding-top: 64px;
	background-color: #0D1117;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.db-hero-compact::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(ellipse at 50% 60%, rgba(124, 45, 18, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.db-hero-compact .container {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 80px;
}

.db-hero-compact h1 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #F1F5F9;
	margin-bottom: 16px;
}

.db-hero-compact .db-hero-sub {
	font-size: 18px;
	line-height: 1.65;
	color: #CBD5E1;
	max-width: 600px;
	margin: 0 auto 28px;
}

@media (max-width: 767px) {
	.db-hero-compact h1 { font-size: 30px; }
}

.db-hero-split {
	padding-top: 64px;
	background-color: #0D1117;
	display: flex;
	align-items: center;
	min-height: 500px;
	position: relative;
	overflow: hidden;
}

.db-hero-split::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(ellipse at 20% 50%, rgba(124, 45, 18, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.db-hero-split .container {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 60px;
}

.db-hero-split h1 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #F1F5F9;
	margin-bottom: 16px;
}

.db-hero-split .db-hero-sub {
	font-size: 18px;
	line-height: 1.65;
	color: #CBD5E1;
	margin-bottom: 28px;
}

.db-hero-split .db-hero-img-wrap img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

@media (max-width: 991px) {
	.db-hero-split h1 { font-size: 32px; }
	.db-hero-split .db-hero-img-wrap { margin-top: 40px; }
}

.db-stats-bar {
	background-color: #111827;
	padding: 48px 0;
	border-top: 1px solid #1E293B;
	border-bottom: 1px solid #1E293B;
}

.db-stats-bar .db-stat-item {
	text-align: center;
	padding: 16px 0;
}

.db-stats-bar .db-stat-num {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: #F1F5F9;
	letter-spacing: -0.01em;
	line-height: 1;
	margin-bottom: 8px;
}

.db-stats-bar .db-stat-num span {
	color: #7C2D12;
}

.db-stats-bar .db-stat-label {
	font-size: 14px;
	font-weight: 500;
	color: #64748B;
	letter-spacing: 0.02em;
}

.db-section-features {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-section-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #0F172A;
	margin-bottom: 12px;
}

.db-section-sub {
	font-size: 18px;
	color: #374151;
	line-height: 1.65;
	margin-bottom: 48px;
}

.db-feature-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.db-feature-card:hover {
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.db-feature-card .db-feature-icon {
	width: 48px;
	height: 48px;
	background-color: rgba(124, 45, 18, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.db-feature-card .db-feature-icon i {
	font-size: 20px;
	color: #7C2D12;
}

.db-feature-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 10px;
}

.db-feature-card p {
	font-size: 15px;
	color: #374151;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.db-section-process {
	background-color: #111827;
	padding: 80px 0;
}

.db-section-process .db-section-title {
	color: #F1F5F9;
}

.db-section-process .db-section-sub {
	color: #CBD5E1;
}

.db-process-step {
	text-align: center;
	padding: 24px 16px;
}

.db-process-num {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #7C2D12 0%, #9A3412 100%);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 auto 20px;
}

.db-process-step h3 {
	font-size: 22px;
	font-weight: 600;
	color: #F1F5F9;
	margin-bottom: 10px;
}

.db-process-step p {
	font-size: 15px;
	color: #CBD5E1;
	line-height: 1.6;
}

.db-process-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 28px;
}

.db-process-connector i {
	font-size: 20px;
	color: #1E293B;
}

@media (max-width: 767px) {
	.db-process-connector { display: none; }
}

.db-section-testimonials {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-testimonial-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 32px 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.db-testimonial-card .db-quote {
	font-size: 16px;
	color: #374151;
	line-height: 1.7;
	font-style: italic;
	flex: 1;
	margin-bottom: 24px;
}

.db-testimonial-card .db-cite {
	font-size: 14px;
	font-weight: 600;
	color: #0F172A;
}

.db-testimonial-card .db-cite-role {
	font-size: 13px;
	color: #64748B;
	font-weight: 400;
}

.db-section-cta {
	background-color: #0D1117;
	padding: 80px 0;
	text-align: center;
}

.db-section-cta h2 {
	font-size: 36px;
	font-weight: 700;
	color: #F1F5F9;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.db-section-cta p {
	font-size: 18px;
	color: #CBD5E1;
	margin-bottom: 36px;
}

.db-section-cta .db-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.db-cta-card {
	background-color: #1C2533;
	border: 1px solid #1E293B;
	border-radius: 16px;
	padding: 48px 40px;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.db-cta-card h2 {
	font-size: 30px;
	font-weight: 700;
	color: #F1F5F9;
	margin-bottom: 12px;
}

.db-cta-card p {
	font-size: 16px;
	color: #CBD5E1;
	margin-bottom: 28px;
}

.site-footer {
	background-color: #0D1117;
	padding: 64px 0 0;
	border-top: 1px solid #1E293B;
}

.site-footer .db-footer-brand img {
	height: 36px;
	width: auto;
	margin-bottom: 16px;
}

.site-footer .db-footer-tagline {
	font-size: 14px;
	color: #94A3B8;
	line-height: 1.6;
	max-width: 220px;
}

.site-footer .db-footer-col-title {
	font-size: 13px;
	font-weight: 700;
	color: #F1F5F9;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

.site-footer .db-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer .db-footer-links li {
	margin-bottom: 10px;
}

.site-footer .db-footer-links a {
	font-size: 14px;
	color: #CBD5E1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer .db-footer-links a:hover {
	color: #7C2D12;
}

.site-footer .db-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
}

.site-footer .db-footer-contact-item i {
	font-size: 14px;
	color: #7C2D12;
	margin-top: 2px;
	flex-shrink: 0;
}

.site-footer .db-footer-contact-item span {
	font-size: 14px;
	color: #94A3B8;
	line-height: 1.5;
}

.site-footer .db-footer-bottom {
	margin-top: 48px;
	padding: 20px 0;
	border-top: 1px solid #1E293B;
}

.site-footer .db-footer-bottom p {
	font-size: 13px;
	color: #64748B;
	margin: 0;
}

.site-footer .db-footer-legal {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.site-footer .db-footer-legal a {
	font-size: 13px;
	color: #64748B;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer .db-footer-legal a:hover {
	color: #7C2D12;
}

@media (max-width: 767px) {
	.site-footer .db-footer-legal {
		justify-content: flex-start;
		margin-top: 8px;
	}
}

#db-cookie-banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #111827;
	border-top: 1px solid #1E293B;
	padding: 20px 24px;
}

.db-cookie-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.db-cookie-text {
	font-size: 14px;
	color: #CBD5E1;
	line-height: 1.6;
	flex: 1;
	min-width: 280px;
}

.db-cookie-text a {
	color: #7C2D12;
	text-decoration: underline;
}

.db-cookie-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.db-cookie-btn-accept {
	padding: 9px 18px;
	background-color: #7C2D12;
	color: #FFFFFF;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.db-cookie-btn-accept:hover {
	background-color: #9A3412;
}

.db-cookie-btn-analytics {
	padding: 9px 18px;
	background-color: transparent;
	color: #CBD5E1;
	border: 1px solid #1E293B;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.db-cookie-btn-analytics:hover {
	border-color: #64748B;
	color: #F1F5F9;
}

.db-cookie-btn-necessary {
	padding: 9px 18px;
	background-color: transparent;
	color: #64748B;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.db-cookie-btn-necessary:hover {
	color: #CBD5E1;
}

.db-section-story {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-story-text h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 20px;
	letter-spacing: -0.01em;
}

.db-story-text p {
	font-size: 16px;
	color: #374151;
	line-height: 1.7;
}

.db-story-img img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.db-section-stats-cards {
	background-color: #FFFFFF;
	padding: 60px 0;
}

.db-stat-card {
	background-color: #F8F9FA;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 28px 24px;
	text-align: center;
	height: 100%;
}

.db-stat-card .db-stat-big {
	font-size: 36px;
	font-weight: 700;
	color: #7C2D12;
	line-height: 1;
	margin-bottom: 8px;
}

.db-stat-card .db-stat-label {
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.db-section-principles {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-principle-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.db-principle-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 12px;
}

.db-principle-card p {
	font-size: 15px;
	color: #374151;
	line-height: 1.65;
	margin: 0;
	flex: 1;
}

.db-section-team {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-team-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 28px 24px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.db-team-card .db-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 16px;
	flex-shrink: 0;
}

.db-team-card .db-team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.db-team-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 4px;
}

.db-team-card .db-team-title {
	font-size: 14px;
	color: #64748B;
	font-weight: 500;
}

.db-section-contact {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-contact-form-wrap {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 40px 36px;
}

.db-contact-form-wrap .form-label {
	font-size: 14px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 6px;
}

.db-contact-form-wrap .form-control {
	border: 1.5px solid #E2E8F0;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 15px;
	color: #0F172A;
	background-color: #FFFFFF;
	transition: border-color 0.2s ease;
}

.db-contact-form-wrap .form-control:focus {
	border-color: #7C2D12;
	box-shadow: 0 0 0 3px rgba(124, 45, 18, 0.1);
	outline: none;
}

.db-contact-form-wrap .form-control::placeholder {
	color: #94A3B8;
}

.db-contact-info-card {
	background-color: #1C2533;
	border: 1px solid #1E293B;
	border-radius: 16px;
	padding: 40px 36px;
	height: 100%;
}

.db-contact-info-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #F1F5F9;
	margin-bottom: 24px;
}

.db-contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.db-contact-info-item .db-contact-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(124, 45, 18, 0.15);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.db-contact-info-item .db-contact-icon i {
	font-size: 16px;
	color: #7C2D12;
}

.db-contact-info-item .db-contact-detail {
	font-size: 15px;
	color: #CBD5E1;
	line-height: 1.5;
}

.db-contact-info-item .db-contact-detail a {
	color: #CBD5E1;
	text-decoration: none;
}

.db-contact-info-item .db-contact-detail a:hover {
	color: #7C2D12;
}

.db-contact-success {
	display: none;
	text-align: center;
	padding: 48px 24px;
}

.db-contact-success i {
	font-size: 48px;
	color: #7C2D12;
	margin-bottom: 16px;
	display: block;
}

.db-contact-success h3 {
	font-size: 24px;
	font-weight: 700;
	color: #0F172A;
}

.db-contact-success p {
	color: #374151;
}

.db-section-blog {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-blog-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.db-blog-card:hover {
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.db-blog-card .db-blog-thumb {
	height: 200px;
	overflow: hidden;
	flex-shrink: 0;
}

.db-blog-card .db-blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.db-blog-card:hover .db-blog-thumb img {
	transform: scale(1.04);
}

.db-blog-card .db-blog-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.db-blog-card .db-blog-meta {
	font-size: 13px;
	color: #64748B;
	margin-bottom: 10px;
}

.db-blog-card .db-blog-meta i {
	margin-right: 4px;
}

.db-blog-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 10px;
	line-height: 1.4;
}

.db-blog-card h3 a {
	color: #0F172A;
	text-decoration: none;
	transition: color 0.2s ease;
}

.db-blog-card h3 a:hover {
	color: #7C2D12;
}

.db-blog-card .db-blog-excerpt {
	font-size: 14px;
	color: #374151;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 16px;
}

.db-blog-card .db-read-more {
	font-size: 14px;
	font-weight: 600;
	color: #7C2D12;
	text-decoration: none;
	margin-top: auto;
	transition: color 0.2s ease;
}

.db-blog-card .db-read-more:hover {
	color: #9A3412;
}

.db-blog-card .db-read-more i {
	font-size: 12px;
	margin-left: 4px;
}

.db-section-legal {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-legal-content {
	max-width: 800px;
	margin: 0 auto;
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 48px 40px;
}

.db-legal-content h1 {
	font-size: 32px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 8px;
}

.db-legal-content .db-legal-date {
	font-size: 13px;
	color: #64748B;
	margin-bottom: 32px;
}

.db-legal-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #0F172A;
	margin-top: 40px;
	margin-bottom: 12px;
}

.db-legal-content h3 {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-top: 28px;
	margin-bottom: 10px;
}

.db-legal-content p {
	font-size: 15px;
	color: #374151;
	line-height: 1.7;
}

.db-legal-content ul {
	padding-left: 20px;
	margin-bottom: 16px;
}

.db-legal-content ul li {
	font-size: 15px;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 6px;
}

.db-legal-content a {
	color: #7C2D12;
}

@media (max-width: 767px) {
	.db-legal-content {
		padding: 28px 20px;
	}
}

.db-404-page {
	min-height: 100vh;
	background-color: #0D1117;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 24px;
}

.db-404-inner {
	max-width: 560px;
}

.db-404-logo {
	height: 36px;
	width: auto;
	margin-bottom: 48px;
}

.db-404-num {
	font-size: 88px;
	font-weight: 700;
	color: #7C2D12;
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}

.db-404-inner h1 {
	font-size: 28px;
	font-weight: 700;
	color: #F1F5F9;
	margin-bottom: 12px;
}

.db-404-inner p {
	font-size: 16px;
	color: #CBD5E1;
	line-height: 1.65;
	margin-bottom: 36px;
}

.db-article-hero {
	background-color: #0D1117;
	padding-top: 64px;
}

.db-article-hero .db-article-thumb {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.db-article-hero .db-article-header {
	padding: 48px 0 40px;
}

.db-article-hero .db-article-meta {
	font-size: 13px;
	color: #64748B;
	margin-bottom: 16px;
}

.db-article-hero h1 {
	font-size: 36px;
	font-weight: 700;
	color: #F1F5F9;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-bottom: 0;
}

.container-narrow {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 24px;
}

.db-article-body {
	background-color: #F8F9FA;
	padding: 56px 0 80px;
}

.db-article-body p {
	font-size: 17px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 20px;
}

.db-article-body h2 {
	font-size: 26px;
	font-weight: 700;
	color: #0F172A;
	margin-top: 48px;
	margin-bottom: 16px;
}

.db-article-body h3 {
	font-size: 22px;
	font-weight: 600;
	color: #0F172A;
	margin-top: 32px;
	margin-bottom: 12px;
}

.db-article-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 28px 0;
}

.db-article-body ul, .db-article-body ol {
	padding-left: 22px;
	margin-bottom: 20px;
}

.db-article-body li {
	font-size: 17px;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 8px;
}

.db-article-body code {
	background-color: #1C2533;
	color: #CBD5E1;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
}

.db-article-body pre {
	background-color: #1C2533;
	color: #CBD5E1;
	padding: 20px 24px;
	border-radius: 8px;
	overflow-x: auto;
	margin: 24px 0;
}

.db-section-features-alt {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.db-section-features-alt.db-alt-dark {
	background-color: #111827;
}

.db-section-features-alt.db-alt-dark .db-section-title {
	color: #F1F5F9;
}

.db-section-features-alt.db-alt-dark p {
	color: #CBD5E1;
}

.db-features-alt-img img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.db-features-alt-text h2 {
	font-size: 32px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.db-features-alt-text p {
	font-size: 16px;
	color: #374151;
	line-height: 1.7;
}

.db-alt-dark .db-features-alt-text h2 {
	color: #F1F5F9;
}

.db-section-specs {
	background-color: #FFFFFF;
	padding: 80px 0;
}

.db-specs-table {
	width: 100%;
	border-collapse: collapse;
}

.db-specs-table thead th {
	background-color: #0F172A;
	color: #F1F5F9;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 20px;
	text-align: left;
}

.db-specs-table thead th:first-child {
	border-radius: 8px 0 0 0;
}

.db-specs-table thead th:last-child {
	border-radius: 0 8px 0 0;
}

.db-specs-table tbody tr {
	border-bottom: 1px solid #E2E8F0;
}

.db-specs-table tbody tr:last-child {
	border-bottom: none;
}

.db-specs-table tbody td {
	padding: 14px 20px;
	font-size: 14px;
	color: #374151;
}

.db-specs-table tbody td:first-child {
	font-weight: 600;
	color: #0F172A;
}

.db-specs-table .db-check {
	color: #16a34a;
	font-size: 16px;
}

.db-specs-table .db-cross {
	color: #64748B;
}

.db-specs-table .db-partial {
	color: #d97706;
}

.db-specs-table tbody tr:hover {
	background-color: #F8F9FA;
}

.db-timeline {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	margin-top: 48px;
}

.db-timeline-step {
	flex: 1;
	min-width: 180px;
	text-align: center;
	padding: 0 16px;
	position: relative;
}

.db-timeline-step::after {
	content: '';
	position: absolute;
	top: 28px;
	right: -50%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #7C2D12, #1E293B);
}

.db-timeline-step:last-child::after {
	display: none;
}

.db-timeline-dot {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #7C2D12 0%, #9A3412 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.db-timeline-dot i {
	font-size: 22px;
	color: #FFFFFF;
}

.db-timeline-step h4 {
	font-size: 17px;
	font-weight: 600;
	color: #F1F5F9;
	margin-bottom: 6px;
}

.db-timeline-step p {
	font-size: 14px;
	color: #CBD5E1;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.db-timeline-step::after { display: none; }
}

.db-section-process-alt {
	background-color: #111827;
	padding: 80px 0;
}

.db-section-process-alt .db-section-title {
	color: #F1F5F9;
}

.db-section-process-alt .db-section-sub {
	color: #CBD5E1;
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Logo: nav is always dark on getdreambase.com — show light logo by default.
   body.light-nav reserved for any future light-bg override. */
.site-nav .logo-img--dark { display: none; }
.site-nav .logo-img--light { display: inline-block; }
body.light-nav .site-nav .logo-img--dark { display: inline-block; }
body.light-nav .site-nav .logo-img--light { display: none; }
