* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.mdc-page {
	margin: 0;
	min-height: 100vh;
	background: #fff;
	color: #111827;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.mdc-page a {
	color: inherit;
	text-decoration: none;
}

.mdc-page img {
	display: block;
	max-width: 100%;
}

.mdc-container {
	width: min(100% - 32px, 1280px);
	margin: 0 auto;
}

.mdc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .95);
	border-bottom: 1px solid #f3f4f6;
	backdrop-filter: blur(14px);
}

.mdc-nav {
	width: min(100% - 32px, 1280px);
	height: 64px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.mdc-brand,
.mdc-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	color: #0f172a;
	white-space: nowrap;
}

.mdc-brand-logo {
	width: auto;
	height: 48px;
	object-fit: contain;
	filter: invert(1);
}

.mdc-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.mdc-nav-links a {
	padding: 8px 12px;
	border-radius: 6px;
	color: #4b5563;
	font-size: 14px;
	transition: color .2s ease, background .2s ease;
}

.mdc-nav-links a:hover {
	background: #f8fafc;
	color: #0f172a;
}

.mdc-nav-cta,
.mdc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mdc-nav-cta,
.mdc-button-dark {
	background: #0f172a;
	color: #fff;
}

.mdc-nav-cta:hover,
.mdc-button-dark:hover {
	background: #1e293b;
}

.mdc-menu-button {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.mdc-menu-button span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: #4b5563;
}

.mdc-mobile-menu {
	display: none;
	border-top: 1px solid #f3f4f6;
	background: #fff;
}

.mdc-mobile-menu a {
	display: block;
	padding: 13px 20px;
	color: #374151;
	font-size: 14px;
	border-bottom: 1px solid #f9fafb;
}

.mdc-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 560px;
	overflow: hidden;
	background: #0f172a;
	color: #fff;
}

.mdc-hero-compact {
	min-height: 360px;
}

.mdc-hero-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: .22;
}

.mdc-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(30, 41, 59, .78) 48%, rgba(15, 23, 42, .92));
}

.mdc-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	align-items: center;
	gap: 52px;
	padding: 92px 0;
}

.mdc-hero-compact .mdc-hero-inner {
	display: block;
	padding: 80px 0;
}

.mdc-hero-copy {
	max-width: 760px;
}

.mdc-eyebrow {
	margin: 0 0 16px;
	color: #fbbf24;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mdc-eyebrow-light {
	color: #d99d17;
}

.mdc-hero h1 {
	margin: 0;
	max-width: 920px;
	color: #fff;
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: 0;
}

.mdc-hero p:not(.mdc-eyebrow) {
	max-width: 720px;
	margin: 24px 0 0;
	color: #d1d5db;
	font-size: 18px;
	line-height: 1.75;
}

.mdc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.mdc-actions-center {
	justify-content: center;
}

.mdc-button-gold {
	background: #d99d17;
	color: #0f172a;
}

.mdc-button-gold:hover {
	background: #f4b82a;
	box-shadow: 0 10px 24px rgba(217, 157, 23, .22);
}

.mdc-button-ghost {
	border-color: rgba(255, 255, 255, .32);
	background: transparent;
	color: #fff;
}

.mdc-button-ghost:hover {
	background: rgba(255, 255, 255, .1);
}

.mdc-button-outline {
	border-color: #0f172a;
	background: transparent;
	color: #0f172a;
}

.mdc-button-outline:hover {
	background: #0f172a;
	color: #fff;
}

.mdc-hero-visual {
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.mdc-hero-visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #020617;
}

.mdc-stats {
	background: #f8fafc;
	padding: 44px 0;
}

.mdc-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	text-align: center;
}

.mdc-stat-grid strong {
	display: block;
	color: #0f172a;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.15;
}

.mdc-stat-grid span {
	display: block;
	margin-top: 4px;
	color: #6b7280;
	font-size: 14px;
}

.mdc-section {
	padding: 80px 0;
	background: #fff;
}

.mdc-section-soft {
	background: #f8fafc;
}

.mdc-section-intro {
	max-width: 680px;
	margin: 0 auto 54px;
	text-align: center;
}

.mdc-section-intro h2,
.mdc-split h2,
.mdc-contact-panel h2,
.mdc-cta h2 {
	margin: 0;
	color: #0f172a;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
}

.mdc-section-intro > p:not(.mdc-eyebrow),
.mdc-split p,
.mdc-contact-panel p {
	margin: 16px 0 0;
	color: #6b7280;
	line-height: 1.75;
}

.mdc-card-grid {
	display: grid;
	gap: 24px;
}

.mdc-card-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mdc-case-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mdc-card {
	display: block;
	overflow: hidden;
	border: 1px solid #f3f4f6;
	border-radius: 12px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mdc-card:hover {
	border-color: #f7d784;
	box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
	transform: translateY(-2px);
}

.mdc-card-image {
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, #1e293b, #0f172a);
	overflow: hidden;
}

.mdc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.mdc-card:hover .mdc-card-image img {
	transform: scale(1.05);
}

.mdc-card-body {
	padding: 24px;
}

.mdc-card-body h3,
.mdc-step h3,
.mdc-article-card h3 {
	margin: 0;
	color: #0f172a;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.35;
}

.mdc-card-body p {
	margin: 10px 0 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.7;
}

.mdc-card-body span {
	display: inline-block;
	margin-top: 18px;
	color: #d99d17;
	font-size: 14px;
	font-weight: 700;
}

.mdc-case-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 14px;
	color: #9ca3af;
	font-size: 12px;
}

.mdc-case-meta strong {
	min-width: 0;
	overflow: hidden;
	color: #334155;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

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

.mdc-article-card {
	display: flex;
	min-height: 260px;
	flex-direction: column;
	padding: 24px;
	border: 1px solid #f3f4f6;
	border-radius: 12px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mdc-article-card:hover {
	border-color: #f7d784;
	box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
	transform: translateY(-2px);
}

.mdc-pill {
	width: fit-content;
	margin-bottom: 14px;
	padding: 4px 8px;
	border-radius: 4px;
	background: #fff7df;
	color: #d99d17;
	font-size: 12px;
	font-weight: 750;
}

.mdc-article-card p {
	margin: 12px 0 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.65;
}

.mdc-article-card div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 22px;
	color: #9ca3af;
	font-size: 12px;
}

.mdc-article-card div span:last-child {
	color: #d99d17;
}

.mdc-center {
	margin-top: 40px;
	text-align: center;
}

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

.mdc-step {
	padding: 28px;
	border: 1px solid #edf0f3;
	border-radius: 12px;
	background: #fff;
}

.mdc-step span {
	display: inline-block;
	margin-bottom: 18px;
	color: #d99d17;
	font-size: 13px;
	font-weight: 800;
}

.mdc-step p {
	margin: 12px 0 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.7;
}

.mdc-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	align-items: center;
	gap: 54px;
}

.mdc-split img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	object-fit: cover;
	background: #0f172a;
}

.mdc-faq-list {
	max-width: 880px;
}

.mdc-faq {
	border-bottom: 1px solid #e5e7eb;
}

.mdc-faq summary {
	padding: 24px 0;
	color: #0f172a;
	font-size: 18px;
	font-weight: 750;
	cursor: pointer;
}

.mdc-faq p {
	margin: -8px 0 24px;
	color: #6b7280;
	line-height: 1.75;
}

.mdc-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
	gap: 32px;
	align-items: start;
}

.mdc-contact-panel,
.mdc-form {
	border: 1px solid #edf0f3;
	border-radius: 12px;
	background: #fff;
	padding: 32px;
}

.mdc-contact-panel .mdc-button {
	margin-top: 26px;
}

.mdc-form {
	display: grid;
	gap: 18px;
}

.mdc-form form,
.mdc-form .wpcf7-form {
	display: grid;
	gap: 18px;
	margin: 0;
}

.mdc-form label {
	display: grid;
	gap: 8px;
	color: #374151;
	font-size: 14px;
	font-weight: 650;
}

.mdc-form input,
.mdc-form select,
.mdc-form textarea,
.mdc-form .wpcf7-form-control {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #fff;
	color: #111827;
	font: inherit;
	padding: 12px 13px;
	outline: 0;
}

.mdc-form input:focus,
.mdc-form select:focus,
.mdc-form textarea:focus {
	border-color: #d99d17;
	box-shadow: 0 0 0 3px rgba(217, 157, 23, .16);
}

.mdc-form input[type="submit"],
.mdc-form .wpcf7-submit {
	width: auto;
	min-height: 42px;
	padding: 10px 18px;
	border-color: transparent;
	background: #d99d17;
	color: #0f172a;
	font-weight: 750;
	cursor: pointer;
}

.mdc-form input[type="submit"]:hover,
.mdc-form .wpcf7-submit:hover {
	background: #f4b82a;
}

.mdc-cta {
	padding: 80px 0;
	background: #0f172a;
	text-align: center;
}

.mdc-cta-inner {
	max-width: 780px;
}

.mdc-cta h2 {
	color: #fff;
}

.mdc-cta p {
	margin: 16px auto 0;
	max-width: 620px;
	color: #9ca3af;
	font-size: 18px;
	line-height: 1.7;
}

.mdc-footer {
	background: #fff;
	border-top: 1px solid #f3f4f6;
}

.mdc-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 36px;
	padding: 56px 0 38px;
}

.mdc-footer-brand img {
	height: 38px;
	width: auto;
	filter: invert(1);
}

.mdc-footer p {
	max-width: 300px;
	margin: 16px 0 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.65;
}

.mdc-footer h3 {
	margin: 0 0 14px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
}

.mdc-footer a:not(.mdc-footer-brand) {
	display: block;
	margin-top: 10px;
	color: #6b7280;
	font-size: 14px;
}

.mdc-footer a:hover {
	color: #0f172a;
}

.mdc-footer-bottom {
	padding: 20px 0 28px;
	border-top: 1px solid #f3f4f6;
	color: #9ca3af;
	font-size: 13px;
}

.mdc-wp-list {
	max-width: 920px;
}

.mdc-wp-list-item {
	padding: 28px 0;
	border-bottom: 1px solid #e5e7eb;
}

.mdc-wp-list-item h2 {
	margin: 0;
	color: #0f172a;
	font-size: 30px;
	line-height: 1.2;
}

.mdc-wp-meta {
	margin-top: 10px;
	color: #6b7280;
	font-size: 14px;
}

.mdc-wp-excerpt {
	margin-top: 14px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.75;
}

.mdc-single {
	max-width: 980px;
	margin: 0 auto;
}

.mdc-single-featured {
	margin-bottom: 34px;
	overflow: hidden;
	border-radius: 8px;
	background: #f8fafc;
}

.mdc-single-featured img,
.mdc-single-content img {
	width: auto;
	height: auto;
	max-width: 100%;
	border-radius: 8px;
}

.mdc-single-content {
	color: #374151;
	font-size: 18px;
	line-height: 1.8;
}

.mdc-single-content p,
.mdc-single-content ul,
.mdc-single-content ol,
.mdc-single-content blockquote {
	margin: 0 0 24px;
}

.mdc-single-content h2,
.mdc-single-content h3,
.mdc-single-content h4,
.mdc-single-content h5 {
	margin: 34px 0 14px;
	color: #0f172a;
	line-height: 1.2;
}

.mdc-single-content h2 {
	font-size: 34px;
}

.mdc-single-content h3 {
	font-size: 28px;
}

.mdc-single-content h4,
.mdc-single-content h5 {
	font-size: 22px;
}

.mdc-single-content a {
	color: #0f172a;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 1080px) {
	.mdc-nav-links,
	.mdc-nav-cta {
		display: none;
	}

	.mdc-menu-button {
		display: block;
	}

	.mdc-mobile-menu[data-open="true"] {
		display: block;
	}

	.mdc-hero-inner,
	.mdc-split,
	.mdc-contact-grid {
		grid-template-columns: 1fr;
	}

	.mdc-hero-visual {
		max-width: 520px;
	}

	.mdc-card-grid-3,
	.mdc-case-grid,
	.mdc-article-grid,
	.mdc-step-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.mdc-container,
	.mdc-nav {
		width: min(100% - 24px, 1280px);
	}

	.mdc-brand span {
		max-width: 160px;
		white-space: normal;
	}

	.mdc-hero {
		min-height: 520px;
	}

	.mdc-hero-compact {
		min-height: 330px;
	}

	.mdc-hero-inner,
	.mdc-hero-compact .mdc-hero-inner {
		padding: 60px 0;
	}

	.mdc-hero h1 {
		font-size: 40px;
	}

	.mdc-hero p:not(.mdc-eyebrow),
	.mdc-cta p {
		font-size: 16px;
	}

	.mdc-actions,
	.mdc-actions-center {
		flex-direction: column;
		align-items: stretch;
	}

	.mdc-stat-grid,
	.mdc-card-grid-3,
	.mdc-case-grid,
	.mdc-article-grid,
	.mdc-step-grid,
	.mdc-footer-grid {
		grid-template-columns: 1fr;
	}

	.mdc-section,
	.mdc-cta {
		padding: 60px 0;
	}

	.mdc-card-body,
	.mdc-step,
	.mdc-article-card,
	.mdc-contact-panel,
	.mdc-form {
		padding: 22px;
	}

	.mdc-single-content {
		font-size: 16px;
	}

	.mdc-wp-list-item h2,
	.mdc-single-content h2 {
		font-size: 28px;
	}
}
