@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter_18pt-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter_18pt-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter_18pt-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter_18pt-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter_18pt-ExtraBold.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter_18pt-Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--qnm-blue: #00449b;
	--qnm-blue-dark: #00366f;
	--qnm-green: #43a72f;
	--qnm-green-dark: #388e3c;
	--qnm-red: #e60012;
	--qnm-ink: #071737;
	--qnm-muted: #405068;
	--qnm-line: #dce5f2;
	--qnm-soft: #f3f8ff;
	--qnm-white: #fff;
	--qnm-radius: 8px;
	--qnm-shadow: 0 8px 24px rgba(0, 47, 105, .08);
	--qnm-font: "Inter", "Segoe UI", Arial, sans-serif;
}

@keyframes qnm-phone-pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes qnm-btn-shine {
	0% {
		left: -100%;
	}

	20% {
		left: 100%;
	}

	100% {
		left: 100%;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--qnm-ink);
	font-family: var(--qnm-font);
	font-size: 16px;
	line-height: 1.55;
	font-weight: 500;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	color: var(--qnm-blue);
	border: 2px solid var(--qnm-blue);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 2px 18px rgba(7, 23, 55, .08);
}

.site-header__inner {
	min-height: 104px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 292px;
}

.site-brand__mark {
	width: 78px;
	height: 78px;
	flex: 0 0 78px;
	display: grid;
	place-items: center;
	gap: 1px;
	border-radius: 50%;
	background: var(--qnm-green);
	color: #fff;
	text-align: center;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	box-shadow: inset 0 -6px 0 rgba(0, 0, 0, .08);
}

.site-brand__mark img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	border-radius: inherit;
}

.site-brand__mark--image {
	padding: 6px;
	background: #fff;
	color: inherit;
	box-shadow: 0 10px 24px rgba(7, 23, 55, .12);
}

.site-footer .site-brand__mark--image {
	background: #fff;
}

.site-brand__mark svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.site-brand__text strong,
.site-brand__text em {
	display: block;
	font-style: normal;
	font-weight: 800;
	line-height: 1.12;
}

.site-brand__text strong {
	color: var(--qnm-green);
	font-size: 25px;
}

.site-brand__text em {
	margin-top: 6px;
	color: var(--qnm-blue);
	font-size: 20px;
}

.site-nav {
	margin-left: auto;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu li {
	position: relative;
	list-style: none;
}

.menu-item__link-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 12px 0;
	color: var(--qnm-ink);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}

.site-menu a:hover,
.site-menu .current-menu-item>.menu-item__link-wrap>a,
.site-menu .current-menu-ancestor>.menu-item__link-wrap>a,
.site-menu .current-menu-parent>.menu-item__link-wrap>a {
	color: var(--qnm-blue);
}

.site-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 2px;
	background: var(--qnm-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.site-menu a:hover::after,
.site-menu .current-menu-item>.menu-item__link-wrap>a::after,
.site-menu .current-menu-ancestor>.menu-item__link-wrap>a::after,
.site-menu .current-menu-parent>.menu-item__link-wrap>a::after {
	transform: scaleX(1);
}

.menu-item-toggle {
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--qnm-blue);
	cursor: pointer;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}

.menu-item-toggle span {
	width: 8px;
	height: 8px;
	display: block;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform .18s ease;
}

.menu-item-toggle:hover,
.menu-item-toggle:focus-visible {
	background: rgba(0, 68, 155, .08);
}

.site-menu>.menu-item-has-children>.menu-item__link-wrap>.menu-item-toggle {
	display: none;
}

.site-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	z-index: 20;
	min-width: 230px;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 12px;
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 16px;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 18px 42px rgba(7, 23, 55, .14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.site-menu .sub-menu::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 24px;
	width: 14px;
	height: 14px;
	background: #fff;
	border-top: 1px solid rgba(0, 68, 155, .08);
	border-left: 1px solid rgba(0, 68, 155, .08);
	transform: rotate(45deg);
}

.site-menu .sub-menu .sub-menu {
	top: -12px;
	left: calc(100% + 12px);
}

.site-menu .sub-menu .sub-menu::before {
	top: 18px;
	left: -7px;
	border-top: 1px solid rgba(0, 68, 155, .08);
	border-left: 1px solid rgba(0, 68, 155, .08);
	border-right: 0;
	border-bottom: 0;
}

.site-menu .sub-menu .menu-item__link-wrap {
	justify-content: space-between;
}

.site-menu .sub-menu a {
	width: 100%;
	padding: 10px 0;
	font-weight: 700;
}

.site-menu .sub-menu a::after {
	bottom: 2px;
}

.site-menu li:hover>.sub-menu,
.site-menu li:focus-within>.sub-menu,
.site-menu li.is-open>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-menu li.is-open>.menu-item__link-wrap>.menu-item-toggle span {
	transform: rotate(-135deg) translate(-1px, 1px);
}

.header-actions {
	display: grid;
	gap: 8px;
	justify-items: end;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--qnm-ink);
	font-size: 13px;
	font-weight: 800;
}

.header-phone,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 999px;
	font-weight: 800;
	text-align: center;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-phone {
	min-width: 210px;
	padding: 10px 20px;
	background: var(--qnm-green);
	color: #fff;
	box-shadow: 0 5px 14px rgba(67, 167, 47, .28);
}

.header-phone svg,
.btn svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.header-phone svg,
.btn--green svg,
.footer-hotline svg {
	animation: qnm-phone-pulse 2s infinite ease-in-out;
}

.header-phone strong,
.header-phone em,
.btn strong,
.btn em {
	display: block;
	font-style: normal;
	line-height: 1.05;
}

.header-phone strong {
	font-size: 17px;
	letter-spacing: .01em;
	font-weight: 800;
}

.header-phone em {
	margin-top: 4px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	opacity: .96;
}

.header-phone:hover,
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(7, 23, 55, .15);
}

.header-phone:active,
.btn:active {
	transform: translateY(0);
}

.btn--green,
.btn--blue,
.btn--white,
.header-phone {
	position: relative;
	overflow: hidden;
	text-align: left;
}

.btn--green::after,
.header-phone::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
	transform: skewX(-25deg);
}

.btn.btn--green em,
.btn.btn--white em,
.btn.btn--blue em {
	font-weight: 500;
	font-size: 14px;
	margin-top: 3px;
}

.btn--green:hover::after,
.header-phone:hover::after {
	animation: qnm-btn-shine 1.5s infinite;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--qnm-line);
	border-radius: 8px;
	background: #fff;
	padding: 10px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--qnm-blue);
}

.home-hero {
	min-height: 420px;
	background:
		linear-gradient(90deg, rgba(0, 54, 111, .98) 0%, rgba(0, 68, 155, .82) 36%, rgba(0, 68, 155, .12) 72%),
		var(--hero-image) center / cover no-repeat;
	color: #fff;
}

.home-hero__inner {
	min-height: 420px;
	display: flex;
	align-items: center;
}

.home-hero__content {
	width: min(780px, 100%);
	padding: 44px 0;
}

.home-hero h1 {
	margin: 0 0 18px;
	font-size: 40px;
	line-height: 1.18;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.home-hero h1 span {
	color: #68c93a;
}

.home-hero p {
	margin: 0 0 20px;
	max-width: 620px;
	font-size: 18px;
	font-weight: 500;
}

.hero-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 22px 0 24px;
}

.hero-benefits div {
	min-height: 62px;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 4px 10px;
	align-items: center;
	padding: 11px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 8px;
	background: rgba(255, 255, 255, .07);
}

.hero-benefits svg {
	grid-row: span 2;
	width: 32px;
	height: 32px;
}

.hero-benefits strong {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-benefits span {
	font-size: 10px;
	font-weight: 500;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.btn {
	min-height: 48px;
	padding: 8px 12px;
	border: 2px solid transparent;
	cursor: pointer;
	font-weight: 800;
	text-transform: uppercase;
}

.btn--large {
	min-height: 58px;
	padding: 10px 28px;
}

.btn--green {
	background: linear-gradient(135deg, var(--qnm-green) 0%, var(--qnm-green-dark) 100%);
	color: #fff;
	box-shadow: 0 6px 18px rgba(67, 167, 47, .24);
	border: none;
}

.btn--white {
	background: #fff;
	color: var(--qnm-blue);
}

.btn--outline-green {
	background: #fff;
	border-color: var(--qnm-green);
	color: var(--qnm-green);
}

.btn--outline-blue {
	background: #fff;
	border-color: var(--qnm-blue);
	color: var(--qnm-blue);
}

.btn--block {
	width: 100%;
	border-radius: 8px;
}

.services-list-section {
	padding-top: 30px;
}

.section-heading {
	text-align: center;
	margin: 0 0 20px;
}

.section-heading h2,
.section-row h2 {
	margin: 0;
	color: var(--qnm-blue);
	font-size: 24px;
	line-height: 1.25;
	font-weight: 900;
	text-transform: uppercase;
}

.section-heading h2 strong {
	color: var(--qnm-green);
}

.section-heading__line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 6px;
	color: var(--qnm-blue);
}

.section-heading__line::before,
.section-heading__line::after {
	content: "";
	width: 54px;
	height: 2px;
	background: var(--qnm-blue);
}

.section-heading__line svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.destinations-section,
.products-section,
.services-section,
.included-section,
.related-section,
.content-section {
	padding: 24px 0;
}

.destinations-section {
	background: #f8fbff;
}

.destinations-slider:not(.slick-initialized) {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.destinations-slider {
	position: relative;
	margin-inline: -8px;
}

.destination-slide {
	padding-inline: 8px;
}

.destinations-slider .slick-track {
	display: flex;
	align-items: stretch;
}

.destinations-slider .slick-slide {
	height: auto;
}

.destinations-slider .slick-slide>div,
.destination-slide,
.destination-card {
	height: 100%;
}

.destinations-slider .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid var(--qnm-line);
	border-radius: 50%;
	background: #fff;
	color: var(--qnm-blue);
	box-shadow: 0 8px 18px rgba(0, 47, 105, .14);
	cursor: pointer;
	transform: translateY(-50%);
}

.destinations-slider .slick-prev {
	left: -10px;
}

.destinations-slider .slick-next {
	right: -10px;
}

.destinations-slider .slick-arrow:hover,
.destinations-slider .slick-arrow:focus {
	background: var(--qnm-blue);
	color: #fff;
}

.destination-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--qnm-line);
	border-radius: 8px;
	box-shadow: 0 6px 14px rgba(0, 47, 105, .07);
}

.destination-card__inner {
	display: block;
	height: 100%;
}

.destination-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	height: auto;
}

.destination-card__body {
	padding: 10px 12px 12px;
	text-align: center;
}

.destination-card h3 {
	margin: 0 0 3px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
}

.destination-card p {
	margin: 0;
	color: var(--qnm-muted);
	font-size: 13px;
	font-weight: 500;
}

.section-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.section-row .section-heading {
	margin: 0;
	text-align: left;
}

.section-row .section-heading__line {
	margin-left: 4px;
}

.section-row>a {
	color: var(--qnm-blue);
	font-weight: 700;
	font-size: 14px;
}

.bike-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px 30px;
}

.load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.qnm-load-more-bikes {
	min-width: 170px;
}

.qnm-load-more-bikes:disabled {
	cursor: wait;
	opacity: .72;
	transform: none;
}

.bike-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--qnm-line);
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(7, 23, 55, .05);
}

.bike-card__media {
	position: relative;
	display: block;
	background: #f7f9fc;
}

.bike-card__media img,
.bike-placeholder {
	width: 100%;
	aspect-ratio: 1;
	height: auto;
	object-fit: cover;
}

.bike-placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #f2f6fb, #fff);
	color: var(--bike-color, var(--qnm-green));
}

.bike-placeholder svg {
	width: 86px;
	height: 86px;
	fill: currentColor;
}

.bike-card__sale {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--qnm-red);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
}

.bike-card__body {
	padding: 12px 14px 16px;
	text-align: center;
}

.bike-card h3 {
	min-height: 36px;
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 800;
	text-transform: uppercase;
}

.bike-card__price {
	margin: 0 0 5px;
	font-weight: 800;
}

.bike-card__price span {
	font-weight: 600;
	color: var(--qnm-ink);
}

.bike-card__price del {
	margin-left: 4px;
	color: #7f8796;
	font-size: 13px;
}

.bike-card__price strong {
	display: block;
	margin-top: 2px;
	color: var(--qnm-red);
	font-size: 20px;
	font-weight: 800;
}

.bike-card__type {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
}

.bike-card__type span {
	display: inline-flex;
	padding: 2px 7px;
	border-radius: 4px;
	background: var(--qnm-blue);
	color: #fff;
	font-weight: 600;
}

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

.service-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
	background: transparent;
}

.service-item {
	position: relative;
	padding: 8px 28px 12px;
	text-align: center;
}

.service-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 25px;
	right: 0;
	width: 1px;
	height: 92px;
	background: #c6d6eb;
}

.service-item__icon {
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	margin: 0 auto 10px;
	border: 2px solid #d8e6f7;
	border-radius: 50%;
	background: #fff;
	color: var(--qnm-blue);
}

.service-item:nth-child(3) .service-item__icon {
	color: var(--qnm-green);
}

.service-item__icon svg {
	width: 38px;
	height: 38px;
	fill: currentColor;
}

.service-item h3 {
	margin: 0 0 6px;
	color: var(--qnm-blue);
	font-size: 15px;
	font-weight: 800;
}

.service-item p {
	margin: 0;
	color: var(--qnm-muted);
	font-size: 13px;
	font-weight: 500;
}

.testimonials-section {
	padding: 24px 0 26px;
	background: var(--qnm-blue);
	color: #fff;
}

.testimonials-section .section-heading h2,
.testimonials-section .section-heading__line {
	color: #fff;
}

.testimonials-section .section-heading h2 strong {
	color: #79d43d;
}

.testimonials-section .section-heading__line::before,
.testimonials-section .section-heading__line::after {
	background: #fff;
}

.testimonials-slider:not(.slick-initialized) {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.testimonials-slider {
	margin-inline: -8px;
}

.testimonial-slide {
	padding-inline: 8px;
}

.testimonials-slider .slick-track {
	display: flex;
	align-items: stretch;
}

.testimonials-slider .slick-slide {
	height: auto;
}

.testimonials-slider .slick-slide>div,
.testimonial-slide,
.testimonial-card {
	height: 100%;
}

.testimonial-card {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 12px;
	padding: 16px;
	border-radius: 8px;
	background: #fff;
	color: var(--qnm-ink);
}

.testimonial-card__avatar {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #eaf2ff, #d8f2d4);
	color: var(--qnm-blue);
	font-weight: 900;
	font-size: 24px;
}

.testimonial-card__avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-card h3 {
	margin: 0;
	font-size: 14px;
}

.testimonial-card h3 span {
	font-weight: 800;
}

.stars {
	margin: 2px 0 6px;
	color: #ffc400;
	letter-spacing: 1px;
	line-height: 1;
}

.testimonial-card blockquote {
	margin: 0;
	color: #3b4856;
	font-size: 13px;
	font-weight: 500;
}

.site-footer {
	background: #003b7f;
	color: #fff;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.6fr .8fr .8fr 1.3fr;
	gap: 30px;
	padding: 28px 0;
}

.site-footer .site-brand {
	min-width: 0;
	color: #fff;
}

.site-footer .site-brand__text strong,
.site-footer .site-brand__text em {
	color: #fff;
	font-size: 15px;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-col li {
	color: rgba(255, 255, 255, .88);
	font-size: 14px;
}

.footer-col ul li {
	margin-bottom: 3px;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.footer-socials a {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--qnm-green);
	color: #fff;
	font-weight: 800;
}

.footer-socials a svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.footer-col h2 {
	margin: 0 0 10px;
	font-size: 14px;
	text-transform: uppercase;
}

.footer-col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-col .site-menu {
	display: block;
}

.footer-col .site-menu li {
	display: block;
}

.footer-col .menu-item__link-wrap {
	display: block;
	min-height: 0;
}

.footer-col .site-menu a {
	display: inline-flex;
	width: auto;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, .9);
}

.footer-col .site-menu a::after {
	display: none;
}

.footer-contact svg {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	fill: currentColor;
	vertical-align: middle;
}

.footer-hotline {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	padding: 13px 18px;
	border: 2px solid var(--qnm-green);
	border-radius: 8px;
	color: #79d43d;
}

.footer-hotline svg {
	width: 22px;
	height: 22px;
}

.footer-hotline strong,
.footer-hotline em {
	display: block;
	font-style: normal;
	line-height: 1.2;
}

.footer-hotline strong {
	font-size: 18px;
	letter-spacing: .01em;
}

.footer-hotline em {
	margin-top: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 0;
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, .86);
	font-size: 12px;
}

.page-hero {
	padding: 24px 0 28px;
	background: var(--qnm-soft);
}

.page-hero h1 {
	margin: 10px 0 8px;
/* 	color: var(--qnm-blue); */
	font-size: 34px;
	text-transform: uppercase;
}

.page-hero p {
	margin: 0;
	color: #c7c7c7;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	color: var(--qnm-blue);
	font-size: 14px;
}

.product-detail-head {
	padding: 22px 0 18px;
	background: var(--qnm-soft);
}

.product-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(350px, .95fr);
	gap: 18px;
	margin-top: 16px;
}

.product-gallery,
.booking-panel,
.content-card,
.promo-card,
.price-table-card,
.included-section .container,
.policy-grid article {
	background: #fff;
	border: 1px solid var(--qnm-line);
	border-radius: 8px;
	box-shadow: var(--qnm-shadow);
}

.product-gallery {
	position: relative;
	overflow: hidden;
	padding: 0 0 16px;
}

.product-badge {
	position: absolute;
	z-index: 3;
	top: 18px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 999px;
	background: var(--qnm-green);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-badge svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.product-gallery__main img {
	width: 100%;
	aspect-ratio: 16 / 8.5;
	object-fit: cover;
	height: auto;
	transition: opacity 0.25s ease-in-out;
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	padding: 16px 28px 0;
}

.gallery-thumb {
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 8px;
	background: #fff;
	padding: 0;
	cursor: pointer;
}

.gallery-thumb.is-active,
.gallery-thumb:focus {
	border-color: var(--qnm-blue);
}

.gallery-thumb img {
	width: 100%;
	aspect-ratio: 1.25 / 1;
	object-fit: cover;
}

.booking-panel {
	padding: 24px 34px;
}

.booking-panel h1 {
	margin: 0 0 8px;
	color: var(--qnm-blue);
	font-size: 31px;
	line-height: 1.16;
	text-transform: uppercase;
}

.booking-panel__tagline {
	margin: 0 0 14px;
	color: var(--qnm-ink);
	font-size: 18px;
	font-weight: 500;
}

.booking-panel__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0 0 8px;
}

.booking-panel__price strong {
	color: var(--qnm-red);
	font-size: 34px;
	line-height: 1;
}

.booking-panel__note {
	display: inline-flex;
	margin: 0 0 18px;
	padding: 8px 12px;
	border-radius: 8px;
	background: #ecfae8;
	color: var(--qnm-green-dark);
	font-size: 13px;
	font-weight: 700;
}

.feature-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 8px 0 22px;
}

.feature-mini-grid div {
	display: grid;
	place-items: center;
	gap: 8px;
	text-align: center;
	color: var(--qnm-blue);
	font-size: 13px;
	font-weight: 700;
}

.feature-mini-grid svg {
	width: 42px;
	height: 42px;
	fill: currentColor;
}

.booking-panel .btn+.btn {
	margin-top: 10px;
}

.product-body {
	padding: 18px 0;
	background: #fff;
}

.product-body__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(330px, .95fr);
	gap: 18px;
}

.content-card {
	padding: 24px;
}

.content-card h2,
.promo-card h2,
.price-table-card h2,
.included-section h2,
.related-section h2 {
	margin: 0 0 14px;
	color: var(--qnm-blue);
	font-size: 22px;
	line-height: 1.25;
	text-transform: uppercase;
}

.product-intro p {
	color: var(--qnm-muted);
}

.why-love {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 250px;
	align-items: center;
	gap: 22px;
	margin-top: 20px;
}

.why-love h3 {
	margin: 0 0 12px;
	color: var(--qnm-red);
	font-size: 19px;
}

.why-love__visual {
	overflow: hidden;
	border-radius: 50%;
	background: #fff0f2;
}

.why-love__visual img,
.why-love__visual .bike-placeholder {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	height: auto;
}

.check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	margin: 0 0 9px;
	padding-left: 28px;
	color: var(--qnm-ink);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 1px;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--qnm-green);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.side-stack {
	display: grid;
	gap: 18px;
}

.promo-card {
	display: grid;
	grid-template-columns: 1fr 120px;
	align-items: center;
	gap: 18px;
	padding: 22px;
	background: #f3fbef;
}

.promo-card p {
	margin: 0 0 8px;
	color: var(--qnm-ink);
}

.promo-card__tag {
	display: grid;
	place-items: center;
	width: 104px;
	height: 104px;
	border-radius: 18px;
	background: var(--qnm-green);
	color: #fff;
	font-size: 54px;
	font-weight: 900;
	transform: rotate(-12deg);
	box-shadow: 0 12px 28px rgba(47, 141, 34, .25);
}

.price-table-card {
	padding: 22px;
}

.price-table-card table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	border: 1px solid #c7d5e8;
	border-radius: 8px;
}

.price-table-card th,
.price-table-card td {
	padding: 10px 12px;
	border: 1px solid #c7d5e8;
	text-align: center;
	font-size: 14px;
}

.price-table-card th {
	background: #e7eff9;
	text-transform: uppercase;
}

.price-table-card strong {
	color: var(--qnm-red);
}

.price-table-card p {
	margin: 10px 0 0;
	color: var(--qnm-muted);
	font-size: 12px;
}

.included-section {
	background: #fff;
}

.included-section .container {
	padding: 20px 24px 24px;
}

.included-section h2 {
	text-align: center;
}

.service-strip--compact {
	border-bottom: 1px solid var(--qnm-line);
	padding-bottom: 14px;
}

.service-strip--compact .service-item {
	padding-inline: 16px;
}

.service-strip--compact .service-item__icon {
	width: 54px;
	height: 54px;
	border: none;
	background: transparent;
}

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

.policy-grid article {
	box-shadow: none;
	padding: 18px 20px;
}

.policy-grid h3 {
	margin: 0 0 10px;
	color: var(--qnm-blue);
	font-size: 15px;
	text-transform: uppercase;
}

.detail-cta {
	padding: 18px 0;
	background: #fff;
}

.detail-cta__inner {
	display: grid;
	grid-template-columns: 80px 1fr auto auto;
	align-items: center;
	gap: 22px;
	padding: 24px 36px;
	border-radius: 8px;
	background: var(--qnm-blue);
	color: #fff;
}

.detail-cta__icon {
	width: 70px;
	height: 70px;
	display: grid;
	place-items: center;
	border: 3px solid rgba(255, 255, 255, .7);
	border-radius: 50%;
}

.detail-cta__icon svg {
	width: 38px;
	height: 38px;
	fill: currentColor;
}

.detail-cta p {
	margin: 0 0 3px;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
}

.detail-cta h2 {
	margin: 0;
	color: #79d43d;
	font-size: 24px;
	text-transform: uppercase;
}

.related-section {
	padding-bottom: 38px;
}

.content-layout {
	display: grid;
	gap: 18px;
}

.content-card--page {
	max-width: 920px;
}

@media (max-width: 1120px) {
	.site-header__inner {
		gap: 18px;
	}

	.site-brand {
		min-width: 250px;
	}

	.site-brand__text strong,
	.site-brand__text em {
		font-size: 21px;
	}

	.site-menu {
		gap: 18px;
	}

	.header-phone {
		min-width: 190px;
		padding-inline: 16px;
	}

	.destinations-slider:not(.slick-initialized),
	.service-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.testimonials-slider:not(.slick-initialized) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-item::after {
		display: none;
	}

	.product-detail-grid,
	.product-body__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 880px) {
	body.menu-open {
		overflow: hidden;
	}

	body.menu-open::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 35;
		background: rgba(7, 23, 55, .34);
		backdrop-filter: blur(3px);
	}

	.site-header__inner {
		min-height: 82px;
		flex-wrap: wrap;
		padding-block: 10px;
		position: relative;
		z-index: 45;
	}

	.site-brand {
		min-width: 0;
		margin-right: auto;
	}

	.site-brand__mark {
		width: 58px;
		height: 58px;
		flex-basis: 58px;
	}

	.site-brand__mark img {
		width: 100%;
		height: 100%;
	}

	.site-brand__mark svg {
		width: 26px;
		height: 26px;
	}

	.site-brand__text strong,
	.site-brand__text em {
		font-size: 18px;
	}

	.menu-toggle {
		display: block;
		position: relative;
		z-index: 46;
		transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
	}

	body.menu-open .menu-toggle {
		background: #f3f8ff;
		box-shadow: 0 12px 26px rgba(7, 23, 55, .14);
	}

	.menu-toggle span:not(.screen-reader-text) {
		transition: transform .22s ease, opacity .22s ease, background .22s ease;
		transform-origin: center;
	}

	body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
		opacity: 0;
	}

	body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav {
		order: 4;
		display: block;
		position: fixed;
		top: 92px;
		left: 14px;
		right: 14px;
		z-index: 45;
		width: auto;
		margin-left: 0;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-12px) scale(.98);
		transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0) scale(1);
	}

	.site-menu {
		display: grid;
		gap: 0;
		max-height: calc(100vh - 126px);
		overflow: auto;
		padding: 14px 16px;
/* 		border: 1px solid rgba(0, 68, 155, .1); */
		border-radius: 24px;
		background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(243, 248, 255, .98));
		box-shadow: 0 24px 54px rgba(7, 23, 55, .18);
	}

	.site-menu>li+li {
		border-top: 1px solid rgba(220, 229, 242, .85);
	}

	.menu-item__link-wrap {
		min-height: 58px;
		justify-content: space-between;
		gap: 12px;
	}

	.site-menu a {
		width: 100%;
		padding: 16px 0;
		font-size: 15px;
		font-weight: 800;
	}

	.site-menu a::after,
	.site-menu .sub-menu::before {
		display: none;
	}

	.site-menu>.menu-item-has-children>.menu-item__link-wrap>.menu-item-toggle,
	.site-menu .sub-menu .menu-item-toggle {
		display: inline-grid;
		width: 36px;
		height: 36px;
		flex: 0 0 36px;
		border: 1px solid rgba(0, 68, 155, .12);
		background: linear-gradient(180deg, #fff 0%, #eef5ff 100%);
		box-shadow: 0 8px 16px rgba(7, 23, 55, .08);
	}

	.site-menu .sub-menu {
		position: static;
		min-width: 0;
		display: grid;
		grid-template-rows: 0fr;
		margin: 0;
		padding: 0 0 0 14px;
		border: 0;
		border-left: 2px solid rgba(0, 68, 155, .14);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		transform: translateY(-4px);
		transition: grid-template-rows .24s ease, opacity .24s ease, transform .24s ease, visibility .24s ease, margin .24s ease;
	}

	.site-menu .sub-menu>li {
		overflow: hidden;
	}

	.site-menu li.is-open>.sub-menu {
		grid-template-rows: 1fr;
		margin: 0 0 12px;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.site-menu .sub-menu .menu-item__link-wrap {
		min-height: 48px;
	}

	.site-menu .sub-menu a {
		padding: 13px 0;
		font-size: 14px;
		font-weight: 600;
	}

	.header-actions {
		display: none;
	}

	.home-hero,
	.home-hero__inner {
		min-height: auto;
	}

	.home-hero {
		background:
			linear-gradient(90deg, rgba(0, 54, 111, .96), rgba(0, 68, 155, .72)),
			var(--hero-image) center / cover no-repeat;
	}

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

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

	.destinations-slider:not(.slick-initialized),
	.bike-grid,
	.testimonials-slider:not(.slick-initialized),
	.policy-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-gallery__thumbs {
		gap: 10px;
		padding-inline: 16px;
	}

	.why-love,
	.promo-card,
	.detail-cta__inner {
		grid-template-columns: 1fr;
	}

	.detail-cta__inner {
		text-align: center;
		justify-items: center;
	}
}

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

	.site-header__inner {
		gap: 12px;
	}

	.site-brand__text strong,
	.site-brand__text em {
		font-size: 16px;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
		padding: 9px;
	}

	.site-nav {
		padding-top: 8px;
	}

	.site-menu {
		padding: 8px 12px;
		border-radius: 16px;
	}

	.menu-item__link-wrap {
		min-height: 48px;
	}

	.site-menu a {
		padding: 12px 0;
		font-size: 14px;
	}

	.home-hero__content {
		padding: 34px 0;
	}

	.home-hero h1 {
		font-size: 29px;
	}

	.home-hero p {
		font-size: 16px;
	}

	.destinations-slider:not(.slick-initialized),
	.testimonials-slider:not(.slick-initialized),
	.policy-grid {
		grid-template-columns: 1fr;
	}

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

	.hero-benefits,
	.service-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.hero-benefits div {
		min-height: 76px;
		grid-template-columns: 28px 1fr;
		gap: 3px 8px;
		padding: 10px;
	}

	.hero-benefits svg {
		width: 27px;
		height: 27px;
	}

	.hero-benefits strong {
		line-height: 1.2;
	}

	.hero-benefits span {
		line-height: 1.35;
	}

	.service-item {
		padding: 4px 8px 10px;
	}

	.service-item__icon {
		width: 62px;
		height: 62px;
		margin-bottom: 8px;
	}

	.service-item__icon svg {
		width: 31px;
		height: 31px;
	}

	.service-item h3 {
		font-size: 13px;
		line-height: 1.25;
	}

	.service-item p {
		font-size: 12px;
		line-height: 1.35;
	}

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

	.bike-card h3 {
		font-size: 12px;
		min-height: 32px;
	}

	.bike-card__body {
		padding: 10px 8px 12px;
	}

	.bike-card__price {
		font-size: 12px;
	}

	.bike-card__price strong {
		font-size: 17px;
	}

	.bike-card__type {
		font-size: 11px;
	}

	.bike-card__sale {
		top: 8px;
		left: 8px;
		width: 40px;
		height: 40px;
		font-size: 12px;
	}

	.hero-actions,
	.section-row {
		align-items: stretch;
		flex-direction: column;
	}

	.section-row--no-wrap {
		flex-direction: row;
	}

	.btn {
		width: 100%;
	}

	.section-heading,
	.section-row .section-heading {
		text-align: center;
	}

	.section-heading h2,
	.section-row h2,
	.page-hero h1 {
		font-size: 22px;
	}

	.footer-main,
	.footer-bottom .container {
		display: grid;
		grid-template-columns: 1fr;
	}

	.footer-col {
		padding-top: 10px;
	}

	.footer-col ul,
	.footer-col .site-menu {
		display: grid;
		gap: 8px;
		padding: 16px 18px;
		border-radius: 18px;
		background: rgba(255, 255, 255, .08);
	}

	.footer-col .site-menu li+li,
	.footer-col ul li+li {
		border-top: 1px solid rgba(255, 255, 255, .1);
		padding-top: 8px;
	}

	.footer-col .site-menu a,
	.footer-col ul a {
		display: flex;
		width: 100%;
		padding: 2px 0;
		font-size: 14px;
		line-height: 1.6;
	}

	.product-gallery__main img {
		aspect-ratio: 4 / 3;
	}

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

	.booking-panel,
	.content-card,
	.price-table-card,
	.promo-card {
		padding: 18px;
	}

	.booking-panel h1 {
		font-size: 25px;
	}

	.booking-panel__price strong {
		font-size: 30px;
	}
}

/* Service Page Styles */
.page-hero {
	min-height: 380px;
	background: linear-gradient(rgba(7, 23, 55, 0.75), rgba(7, 23, 55, 0.75)), var(--hero-image) center / cover no-repeat;
	color: #fff;
	display: flex;
	align-items: center;
	padding: 60px 0;
}

.page-hero__subtitle {
	display: inline-block;
	color: var(--qnm-green);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.page-hero h1 {
	margin: 0 0 16px;
	font-size: 44px;
	line-height: 1.1;
	font-weight: bold;
	text-transform: uppercase;
}

.page-hero h1 span {
	color: var(--qnm-green);
}

.page-hero p {
	max-width: 600px;
	font-size: 17px;
	margin-bottom: 28px;
	opacity: 0.9;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.service-card {
	background: #fff;
	border: 1px solid var(--qnm-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--qnm-shadow);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card__media {
	position: relative;
	height: 200px;
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__icon {
	position: absolute;
	bottom: -20px;
	left: 24px;
	width: 48px;
	height: 48px;
	background: var(--qnm-green);
	color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	border: 3px solid #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card__icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.service-card__body {
	padding: 32px 24px 24px;
}

.service-card__body h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 900;
	color: var(--qnm-blue);
}

.service-card__body p {
	font-size: 14px;
	color: var(--qnm-muted);
	margin-bottom: 16px;
	line-height: 1.6;
}

.service-card__link {
	color: var(--qnm-blue);
	font-weight: 800;
	font-size: 14px;
}

.process-section {
	background: #f8fbff;
	padding: 60px 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 50px;
	position: relative;
}

.process-steps::before {
	content: "";
	position: absolute;
	top: 35px;
	left: 10%;
	right: 10%;
	height: 2px;
	border-top: 2px dashed var(--qnm-line);
	z-index: 1;
}

.process-step {
	text-align: center;
	position: relative;
	z-index: 2;
}

.process-step__icon {
	width: 70px;
	height: 70px;
	background: #fff;
	border: 2px solid var(--qnm-blue);
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 20px;
	color: var(--qnm-blue);
	position: relative;
}

.process-step__icon svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.step-number {
	position: absolute;
	top: 0;
	left: -10px;
	width: 24px;
	height: 24px;
	background: var(--qnm-green);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
	display: grid;
	place-items: center;
}

.process-step h4 {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 900;
	color: var(--qnm-blue);
}

.process-step p {
	font-size: 13px;
	color: var(--qnm-muted);
	line-height: 1.4;
}

.why-us-section {
	padding: 60px 0;
}

.why-us-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.why-us-item {
	text-align: center;
	padding: 0 10px;
}

.why-us-item__icon {
	margin-bottom: 20px;
	color: var(--qnm-blue);
	display: flex;
	justify-content: center;
}

.why-us-item__icon svg {
	width: 54px;
	height: 54px;
	fill: currentColor;
}

.why-us-item h3 {
	font-size: 15px;
	font-weight: 900;
	margin: 0 0 10px;
	color: var(--qnm-blue);
	text-transform: uppercase;
	line-height: 1.3;
}

.why-us-item p {
	font-size: 13px;
	color: var(--qnm-muted);
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
}

.service-cta {
	padding-bottom: 60px;
}

.service-cta__box {
	background: var(--qnm-blue);
	border-radius: 16px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	gap: 40px;
}

.service-cta__content h3 {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 900;
}

.service-cta__content p {
	opacity: 0.8;
}

.service-cta__actions {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}

.btn--blue {
	background: #007bff;
	color: #fff;
}

@media (max-width: 991px) {
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px 20px;
	}

	.process-steps::before {
		display: none;
	}

	.why-us-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.service-cta__box {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 600px) {

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

	.process-steps,
	.why-us-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-hero h1 {
		font-size: 32px;
	}

	.service-cta__actions {
		flex-direction: column;
		width: 100%;
	}
}

/* About Page Styles */
.about-hero {
	padding: 120px 0 100px;
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
	position: relative;
	color: #fff;
}

.about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.about-hero__inner {
	position: relative;
	z-index: 10;
}

.about-hero__content h1 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
}

.about-hero__content h1 span {
	color: var(--qnm-green);
}

.about-hero__content p {
	max-width: 600px;
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.about-stats {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.about-stat-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	gap: 15px;
	min-width: 250px;
}

.about-stat-item__icon {
	color: var(--qnm-green);
}

.about-stat-item__icon svg {
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.about-stat-item__text strong {
	display: block;
	font-size: 28px;
	line-height: 1;
}

.about-stat-item__text span {
	font-size: 14px;
	opacity: 0.8;
}

/* Intro Section */
.about-intro-section {
	padding: 100px 0;
}

.about-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.section-subtitle {
	color: var(--qnm-green);
	font-size: 14px;
	letter-spacing: 1px;
	display: block;
}

.about-intro-content h2 {
	font-size: clamp(24px, 4vw, 36px);
	color: var(--qnm-blue);
	margin-bottom: 30px;
	line-height: 1.2;
}

.about-intro-content .entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--qnm-muted);
	margin-bottom: 40px;
}

.about-intro-content .entry-content p {
	margin-bottom: 20px;
}

.about-intro-visual img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.core-values-section {
	padding: 30px 0;
	background: #f8fafc;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 50px;
}

.value-card {
	background: #fff;
	padding: 20px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	border: 1px solid #edf2f7;
}

.value-card:hover {
	transform: translateY(-5px);
}

.value-card__icon {
	margin-bottom: 20px;
	color: var(--qnm-blue);
	display: flex;
	justify-content: center;
}

.value-card__icon svg {
	width: 48px;
	height: 48px;
	fill: currentColor;
}

.value-card h3 {
	font-size: 16px;
	font-weight: 900;
	color: var(--qnm-blue);
	margin-bottom: 15px;
}

.value-card p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--qnm-muted);
}

/* Why Section */
.about-why-section {
	padding: 30px 0;
}

.about-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.about-why-item__media {
	margin-bottom: 20px;
	aspect-ratio: 16/10;
	border-radius: 12px;
	overflow: hidden;
}

.about-why-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-why-item__body h4 {
	font-size: 16px;
	font-weight: 900;
	color: var(--qnm-blue);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-why-item__body h4 .check-icon {
	color: var(--qnm-green);
}

.about-why-item__body h4 .check-icon svg {
	width: 18px;
	height: 18px;
}

.about-why-item__body p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--qnm-muted);
}

.about-cta {
	background: var(--qnm-blue);
	color: #fff;
	padding: 80px 0;
	margin-top: 0;
}

.about-cta .service-cta__box {
	background: none;
	padding: 0;
	border: none;
}

.about-cta .btn--outline {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

@media (max-width: 1024px) {
	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-why-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.about-intro-grid {
		grid-template-columns: 1fr;
	}

	.about-intro-visual {
		order: -1;
	}

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

@media (max-width: 480px) {
	.hero-actions a.btn.btn--green {
		width: 100%;
	}

	.about-stats {
		flex-direction: column;
	}

	.promo-card__tag {
		display: none;
	}

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

	.about-why-grid {
		grid-template-columns: 1fr;
	}
}

/* Contact Page Styles */
.contact-hero {
	background: var(--qnm-blue);
	color: #fff;
	text-align: center;
	padding: 100px 0 80px;
}

.contact-section {
	padding: 80px 0;
	background: #f8fafc;
}

.contact-grid {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 40px;
}

.contact-info-card {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.contact-info-card h3 {
	font-size: 20px;
	font-weight: 900;
	color: var(--qnm-blue);
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--qnm-green);
	display: inline-block;
}

.contact-method {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.contact-method__icon {
	color: var(--qnm-green);
	flex-shrink: 0;
}

.contact-method__icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.contact-method__text strong {
	display: block;
	font-size: 14px;
	color: var(--qnm-muted);
	margin-bottom: 5px;
}

.contact-method__text a,
.contact-method__text span {
	font-size: 16px;
	color: var(--qnm-blue);
	font-weight: 600;
}

.contact-social {
	display: flex;
	gap: 15px;
	padding-left: 10px;
}

.social-link {
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	color: var(--qnm-blue);
}

.social-link:hover {
	background: var(--qnm-blue);
	color: #fff;
	transform: translateY(-3px);
}

.contact-form-box {
	background: #fff;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
	font-size: 24px;
	font-weight: 900;
	color: var(--qnm-blue);
	margin-bottom: 15px;
}

.contact-form-box p {
	color: var(--qnm-muted);
	margin-bottom: 35px;
}

/* CF7 Simple Styling */
.wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 20px;
}

.wpcf7-text,
.wpcf7-textarea {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	font-family: inherit;
	transition: border-color 0.3s;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
	border-color: var(--qnm-green);
	outline: none;
}

.wpcf7-submit {
	background: var(--qnm-green);
	color: #fff;
	border: none;
	padding: 15px 40px;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.3s;
}

.wpcf7-submit:hover {
	opacity: 0.9;
}

.contact-map {
	height: 450px;
}

.map-container,
.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		align-items: center;
	}

	.contact-info-card {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.contact-info {
		grid-template-columns: 1fr;
	}

	.contact-form-box {
		padding: 30px 20px;
	}
}

/* Single Post Styles */
.single-post-header {
	padding: 60px 0;
	background: #f1f5f9;
}

.single-post-header__content {
	margin-top: 30px;
}

.post-meta {
	margin-bottom: 15px;
	font-size: 14px;
	color: var(--qnm-muted);
}

.post-meta span:not(:last-child)::after {
	content: "•";
	margin: 0 10px;
}

.single-post-header h1 {
	font-size: 36px;
	font-weight: 900;
	color: var(--qnm-blue);
	line-height: 1.2;
}

.single-post-body {
	padding: 60px 0;
}

.single-post-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 60px;
}

.post-thumbnail {
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
}

.entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
}

.entry-content p {
	margin-bottom: 25px;
}

.entry-content h2,
.entry-content h3 {
	color: var(--qnm-blue);
	margin: 40px 0 20px;
	font-weight: 900;
}

.post-tags {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #e2e8f0;
	font-size: 14px;
}

/* Sidebar */
.sidebar-widget {
	margin-bottom: 40px;
}

.sidebar-widget h3 {
	font-size: 18px;
	font-weight: 900;
	color: var(--qnm-blue);
	margin-bottom: 25px;
	padding-left: 15px;
	border-left: 4px solid var(--qnm-green);
}

.recent-posts ul {
	list-style: none;
	padding: 0;
}

.recent-posts li {
	margin-bottom: 20px;
}

.recent-posts a {
	display: flex;
	gap: 15px;
	text-decoration: none;
}

.recent-thumb {
	width: 80px;
	height: 60px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
}

.recent-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recent-text h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--qnm-blue);
	line-height: 1.4;
	margin-bottom: 5px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recent-text span {
	font-size: 12px;
	color: var(--qnm-muted);
}

/* Related Posts */
.related-posts-section {
	padding: 80px 0;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

.related-posts-section h3 {
	font-size: 24px;
	font-weight: 900;
	color: var(--qnm-blue);
	margin-bottom: 40px;
	text-align: center;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.post-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.post-card:hover {
	transform: translateY(-5px);
}

.post-card__media {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.post-card__body {
	padding: 25px;
}

.post-card__body h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.post-card__body h4 a {
	color: var(--qnm-blue);
	text-decoration: none;
}

.post-card__body p {
	font-size: 14px;
	color: var(--qnm-muted);
	margin-bottom: 20px;
	line-height: 1.6;
}

.read-more {
	font-size: 14px;
	font-weight: 700;
	color: var(--qnm-green);
	text-decoration: none;
}

@media (max-width: 1024px) {
	.single-post-grid {
		grid-template-columns: 1fr;
	}

	.related-posts-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.related-posts-grid {
		grid-template-columns: 1fr;
	}

	.single-post-header h1 {
		font-size: 28px;
	}
}

/* Contact + Single Post UI Refresh */
.contact-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 44px;
	background:
		radial-gradient(circle at top right, rgba(121, 212, 61, .18), transparent 30%),
		linear-gradient(135deg, #003b7f 0%, #004fae 58%, #0a63c8 100%);
	color: #fff;
	text-align: left;
}

.contact-hero::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
}

.contact-hero__wrap {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, .9fr);
	gap: 28px;
	align-items: end;
}

.contact-kicker,
.contact-panel-heading span,
.post-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--qnm-green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-kicker::before,
.contact-panel-heading span::before,
.post-card__meta::before {
	content: "";
	width: 18px;
	height: 2px;
	background: currentColor;
}

.contact-hero h1 {
	color: #ffffff;
	margin: 0 0 16px;
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.08;
	text-transform: uppercase;
	font-weight: 700;
}

.contact-hero p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 18px;
	line-height: 1.75;
}

.contact-hero__highlights {
	display: grid;
	gap: 16px;
}

.contact-highlight-card,
.contact-info-card,
.contact-social-card,
.contact-form-box,
.contact-map-card,
.single-post-hero-card,
.single-post-author-box,
.single-post-sidebar-card,
.sidebar-widget--sticky,
.entry-content.content-card {
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(7, 23, 55, .08);
}

.contact-highlight-card {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	padding: 20px 22px;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(4px);
	color: #fff;
}

.contact-highlight-card strong,
.contact-highlight-card a,
.contact-highlight-card span {
	display: block;
}

.contact-highlight-card strong {
	margin-bottom: 4px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.contact-highlight-card a,
.contact-highlight-card span {
	font-size: 18px;
	font-weight: 800;
}

.contact-highlight-card__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	background: rgba(255, 255, 255, .15);
}

.contact-highlight-card__icon svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.contact-section {
	padding: 34px 0 72px;
	background:
		linear-gradient(180deg, #f4f8ff 0%, #fff 220px),
		#fff;
}

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

.contact-info {
	display: grid;
	gap: 22px;
}

.contact-info-card,
.contact-form-box,
.contact-social-card,
.contact-map-card {
	padding: 30px;
}

.contact-panel-heading {
	margin-bottom: 24px;
}

.contact-panel-heading h2 {
	margin: 0;
	color: var(--qnm-blue);
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.18;
	text-transform: uppercase;
}

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

.contact-method {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	padding: 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fff, #f7fbff);
	border: 1px solid rgba(0, 68, 155, .08);
}

.contact-method__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: rgba(67, 167, 47, .1);
	color: var(--qnm-green);
	flex-shrink: 0;
}

.contact-method__icon svg,
.contact-social svg,
.post-meta__item svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.contact-method__text strong,
.contact-method__text a,
.contact-method__text span,
.contact-method__text small {
	display: block;
}

.contact-method__text strong {
	margin-bottom: 6px;
	color: var(--qnm-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.contact-method__text a,
.contact-method__text span {
	color: var(--qnm-blue);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
}

.contact-method__text small {
	margin-top: 6px;
	color: #6a7891;
	font-size: 13px;
	line-height: 1.6;
}

.contact-quick-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.contact-quick-actions .btn {
	min-height: 54px;
	padding-inline: 18px;
	border-radius: 16px;
}

.contact-social-card h3 {
	margin: 0 0 16px;
	color: var(--qnm-blue);
	font-size: 18px;
	text-transform: uppercase;
}

.contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding-left: 0;
}

.social-link {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	border: 1px solid rgba(0, 68, 155, .1);
	background: linear-gradient(180deg, #fff, #f4f8ff);
	color: var(--qnm-blue);
	transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.social-link:hover {
	background: var(--qnm-blue);
	color: #fff;
	box-shadow: 0 14px 30px rgba(0, 68, 155, .16);
	transform: translateY(-2px);
}

.contact-form-lead {
	margin: 0 0 22px;
	color: var(--qnm-muted);
	font-size: 16px;
	line-height: 1.75;
}

.contact-page-content {
	margin-bottom: 22px;
	padding: 18px 20px;
	border-radius: 18px;
	background: #f7fbff;
	border: 1px solid rgba(0, 68, 155, .08);
	color: #42526b;
	line-height: 1.75;
}

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

.contact-page-content>*:last-child {
	margin-bottom: 0;
}

.form-placeholder {
	padding: 20px;
	border-radius: 18px;
	background: #fff8eb;
	border: 1px solid rgba(230, 183, 77, .35);
	color: #7a5a13;
}

.form-placeholder strong {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
}

.wpcf7-text,
.wpcf7-textarea {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid #d7e4f5;
	border-radius: 14px;
	background: #f8fbff;
	font-family: inherit;
	font-size: 15px;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
	border-color: var(--qnm-green);
	outline: none;
	box-shadow: 0 0 0 4px rgba(67, 167, 47, .12);
	background: #fff;
}

.wpcf7-textarea {
	height: 100px;
}

.wpcf7-submit {
	padding: 15px 34px;
	border-radius: 14px;
	font-weight: 800;
	transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.wpcf7-submit:hover {
	opacity: .9;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(67, 167, 47, .22);
}

.contact-map {
	height: auto;
	padding: 0 0 72px;
}

.contact-map-card {
	padding-bottom: 18px;
}

.map-container {
	overflow: hidden;
	border-radius: 20px;
}

.map-container,
.map-container iframe {
	width: 100%;
	height: 460px;
	border: none;
}

.single-post-header {
	padding: 34px 0 24px;
	background: linear-gradient(180deg, #f4f8ff 0%, #fff 100%);
}

.single-post-hero-card {
	margin-top: 20px;
	padding: 30px;
}

.post-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.post-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(67, 167, 47, .12);
	color: var(--qnm-green-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.single-post-header h1 {
	margin: 0;
	font-size: clamp(32px, 4.4vw, 40px);
	line-height: 1.12;
	text-transform: uppercase;
}

.single-post-excerpt {
	max-width: 820px;
	margin: 16px 0 0;
	color: #51627b;
	font-size: 18px;
	line-height: 1.75;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 18px;
	margin-bottom: 0;
	font-size: 14px;
	color: var(--qnm-muted);
}

.post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	background: #f7fbff;
	border: 1px solid rgba(0, 68, 155, .08);
}

.single-post-body {
	padding: 18px 0 70px;
}

.single-post-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 30px;
	align-items: start;
}

.post-thumbnail {
	margin-bottom: 22px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 42px rgba(7, 23, 55, .08);
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 8.6;
	object-fit: cover;
}

.entry-content.content-card {
	padding: 34px;
	font-size: 17px;
	line-height: 1.85;
	color: #31435d;
}

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

.entry-content.content-card>*:last-child {
	margin-bottom: 0;
}

.entry-content.content-card p,
.entry-content.content-card ul,
.entry-content.content-card ol,
.entry-content.content-card blockquote {
	margin-bottom: 22px;
}

.entry-content.content-card h2,
.entry-content.content-card h3,
.entry-content.content-card h4 {
	margin: 36px 0 16px;
	color: var(--qnm-blue);
	font-weight: 900;
	line-height: 1.28;
}

.entry-content.content-card a {
	color: var(--qnm-blue);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content.content-card img {
	border-radius: 18px;
}

.entry-content.content-card blockquote {
	margin-left: 0;
	padding: 20px 24px;
	border-left: 4px solid var(--qnm-green);
	border-radius: 0 18px 18px 0;
	background: #f5fbf0;
	color: #39506b;
}

.single-post-author-box {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 18px;
	margin-top: 24px;
	padding: 24px;
}

.single-post-author-box__avatar img {
	width: 84px;
	height: 84px;
	border-radius: 50%;
}

.single-post-author-box__content span {
	display: inline-block;
	margin-bottom: 6px;
	color: var(--qnm-green-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.single-post-author-box__content h2 {
	margin: 0 0 10px;
	color: var(--qnm-blue);
	font-size: 24px;
}

.single-post-author-box__content p {
	margin: 0;
	color: #5a6880;
	line-height: 1.7;
}

.post-tags {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid #e1eaf5;
}

.sidebar-widget {
	margin-bottom: 22px;
}

.sidebar-widget--sticky {
	position: sticky;
	top: 120px;
	padding: 22px;
}

.sidebar-widget h3 {
	margin: 0 0 18px;
}

.single-post-sidebar-card {
	padding: 4px;
}

.single-post-sidebar-card__item {
	padding: 14px 12px;
}

.single-post-sidebar-card__item+.single-post-sidebar-card__item {
	border-top: 1px solid #e7eef8;
}

.single-post-sidebar-card__item span,
.single-post-sidebar-card__item strong {
	display: block;
}

.single-post-sidebar-card__item span {
	margin-bottom: 6px;
	color: var(--qnm-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.single-post-sidebar-card__item strong {
	color: var(--qnm-blue);
	font-size: 15px;
	line-height: 1.5;
}

.recent-posts ul {
	margin: 0;
}

.recent-posts li {
	margin-bottom: 14px;
}

.recent-posts a {
	display: flex;
	gap: 15px;
	padding: 12px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(0, 68, 155, .08);
	box-shadow: 0 10px 26px rgba(7, 23, 55, .05);
}

.recent-text h4 {
	margin: 0 0 5px;
}

.related-posts-section {
	padding: 70px 0;
	background: linear-gradient(180deg, #fff 0, #f4f8ff 100%);
	border-top: 1px solid #e2ecf7;
}

.related-posts-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 26px;
}

.post-card {
	border-radius: 22px;
	border: 1px solid rgba(0, 68, 155, .08);
	box-shadow: 0 16px 38px rgba(7, 23, 55, .08);
	transition: transform .18s ease, box-shadow .18s ease;
}

.post-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 44px rgba(7, 23, 55, .12);
}

.post-card__media {
	aspect-ratio: 16 / 10;
}

.post-card__media img {
	height: 100%;
}

.post-card__body {
	padding: 22px;
}

.post-card__body h3 {
	margin: 0 0 10px;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.35;
}

.post-card__body h3 a {
	color: var(--qnm-blue);
	text-decoration: none;
}

.post-card__body p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.7;
}

.read-more {
	font-weight: 800;
}

@media (max-width: 1024px) {

	.contact-hero__wrap,
	.contact-grid,
	.single-post-grid {
		grid-template-columns: 1fr;
	}

	.sidebar-widget--sticky {
		position: static;
	}
}

@media (max-width: 768px) {

	.contact-info-card,
	.contact-social-card,
	.contact-form-box,
	.contact-map-card,
	.single-post-hero-card,
	.entry-content.content-card,
	.single-post-author-box {
		padding: 22px 20px;
	}

	.contact-quick-actions,
	.related-posts-grid {
		grid-template-columns: 1fr;
	}

	.contact-method {
		grid-template-columns: 48px 1fr;
		padding: 16px;
	}

	.contact-method__icon {
		width: 48px;
		height: 48px;
	}

	.map-container,
	.map-container iframe {
		height: 340px;
	}

	.single-post-author-box {
		grid-template-columns: 1fr;
	}

	.post-meta--hero {
		gap: 10px;
	}

	.post-meta__item {
		width: 100%;
	}

	.single-post-excerpt {
		font-size: 16px;
	}
}

/* Post Index UI */
.post-index-hero {
	padding: 34px 0 20px;
	background: linear-gradient(180deg, #f4f8ff 0%, #fff 100%);
}

.post-index-hero__card {
	padding: 30px;
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(7, 23, 55, .08);
}

.post-index-hero__content h1 {
	margin: 0 0 14px;
	color: var(--qnm-blue);
	font-size: clamp(32px, 4.4vw, 48px);
	line-height: 1.12;
	text-transform: uppercase;
}

.post-index-hero__content p {
	max-width: 760px;
	margin: 0;
	color: #55657e;
	font-size: 17px;
	line-height: 1.75;
}

.post-index-section {
	padding: 16px 0 72px;
	background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.post-index-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.post-card--archive {
	border-radius: 22px;
	border: 1px solid rgba(0, 68, 155, .08);
	background: #fff;
	box-shadow: 0 16px 38px rgba(7, 23, 55, .08);
}

.post-card--archive .post-card__body h2 {
	margin: 0 0 10px;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.35;
}

.post-card--archive .post-card__body h2 a {
	color: var(--qnm-blue);
	text-decoration: none;
}

.post-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.post-index-pagination {
	margin-top: 30px;
}

.post-index-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.post-index-pagination .page-numbers {
	min-width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid rgba(0, 68, 155, .12);
	border-radius: 14px;
	background: #fff;
	color: var(--qnm-blue);
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(7, 23, 55, .05);
}

.post-index-pagination .page-numbers.current,
.post-index-pagination .page-numbers:hover {
	background: var(--qnm-blue);
	color: #fff;
}

.post-index-empty {
	max-width: 760px;
	margin: 0 auto;
	padding: 32px;
	text-align: center;
}

.post-index-empty h2 {
	margin: 0 0 12px;
	color: var(--qnm-blue);
	font-size: 28px;
}

.post-index-empty p {
	margin: 0;
	color: var(--qnm-muted);
	line-height: 1.75;
}

@media (max-width: 1024px) {
	.post-index-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {

	.post-index-hero__card,
	.post-index-empty {
		padding: 22px 20px;
	}

	.post-index-grid {
		grid-template-columns: 1fr;
	}
}

/* Motorbike Archive Filter */
.page-hero--archive {
	min-height: auto;
	padding: 34px 0 18px;
	background:
		radial-gradient(circle at top left, rgba(64, 169, 47, .18), transparent 32%),
		radial-gradient(circle at top right, rgba(0, 68, 155, .18), transparent 36%),
		linear-gradient(180deg, #f3f8ff 0%, #fff 100%);
	color: inherit;
	display: block;
}

.page-hero--archive .breadcrumbs {
	margin-bottom: 18px;
}

.page-hero--archive .breadcrumbs,
.page-hero--archive .breadcrumbs a {
	color: var(--qnm-blue);
}

.archive-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
	gap: 24px;
	padding: 32px;
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 249, 255, .96)),
		#fff;
	box-shadow: 0 20px 48px rgba(7, 23, 55, .08);
}

.archive-hero__eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(64, 169, 47, .12);
	color: var(--qnm-green);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.page-hero--archive h1 {
	margin: 0 0 14px;
	max-width: 720px;
	color: var(--qnm-blue);
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.08;
	text-transform: none;
}

.page-hero--archive p {
	max-width: 720px;
	margin: 0;
	color: #5d6d86;
	font-size: 17px;
	line-height: 1.78;
	opacity: 1;
}

.archive-hero__stats {
	display: grid;
	gap: 16px;
	align-content: stretch;
}

.archive-hero__stat {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
	border: 1px solid rgba(0, 68, 155, .08);
}

.archive-hero__stat strong {
	color: var(--qnm-red);
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1;
}

.archive-hero__stat span {
	margin-top: 8px;
	color: #5d6d86;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.products-section--archive {
	background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.archive-products {
	display: grid;
	grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.archive-filter-toggle {
	display: none;
}

.archive-products__sidebar {
	position: sticky;
	top: 104px;
}

.product-filter-card,
.archive-products__toolbar {
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(7, 23, 55, .08);
}

.product-filter-card {
	padding: 24px;
}

.product-filter-card__head {
	margin-bottom: 22px;
}

.product-filter-card__head h2,
.archive-products__toolbar h2 {
	margin: 0 0 8px;
	color: var(--qnm-blue);
	font-size: 26px;
	line-height: 1.2;
}

.product-filter-card__head p,
.archive-products__toolbar p {
	margin: 0;
	color: #5f6f86;
	line-height: 1.7;
}

.product-filter-group+.product-filter-group {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid rgba(0, 68, 155, .08);
}

.product-filter-group h3 {
	margin: 0 0 14px;
	color: var(--qnm-ink);
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.filter-option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 16px;
	background: #f8fbff;
	cursor: pointer;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.filter-option+.filter-option {
	margin-top: 10px;
}

.filter-option:hover,
.filter-option.is-active {
	border-color: rgba(64, 169, 47, .45);
	background: rgba(64, 169, 47, .08);
	box-shadow: 0 12px 24px rgba(7, 23, 55, .06);
	transform: translateY(-1px);
}

.filter-option input {
	margin: 0;
	accent-color: var(--qnm-green);
}

.filter-option span {
	color: var(--qnm-ink);
	font-weight: 700;
	line-height: 1.4;
}

.filter-option small {
	color: #75849b;
	font-size: 12px;
	font-weight: 700;
}

.filter-select-wrap {
	position: relative;
}

.filter-select {
	width: 100%;
	min-height: 50px;
	padding: 0 16px;
	border: 1px solid rgba(0, 68, 155, .12);
	border-radius: 16px;
	background: #fff;
	color: var(--qnm-ink);
	font-size: 15px;
	font-weight: 700;
}

.product-filter-actions {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.product-filter-actions .btn {
	width: 100%;
	justify-content: center;
}

.product-filter-actions .btn--ghost {
	border: 1px solid rgba(0, 68, 155, .12);
	background: #f4f8ff;
	color: var(--qnm-blue);
}

.archive-products__content {
	min-width: 0;
}

.archive-products__toolbar {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 18px;
	padding: 26px 28px;
	margin-bottom: 24px;
}

.archive-products__eyebrow {
	display: inline-flex;
	margin-bottom: 10px !important;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(64, 169, 47, .12);
	color: var(--qnm-green) !important;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.archive-products__count {
	flex-shrink: 0;
	padding: 10px 16px;
	border-radius: 999px;
	background: #eff5ff;
	color: var(--qnm-blue) !important;
	font-size: 14px;
}

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

.archive-products__pagination {
	margin-top: 30px;
}

.archive-products__pagination-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
	padding: 22px 18px;
	border: 1px solid rgba(0, 68, 155, .08);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(7, 23, 55, .06);
}

.archive-products__pagination-list .page-numbers {
	min-width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid rgba(0, 68, 155, .12);
	border-radius: 14px;
	background: #fff;
	color: var(--qnm-blue);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(7, 23, 55, .05);
}

.archive-products__pagination-list .page-numbers.current,
.archive-products__pagination-list a.page-numbers:hover {
	background: var(--qnm-blue);
	color: #fff;
}

.archive-products__empty .btn {
	margin-top: 18px;
}

@media (max-width: 1024px) {
	.archive-hero {
		grid-template-columns: 1fr;
	}

	.archive-products {
		grid-template-columns: 1fr;
	}

	.archive-filter-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		min-height: 54px;
		padding: 0 18px;
		border: 1px solid rgba(0, 68, 155, .12);
		border-radius: 18px;
		background: #fff;
		color: var(--qnm-blue);
		font-size: 15px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: .04em;
		box-shadow: 0 14px 32px rgba(7, 23, 55, .06);
	}

	.archive-filter-toggle::after {
		content: '+';
		font-size: 22px;
		line-height: 1;
	}

	.archive-filter-toggle[aria-expanded="true"]::after {
		content: '−';
	}

	.archive-products__sidebar {
		position: static;
	}

	.product-filter-card {
		padding: 22px;
		display: none;
		margin-top: 16px;
	}

	.archive-products__sidebar.is-open .product-filter-card {
		display: block;
	}

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

@media (max-width: 768px) {
	.page-hero--archive {
		padding: 24px 0 10px;
	}

	.archive-hero {
		padding: 22px 20px;
		border-radius: 24px;
	}

	.archive-products__toolbar {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 20px;
	}

	.product-filter-card {
		padding: 20px;
	}

	.product-filter-card__head h2,
	.archive-products__toolbar h2 {
		font-size: 22px;
	}

	.page-hero--archive h1 {
		font-size: 30px;
	}

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

	.bike-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.filter-option {
		grid-template-columns: 18px minmax(0, 1fr);
	}

	.filter-option small {
		grid-column: 2;
	}

	.archive-products__pagination-list {
		padding: 18px 14px;
	}
}

/* Font Awesome Icon Bridge */
.qnm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.qnm-icon i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 1em;
}

.site-brand__mark .qnm-icon {
	width: 32px;
	height: 32px;
	font-size: 30px;
}

.header-phone .qnm-icon,
.btn .qnm-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	font-size: 20px;
}

.header-phone .qnm-icon,
.btn--green .qnm-icon,
.footer-hotline .qnm-icon {
	animation: qnm-phone-pulse 2s infinite ease-in-out;
}

.hero-benefits .qnm-icon {
	grid-row: span 2;
	width: 32px;
	height: 32px;
	font-size: 28px;
}

.section-heading__line .qnm-icon {
	width: 22px;
	height: 22px;
	font-size: 20px;
}

.bike-placeholder .qnm-icon {
	width: 86px;
	height: 86px;
	font-size: 74px;
}

.service-item__icon .qnm-icon {
	width: 38px;
	height: 38px;
	font-size: 34px;
}

.footer-socials a .qnm-icon {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.footer-contact .qnm-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	font-size: 15px;
	vertical-align: middle;
}

.footer-hotline .qnm-icon {
	width: 22px;
	height: 22px;
	font-size: 20px;
}

.product-badge .qnm-icon {
	width: 22px;
	height: 22px;
	font-size: 20px;
}

.feature-mini-grid .qnm-icon {
	width: 42px;
	height: 42px;
	font-size: 36px;
}

.detail-cta__icon .qnm-icon {
	width: 38px;
	height: 38px;
	font-size: 34px;
}

.service-card__icon .qnm-icon {
	width: 24px;
	height: 24px;
	font-size: 22px;
}

.process-step__icon .qnm-icon {
	width: 32px;
	height: 32px;
	font-size: 28px;
}

.why-us-item__icon .qnm-icon {
	width: 54px;
	height: 54px;
	font-size: 48px;
}

.about-stat-item__icon .qnm-icon {
	width: 40px;
	height: 40px;
	font-size: 34px;
}

.value-card__icon .qnm-icon {
	width: 48px;
	height: 48px;
	font-size: 42px;
}

.about-why-item__body h4 .check-icon .qnm-icon {
	width: 18px;
	height: 18px;
	font-size: 16px;
}

.contact-method__icon .qnm-icon,
.contact-social .qnm-icon,
.post-meta__item .qnm-icon {
	width: 24px;
	height: 24px;
	font-size: 22px;
}

.contact-highlight-card__icon .qnm-icon {
	width: 28px;
	height: 28px;
	font-size: 24px;
}

@media (max-width: 1024px) {
	.site-brand__mark .qnm-icon {
		width: 26px;
		height: 26px;
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.hero-benefits .qnm-icon {
		width: 27px;
		height: 27px;
		font-size: 24px;
	}

	.service-item__icon .qnm-icon {
		width: 31px;
		height: 31px;
		font-size: 28px;
	}
}


.contact-form-wrapper {}

.contact-form-wrapper span.wpcf7-form-control-wrap {
	margin-bottom: 0;
}

.form-group p {
	margin-bottom: 0;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.form-group {
	width: 100%;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	color: #0b3c5d;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #28a745;
	outline: none;
}

.form-submit {
	text-align: center;
	margin-top: 20px;
}

.form-submit p {
	margin-bottom: 0;
}

.form-submit input {
	background: linear-gradient(90deg, #28a745, #007bff);
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
}

.form-submit input:hover {
	opacity: 0.9;
}

.contact-cta {
	text-align: center;
	margin-top: 20px;
}

.contact-cta .call-now {
	display: inline-block;
	background: #28a745;
	color: #fff;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: bold;
	text-decoration: none;
	margin-top: 10px;
}

/* Custom Mobile Language Switch */
.mobile-language-switch {
	display: none;
}

@media (max-width: 991px) {
	.mobile-language-switch {
		display: flex;
		justify-content: center;
		padding: 16px;
		margin-top: 0;
		border-top: 1px solid rgba(0, 68, 155, .08);
		background: rgba(243, 248, 255, .5);
		border-radius: 0 0 24px 24px;
	}

	.site-menu {
		border-radius: 24px 24px 0 0 !important;
		box-shadow: none !important;
		border-bottom: 0 !important;
	}

	.site-nav.is-open {
		display: flex;
		flex-direction: column;
		box-shadow: 0 24px 54px rgba(7, 23, 55, .18);
		border-radius: 24px;
		background: #fff;
		overflow: hidden;
		border: 1px solid rgba(0, 68, 155, .1);
	}
}