/*
Theme Name: WPD Marketing Theme VI
Theme URI: https://wordpressdemo.com
Author: wordpressdemo
Author URI: https://wordpressdemo.com
Description: Giao diện marketing WordPress thuần PHP/CSS, không phụ thuộc framework frontend hay CSS framework.
Version: 1.0.2
Tested up to: 6.8
Text Domain: wpd-marketing-theme-vi
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
	--bg: #f7f8fb;
	--text: #0f172a;
	--muted: #64748b;
	--primary: #1d4ed8;
	--primary-dark: #1e40af;
	--card: #ffffff;
	--line: #dbe2ea;
	--ok-bg: #eafaf1;
	--dark: #101828;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
	line-height: 1.65;
	-webkit-text-size-adjust: 100%;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--primary-dark);
}

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

img,
video {
	max-width: 100%;
	height: auto;
}

.site-header {
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(8px);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px 0;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	font-size: 20px;
	color: #0f172a;
	letter-spacing: 0.01em;
}

.site-logo {
	display: block;
	width: auto;
	height: auto;
	max-height: 48px;
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 12px;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}

.main-nav ul::-webkit-scrollbar {
	display: none;
}

.main-nav a {
	color: #1e293b;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.main-nav a:hover {
	color: var(--primary);
}

.main-nav a.is-active {
	color: var(--primary);
	font-weight: 700;
	position: relative;
}

.main-nav a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary);
}

.header-contact-btn {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-contact-btn:hover {
	color: #fff;
	background: linear-gradient(135deg, #1d4ed8, #1e40af);
	transform: translateY(-1px) scale(1.04);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.36);
}

.hero {
	padding: 54px 0 44px;
}

.home-hero {
	background: linear-gradient(125deg, #0f172a, #162a4a 48%, #1e3a8a);
	color: #e5edff;
	padding: 56px 0 48px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: center;
}

.hero h1 {
	font-size: clamp(28px, 8vw, 42px);
	line-height: 1.16;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}

.hero p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 16px;
}

.home-hero p {
	color: #c8d5f1;
}

.hero-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #93c5fd;
}

.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 12px;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 10px 22px rgba(29, 78, 216, 0.28);
}

.btn-primary:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline {
	border: 1px solid var(--line);
	background: #fff;
	color: #0f172a;
}

.home-hero .btn-outline {
	background: transparent;
	border-color: #78a3f7;
	color: #e5edff;
}

.home-hero .btn-outline:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.hero-card,
.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px;
}

.hero-main ul {
	padding-left: 20px;
}

.hero-points {
	margin: 18px 0 0;
	display: grid;
	gap: 8px;
}

.hero-points li {
	color: #d6e3ff;
}

.hero-highlight {
	background: rgba(15, 23, 42, 0.35);
	border-color: rgba(148, 163, 184, 0.45);
	backdrop-filter: blur(2px);
}

.hero-highlight-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 14px;
}

.hero-highlight h3 {
	margin-top: 0;
	margin-bottom: 14px;
	color: #f5f8ff;
}

.hero-highlight-label {
	color: #93c5fd;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.hero-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.hero-stats strong {
	display: block;
	font-size: 30px;
	color: #ffffff;
	line-height: 1.2;
}

.hero-stats span {
	font-size: 13px;
	color: #c7d7fb;
}

.section {
	padding: 52px 0;
}

.section-surface {
	background: #eef2f8;
}

.section-kicker {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 10px;
}

.section-title {
	font-size: clamp(24px, 7vw, 34px);
	letter-spacing: -0.01em;
	margin: 0 0 14px;
}

.section-desc {
	max-width: 760px;
	margin: 0 0 20px;
	color: var(--muted);
}

.grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.product-item h3 {
	margin-top: 0;
	margin-bottom: 8px;
}

.product-item-thumb {
	display: block;
	margin-bottom: 12px;
	border-radius: 12px;
	overflow: hidden;
	background: #e2e8f0;
}

.product-item-thumb-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-item-thumb-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 4 / 3;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	background: #e2e8f0;
}

.tag-chip {
	display: inline-block;
	margin: 0 0 12px;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
	color: #1d4ed8;
	background: #dbeafe;
}

.product-meta {
	color: var(--muted);
	font-size: 14px;
}

.feature-grid .card h3 {
	margin-top: 0;
	margin-bottom: 10px;
}

.feature-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 12px;
}

.quote-card p:first-child {
	margin-top: 0;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	padding: 0;
}

.faq-list summary {
	list-style: none;
	cursor: pointer;
	font-weight: 600;
	padding: 16px 18px;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list details p {
	padding: 0 18px 16px;
	margin: 0;
	color: var(--muted);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: start;
}

.contact-meta p {
	margin: 8px 0;
}

.homepage-contact-form .wpd-form {
	display: grid;
	gap: 10px;
}

.homepage-contact-form .wpd-form__label {
	font-weight: 600;
}

.homepage-contact-form .wpd-form__control {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	font: inherit;
}

.homepage-contact-form .wpd-form__submit {
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 700;
	color: #fff;
	background: var(--primary);
	cursor: pointer;
}

.homepage-contact-form .wpd-form__submit:hover {
	background: #0f46cc;
}

.product-inquiry-form .wpd-form {
	display: grid;
	gap: 10px;
}

.product-inquiry-form .wpd-form__label {
	font-weight: 600;
}

.product-inquiry-form .wpd-form__control {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	font: inherit;
}

.product-inquiry-form .wpd-form__submit {
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 700;
	color: #fff;
	background: var(--primary);
	cursor: pointer;
}

.product-inquiry-form .wpd-form__submit:hover {
	background: #0f46cc;
}

.product-inquiry-form--compact .wpd-form__control {
	padding: 9px 10px;
}

.site-footer {
	padding: 40px 0 24px;
	border-top: 1px solid var(--line);
	background: #fff;
	margin-top: 44px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.footer-title {
	margin: 0 0 12px;
	font-size: 16px;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
}

.footer-brand .site-logo {
	max-height: 44px;
}

.footer-copy {
	margin: 0;
	max-width: 420px;
	color: var(--muted);
}

.footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	color: var(--muted);
}

.footer-social {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-social a {
	padding: 7px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: #334155;
	font-size: 13px;
}

.footer-social a:hover {
	border-color: #bfdbfe;
	color: var(--primary);
}

.footer-bottom {
	margin: 18px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
}

.page-hero {
	padding-top: 48px;
}

.tag-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.product-price {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 700;
	color: #1e40af;
}

.post-list {
	display: grid;
	gap: 16px;
}

.post-card h2 {
	margin: 6px 0 10px;
}

.post-meta {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
}

.post-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	color: var(--muted);
	font-size: 14px;
}

.text-link {
	font-weight: 600;
}

.detail-article {
	display: grid;
	gap: 18px;
}

.detail-cover img {
	border-radius: 12px;
}

.detail-content > *:first-child {
	margin-top: 0;
}

.detail-content ul,
.detail-content ol {
	padding-left: 20px;
}

.detail-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.nav-links a,
.nav-links span {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	color: #334155;
	font-size: 13px;
}

.nav-links .current {
	background: #dbeafe;
	border-color: #bfdbfe;
	color: #1d4ed8;
}

.page-title {
	font-size: 34px;
	margin: 28px 0 12px;
}

.content-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.sidebar ul {
	padding-left: 20px;
}

.landing-hero {
	padding-top: 46px;
}

.landing-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: center;
}

.landing-hero-media {
	padding: 10px;
	overflow: hidden;
}

.landing-hero-media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 12px;
}

.landing-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.landing-stats .card {
	background: #fff;
}

.landing-stats strong {
	display: block;
	font-size: clamp(28px, 6.5vw, 38px);
	line-height: 1.2;
	margin-bottom: 8px;
	color: #0f172a;
}

.landing-stats p {
	margin: 0;
	color: var(--muted);
}

.landing-card-grid .card {
	height: 100%;
}

.landing-card-grid .card p {
	color: var(--muted);
	margin-bottom: 0;
}

.landing-legal {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.landing-legal h3 {
	margin-top: 0;
	margin-bottom: 8px;
}

.landing-legal p {
	margin: 0;
	color: var(--muted);
}

.industry-hub-grid .industry-hub-card h3 {
	margin-top: 0;
	margin-bottom: 8px;
}

.industry-hub-grid .industry-hub-card p {
	margin-top: 0;
	margin-bottom: 14px;
}

@media (min-width: 768px) {
	.hero {
		padding: 70px 0 56px;
	}

	.home-hero {
		padding: 70px 0 56px;
	}

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

	.contact-grid,
	.content-wrap {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 1fr;
	}

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

	.landing-stats,
	.landing-legal {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.site-header-inner {
		flex-wrap: nowrap;
		padding: 16px 0;
	}

	.header-right {
		width: auto;
		gap: 20px;
		flex-wrap: nowrap;
		justify-content: flex-end;
	}

	.main-nav ul {
		gap: 26px;
		overflow: visible;
	}

	.main-nav a {
		font-size: 13px;
		letter-spacing: 0.08em;
	}

	.header-contact-btn {
		padding: 11px 20px;
	}

	.hero {
		padding: 90px 0 74px;
	}

	.home-hero {
		padding: 84px 0 64px;
	}

	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 36px;
	}

	.grid-3,
	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}

	.content-wrap {
		grid-template-columns: 1fr 320px;
		gap: 20px;
	}

	.contact-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 24px;
	}

	.section {
		padding: 80px 0;
	}

	.landing-hero-grid {
		grid-template-columns: 1.08fr 0.92fr;
		gap: 22px;
	}

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

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

@media (min-width: 1280px) {
	.container {
		width: min(1240px, calc(100% - 48px));
	}

	.hero h1 {
		font-size: clamp(38px, 4vw, 58px);
	}
}

@media (max-width: 320px) {
	.container {
		width: calc(100% - 20px);
	}

	.brand {
		font-size: 18px;
	}

	.main-nav a {
		font-size: 11px;
	}

	.hero h1 {
		font-size: 26px;
	}

	.hero p {
		font-size: 15px;
	}

	.btn,
	.header-contact-btn {
		width: 100%;
		text-align: center;
	}

	.hero-highlight,
	.card {
		padding: 16px;
	}
}

@media (min-width: 360px) and (max-width: 374px) {
	.hero h1 {
		font-size: 30px;
	}

	.btn {
		padding: 12px 18px;
	}
}

@media (min-width: 375px) and (max-width: 389px) {
	.hero h1 {
		font-size: 31px;
	}

	.section {
		padding: 56px 0;
	}
}

@media (min-width: 390px) and (max-width: 413px) {
	.hero h1 {
		font-size: 32px;
	}

	.hero-cta {
		gap: 10px;
	}
}

@media (min-width: 414px) and (max-width: 767px) {
	.container {
		width: min(1200px, calc(100% - 36px));
	}

	.hero h1 {
		font-size: 34px;
	}

	.grid-3,
	.product-grid {
		gap: 16px;
	}
}

@media (min-width: 768px) and (max-width: 819px) {
	.container {
		width: min(1200px, calc(100% - 40px));
	}

	.site-header-inner {
		gap: 14px;
	}

	.main-nav a {
		font-size: 12px;
		letter-spacing: 0.04em;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 820px) and (max-width: 1023px) {
	.container {
		width: min(1200px, calc(100% - 44px));
	}

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

	.contact-grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

@media (min-width: 1024px) and (max-width: 1365px) {
	.container {
		width: min(1200px, calc(100% - 56px));
	}

	.hero h1 {
		font-size: clamp(36px, 4vw, 50px);
	}

	.main-nav ul {
		gap: 20px;
	}
}

@media (min-width: 1366px) {
	.container {
		width: min(1280px, calc(100% - 64px));
	}

	.hero h1 {
		font-size: clamp(42px, 3.6vw, 62px);
	}
}

@media (orientation: landscape) and (max-width: 932px) and (max-height: 430px) {
	html {
		scroll-padding-top: 62px;
	}

	.site-header-inner {
		padding: 8px 0;
		gap: 8px;
		flex-wrap: nowrap;
	}

	.brand {
		font-size: 17px;
	}

	.header-right {
		width: auto;
		gap: 10px;
		flex-wrap: nowrap;
		margin-left: auto;
	}

	.main-nav ul {
		gap: 8px;
		max-width: 56vw;
		overflow-x: auto;
	}

	.main-nav a {
		font-size: 11px;
		letter-spacing: 0.04em;
	}

	.header-contact-btn {
		padding: 8px 12px;
		font-size: 11px;
	}

	.hero {
		padding: 28px 0 20px;
	}

	.home-hero {
		padding: 30px 0 22px;
		min-height: calc(100vh - 62px);
		min-height: calc(100svh - 62px);
		display: flex;
		align-items: center;
	}

	.hero-grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 14px;
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(24px, 4vw, 34px);
		margin-bottom: 10px;
	}

	.hero p {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.hero-cta {
		gap: 8px;
	}

	.btn {
		padding: 9px 14px;
		font-size: 11px;
	}

	.hero-points {
		display: none;
	}

	.hero-card,
	.card {
		padding: 14px;
	}

	.hero-stats strong {
		font-size: 24px;
	}

	.home-hero .hero-highlight {
		align-self: center;
	}
}

@media (orientation: landscape) and (min-width: 1000px) and (max-width: 1180px) and (max-height: 820px) {
	html {
		scroll-padding-top: 78px;
	}

	.site-header-inner {
		padding: 12px 0;
	}

	.main-nav ul {
		gap: 16px;
	}

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

	.home-hero {
		padding: 62px 0 48px;
		min-height: calc(100vh - 78px);
		min-height: calc(100svh - 78px);
		display: flex;
		align-items: center;
	}

	.hero-grid {
		gap: 24px;
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(34px, 3.8vw, 46px);
	}
}

.mobile-nav-toggle,
.mobile-nav-close {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.mobile-nav-toggle {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid var(--line);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.mobile-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #0f172a;
}

.mobile-nav-backdrop {
	display: none;
}

@media (max-width: 1023px) {
	body.mobile-nav-open {
		overflow: hidden;
	}

	.site-header-inner {
		flex-wrap: nowrap;
		gap: 12px;
	}

	.brand {
		max-width: calc(100% - 58px);
	}

	.header-right {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 70;
		width: min(86vw, 360px);
		height: 100vh;
		height: 100dvh;
		padding: 18px 16px 22px;
		background: linear-gradient(180deg, #ffffff, #f8fbff);
		box-shadow: -16px 0 44px rgba(15, 23, 42, 0.24);
		border-left: 1px solid rgba(148, 163, 184, 0.3);
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 14px;
		transform: translateX(104%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
	}

	body.mobile-nav-open .header-right {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-nav-close {
		width: 36px;
		height: 36px;
		border-radius: 999px;
		align-self: flex-end;
		background: #eff6ff;
		color: #1e3a8a;
		font-size: 28px;
		line-height: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.main-nav {
		width: 100%;
	}

	.main-nav ul {
		flex-direction: column;
		overflow: visible;
		gap: 8px;
	}

	.main-nav a {
		display: block;
		padding: 12px 14px;
		border-radius: 12px;
		font-size: 13px;
		letter-spacing: 0.06em;
		background: #ffffff;
		border: 1px solid #e2e8f0;
	}

	.main-nav a.is-active {
		background: #eff6ff;
		border-color: #bfdbfe;
	}

	.main-nav a.is-active::after {
		display: none;
	}

	.header-contact-btn {
		width: 100%;
		text-align: center;
		padding: 12px 16px;
	}

	.mobile-nav-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(15, 23, 42, 0.48);
		backdrop-filter: blur(2px);
		z-index: 60;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}

	body.mobile-nav-open .mobile-nav-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (min-width: 1024px) {
	.mobile-nav-toggle,
	.mobile-nav-close,
	.mobile-nav-backdrop {
		display: none !important;
	}

	.header-right {
		position: static;
		height: auto;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		padding: 0;
		box-shadow: none;
		border: 0;
		background: transparent;
		width: auto;
	}
}
