:root {
  --ink: #101922;
  --navy: #0d2133;
  --navy-deep: #07131f;
  --steel: #4e5f6d;
  --mist: #e7ebed;
  --paper: #f6f7f6;
  --white: #ffffff;
  --red: #c73535;
  --red-dark: #9e2328;
  --line: rgba(16, 25, 34, .15);
  --header-height: 86px;
  --page-pad: clamp(24px, 6vw, 92px);
  --content: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
html.menu-open,
body.menu-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}
body.menu-open {
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.screen-reader-text {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
h1 { font-size: clamp(64px, 8.4vw, 136px); }
h2 { font-size: clamp(48px, 5vw, 76px); }
h3 { font-size: clamp(26px, 2vw, 34px); }
p { margin-top: 0; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.6); background: transparent; }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(6px); }

.site-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(255,255,255,.16);
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--white);
  transition: height .3s ease, background-color .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header.is-scrolled {
  height: 72px;
  position: fixed;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(7,19,31,.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-logo { width: min(244px, 28vw); display: block; }
.site-logo img { width: 100%; height: 42px; object-fit: contain; object-position: left center; }
.site-header:not(.is-scrolled) .site-logo img { filter: brightness(0) invert(1); }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.primary-nav a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.primary-nav a:not(.nav-quote)::after {
  content: "";
  height: 1px;
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  background: currentColor;
  transition: right .25s ease;
}
.primary-nav a:not(.nav-quote):hover::after { right: 0; }
.site-language-switcher {
  display: flex;
  align-items: center;
  min-width: 108px;
}
.site-language-switcher .gt_selector {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid currentColor;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.site-language-switcher .gt_selector:hover,
.site-language-switcher .gt_selector:focus-visible {
  background: var(--white);
  color: var(--ink);
}
.site-language-switcher .gt_selector option {
  background: var(--white);
  color: var(--ink);
}
.site-header.is-scrolled .site-language-switcher .gt_selector:hover,
.site-header.is-scrolled .site-language-switcher .gt_selector:focus-visible,
body:not(.home-page) .site-language-switcher .gt_selector:hover,
body:not(.home-page) .site-language-switcher .gt_selector:focus-visible {
  background: var(--ink);
  color: var(--white);
}
.primary-nav .nav-quote {
  padding: 11px 17px;
  border: 1px solid currentColor;
  transition: background-color .25s ease, color .25s ease;
}
.primary-nav .nav-quote:hover { color: var(--ink); background: var(--white); }
.site-header.is-scrolled .primary-nav .nav-quote:hover { color: var(--white); background: var(--ink); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span { width: 25px; height: 1px; display: block; margin: 5px auto; background: currentColor; transition: transform .28s ease, opacity .28s ease; }
.menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.hero {
  min-height: min(860px, 94vh);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 70px) var(--page-pad) 88px;
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,19,31,.96) 0%, rgba(7,19,31,.82) 45%, rgba(7,19,31,.28) 100%),
    url("../images/official-products-hq/product-05.jpg") center 44% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.32));
}
.hero-inner { width: min(880px, 74vw); }
.hero .eyebrow { color: #ff8080; }
.hero h1 { margin: 0 0 30px; max-width: 1000px; text-wrap: balance; }
.hero-copy { max-width: 700px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.35vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: var(--page-pad);
  bottom: 35px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-scroll i { width: 48px; height: 1px; position: relative; background: rgba(255,255,255,.48); }
.hero-scroll i::after { content: ""; width: 8px; height: 8px; position: absolute; right: 0; top: -4px; border-right: 1px solid #fff; border-bottom: 1px solid #fff; transform: rotate(-45deg); }

.proof-strip {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  background: var(--white);
}
.proof-strip div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 22px clamp(18px, 2vw, 34px); border-right: 1px solid var(--line); }
.proof-strip div:first-child { border-left: 1px solid var(--line); }
.proof-strip strong { font-family: "Barlow Condensed", Arial, sans-serif; font-size: 29px; font-weight: 600; }
.proof-strip span { color: var(--steel); font-size: 12px; }

.section { max-width: var(--content); margin: 0 auto; padding: clamp(92px, 10vw, 150px) var(--page-pad); }
.section-heading { max-width: 860px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 24px; text-wrap: balance; }
.section-heading > p:last-child { max-width: 700px; color: var(--steel); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-panel {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: var(--white);
  transition: color .3s ease, background-color .3s ease;
}
.industry-panel::after {
  content: "↗";
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: var(--red);
  font-size: 22px;
  transition: transform .3s ease;
}
.industry-panel span { color: var(--red); font-size: 12px; font-weight: 700; }
.industry-panel h3 { margin: auto 0 18px; }
.industry-panel p { margin: 0 36px 0 0; color: var(--steel); font-size: 13px; }
.industry-panel:hover { color: var(--white); background: var(--navy); }
.industry-panel:hover p { color: rgba(255,255,255,.72); }
.industry-panel:hover::after { transform: translate(5px,-5px); }

.featured-products { max-width: none; color: var(--white); background: var(--navy-deep); }
.featured-products > * { max-width: calc(var(--content) - 2 * var(--page-pad)); margin-right: auto; margin-left: auto; }
.section-heading-light > p:last-child { color: rgba(255,255,255,.68); }
.section-heading-light .eyebrow { color: #ff8080; }
.product-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-tile { min-width: 0; background: var(--white); color: var(--ink); }
.product-tile > a { display: block; aspect-ratio: 1.42 / 1; overflow: hidden; background: #e9ebeb; }
.product-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-tile:hover img { transform: scale(1.035); }
.product-tile > div { min-height: 128px; padding: 22px; }
.product-tile span { color: var(--red); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.product-tile h3 { margin: 10px 0 0; font-size: 26px; }
.section-cta { margin-top: 40px; }

.factory-story { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--mist); }
.factory-image { min-height: 680px; overflow: hidden; }
.factory-image img { width: 100%; height: 100%; object-fit: cover; }
.factory-copy { align-self: center; padding: clamp(70px, 9vw, 140px); }
.factory-copy h2 { margin-bottom: 30px; }
.factory-copy p { color: var(--steel); }
.factory-copy .text-link { margin-top: 20px; }

.process-list { display: grid; grid-template-columns: repeat(4,1fr); padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.process-list li { min-height: 270px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list span { color: var(--red); font-size: 12px; font-weight: 700; }
.process-list h3 { margin: 65px 0 14px; }
.process-list p { color: var(--steel); font-size: 13px; }

.video-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px,8vw,120px); padding: clamp(80px,10vw,140px) var(--page-pad); color: var(--white); background: var(--navy); }
.video-copy { max-width: 600px; justify-self: end; align-self: center; }
.video-copy .eyebrow { color: #ff8080; }
.video-copy p:last-child { color: rgba(255,255,255,.7); }
.video-frame { border: 1px solid rgba(255,255,255,.24); overflow: hidden; background: linear-gradient(135deg,#263b4a,#0b1824); }
.video-player { aspect-ratio: 16 / 9; background: #07131d; }
.video-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-meta { display: flex; flex-direction: column; gap: 8px; padding: 24px 30px 28px; }
.video-meta span { color: #ff8080; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.video-meta strong { font-family: "Barlow Condensed", Arial, sans-serif; font-size: 32px; }

.quote-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,9vw,140px); padding: clamp(92px,11vw,160px) var(--page-pad); background: var(--white); }
.quote-intro { max-width: 620px; justify-self: end; }
.quote-intro > p:not(.eyebrow) { color: var(--steel); }
.contact-list { margin: 42px 0 0; border-top: 1px solid var(--line); }
.contact-list div { display: grid; grid-template-columns: 120px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-list dt { color: var(--steel); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.contact-list dd { margin: 0; font-size: 13px; }
.inquiry-form { max-width: 780px; padding: clamp(28px,4vw,55px); background: var(--paper); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-phone { grid-template-columns: 1fr; gap: 0; }
.inquiry-form label { display: block; margin-bottom: 18px; color: var(--steel); font-size: 12px; font-weight: 700; }
.inquiry-form .phone-field { min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
.inquiry-form .phone-field legend { padding: 0; color: var(--steel); font-size: 12px; font-weight: 700; }
.phone-input-group { display: grid; grid-template-columns: minmax(130px,.85fr) minmax(0,1.15fr); gap: 14px; margin-top: 8px; }
.inquiry-form .phone-input-group select,
.inquiry-form .phone-input-group input:not([type=checkbox]) { min-width: 0; margin-top: 0; }
.inquiry-form input:not([type=checkbox]), .inquiry-form textarea, .inquiry-form select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #9aa4aa;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form select { cursor: pointer; }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-color: var(--red); box-shadow: 0 1px 0 var(--red); }
.form-kicker { margin-bottom: 30px; color: var(--ink); font-family: "Barlow Condensed",Arial,sans-serif; font-size: 30px; font-weight: 600; }
.consent { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; }
.consent input { margin-top: 5px; accent-color: var(--red); }
.form-status { min-height: 25px; margin: 15px 0 0; color: var(--steel); font-size: 13px; }
.form-status.is-error { color: var(--red-dark); }
.form-status.is-success { color: #19724d; }

.site-footer { padding: 70px var(--page-pad) 28px; color: var(--white); background: var(--navy-deep); }
.footer-brand { max-width: 520px; }
.footer-brand img { width: 270px; height: 52px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 480px; margin: 24px 0 0; color: rgba(255,255,255,.62); }
.footer-links { display: grid; grid-template-columns: repeat(2,minmax(130px,210px)); gap: 40px; justify-content: end; margin-top: -76px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 8px; color: rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; }
.footer-links a { text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #ff8080; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.4); font-size: 11px; }

.whatsapp-float {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  color: #fff;
  background: #177b59;
  box-shadow: 0 12px 32px rgba(7,19,31,.25);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, background-color .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #116748; }
.whatsapp-float i { width: 8px; height: 8px; border-radius: 50%; background: #69e4a5; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Shared inner pages */
body:not(.home-page) { padding-top: var(--header-height); }
body:not(.home-page) .site-header { position: fixed; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(7,19,31,.08); }
body:not(.home-page) .site-header .site-logo img { filter: none; }
body:not(.home-page) .site-header .primary-nav .nav-quote:hover { color: #fff; background: var(--ink); }
body:not(.home-page) main { min-height: 65vh; }
.detail {
  padding: clamp(80px,10vw,140px) var(--page-pad);
  color: var(--white);
  background: var(--navy);
}
.detail h1 { max-width: 1050px; margin: 0 0 24px; font-size: clamp(58px,7vw,108px); }
.detail h1 em { color: #ff8080; font-style: normal; }
.detail .lead { max-width: 760px; color: rgba(255,255,255,.7); font-size: 19px; }
.detail .eyebrow { color: #ff8080; }
.detail > p:not(.eyebrow):not(.lead) { color: rgba(255,255,255,.56); font-size: 12px; }
article.section { max-width: 1080px; }
article.section h2 { margin-top: 55px; font-size: clamp(38px,4vw,58px); }
article.section > p { color: var(--steel); }
article.section figure { margin: 45px 0; }
article.section figcaption { margin-top: 10px; color: var(--steel); font-size: 12px; }
.check-grid { display: grid; grid-template-columns: repeat(2,1fr); margin: 45px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.check-grid > div { min-height: 135px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.check-grid b { display: block; font-family: "Barlow Condensed",Arial,sans-serif; font-size: 27px; }
.check-grid span { color: var(--steel); font-size: 13px; }
table { width: 100%; border-collapse: collapse; margin: 30px 0; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--white); background: var(--navy); }
body:not(.home-page) .quote { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; padding: 80px var(--page-pad); color: var(--white); background: var(--navy-deep); }
body:not(.home-page) .quote h2 { font-size: clamp(42px,5vw,70px); }
body:not(.home-page) .quote form { display: grid; gap: 13px; }
body:not(.home-page) .quote label { font-size: 12px; }
body:not(.home-page) .quote input, body:not(.home-page) .quote textarea { width: 100%; margin-top: 6px; padding: 12px; border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent; }
body:not(.home-page) .cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
body:not(.home-page) .card { display: flex; flex-direction: column; padding: 20px; background: #fff; }
body:not(.home-page) .card img { width: calc(100% + 40px); height: 210px; margin: -20px -20px 18px; object-fit: cover; }
body:not(.home-page) .card p { color: var(--steel); font-size: 13px; }
body:not(.home-page) .card h3 { font-size: 27px; }
body:not(.home-page) .card .number { color: var(--red); font-size: 11px; font-weight: 700; }
.inner-page-shell { max-width: var(--content); margin: 0 auto; }

/* Core inner pages */
.inner-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 50px;
  padding: clamp(90px,11vw,165px) var(--page-pad) clamp(70px,8vw,110px);
  color: var(--white);
  background:
    linear-gradient(90deg,rgba(7,19,31,.98),rgba(7,19,31,.78)),
    url("../images/official-products-hq/product-06.jpg") center / cover no-repeat;
}
.inner-hero > div:first-child { max-width: 1040px; }
.inner-hero h1 { margin-bottom: 28px; font-size: clamp(62px,7vw,110px); text-wrap: balance; }
.inner-hero > div:first-child > p:last-child { max-width: 760px; color: rgba(255,255,255,.7); font-size: clamp(16px,1.3vw,20px); }
.inner-hero .eyebrow { color: #ff8080; }
.inner-hero-index { display: flex; flex-direction: column; align-items: flex-end; color: rgba(255,255,255,.32); }
.inner-hero-index span { font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.inner-hero-index strong { font-family: "Barlow Condensed",Arial,sans-serif; font-size: clamp(74px,9vw,140px); font-weight: 500; line-height: .9; }
.inner-hero-about {
  background:
    linear-gradient(90deg,rgba(7,19,31,.97),rgba(7,19,31,.54)),
    url("../images/official-products-hq/product-13.jpg") center / cover no-repeat;
}
.inner-hero-contact {
  background:
    linear-gradient(90deg,rgba(7,19,31,.98),rgba(7,19,31,.66)),
    url("../images/official-products-hq/product-03.jpg") center / cover no-repeat;
}
.inner-hero-insights {
  background:
    linear-gradient(90deg,rgba(7,19,31,.98),rgba(7,19,31,.62)),
    url("../images/official-products-hq/product-07.jpg") center / cover no-repeat;
}
.compact-hero { min-height: 390px; }

.catalog-section { max-width: none; background: var(--white); }
.catalog-section > * { max-width: calc(var(--content) - 2 * var(--page-pad)); margin-right: auto; margin-left: auto; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.catalog-card { display: grid; grid-template-rows: 300px 1fr; min-width: 0; border: 1px solid var(--line); text-decoration: none; background: var(--paper); }
.catalog-card > img { width: 100%; height: 100%; object-fit: cover; background: var(--mist); }
.catalog-card > div { display: flex; flex-direction: column; min-height: 310px; padding: 32px; }
.catalog-card span, .library-card span { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-card h3 { margin: 38px 0 18px; }
.catalog-card p { color: var(--steel); font-size: 13px; }
.catalog-card b { margin-top: auto; font-size: 12px; text-transform: uppercase; }
.catalog-card img { transition: filter .4s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.catalog-card:hover img { filter: contrast(1.04); transform: scale(1.018); }
.catalog-card { overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.catalog-card:hover { border-color: var(--navy); transform: translateY(-5px); }

.product-library { max-width: none; color: var(--white); background: var(--navy-deep); }
.product-library > * { max-width: calc(var(--content) - 2 * var(--page-pad)); margin-right: auto; margin-left: auto; }
.product-library .section-heading > p:last-child { color: rgba(255,255,255,.65); }
.library-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.library-card { min-width: 0; padding-bottom: 20px; background: #fff; color: var(--ink); }
.library-card img { width: 100%; aspect-ratio: 1 / .86; object-fit: cover; background: var(--mist); }
.library-card span { display: block; padding: 19px 20px 0; }
.library-card h3 { margin: 9px 20px 0; font-size: 24px; }

.about-intro { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--mist); }
.about-intro-image { min-height: 680px; }
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-copy { align-self: center; padding: clamp(65px,9vw,140px); }
.about-intro-copy h2 { margin-bottom: 30px; }
.about-intro-copy > p:not(.eyebrow) { color: var(--steel); }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-grid article { min-height: 310px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.capability-grid span { color: var(--red); font-size: 12px; font-weight: 700; }
.capability-grid h3 { margin: 72px 0 16px; }
.capability-grid p { color: var(--steel); font-size: 13px; }
.company-facts { display: grid; grid-template-columns: repeat(4,1fr); color: var(--white); background: var(--navy); }
.company-facts article { min-height: 250px; display: flex; flex-direction: column; justify-content: center; padding: 40px var(--page-pad); border-right: 1px solid rgba(255,255,255,.16); }
.company-facts strong { font-family: "Barlow Condensed",Arial,sans-serif; font-size: clamp(48px,5vw,76px); line-height: 1; }
.company-facts span { margin-top: 12px; color: rgba(255,255,255,.55); font-size: 12px; }

.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px,8vw,120px); padding: clamp(90px,11vw,160px) var(--page-pad); background: var(--white); }
.contact-aside { max-width: 600px; justify-self: end; }
.contact-aside h2 { margin-bottom: 28px; }
.contact-aside > p:not(.eyebrow) { color: var(--steel); }
.contact-layout .inquiry-form { max-width: 800px; }
.contact-support { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(65px,8vw,100px) var(--page-pad); color: var(--white); background: var(--navy); }
.contact-support h2 { max-width: 800px; margin: 0; }

.quote-cta { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px,8vw,130px); align-items: end; padding: clamp(80px,10vw,140px) var(--page-pad); background: var(--mist); }
.quote-cta h2 { max-width: 850px; margin: 0; }
.quote-cta > div:last-child { max-width: 650px; }
.quote-cta > div:last-child p { color: var(--steel); }
.policy-page { max-width: 920px; margin: 0 auto; padding: clamp(70px,9vw,120px) var(--page-pad); }
.policy-page h2 { margin: 52px 0 18px; font-size: clamp(36px,4vw,54px); }
.policy-page p { color: var(--steel); }
.policy-note { padding: 22px; border-left: 3px solid var(--red); background: var(--mist); }
.insights-section { max-width: none; background: var(--white); }
.insights-section > * { max-width: calc(var(--content) - 2 * var(--page-pad)); margin-right: auto; margin-left: auto; }
.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.insight-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); text-decoration: none; background: var(--paper); transition: transform .25s ease, border-color .25s ease; }
.insight-card:hover { border-color: var(--navy); transform: translateY(-5px); }
.insight-card img { width: 100%; height: auto; aspect-ratio: 1.35 / 1; object-fit: cover; }
.insight-card > div { min-height: 300px; display: flex; flex-direction: column; padding: 30px; }
.insight-card span { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h3 { margin: 35px 0 16px; }
.insight-card p { color: var(--steel); font-size: 13px; }
.insight-card b { margin-top: auto; font-size: 12px; text-transform: uppercase; }

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

@media (max-width: 1050px) {
  :root { --header-height: 74px; }
  .menu-toggle { display: block; position: relative; z-index: 10003; }
  .primary-nav {
    box-sizing: border-box;
    width: auto;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 28px 36px;
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 18%;
    z-index: 10002;
    color: var(--ink);
    background: var(--white);
    box-shadow: -20px 0 50px rgba(7,19,31,.18);
    overflow-x: hidden;
    overflow-y: auto;
    isolation: isolate;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(105%,0,0);
    visibility: hidden;
    will-change: transform;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), visibility 0s linear .35s;
  }
  .primary-nav::before { content: "Navigation"; margin-bottom: 22px; color: var(--steel); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .primary-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .primary-nav a::after { display: none; }
  .site-language-switcher {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-language-switcher .gtranslate_wrapper { display: block; width: 100%; }
  .site-language-switcher .gt_selector {
    width: 100% !important;
    height: 48px !important;
    padding: 0 14px;
    border-color: var(--line);
    background: var(--paper);
    color: var(--ink);
    font-size: 15px;
  }
  .primary-nav .nav-quote { flex: 0 0 auto; margin-top: 24px; padding: 15px; color: #fff; background: var(--red); text-align: center; }
  .site-header.nav-open { z-index: 10001; }
  .site-header.nav-open .primary-nav { transform: none; visibility: visible; transition-delay: 0s; }
  .site-header.nav-open .menu-toggle { color: var(--ink); }
  .site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-header.nav-open::after { content: ""; position: fixed; inset: 0; z-index: 10000; background: rgba(7,19,31,.52); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
  body.menu-open .whatsapp-float { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(16px); }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .factory-story, .video-band, .quote-band { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .catalog-card { grid-template-columns: .9fr 1.1fr; grid-template-rows: none; }
  .catalog-card > div { min-height: 330px; }
  .library-grid { grid-template-columns: repeat(3,1fr); }
  .about-intro, .contact-layout, .quote-cta { grid-template-columns: 1fr; }
  .about-intro-image { min-height: 520px; }
  .about-intro-copy, .contact-aside { max-width: none; justify-self: stretch; }
  .capability-grid, .company-facts { grid-template-columns: repeat(2,1fr); }
  .factory-image { min-height: 520px; }
  .factory-copy, .video-copy, .quote-intro { max-width: none; justify-self: stretch; }
  .product-rail { grid-template-columns: repeat(2,1fr); }
  .footer-links { margin-top: 50px; justify-content: start; }
}

@media (max-width: 700px) {
  :root { --page-pad: 20px; }
  h1 { font-size: clamp(54px,16vw,78px); }
  h2 { font-size: clamp(42px,12vw,60px); }
  .site-logo { width: 188px; }
  .site-logo img { height: 36px; }
  .hero { min-height: 720px; padding-top: 130px; align-items: flex-end; background-position: 56% center; }
  .hero-inner { width: 100%; }
  .hero h1 { margin-bottom: 18px; }
  .hero-copy { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .proof-strip { grid-template-columns: repeat(2,1fr); padding: 0; }
  .proof-strip div { min-height: 105px; padding: 18px 20px; }
  .proof-strip div:nth-child(odd) { border-left: 0; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .section-heading { margin-bottom: 35px; }
  .industry-grid, .product-rail, .process-list { grid-template-columns: 1fr; }
  .inner-hero { min-height: 520px; grid-template-columns: 1fr; align-items: end; padding-top: 80px; }
  .inner-hero-index { display: none; }
  .catalog-card { grid-template-columns: 1fr; grid-template-rows: 235px 1fr; }
  .catalog-card > div { min-height: 270px; padding: 26px; }
  .catalog-card h3 { margin-top: 30px; }
  .library-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .insight-card > div { min-height: 255px; padding: 25px; }
  .library-card h3 { font-size: 20px; }
  .about-intro-image { min-height: 360px; }
  .about-intro-copy { padding: 70px 20px; }
  .capability-grid, .company-facts { grid-template-columns: 1fr; }
  .capability-grid article { min-height: 250px; }
  .capability-grid h3 { margin-top: 50px; }
  .company-facts article { min-height: 180px; padding: 28px 20px; }
  .contact-layout, .quote-cta { padding: 75px 20px; }
  .contact-support { align-items: flex-start; flex-direction: column; padding: 65px 20px; }
  .industry-panel { min-height: 220px; }
  .product-tile > div { min-height: 110px; }
  .factory-image { min-height: 360px; }
  .factory-copy { padding: 70px 20px; }
  .video-band, .quote-band { padding: 75px 20px; }
  .video-meta { padding: 22px 20px 24px; }
  .video-meta strong { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .phone-input-group { grid-template-columns: 1fr; gap: 10px; }
  .inquiry-form { padding: 25px 20px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  body:not(.home-page) .cards, .check-grid, body:not(.home-page) .quote { grid-template-columns: 1fr; }
  body:not(.home-page) .card img { height: 240px; }
  .detail { padding-top: 75px; }
  .contact-list div { grid-template-columns: 90px 1fr; }
}
