/*
 * U12 main stylesheet (compiled from assets/scss/, loaded at runtime).
 * Design vars: primary #0f4c9e (industrial blue), accent #f97316 (orange), text #1f2937.
 */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
	color: #1f2937;
	background: #ffffff;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.3; color: #1f2937; margin: 0 0 .6em; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
a { color: #0f4c9e; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); height: 1px; width: 1px;
	overflow: hidden; position: absolute !important;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; clip: auto; width: auto; height: auto;
	background: #0f4c9e; color: #fff; padding: 8px 14px; z-index: 999;
}

/* Buttons */
.btn {
	display: inline-block; padding: 12px 26px; border-radius: 10px;
	font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn--accent { background: #f97316; color: #fff; }
.btn--accent:hover { background: #ea670c; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: #fff; color: #0f4c9e; border-color: #0f4c9e; }
.btn--outline:hover { background: #0f4c9e; color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(15, 76, 158, .06); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; }
.site-branding .custom-logo, .site-title { font-weight: 700; font-size: 1.3rem; color: #1f2937; white-space: nowrap; }
.site-branding .custom-logo { max-height: 44px; width: auto; height: auto; }
.header-search { flex: 1; max-width: 440px; }
.header-search .search-form, .header-search form { display: flex; gap: 8px; margin: 0; }
.header-search .search-field, .header-search input[type="search"] {
	flex: 1; height: 42px; width: 100%; border: 1px solid #e2e8f0; border-radius: 8px;
	padding: 0 14px; font-size: .92rem; background: #f8fafc;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.header-search .search-field:focus, .header-search input[type="search"]:focus {
	border-color: #0f4c9e; background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(15, 76, 158, .12);
}
.header-search .search-submit, .header-search button[type="submit"] {
	height: 42px; padding: 0 20px; border: none; border-radius: 8px; background: #0f4c9e;
	color: #fff; cursor: pointer; font-size: .9rem; font-weight: 600; transition: background .15s ease;
}
.header-search .search-submit:hover, .header-search button[type="submit"]:hover { background: #0a3a7a; }
.site-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.quote-cta { padding: 10px 18px !important; border-radius: 8px !important; white-space: nowrap; font-size: .88rem !important; }
.menu-toggle { display: none; align-items: center; gap: 8px; border: 1px solid #e5e7eb; background: #fff; border-radius: 8px; padding: 9px 14px; cursor: pointer; font-size: .88rem; color: #1f2937; }
.menu-toggle__bars { position: relative; display: inline-block; width: 16px; height: 2px; background: currentColor; }
.menu-toggle__bars::before, .menu-toggle__bars::after { content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor; }
.menu-toggle__bars::before { top: -5px; }
.menu-toggle__bars::after { top: 5px; }

/* Hero */
.hero { background: linear-gradient(135deg, #0f4c9e 0%, #0b3c7e 100%); color: #fff; padding: 88px 0; text-align: center; }
.hero__title { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 .4em; }
.hero__subtitle { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 720px; margin: 0 auto 1.6em; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Layout ---------- */
.site-content { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 48px 0; }
.site-content--full { grid-template-columns: 1fr; }
.site-main { min-width: 0; }
.section { padding: 56px 0; }
.section--features { background: #f5f7fa; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.section__title { margin: 0; }
.section__more { font-weight: 600; }
.section__sub { color: #6b7280; font-size: .95rem; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 26px; }
.feature-card h3 { margin-top: 0; }
.feature-card p { color: #6b7280; margin: 0; }

.breadcrumb { margin: 18px 0 10px; }
.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 8px 14px;
	font-size: .82rem;
	color: #6b7280;
	background: #f4f7fb;
	border: 1px solid #e7edf5;
	border-radius: 999px;
	width: fit-content;
	max-width: 100%;
}
.breadcrumb__item { display: inline-flex; align-items: center; }
.breadcrumb__item:not(:last-child)::after {
	content: "";
	width: 5px;
	height: 5px;
	margin: 0 8px;
	border-top: 1.5px solid #b9c4d2;
	border-right: 1.5px solid #b9c4d2;
	transform: rotate(45deg);
}
.breadcrumb__item a {
	color: #0f4c9e;
	text-decoration: none;
	padding: 2px 4px;
	border-radius: 6px;
	transition: color .15s ease, background .15s ease;
}
.breadcrumb__item a:hover { color: #0a3a7a; background: #e6eefb; text-decoration: none; }
.breadcrumb__item span[aria-current="page"] {
	color: #1f2937;
	font-weight: 600;
	padding: 2px 4px;
}

/* ---------- Components ---------- */
.product-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s ease, transform .15s ease; }
.product-card:hover { box-shadow: 0 8px 24px rgba(15, 76, 158, .12); transform: translateY(-2px); }
.product-card__media { display: block; background: #f5f7fa; aspect-ratio: 4 / 3; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { display: block; width: 100%; height: 100%; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__cat { align-self: flex-start; font-size: .75rem; color: #0f4c9e; background: rgba(15, 76, 158, .08); padding: 2px 10px; border-radius: 999px; }
.product-card__title { font-size: 1.05rem; margin: 0; }
.product-card__title a { color: #1f2937; }
.product-card__excerpt { color: #6b7280; font-size: .9rem; margin: 0; flex: 1; }
.product-card__link { align-self: flex-start; margin-top: 6px; }

.product-badges { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-wrap: wrap; gap: 16px; font-size: .9rem; }
.product-badges .badge-label { color: #6b7280; font-weight: 500; margin-right: 6px; }

.product-back {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 4px 0 6px;
	font-size: .85rem;
	color: #0f4c9e;
	text-decoration: none;
	transition: color .15s ease;
}
.product-back span { font-size: 1.1em; line-height: 1; }
.product-back:hover { color: #0a3a7a; text-decoration: underline; }

.product-cats { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.product-cat {
	display: inline-block;
	padding: 4px 12px;
	font-size: .8rem;
	color: #0f4c9e;
	background: #eef4fc;
	border: 1px solid #d8e6f7;
	border-radius: 999px;
	text-decoration: none;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.product-cat:hover { background: #0f4c9e; border-color: #0f4c9e; color: #fff; text-decoration: none; }

.widget-title { font-size: 1rem; margin: 0 0 .75em; }

/* ---------- Product Detail ---------- */
.product-detail { padding: 24px 0 56px; }
.product-detail__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; margin-bottom: 40px; }
.product-gallery { background: #f5f7fa; border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px; }
.product-gallery__image { width: 100%; height: auto; border-radius: 6px; }
.product-gallery__placeholder { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; color: #6b7280; }
.product-summary__title { margin: 0 0 12px; }
.product-summary__excerpt { color: #1f2937; margin: 0 0 20px; }
.product-summary__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-section { margin-top: 40px; }
.product-section__title { border-left: 4px solid #0f4c9e; padding-left: 12px; margin: 0 0 18px; }

.specs-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.specs-table th, .specs-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid #e5e7eb; vertical-align: top; }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: 0; }
.specs-table th { width: 32%; background: #f5f7fa; color: #6b7280; font-weight: 600; }

.faq-accordion { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.faq-item + .faq-item { border-top: 1px solid #e5e7eb; }
.faq-question { width: 100%; text-align: left; background: #fff; border: 0; padding: 16px 18px; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-icon { width: 14px; height: 14px; position: relative; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: #0f4c9e; transition: transform .2s ease; }
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-icon::after { top: 0; left: 6px; width: 2px; height: 14px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-answer { padding: 0 18px 16px; color: #6b7280; }
.faq-answer[hidden] { display: none; }

.pdf-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #0f4c9e; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid #e5e7eb; margin-top: 56px; padding: 44px 0 24px; background: #f5f7fa; color: #6b7280; }
.site-footer__widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer__bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .85rem; }
.footer-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.footer-menu a { color: #6b7280; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.site-content { grid-template-columns: 1fr; }
	.site-footer__widgets { grid-template-columns: repeat(2, 1fr); }
	.product-detail__top { gap: 28px; }
}
@media (max-width: 768px) {
	.product-detail__top { grid-template-columns: 1fr; }
	.site-footer__widgets { grid-template-columns: 1fr; }
	.site-footer__bottom { flex-direction: column; align-items: flex-start; }
	.hero { padding: 56px 0; }
	.specs-table th { width: 40%; }
}

/* ---------- Top Bar ---------- */
.topbar { background: #0a3a7a; color: #fff; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 0; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__item a { color: #fff; text-decoration: none; }
.topbar__item a:hover { text-decoration: underline; }
.topbar-menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.topbar-menu a { color: #fff; text-decoration: none; opacity: .92; }
.topbar-menu a:hover { text-decoration: underline; opacity: 1; }
@media (max-width: 768px) {
	.topbar__inner { justify-content: center; }
	.topbar__contact { width: 100%; justify-content: center; }
}

/* ---------- Page-specific blocks (About Us / FAQ / Contact Us) ---------- */
.faq-item { border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; margin-bottom: 10px; background: #fff; }
.faq-item summary { cursor: pointer; font-weight: 600; color: #0f4c9e; }
.faq-item__body { margin-top: 8px; color: #374151; line-height: 1.7; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.stat { background: #f1f5f9; border-radius: 10px; padding: 18px; text-align: center; }
.stat__num { display: block; font-size: 1.6rem; font-weight: 700; color: #0f4c9e; }
.stat__label { color: #475569; font-size: .9rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; margin-top: 20px; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 10px; }
.contact-note { color: #94a3b8; font-size: .85rem; }
@media (max-width: 768px) {
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-grid { grid-template-columns: 1fr; }
}
/* ---------- Base (override patch) ---------- */
body { margin: 0; }

/* ---------- Top bar (force dark-blue bg + white text, override global a color) ---------- */
.topbar {
	background: #0a3a7a;
	color: #fff;
	font-size: .82rem;
	line-height: 1.4;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	flex-wrap: nowrap;
}
.topbar__contact {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}
.topbar__item a,
.topbar__item a:visited,
.topbar__item a:hover,
.topbar-menu a,
.topbar-menu a:visited,
.topbar-menu a:hover {
	color: #fff !important;
	text-decoration: none;
}
.topbar__item a:hover,
.topbar-menu a:hover { text-decoration: underline; }
.topbar__nav { flex-shrink: 0; }
.topbar-menu {
	display: flex;
	gap: 18px;
	list-style: none !important;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.topbar-menu li { list-style: none !important; margin: 0; padding: 0; }

/* ---------- Primary nav strip (manufacturers) ---------- */
.site-nav { background: #0a3a7a; }
.site-nav .primary-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 2px 6px;
	list-style: none;
	margin: 0;
	padding: 6px 0;
}
.site-nav .primary-menu a {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: .9rem;
	line-height: 1.2;
	padding: 9px 14px;
	text-decoration: none;
	border-radius: 6px;
	transition: background .15s ease, color .15s ease;
}
.site-nav .primary-menu a:hover { background: rgba(255, 255, 255, .14); text-decoration: none; }
.site-nav .primary-menu li.current-menu-item > a,
.site-nav .primary-menu li.current-menu-ancestor > a { background: rgba(255, 255, 255, .2); }

@media (max-width: 768px) {
	.site-header__inner { flex-wrap: wrap; min-height: 60px; gap: 12px; }
	.header-search { order: 3; flex-basis: 100%; max-width: 100%; }
	.menu-toggle { display: inline-flex; }
	.site-nav { background: transparent; border: none; }
	.site-nav .primary-menu {
		display: none;
		position: absolute;
		left: 0; right: 0; top: 100%;
		flex-direction: column;
		background: #0a3a7a;
		padding: 6px 0;
		gap: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .18);
		box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
		z-index: 99;
	}
	.site-nav .primary-menu.toggled { display: flex; }
	.site-nav .primary-menu a { padding: 13px 20px; border-radius: 0; }
}

/* ---------- Product card placeholder ---------- */
.product-card__media { display: block; background: #f1f5f9; aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.product-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #94a3b8;
	font-size: .85rem;
}
.product-card__placeholder::before {
	content: "";
	display: block;
	width: 48px;
	height: 48px;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") no-repeat center / contain;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") no-repeat center / contain;
	margin-right: 8px;
}

/* ---------- Hero tweaks ---------- */
.hero { background: linear-gradient(135deg, #0f4c9e 0%, #0b3c7e 100%); color: #fff; padding: 84px 0; text-align: center; }
.hero__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 .45em; }
.hero__subtitle { color: rgba(255,255,255,.9); font-size: 1.05rem; max-width: 720px; margin: 0 auto 1.6em; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.topbar__inner { flex-wrap: wrap; justify-content: center; text-align: center; }
	.topbar__contact { width: 100%; justify-content: center; }
	.topbar-menu { width: 100%; justify-content: center; }
	.hero { padding: 56px 0; }
}

/* =========================================================
   Forms, search, pagination & site-wide polish (v2026-09-03)
   ========================================================= */

/* ---------- Global form controls ---------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
textarea,
select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	color: #1f2937;
	font-family: inherit;
	font-size: .95rem;
	line-height: 1.5;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
input:hover,
textarea:hover,
select:hover { border-color: #9ca3af; }
input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: #0f4c9e;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(15, 76, 158, .15);
}
input::placeholder,
textarea::placeholder { color: #9ca3af; opacity: 1; }
textarea { min-height: 160px; resize: vertical; }
select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px 16px;
	padding-right: 38px;
}
select::-ms-expand { display: none; }

button,
input[type="submit"],
.search-submit {
	font-family: inherit;
}

/* ---------- Contact Form 7 ---------- */
.wpcf7-form p { margin: 0 0 18px; }
.wpcf7-form p:last-of-type { margin-bottom: 0; }
.wpcf7-form label {
	display: block;
	font-weight: 500;
	color: #374151;
	font-size: .92rem;
	line-height: 1.45;
	cursor: pointer;
}
.wpcf7-form label br { display: none; }
.wpcf7-form-control-wrap {
	display: block;
	margin-top: 6px;
}
.wpcf7-form-control-wrap .wpcf7-form-control {
	display: block;
	width: 100%;
}
.wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: .82rem;
	margin-top: 6px;
	display: block;
}
.wpcf7-form-control.wpcf7-not-valid {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}
.wpcf7-form .wpcf7-submit,
input[type="submit"].wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 180px;
	padding: 13px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: .95rem;
	border: 1px solid transparent;
	cursor: pointer;
	background: #f97316;
	color: #fff;
	transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
	-webkit-appearance: none;
}
.wpcf7-form .wpcf7-submit:hover,
input[type="submit"].wpcf7-submit:hover {
	background: #ea670c;
	text-decoration: none;
}
.wpcf7-form .wpcf7-submit:active,
input[type="submit"].wpcf7-submit:active {
	transform: translateY(1px);
}
.wpcf7-form .wpcf7-submit:disabled,
.wpcf7-form .wpcf7-submit[data-status="submitting"] {
	opacity: .7;
	cursor: wait;
}
.wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid;
	font-size: .9rem;
	line-height: 1.5;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
	background: #ecfdf5;
	border-color: #6ee7b7;
	color: #065f46;
}
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-aborted,
.wpcf7-response-output.wpcf7-spam-blocked {
	background: #fef2f2;
	border-color: #fca5a5;
	color: #991b1b;
}

/* ---------- Pagination ---------- */
.pagination { margin-top: 40px; }
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	color: #374151;
	font-weight: 500;
	font-size: .9rem;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pagination .page-numbers:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #0f4c9e;
	text-decoration: none;
}
.pagination .page-numbers.current {
	background: #0f4c9e;
	border-color: #0f4c9e;
	color: #fff;
	cursor: default;
}
.pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	color: #6b7280;
	cursor: default;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next { padding: 0 16px; }

/* ---------- Archive / page headers ---------- */
.page-header { margin-bottom: 24px; }
.page-title { margin: 0 0 8px; }
.archive-description { color: #6b7280; font-size: .95rem; }

/* ---------- Contact page cards ---------- */
.contact-grid { gap: 40px; }
.contact-info,
.contact-form {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 28px;
}
.contact-info h3,
.contact-form h3 { margin-top: 0; font-size: 1.15rem; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin-bottom: 14px; line-height: 1.55; }
.contact-list a { color: #0f4c9e; }
.contact-list a:hover { color: #0b3c7e; text-decoration: underline; }
.contact-note { color: #94a3b8; font-size: .82rem; margin: 18px 0 0; line-height: 1.55; }

/* ---------- About / testimonial blockquote ---------- */
blockquote,
.wp-block-quote {
	margin: 24px 0;
	padding: 20px 24px;
	border-left: 4px solid #0f4c9e;
	background: #f5f7fa;
	border-radius: 0 10px 10px 0;
	color: #374151;
	font-style: italic;
}
blockquote p:last-child,
.wp-block-quote p:last-child { margin-bottom: 0; }

/* ---------- Footer consistency ---------- */
.footer-menu { flex-wrap: wrap; }

/* ---------- Global focus / interaction polish ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid #0f4c9e;
	outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }
.menu-toggle {
	transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.menu-toggle:hover { background: #f3f4f6; }
.topbar-menu a { transition: opacity .15s ease; }

/* ---------- Responsive polish ---------- */
@media (max-width: 768px) {
	.contact-grid { grid-template-columns: 1fr; }
	.contact-info,
	.contact-form { padding: 22px; }
	.wpcf7-form .wpcf7-submit,
	input[type="submit"].wpcf7-submit { width: 100%; }
	.company__inner { grid-template-columns: 1fr; gap: 28px; }
	.company__media { aspect-ratio: 16 / 10; }
	.section__title--lg { font-size: 1.5rem; }
	.section__head { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 480px) {
	.pagination .page-numbers { min-width: 36px; height: 36px; font-size: .85rem; }
}

/* =========================================================
   Homepage modules: hero search, stats band, brand tiles,
   news cards, CTA band (v2026-09-03)
   ========================================================= */

/* ---------- Hero product search ---------- */
.hero-search {
	display: flex;
	gap: 10px;
	max-width: 620px;
	margin: 28px auto 0;
}
.hero-search__field {
	flex: 1;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 10px;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: .95rem;
	transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.hero-search__field::placeholder { color: rgba(255, 255, 255, .75); }
.hero-search__field:focus {
	outline: none;
	background: #fff;
	color: #1f2937;
	border-color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
.hero-search__submit {
	padding: 14px 26px;
	border-radius: 10px;
	border: 1px solid transparent;
	background: #f97316;
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	transition: background .15s ease;
	white-space: nowrap;
}
.hero-search__submit:hover { background: #ea670c; }

/* ---------- Stats band ---------- */
.stats-grid { list-style: none; padding: 0; }
.stats-band {
	background: #0f4c9e;
	color: #fff;
	padding: 32px 0;
}
.stats-band .stats-grid {
	margin: 0;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.stats-band .stat {
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	padding: 22px 16px;
}
.stats-band .stat__num {
	color: #fff;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.2;
}
.stats-band .stat__label {
	display: block;
	color: rgba(255, 255, 255, .85);
	font-size: .9rem;
}

/* ---------- Brand tiles ---------- */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}
.brand-tile {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	text-decoration: none;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.brand-tile:hover {
	text-decoration: none;
	border-color: #0f4c9e;
	box-shadow: 0 8px 22px rgba(15, 76, 158, .12);
	transform: translateY(-2px);
}
.brand-tile__name {
	font-weight: 600;
	color: #1f2937;
	font-size: 1rem;
}
.brand-tile__count {
	color: #6b7280;
	font-size: .85rem;
}

/* ---------- News cards ---------- */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.news-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow .15s ease, transform .15s ease;
}
.news-card:hover {
	box-shadow: 0 8px 24px rgba(15, 76, 158, .12);
	transform: translateY(-2px);
}
.news-card__link {
	display: block;
	padding: 22px;
	color: inherit;
	text-decoration: none;
	height: 100%;
}
.news-card__link:hover { text-decoration: none; }
.news-card__date {
	display: block;
	font-size: .8rem;
	color: #6b7280;
	margin-bottom: 8px;
}
.news-card__title {
	font-size: 1.05rem;
	margin: 0 0 10px;
	color: #1f2937;
	transition: color .15s ease;
}
.news-card__link:hover .news-card__title { color: #0f4c9e; }
.news-card__excerpt {
	color: #6b7280;
	font-size: .9rem;
	margin: 0 0 14px;
}
.news-card__more {
	font-weight: 600;
	font-size: .88rem;
	color: #0f4c9e;
}

/* ---------- Feature card polish ---------- */
.feature-card {
	position: relative;
	transition: box-shadow .15s ease, transform .15s ease;
}
.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #eaf1fb;
	color: #0f4c9e;
	margin-bottom: 16px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.08rem; margin: 0 0 8px; }
.feature-card:hover {
	box-shadow: 0 8px 24px rgba(15, 76, 158, .10);
	transform: translateY(-2px);
}

/* ---------- Company introduction ---------- */
.section--company { background: #fff; }
.company__inner {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 52px;
	align-items: center;
}
.company__media {
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, #0f4c9e 0%, #0b3c7e 100%);
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 16px 40px rgba(15, 76, 158, .18);
}
.company__media svg { width: 80%; height: auto; }
.section__title--lg { font-size: 1.9rem; margin: 0 0 14px; }
.company__lead {
	font-size: 1.05rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 18px;
}
.company__list {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	display: grid;
	gap: 12px;
}
.company__list li {
	position: relative;
	padding-left: 30px;
	color: #374151;
	line-height: 1.5;
}
.company__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #0f4c9e;
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- Testimonials ---------- */
.section--testimonials { background: #f5f7fa; }
.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}
.testimonial {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 26px;
	transition: box-shadow .15s ease, transform .15s ease;
}
.testimonial:hover {
	box-shadow: 0 10px 28px rgba(15, 76, 158, .10);
	transform: translateY(-2px);
}
.testimonial__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testimonial__quote {
	margin: 0;
	flex: 1;
	color: #374151;
	line-height: 1.7;
	font-size: .96rem;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0f4c9e, #0b3c7e);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .9rem;
	flex-shrink: 0;
}
.testimonial__meta-wrap { display: flex; flex-direction: column; line-height: 1.35; }
.testimonial__name { font-weight: 600; color: #1f2937; }
.testimonial__meta { font-size: .82rem; color: #6b7280; }

/* ---------- CTA band ---------- */
.cta-band {
	background: linear-gradient(135deg, #0f4c9e 0%, #0b3c7e 100%);
	color: #fff;
	padding: 56px 0;
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}
.cta-band__title {
	color: #fff;
	margin: 0 0 8px;
	font-size: 1.6rem;
}
.cta-band__desc {
	color: rgba(255, 255, 255, .88);
	margin: 0;
	max-width: 620px;
}
.cta-band__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.cta-band .btn--outline {
	border-color: #fff;
	color: #fff;
	background: transparent;
}
.cta-band .btn--outline:hover {
	background: #fff;
	color: #0f4c9e;
}

/* ---------- Homepage module responsive ---------- */
@media (max-width: 1024px) {
	.stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.hero-search { flex-direction: column; }
	.hero-search__submit { width: 100%; }
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
	.cta-band { padding: 40px 0; }
	.cta-band__title { font-size: 1.35rem; }
}
@media (max-width: 480px) {
	.stats-band .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.stats-band .stat { padding: 16px 12px; }
	.stats-band .stat__num { font-size: 1.5rem; }
}

