:root {
	--navy: #092a47;
	--blue: #0b4f7a;
	--blue-bright: #1174ad;
	--orange: #f26a21;
	--orange-dark: #d94f0c;
	--ink: #17202a;
	--muted: #667480;
	--line: #dce3e8;
	--pale: #f3f7fa;
	--white: #fff;
	--container: 1180px;
	--shadow: 0 16px 50px rgba(12, 43, 67, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.screen-reader-text, .honey {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	white-space: nowrap !important;
}
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 999; padding: 10px 16px; background: var(--white); color: var(--navy); }
.skip-link:focus { top: 16px; }
.section { position: relative; padding: 104px 0; overflow: hidden; }
.kicker { margin: 0 0 13px; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 25px;
	border: 2px solid var(--orange);
	border-radius: 2px;
	background: var(--orange);
	color: var(--white);
	font-size: .88rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); border-color: var(--orange-dark); }
.button-small { min-height: 43px; padding-inline: 19px; }
.button-outline-light { border-color: rgba(255,255,255,.72); background: transparent; }
.button-outline-light:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light:hover { border-color: #eff5f8; background: #eff5f8; }
.button-full { width: 100%; }
.arrow-link { display: inline-flex; align-items: center; gap: 11px; color: var(--blue); font-size: .86rem; font-weight: 800; }
.arrow-link span, .arrow-link b { color: var(--orange); font-size: 1.1rem; transition: transform .2s ease; }
.arrow-link:hover span, .arrow-link:hover b { transform: translateX(4px); }

.site-header { position: relative; z-index: 100; background: var(--white); box-shadow: 0 2px 15px rgba(14, 39, 58, .08); }
.topbar { background: var(--navy); color: #cbd7df; font-size: .73rem; }
.topbar-inner { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.topbar p { margin: 0; text-transform: uppercase; letter-spacing: .07em; }
.topbar-inner > div { display: flex; gap: 27px; }
.topbar a:hover { color: var(--white); }
.nav-main { background: var(--white); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; color: var(--navy); }
.site-brand-logo { display: block; width: 245px; max-height: 54px; object-fit: contain; }
.brand strong { display: block; font-size: 1rem; letter-spacing: .08em; line-height: 1.1; }
.brand small { display: block; margin-top: 5px; color: #71808c; font-size: .64rem; letter-spacing: .07em; }
.brand-shield {
	position: relative;
	display: block;
	width: 40px;
	height: 46px;
	border-radius: 4px 4px 17px 17px;
	background: var(--blue);
	clip-path: polygon(50% 0, 100% 13%, 92% 72%, 50% 100%, 8% 72%, 0 13%);
}
.brand-shield::before, .brand-shield::after {
	content: "";
	position: absolute;
	top: 12px;
	width: 5px;
	border-radius: 1px;
	background: var(--white);
}
.brand-shield::before { left: 12px; height: 20px; }
.brand-shield::after { left: 22px; height: 15px; top: 17px; }
.brand-shield i { position: absolute; left: 17px; top: 8px; width: 5px; height: 24px; background: var(--orange); }
.custom-logo { max-height: 64px; width: auto; }
.custom-logo-link { display: block; }
.site-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.menu { display: flex; align-items: center; gap: 27px; margin: 0; padding: 0; list-style: none; }
.menu a { position: relative; display: block; padding: 33px 0; color: #324453; font-size: .83rem; font-weight: 750; }
.menu a::after { content: ""; position: absolute; right: 0; bottom: 25px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.menu a:hover { color: var(--blue); }
.menu a:hover::after { transform: scaleX(1); }
.language-switcher { position: relative; flex: 0 0 auto; }
.language-toggle {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 11px;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: var(--white);
	color: #324453;
	font-size: .76rem;
	font-weight: 750;
	cursor: pointer;
}
.language-globe { color: var(--blue); font-size: 1rem; }
.language-caret { color: var(--muted); transition: transform .2s; }
.language-switcher.is-open .language-caret { transform: rotate(180deg); }
.language-menu {
	position: absolute;
	z-index: 20;
	top: calc(100% + 9px);
	right: 0;
	min-width: 145px;
	margin: 0;
	padding: 7px;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: var(--white);
	box-shadow: 0 14px 35px rgba(8,42,67,.16);
	list-style: none;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .18s, transform .18s, visibility .18s;
}
.language-switcher.is-open .language-menu { visibility: visible; opacity: 1; transform: none; }
.language-menu a { display: block; padding: 9px 11px; color: #324453; font-size: .78rem; white-space: nowrap; }
.language-menu a:hover, .language-menu a[aria-current="page"] { background: var(--pale); color: var(--blue); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); }

.hero { position: relative; min-height: 625px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-media { position: absolute; inset: 0; background-position: 69% 48%; background-size: cover; }
.hero::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(90deg, rgba(5,35,59,.98) 0%, rgba(6,43,71,.93) 42%, rgba(7,45,74,.25) 76%, rgba(7,45,74,.08) 100%);
}
.hero::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	opacity: .13;
	background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
	background-size: 70px 70px;
	mask-image: linear-gradient(90deg, #000, transparent 67%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 680px; padding: 74px 0; color: var(--white); }
.hero-copy .kicker { color: #ff9a62; }
.hero h1 { margin: 0 0 24px; font-size: clamp(3rem, 5.3vw, 5.2rem); line-height: 1.01; letter-spacing: -.045em; }
.hero-copy > p:not(.kicker) { max-width: 625px; margin: 0; color: #d6e1e8; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }

.value-strip { position: relative; z-index: 4; margin-top: -2px; background: var(--white); box-shadow: 0 12px 35px rgba(8,41,66,.08); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-grid article { min-height: 120px; display: flex; align-items: center; gap: 20px; padding: 24px 32px; border-right: 1px solid var(--line); }
.value-grid article:first-child { border-left: 1px solid var(--line); }
.value-grid article > span { color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.value-grid strong, .value-grid small { display: block; }
.value-grid strong { color: var(--navy); font-size: .97rem; }
.value-grid small { margin-top: 4px; color: var(--muted); font-size: .75rem; }

.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.section-heading h2, .center-heading h2, .feature-product-copy h2, .application-panel h2, .inquiry-copy h2 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(2.25rem, 4vw, 4rem);
	line-height: 1.08;
	letter-spacing: -.04em;
}
.intro-copy .lead { margin-top: 0; color: #344a5a; font-size: 1.17rem; font-weight: 650; }
.intro-copy p { color: var(--muted); }
.intro-copy .arrow-link { margin-top: 14px; }

.products-section { background: var(--pale); }
.center-heading { max-width: 780px; margin: 0 auto 55px; text-align: center; }
.center-heading > p:last-child { max-width: 680px; margin: 20px auto 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.category-card {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	min-height: 490px;
	border: 1px solid var(--line);
	background: var(--white);
	box-shadow: 0 8px 28px rgba(8, 42, 67, .05);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-card:nth-child(4), .category-card:nth-child(5) { grid-column: span 3; }
.category-card:hover { transform: translateY(-7px); border-color: #bccbd5; box-shadow: var(--shadow); }
.category-image { height: 240px; display: grid; place-items: center; overflow: hidden; background: #f7f8f7; }
.category-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.category-card:hover .category-image img { transform: scale(1.035); }
.category-body { display: flex; flex: 1; flex-direction: column; padding: 27px 28px 29px; }
.category-body > span { color: var(--orange); font-size: .65rem; font-weight: 850; letter-spacing: .13em; }
.category-body h3 { margin: 10px 0 12px; color: var(--navy); font-size: 1.27rem; line-height: 1.25; }
.category-body p { margin: 0 0 24px; color: var(--muted); font-size: .86rem; }
.category-body .arrow-link { margin-top: auto; }

.featured-product { background: var(--white); }
.feature-product-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 650px; box-shadow: var(--shadow); }
.feature-photo { position: relative; min-height: 620px; background-color: #f4f5f3; background-position: center; background-size: contain; background-repeat: no-repeat; }
.feature-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(12,43,67,.09); }
.feature-photo > span { position: absolute; z-index: 2; left: 20px; bottom: 16px; color: #7c878f; font-size: .68rem; }
.feature-product-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px; background: var(--navy); color: var(--white); }
.feature-product-copy h2 { color: var(--white); font-size: clamp(2.2rem, 3.7vw, 3.75rem); }
.feature-product-copy > p:not(.kicker) { color: #c8d6df; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; margin: 27px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: #e2ebf0; font-size: .82rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #ff8a4b; font-weight: 900; }
.product-actions { display: flex; align-items: center; gap: 26px; }
.feature-product-copy .arrow-link { color: var(--white); }

.services-section { background: #eaf1f5; }
.services-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 30px 70px; align-items: end; margin-bottom: 50px; }
.services-heading .kicker { grid-column: 1 / -1; margin-bottom: -14px; }
.services-heading p:last-child { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); box-shadow: 0 8px 35px rgba(8,42,67,.06); }
.service-grid article { min-height: 285px; padding: 35px 30px; border-right: 1px solid var(--line); transition: background .25s ease; }
.service-grid article:last-child { border: 0; }
.service-grid article:hover { background: #f9fbfc; }
.service-grid span { color: var(--orange); font-size: .72rem; font-weight: 850; }
.service-grid h3 { margin: 75px 0 12px; color: var(--navy); font-size: 1.15rem; }
.service-grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.applications-section { min-height: 720px; display: flex; align-items: center; padding: 0; background: var(--navy); }
.application-media { position: absolute; inset: 0; background-position: center; background-size: cover; }
.applications-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,35,59,.97), rgba(5,35,59,.72) 48%, rgba(5,35,59,.17)); }
.application-content { position: relative; z-index: 2; padding-block: 90px; }
.application-panel { width: min(620px, 100%); padding: 52px; background: rgba(5,35,59,.94); color: var(--white); box-shadow: 0 20px 65px rgba(0,0,0,.28); }
.application-panel h2 { color: var(--white); }
.application-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; margin: 31px 0 36px; }
.application-list span { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.17); color: #dbe5ea; font-size: .83rem; }
.application-list span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 10px; background: var(--orange); transform: rotate(45deg); }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; }
.faq-grid .section-heading p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 45px 22px 0; color: var(--navy); font-size: .98rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 18px; right: 5px; color: var(--orange); font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 45px 22px 0; color: var(--muted); font-size: .87rem; }

.inquiry-section { background: var(--pale); }
.inquiry-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.inquiry-copy > p:not(.kicker) { color: var(--muted); }
.direct-contact { margin-top: 35px; border-top: 1px solid var(--line); }
.direct-contact a { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.direct-contact a > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: .68rem; font-weight: 850; }
.direct-contact small, .direct-contact b { display: block; }
.direct-contact small { color: #84919a; font-size: .71rem; }
.direct-contact b { color: var(--navy); }
.form-card { padding: 42px; border-top: 4px solid var(--orange); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-card label { display: block; margin-bottom: 18px; color: #4e616f; font-size: .76rem; font-weight: 750; }
.form-card input, .form-card textarea {
	width: 100%;
	margin-top: 7px;
	padding: 13px 14px;
	border: 1px solid #ccd7de;
	border-radius: 1px;
	background: #fbfcfd;
	color: var(--ink);
	outline: none;
}
.form-card input:focus, .form-card textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(17,116,173,.09); }
.privacy-note { margin: 12px 0 0; color: #8a969e; font-size: .68rem; text-align: center; }
.form-notice { margin-bottom: 20px; padding: 12px 14px; border-left: 3px solid; font-size: .84rem; }
.form-notice.success { border-color: #26915a; background: #e8f5ed; color: #19683f; }
.form-notice.error { border-color: #d94336; background: #fff0ef; color: #9c1e19; }

.footer-cta { background: var(--blue); color: var(--white); }
.footer-cta-inner { min-height: 145px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-cta strong, .footer-cta span { display: block; }
.footer-cta strong { font-size: 1.35rem; line-height: 1.25; }
.footer-cta span { margin-top: 5px; color: #c8dde9; font-size: .83rem; }
.site-footer { background: #061f35; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .65fr 1fr; gap: 60px; padding-top: 72px; padding-bottom: 58px; }
.brand-footer { margin-bottom: 22px; color: var(--white); }
.footer-brand-logo { display: block; width: min(320px, 100%); padding: 10px 13px; border-radius: 2px; background: var(--white); }
.footer-company p, .footer-menu, .contact-list { color: #9fb1bd; font-size: .79rem; }
.footer-company p { max-width: 350px; }
.footer-grid h3 { margin: 5px 0 22px; font-size: .77rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-menu, .contact-list { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a:hover, .contact-list a:hover { color: var(--white); }
.contact-list li { margin-bottom: 15px; }
.contact-list span { display: block; color: #688193; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #668094; font-size: .68rem; }
.footer-bottom p { margin: 0; }
.floating-whatsapp {
	position: fixed;
	z-index: 90;
	right: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 14px 8px 8px;
	border-radius: 999px;
	background: #20b865;
	color: var(--white);
	box-shadow: 0 8px 30px rgba(0,0,0,.24);
	font-size: .77rem;
}
.floating-whatsapp span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.15); font-size: .62rem; font-weight: 850; }

.content-main { min-height: 70vh; padding: 100px 0; background: var(--pale); color: var(--ink); }
.content-shell { max-width: 860px; }
.content-card { margin-bottom: 28px; padding: 42px; border-top: 4px solid var(--orange); background: var(--white); box-shadow: var(--shadow); }
.content-card h1, .content-card h2 { color: var(--navy); line-height: 1.12; }
.content-card h2 a:hover { color: var(--blue); }
.content-card .eyebrow { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.prose img, .post-image { margin-block: 26px; }
.prose img { max-width: 100%; height: auto; }
.prose table { display: block; width: 100%; margin: 28px 0; overflow-x: auto; border-collapse: collapse; }
.prose td, .prose th { min-width: 180px; padding: 15px; border: 1px solid var(--line); vertical-align: top; }
.prose video { width: 100%; max-width: 820px; height: auto; }
.video-error-notice { max-width: 820px; margin: 24px 0; padding: 24px; border-left: 4px solid var(--orange); background: #fff7ed; color: var(--ink); }
.video-error-notice strong { display: block; color: var(--navy); font-size: 1.05rem; }
.video-error-notice p { margin: 8px 0 12px; color: var(--muted); }
.video-error-notice a { font-weight: 800; }
.prose a { color: var(--blue); text-decoration: underline; }
.catalog-main, .product-main { background: var(--pale); }
.catalog-hero { padding: 90px 0 70px; background: var(--navy); color: var(--white); }
.catalog-hero h1 { margin: 5px 0 18px; color: var(--white); font-size: clamp(2.6rem, 5vw, 4.6rem); }
.catalog-hero p:last-child { max-width: 720px; margin: 0; color: #bfd0db; }
.catalog-shell { padding-block: 75px 100px; }
.product-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.catalog-card { display: flex; flex-direction: column; background: var(--white); box-shadow: 0 10px 35px rgba(8,42,67,.09); }
.catalog-card-image { display: grid; place-items: center; height: 330px; padding: 20px; background: #f5f7f7; overflow: hidden; }
.catalog-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.catalog-card:hover .catalog-card-image img { transform: scale(1.035); }
.catalog-card-body { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.catalog-card-body h2 { margin: 8px 0 13px; color: var(--navy); font-size: 1.35rem; }
.catalog-card-body > p:not(.eyebrow) { color: var(--muted); font-size: .85rem; }
.catalog-card-body .arrow-link { margin-top: auto; padding-top: 12px; }
.product-hero { padding: 75px 0; background: var(--white); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.product-hero-image { display: grid; place-items: center; min-height: 570px; padding: 30px; background: #f5f7f7; }
.product-hero-image img { max-height: 570px; width: 100%; object-fit: contain; }
.product-hero-copy h1 { margin: 8px 0 24px; color: var(--navy); font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.05; }
.product-summary { color: var(--muted); font-size: 1rem; }
.product-content-section { padding: 80px 0 100px; }
.product-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 55px; align-items: start; }
.product-content { padding: 45px; background: var(--white); box-shadow: var(--shadow); }
.product-content h2 { margin: 48px 0 20px; padding-bottom: 13px; border-bottom: 1px solid var(--line); color: var(--navy); }
.product-content h2:first-child { margin-top: 0; }
.product-contact-card { position: sticky; top: 115px; padding: 30px; border-top: 4px solid var(--orange); background: var(--navy); color: var(--white); }
.product-contact-card h2 { color: var(--white); font-size: 1.45rem; }
.product-contact-card p:not(.eyebrow) { color: #bfd0db; font-size: .86rem; }
.button-block { display: flex; width: 100%; justify-content: center; }
.application-hub { padding-block: 75px 100px; }
.application-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 55px; }
.application-guide-card { padding: 32px; border-top: 4px solid var(--orange); background: var(--white); box-shadow: var(--shadow); }
.application-guide-card h2 { margin-top: 0; color: var(--navy); font-size: 1.45rem; }
.application-guide-card p { color: var(--muted); font-size: .88rem; }
.application-hub-copy { max-width: 900px; padding: 42px; background: var(--white); box-shadow: var(--shadow); }
.seo-cta { margin-top: 38px; padding: 30px; border-left: 4px solid var(--orange); background: #edf3f6; }
.error-page { padding-block: 80px; text-align: center; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
	.reveal { opacity: 1; transform: none; }
}

@media (max-width: 1030px) {
	.site-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: block;
		padding: 22px 20px 30px;
		background: var(--white);
		box-shadow: 0 15px 35px rgba(8,42,67,.14);
		transform: translateY(-15px);
		visibility: hidden;
		opacity: 0;
		transition: transform .22s, visibility .22s, opacity .22s;
	}
	.site-nav.is-open { transform: none; visibility: visible; opacity: 1; }
	.menu { display: block; margin-bottom: 22px; }
	.menu li { border-bottom: 1px solid var(--line); }
	.menu a { padding: 13px 3px; }
	.menu a::after { display: none; }
	.language-switcher { margin: 0 0 20px; }
	.language-toggle { width: 100%; justify-content: space-between; }
	.language-menu { position: static; display: none; margin-top: 7px; box-shadow: none; visibility: visible; opacity: 1; transform: none; }
	.language-switcher.is-open .language-menu { display: block; }
	.menu-toggle { display: block; margin-left: auto; }
	.intro-grid, .faq-grid, .inquiry-grid { grid-template-columns: 1fr; gap: 55px; }
	.category-grid { grid-template-columns: repeat(2, 1fr); }
	.category-card, .category-card:nth-child(4), .category-card:nth-child(5) { grid-column: auto; }
	.feature-product-grid { grid-template-columns: 1fr; }
	.feature-photo { min-height: 520px; }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.service-grid article:nth-child(2) { border-right: 0; }
	.service-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.product-catalog-grid { grid-template-columns: repeat(2, 1fr); }
	.product-hero-grid, .product-content-grid { grid-template-columns: 1fr; }
	.product-contact-card { position: static; }
	.application-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.container { width: min(calc(100% - 30px), var(--container)); }
	.section { padding: 76px 0; }
	.topbar { display: none; }
	.nav-wrap { min-height: 72px; }
	.brand-shield { width: 33px; height: 39px; }
	.site-brand-logo { width: 190px; max-height: 46px; }
	.brand strong { font-size: .86rem; }
	.brand small { display: none; }
	.hero { min-height: 650px; align-items: flex-start; }
	.hero-media { background-position: 62% center; }
	.hero::before { background: linear-gradient(180deg, rgba(5,35,59,.96), rgba(5,35,59,.79) 72%, rgba(5,35,59,.9)); }
	.hero-copy { padding: 94px 0 70px; }
	.hero h1 { font-size: clamp(2.55rem, 12vw, 3.75rem); }
	.hero-copy > p:not(.kicker) { font-size: .97rem; }
	.hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 340px); }
	.value-grid { grid-template-columns: 1fr; }
	.value-grid article { min-height: 95px; border: 0; border-bottom: 1px solid var(--line); padding: 18px 20px; }
	.value-grid article:first-child { border-left: 0; }
	.intro-grid { gap: 35px; }
	.section-heading h2, .center-heading h2, .feature-product-copy h2, .application-panel h2, .inquiry-copy h2 { font-size: 2.35rem; }
	.category-grid { grid-template-columns: 1fr; }
	.category-card { min-height: 0; }
	.category-image { height: 235px; }
	.feature-photo { min-height: 420px; }
	.feature-product-copy { padding: 40px 25px; }
	.check-list { grid-template-columns: 1fr; }
	.product-actions { align-items: flex-start; flex-direction: column; }
	.services-heading { display: block; }
	.services-heading .kicker { margin-bottom: 13px; }
	.services-heading p:last-child { margin-top: 18px; }
	.service-grid { grid-template-columns: 1fr; }
	.service-grid article { min-height: 225px; border: 0; border-bottom: 1px solid var(--line); }
	.service-grid article:nth-child(2) { border-bottom: 1px solid var(--line); }
	.service-grid h3 { margin-top: 48px; }
	.applications-section { min-height: 690px; }
	.application-media { background-position: center; }
	.application-panel { padding: 37px 24px; }
	.application-list { grid-template-columns: 1fr; }
	.form-card { padding: 28px 20px; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.footer-cta-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 30px; }
	.footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 55px; }
	.footer-bottom { display: block; }
	.footer-bottom p + p { margin-top: 8px; }
	.floating-whatsapp { right: 14px; bottom: 14px; padding-right: 8px; }
	.floating-whatsapp b { display: none; }
	.content-card { padding: 28px 22px; }
	.catalog-hero { padding: 65px 0 50px; }
	.catalog-shell { padding-block: 50px 75px; }
	.product-catalog-grid { grid-template-columns: 1fr; }
	.catalog-card-image { height: 285px; }
	.product-hero { padding: 45px 0 55px; }
	.product-hero-grid { gap: 35px; }
	.product-hero-image { min-height: 380px; padding: 15px; }
	.product-content-section { padding: 55px 0 75px; }
	.product-content { padding: 28px 20px; }
	.application-hub { padding-block: 50px 75px; }
	.application-hub-copy { padding: 28px 20px; }
}
