:root {
	--blue: #1556b8;
	--blue-dark: #0d3a83;
	--blue-soft: #eaf2ff;
	--ink: #24272c;
	--muted: #6d747c;
	--line: #e5e8ec;
	--paper: #ffffff;
	--mist: #f4f6f8;
	--dark: #1f2329;
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-size: 15px;
	line-height: 1.7;
}

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

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

button,
input {
	font: inherit;
}

.container {
	width: min(var(--max), calc(100% - 48px));
	margin: 0 auto;
}

.topline {
	background: #f2f3f4;
	color: #757b82;
	font-size: 13px;
}

.topline .container {
	min-height: 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.toplinks {
	max-width: 62%;
	overflow: hidden;
	color: #666d75;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.toplinks a:hover {
	color: var(--blue);
}

.brandbar {
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
}

.brand-mark {
	display: block;
	width: clamp(154px, 16vw, 208px);
	height: auto;
}

.phone-link {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: #15171a;
	font-weight: 800;
	font-size: clamp(18px, 2.2vw, 28px);
}

.phone-link .phone-icon {
	width: 42px;
	height: 42px;
	border: 3px solid var(--blue);
	color: var(--blue);
	display: grid;
	place-items: center;
	border-radius: 50%;
	font-size: 22px;
}

.nav {
	background: var(--blue);
	color: white;
	position: relative;
	z-index: 5;
}

.nav .container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-toggle {
	display: none;
}

.nav-list {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
	justify-content: space-between;
}

.nav-list > li {
	position: relative;
}

.nav-list a {
	display: block;
	padding: 15px 24px;
	font-size: 16px;
	white-space: nowrap;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
	background: var(--blue-dark);
}

.nav-list .has-submenu > a {
	padding-right: 31px;
}

.nav-list .has-submenu > a::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 0 3px 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.nav-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 176px;
	margin: 0;
	padding: 7px 0;
	list-style: none;
	background: #fff;
	box-shadow: 0 10px 24px rgba(9, 35, 67, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0s linear 0.2s;
}

.nav-list > li:hover > .nav-submenu,
.nav-list > li:focus-within > .nav-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0s;
}

.nav-list > li:hover.has-submenu > a::after,
.nav-list > li:focus-within.has-submenu > a::after {
	transform: rotate(225deg);
}

.nav-submenu a {
	padding: 10px 17px;
	color: #4f5861;
	font-size: 14px;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
	color: var(--blue);
	background: var(--blue-soft);
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(360px, 44vw, 650px);
	background: #152238;
	isolation: isolate;
}

.hero-track {
	position: relative;
	min-height: inherit;
}

.hero-slide {
	position: absolute;
	inset: 0;
	min-height: clamp(360px, 44vw, 650px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(1.025);
	transition:
		opacity 0.68s ease,
		transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
		visibility 0s linear 0.68s;
	will-change: opacity, transform, clip-path;
}

.hero-slide.is-active {
	z-index: 2;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: scale(1);
	transition-delay: 0s;
}

.hero-slide.is-leaving {
	z-index: 3;
	opacity: 0;
	visibility: visible;
	transform: scale(1.035);
	pointer-events: none;
	transition-delay: 0s, 0s, 0.68s;
}

.hero-slide.is-entering {
	clip-path: inset(0 0 0 0);
	animation: hero-slide-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	inset: 0;
	transform: scale(1.075);
	transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

.hero-slide.is-active img {
	animation: hero-image-drift 7.2s cubic-bezier(0.2, 0.58, 0.35, 1) both;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(90deg, #0c63bf 0%, #0b4a90 55%, #0a2e59 100%);
	transform: scaleX(0);
	transform-origin: right center;
	pointer-events: none;
}

.hero-slide.is-entering::before {
	animation: hero-sweep 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(9, 20, 38, 0.62),
		rgba(9, 20, 38, 0.05) 66%,
		rgba(9, 20, 38, 0.2)
	);
	z-index: 1;
}

.hero-copy {
	position: relative;
	z-index: 3;
	min-height: clamp(360px, 44vw, 650px);
	display: flex;
	align-items: center;
}

.hero-copy .eyebrow {
	color: #aad0ff;
	letter-spacing: 3px;
	font-size: 13px;
	text-transform: uppercase;
}

.hero-copy h1 {
	max-width: 520px;
	margin: 10px 0 20px;
	color: white;
	font-size: clamp(32px, 5vw, 62px);
	line-height: 1.15;
}

.hero-copy p {
	max-width: 440px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
}

.hero-slide.is-active .hero-copy > div {
	animation: hero-copy-rise 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) 0.16s both;
}

.hero-controls {
	position: absolute;
	left: max(4vw, calc((100% - 1180px) / 2));
	bottom: 30px;
	display: flex;
	align-items: flex-end;
	gap: 15px;
	z-index: 5;
}

.hero-count {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.hero-count strong {
	color: #fff;
	font-size: 16px;
}

.hero-count i {
	width: 28px;
	height: 1px;
	background: rgba(255, 255, 255, 0.52);
}

.hero-dot {
	position: relative;
	width: 48px;
	height: 20px;
	border: 0;
	padding: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	text-align: left;
	cursor: pointer;
}

.hero-dot::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.45);
	transform-origin: left center;
}

.hero-dot.active {
	color: #fff;
}

.hero-dot.active::after {
	background: #45a1ff;
	animation: hero-progress 5.4s linear both;
}

@keyframes hero-slide-reveal {
	from {
		clip-path: inset(0 100% 0 0);
	}

	to {
		clip-path: inset(0 0 0 0);
	}
}

@keyframes hero-sweep {
	0% {
		opacity: 0.96;
		transform: scaleX(1);
	}

	100% {
		opacity: 0;
		transform: scaleX(0);
	}
}

@keyframes hero-image-drift {
	from {
		transform: scale(1.075);
	}

	to {
		transform: scale(1.01);
	}
}

@keyframes hero-copy-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-progress {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

.section {
	padding: 78px 0;
}

.section--mist {
	background: var(--mist);
}

.section--blue {
	color: white;
	background: linear-gradient(140deg, #0c4ebd, #2d6ce2);
}

.section-heading {
	text-align: center;
	margin-bottom: 36px;
}

.section-heading h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(30px, 3.5vw, 43px);
	line-height: 1.2;
}

.section--blue .section-heading h2 {
	color: white;
}

.section-heading p {
	margin: 8px 0 0;
	color: var(--muted);
}

.section--blue .section-heading p {
	color: rgba(255, 255, 255, 0.72);
}

.section-heading .en {
	display: block;
	margin-top: 3px;
	color: #a3adb7;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.advantage {
	min-height: 400px;
	position: relative;
	overflow: hidden;
	border-right: 1px solid #e6e8eb;
	background: #fff;
}

.advantage:last-child {
	border-right: 0;
}

.advantage-base {
	padding: 75px 24px 0;
	text-align: center;
}

.advantage-icon {
	width: 94px;
	height: 94px;
	margin: 0 auto 20px;
	border: 10px solid #b7caf5;
	outline: 7px solid #2c6de0;
	outline-offset: -17px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	background: #2d6de2;
	font-size: 24px;
	font-weight: 700;
}

.advantage h3 {
	height: 60px;
	margin: 0;
	color: #333;
	font-size: 28px;
	line-height: 60px;
}

.advantage p {
	height: 88px;
	margin: 0 auto;
	max-width: 200px;
	overflow: hidden;
	color: #7f7f7f;
	font-size: 14px;
	line-height: 26px;
	padding-top: 15px;
}

.advantage-cover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 0;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	transition: height 0.4s ease;
}

.advantage:hover .advantage-cover {
	height: 100%;
}

.advantage:nth-child(1) .advantage-cover {
	background-image: url("../images/21-industrial-worker-modern-factory.jpg");
}

.advantage:nth-child(2) .advantage-cover {
	background-image: url("../images/23-factory-interior-overhead-cranes.jpg");
}

.advantage:nth-child(3) .advantage-cover {
	background-image: url("../images/18-laser-cutting-machine-factory.jpg");
}

.advantage:nth-child(4) .advantage-cover {
	background-image: url("../images/03-concrete-wall-construction.jpg");
}

.advantage-cover-icon {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 30px;
	width: 74px;
	height: 74px;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	color: #fff;
	border: 6px solid rgba(255, 255, 255, 0.78);
	border-radius: 50%;
	background: rgba(21, 86, 184, 0.85);
	font-size: 20px;
	font-weight: 700;
}

.advantage-cover-bar {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 66px;
	background: rgba(255, 255, 255, 0.6);
}

.category-tabs {
	display: flex;
	align-items: center;
	gap: 34px;
	border: 1px solid #dfe3e7;
	border-radius: 4px;
	padding: 14px 22px;
	margin-bottom: 28px;
	overflow-x: auto;
}

.category-tabs a {
	color: #3b4147;
	white-space: nowrap;
	font-size: 14px;
}

.category-tabs a::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 9px;
	background: var(--blue);
	vertical-align: middle;
}

.category-tabs a:hover,
.category-tabs a.active {
	color: var(--blue);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.product-card {
	background: #fff;
	border: 1px solid #e3e6e9;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(20, 40, 70, 0.13);
}

.product-card .thumb {
	aspect-ratio: 1.25;
	background: #eef1f3;
	overflow: hidden;
}

.product-card .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.product-card:hover .thumb img {
	transform: scale(1.05);
}

.product-card .meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
}

.product-card h3 {
	margin: 0;
	font-size: 16px;
}

.plus {
	width: 24px;
	height: 24px;
	background: var(--blue);
	color: white;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 19px;
	line-height: 1;
}

.process-shell {
	position: relative;
	background:
		linear-gradient(
			90deg,
			rgba(7, 70, 169, 0.94),
			rgba(25, 104, 210, 0.84)
		),
		url("../images/23-factory-interior-overhead-cranes.jpg") center/cover;
}

.process-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.16;
	background-image: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.24) 12%,
		transparent 12%,
		transparent 50%,
		rgba(255, 255, 255, 0.24) 50%,
		rgba(255, 255, 255, 0.24) 62%,
		transparent 62%,
		transparent
	);
	background-size: 50px 50px;
}

.process-shell > * {
	position: relative;
	z-index: 1;
}

.process-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 30px;
}

.process-heading::before {
	content: "";
	width: 5px;
	height: 52px;
	background: white;
}

.process-heading h2 {
	margin: 0;
	color: #fff;
	font-size: 31px;
	line-height: 1.1;
}

.process-heading span {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	letter-spacing: 1px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
}

.process-step {
	min-height: 130px;
	padding: 14px 12px;
	border-left: 1px solid rgba(255, 255, 255, 0.75);
	position: relative;
}

.process-step::after {
	content: "";
	position: absolute;
	right: -7px;
	top: 52px;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid #fff;
}

.process-step:last-child::after {
	display: none;
}

.step-icon {
	width: 38px;
	height: 38px;
	margin-bottom: 13px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 700;
}

.process-step h3 {
	margin: 0;
	font-size: 15px;
	color: #fff;
}

.process-step p {
	margin: 2px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	text-transform: uppercase;
}

.case-track {
	position: relative;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.case-card {
	text-align: center;
}

.case-card .thumb {
	aspect-ratio: 1.42;
	overflow: hidden;
	background: #eef0f2;
}

.case-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.case-card:hover img {
	transform: scale(1.04);
}

.case-card h3 {
	margin: 12px 0 0;
	font-size: 16px;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 0;
}

.about-photo {
	position: relative;
	align-self: stretch;
	aspect-ratio: auto;
	min-height: 0;
	overflow: hidden;
}

.about-photo img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-copy {
	padding: 36px 42px;
	background: #fff;
}

.about-label {
	display: inline-block;
	padding: 6px 18px;
	background: var(--blue);
	color: #fff;
	font-weight: 700;
}

.about-copy h3 {
	margin: 18px 0 10px;
	font-size: 29px;
}

.about-copy p {
	margin-bottom: 10px;
	color: var(--muted);
}

.about-copy .cta {
	margin-top: 22px;
}

.about-copy .more {
	display: inline-block;
	margin-top: 14px;
	color: var(--blue);
	font-weight: 700;
}

.quick-links {
	display: flex;
	gap: 30px;
	margin-top: 28px;
}

.quick-link {
	text-align: center;
	color: #343b41;
}

.quick-link .quick-icon {
	width: 46px;
	height: 46px;
	margin: 0 auto 6px;
	border: 2px solid #353b43;
	border-radius: 12px 12px 8px 8px;
	display: grid;
	place-items: center;
	font-weight: 800;
}

.quick-link span {
	font-size: 13px;
}

.news-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 28px;
	min-width: 0;
}

.featured-news {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	min-width: 0;
}

.news-card {
	border-right: 1px solid var(--line);
	padding-right: 16px;
	min-width: 0;
}

.news-card:last-child {
	border-right: 0;
}

.news-card .thumb {
	aspect-ratio: 16 / 8;
	overflow: hidden;
}

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

.news-card h3 {
	margin: 10px 0 8px;
	font-size: 16px;
	line-height: 1.5;
}

.featured-news .news-card h3 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-card .button {
	display: inline-block;
	margin-top: 13px;
	padding: 4px 18px;
	border-radius: 18px;
	color: white;
	background: var(--blue);
	font-size: 13px;
}

.news-list {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

.news-list li {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 42px;
	padding: 10px 0;
	border-bottom: 1px dashed #e6e8ea;
	min-width: 0;
}

.news-list li::before {
	content: "›";
	color: var(--blue);
}

.news-list a {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-list time {
	color: #4f5861;
	white-space: nowrap;
	font-size: 13px;
}

.friends {
	padding: 32px 0 30px;
}

.friends h3 {
	margin: 0 0 6px;
	color: var(--blue);
	font-size: 19px;
}

.friend-links {
	display: flex;
	gap: 22px;
	color: #555c64;
}

.footer {
	color: #afb6bd;
	background: var(--dark);
}

.footer-main {
	padding: 46px 0 38px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
	gap: 34px;
}

.footer-brand-logo {
	display: block;
	width: 158px;
	height: auto;
	margin: 2px 0 14px;
}

.footer-brand-note {
	margin: 0;
	color: #aeb7c0;
	font-size: 13px;
	line-height: 1.7;
	white-space: nowrap;
}

.footer h3 {
	margin: 0 0 15px;
	color: #fff;
	font-size: 16px;
}

.footer a {
	color: #c1c7cd;
}

.footer a:hover {
	color: #fff;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 12px 26px;
	align-content: start;
}

.footer-contact strong {
	display: block;
	color: #2d75e7;
	font-size: 26px;
	line-height: 1.1;
}

.footer-contact p {
	margin: 10px 0 0;
}

.qr-box {
	width: 126px;
	height: 126px;
	border: 8px solid #fff;
	background: #fff;
}

.qr-box img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 16px 0;
	text-align: center;
	color: #b9bec4;
	font-size: 12px;
}

.subhero {
	background:
		linear-gradient(90deg, rgba(9, 20, 38, 0.75), rgba(9, 20, 38, 0.28)),
		url("../images/18-laser-cutting-machine-factory.jpg") center/cover;
	color: white;
	padding: 66px 0;
}

.subhero h1 {
	margin: 0 0 7px;
	font-size: clamp(32px, 4vw, 52px);
}

.breadcrumb {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
}

.page-shell {
	padding: 54px 0 76px;
}

.page-grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 34px;
	align-items: start;
}

.page-grid-single {
	grid-template-columns: 1fr;
}

.side-nav {
	border: 1px solid var(--line);
}

.side-nav h2 {
	margin: 0;
	padding: 15px 18px;
	color: white;
	background: var(--blue);
	font-size: 17px;
}

.side-nav a {
	display: block;
	padding: 12px 18px;
	border-bottom: 1px solid var(--line);
	color: #555d65;
}

.side-nav a:hover,
.side-nav a.active {
	color: var(--blue);
	background: var(--blue-soft);
}

.content-heading {
	margin-bottom: 24px;
}

.content-heading h2 {
	margin: 0;
	font-size: 30px;
}

.content-heading p {
	margin: 4px 0 0;
	color: var(--muted);
}

.list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.content-area {
	min-width: 0;
}

.article-wide {
	width: 100%;
	max-width: none;
	margin: 0;
}

.copy-gap {
	margin-top: 14px !important;
}

.info-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 52px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.info-strip article {
	padding: 18px 14px;
	text-align: center;
	border-right: 1px solid var(--line);
}

.info-strip article:last-child {
	border-right: 0;
}

.info-strip strong {
	display: block;
	color: var(--blue);
	font-size: 20px;
	line-height: 1;
}

.info-strip span {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 13px;
}

.detail-panel {
	min-width: 0;
}

.detail-lead {
	margin-top: -4px;
	color: var(--blue) !important;
	font-size: 16px;
}

.spec-table {
	margin: 18px 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.spec-table div {
	display: flex;
	gap: 12px;
	padding: 11px 12px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fbfcfd;
}

.spec-table b {
	min-width: 72px;
	color: #4c535b;
	font-size: 13px;
}

.spec-table span {
	color: var(--muted);
	font-size: 13px;
}

.detail-section {
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.detail-section h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.detail-pager {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	color: #56606b;
	font-size: 13px;
}

.detail-pager a:hover {
	color: var(--blue);
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	color: var(--muted);
	font-size: 13px;
}

.pagination a {
	min-width: 30px;
	padding: 5px 10px;
	border: 1px solid var(--line);
	text-align: center;
}

.pagination a.active,
.pagination a:hover {
	color: #fff;
	background: var(--blue);
	border-color: var(--blue);
}

.case-list-grid .case-card {
	text-align: left;
}

.case-list-grid .case-card p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-feed {
	border-top: 1px solid var(--line);
}

.news-row {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 22px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.news-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	color: var(--blue);
	border-right: 1px solid var(--line);
}

.news-date strong {
	font-size: 34px;
	line-height: 1;
}

.news-date span {
	margin-top: 6px;
	color: #9299a1;
	font-size: 12px;
}

.news-row h3 {
	margin: 0 0 6px;
	font-size: 20px;
}

.news-row p {
	margin: 0;
	color: var(--muted);
}

.text-link {
	display: inline-block;
	margin-top: 8px;
	color: var(--blue);
	font-size: 13px;
}

.form-note {
	margin: 10px 0 0;
	color: #9aa1a8;
	font-size: 12px;
}

.info-card {
	border: 1px solid var(--line);
	background: white;
}

.info-card .thumb {
	height: 200px;
	overflow: hidden;
}

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

.info-card .body {
	padding: 15px 16px 18px;
}

.info-card h3 {
	margin: 0 0 5px;
	font-size: 17px;
}

.info-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.detail-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 34px;
}

.detail-image {
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--mist);
}

.detail-image img {
	width: 100%;
	aspect-ratio: 1.1;
	object-fit: cover;
}

.detail-copy h2 {
	margin: 0 0 10px;
	font-size: 33px;
}

.detail-copy p {
	color: var(--muted);
}

.detail-copy ul {
	padding-left: 20px;
	color: var(--muted);
}

.detail-copy li::marker {
	color: var(--blue);
}

.cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	color: white;
	background: var(--blue);
	border-radius: 2px;
}

.article {
	max-width: 840px;
	margin: 0 auto;
}

.article h2 {
	margin: 0;
	font-size: 34px;
	line-height: 1.3;
}

.article-meta {
	margin: 9px 0 24px;
	color: #90979f;
	font-size: 13px;
}

.article-cover {
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	margin-bottom: 24px;
}

.article p {
	color: #5d646d;
}

.faq-item {
	border-bottom: 1px solid var(--line);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 0;
	border: 0;
	color: var(--ink);
	background: transparent;
	text-align: left;
	cursor: pointer;
	font-size: 16px;
}

.faq-question span {
	color: var(--blue);
	font-size: 24px;
	transition: transform 0.25s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	color: var(--muted);
	transition: max-height 0.3s ease;
}
.s_content {
	padding: 0 0 24px 0;
}

.faq-answer p {
	margin: 0;
	padding-bottom: 18px;
}

.faq-item.open .faq-answer {
	max-height: 1000px;
}

.faq-item.open .faq-question span {
	transform: rotate(45deg);
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 34px;
}

.contact-panel {
	padding: 28px;
	background: var(--mist);
}

.contact-panel h2 {
	margin-top: 0;
}

.contact-line {
	display: flex;
	gap: 12px;
	align-items: start;
	margin: 17px 0;
}

.contact-line b {
	color: var(--blue);
}

.contact-form {
	border: 1px solid var(--line);
	padding: 28px;
}

.field {
	margin-bottom: 15px;
}

.field label {
	display: block;
	margin-bottom: 5px;
	color: #4b535c;
	font-size: 13px;
}

.field input,
.field textarea {
	width: 100%;
	border: 1px solid #dce1e5;
	padding: 11px 12px;
	outline: 0;
}

.field textarea {
	min-height: 145px;
	resize: vertical;
}

.field input:focus,
.field textarea:focus {
	border-color: var(--blue);
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.reveal.in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 900px) {
	.nav-list a {
		padding: 14px 14px;
	}

	.advantage-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.advantage:nth-child(2) {
		border-right: 0;
	}

	.advantage:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

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

	.process-grid {
		grid-template-columns: repeat(4, 1fr);
		row-gap: 14px;
	}

	.process-step:nth-child(4)::after,
	.process-step:nth-child(8)::after {
		display: none;
	}

	.case-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news-layout {
		grid-template-columns: 1fr;
	}

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.container {
		width: min(var(--max), calc(100% - 30px));
	}

	.topline .container {
		min-height: 32px;
		font-size: 12px;
	}

	.toplinks {
		gap: 10px;
	}

	.brandbar {
		min-height: 92px;
	}

	.phone-link .phone-icon{
		
    width: 33px;
    height: 33px;
    font-size: 15px;
	}

	.brand-mark {
		width: 150px;
	}

	.nav .container {
		width: 100%;
		justify-content: center;
	}

	.nav-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
	}

	.nav-list > li {
		min-width: 0;
	}

	.nav-list a {
		padding: 11px 4px;
		font-size: 14px;
		text-align: center;
	}

	.nav-list .has-submenu > a {
		padding-right: 4px;
	}

	.nav-list .has-submenu > a::after,
	.nav-submenu {
		display: none;
	}

	.hero-slide,
	.hero-copy {
		min-height: 430px;
	}

	.hero-copy h1 {
		font-size: 35px;
		max-width: 290px;
	}

	.hero-copy p {
		max-width: 285px;
		font-size: 14px;
	}

	.section {
		padding: 54px 0;
	}

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

	.advantage,
	.advantage:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.advantage:last-child {
		border-bottom: 0;
	}

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

	.category-tabs {
		gap: 22px;
	}

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

	.process-step:nth-child(2n)::after {
		display: none;
	}

	.process-step:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.45);
	}

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

	.about-grid,
	.detail-grid,
	.contact-grid,
	.page-grid {
		grid-template-columns: 1fr;
	}

	.info-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.info-strip article:nth-child(2) {
		border-right: 0;
	}

	.info-strip article:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.spec-table {
		grid-template-columns: 1fr;
	}

	.detail-pager {
		flex-direction: column;
		gap: 8px;
	}

	.news-row {
		grid-template-columns: 66px 1fr;
		gap: 14px;
	}

	.news-row h3 {
		font-size: 17px;
	}

	.about-photo {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}

	.about-copy {
		padding: 28px 22px;
	}

	.featured-news {
		
    display: flex;
    flex-direction: column;
	}

	.news-layout {
		gap: 20px;
	}

	.news-card {
		border-right: 0;
		border-bottom: 1px solid var(--line);
		padding: 0 0 18px;
	}

	.news-list li {
		gap: 10px;
	}

	.news-list time {
		flex: 0 0 auto;
		font-size: 12px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.footer-nav {
		grid-template-columns: repeat(2, 1fr);
	}
}
