@charset "UTF-8";
:root {
  --orange: #ed5b17;
  --orange-dark: #cf4307;
  --ink: #111b2a;
  --muted: #66717e;
  --line: #dfe4e8;
  --soft: #f4f6f7;
  --white: #fff;
  --shadow: 0 18px 50px rgba(15, 28, 42, .09);
  --radius: 18px;
  --ease-out-spring: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Noto Sans TC", "PingFang TC", system-ui, sans-serif;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  padding: 84px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
}
.site-header.scrolled {
  border-color: rgba(17, 27, 42, 0.1);
  box-shadow: 0 8px 25px rgba(17, 27, 42, 0.06);
}

.nav-shell {
  width: min(1180px, 100% - 40px);
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 164px;
}
.brand strong,
.brand small {
  display: block;
  line-height: 1;
  letter-spacing: 0.08em;
}
.brand strong {
  font-size: 21px;
}
.brand small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
}

.brand-mark {
  font-size: 31px;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -7px;
  transform: skew(-8deg);
  line-height: 1;
  padding-right: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 37px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 750;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after {
  right: 0;
}
.desktop-nav a.active {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  height: 42px;
  padding: 4px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}
.language-toggle span {
  padding: 7px 8px;
  border-radius: 6px;
  color: #8a929b;
  font-size: 11px;
  font-weight: 800;
}
.language-toggle span.active {
  color: var(--ink);
  background: #f0f2f3;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #f2b89e;
  border-radius: 9px;
  color: var(--orange);
}

.header-line-link {
  width: auto;
  padding-inline: 10px;
  color: #fff;
  border-color: #06c755;
  background: #06c755;
  font-size: 9px;
  font-weight: 900;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 47px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-spring), box-shadow 0.3s, color 0.2s, background 0.2s;
}
.button::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -2px;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.38) 45%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-soft);
  pointer-events: none;
}
.button:hover {
  transform: translateY(-2px);
}
.button:hover::before {
  transform: translateX(120%);
}
.button:active {
  transform: translateY(0) scale(0.97);
}
.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(237, 91, 23, 0.2);
}
.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 13px 28px rgba(237, 91, 23, 0.28);
}
.button-outline {
  border-color: #eaa17f;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}
.button-outline:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.button-line {
  color: #fff;
  background: #06c755;
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.2);
}
.button-line:hover {
  background: #05ad4a;
  box-shadow: 0 13px 28px rgba(6, 199, 85, 0.26);
}

.line-badge {
  font-size: 9px;
  font-weight: 950;
}

.nav-quote {
  min-height: 42px;
  padding-inline: 19px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 655px;
  padding-top: 78px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #f7f8f8;
}
.hero h1 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(38px, 3.9vw, 55px);
  line-height: 1.14;
  letter-spacing: -0.042em;
  text-transform: none;
}

.hero-image {
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  position: absolute;
  inset: 78px 0 0 42%;
  isolation: isolate;
  background: url("../img/industrial-lab-background.webp") center right/cover no-repeat;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 -1px;
  width: 210px;
  background: #f7f8f8;
  clip-path: polygon(0 0, 76% 0, 12% 50%, 76% 100%, 0 100%);
  pointer-events: none;
}
.hero-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 154px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(transparent, rgba(237, 91, 23, 0.6) 48%, transparent);
  transform: rotate(17deg);
  opacity: 0.65;
  pointer-events: none;
}

.hero-photo-bg {
  position: absolute;
  z-index: 0;
  inset: -5%;
  background: url("../img/industrial-lab-background.webp") center right/cover no-repeat;
  transform: translate3d(var(--hero-bg-x), var(--hero-bg-y), 0) scale(1.035);
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  background: transparent;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-scene.is-ready {
  opacity: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-scene-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 248, 248, 0.94) 0%, rgba(247, 248, 248, 0.38) 18%, transparent 46%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%, rgba(20, 31, 42, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(560px, 53%);
  padding: 66px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 19px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.hero-description {
  max-width: 500px;
  margin: 22px 0 29px;
  color: #556270;
  font-size: 15px;
  line-height: 1.8;
}

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

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 39px;
}
.hero-proof div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-proof div + div {
  padding-left: 30px;
  border-left: 1px solid #cfd5d8;
}
.hero-proof strong {
  font-size: 22px;
}
.hero-proof span {
  max-width: 68px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 37px;
  text-align: center;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(31px, 3.1vw, 45px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.about-section::after {
  content: "1985";
  position: absolute;
  right: -12px;
  bottom: -72px;
  color: #f3f4f5;
  font-size: 210px;
  font-weight: 950;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.company-name {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.company-name-en {
  margin: 0 0 28px;
  color: #8a939c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.about-heading h2,
.history-intro h2 {
  margin: 0;
  font-size: clamp(33px, 3.3vw, 47px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.about-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px 34px;
}

.mission-card {
  position: relative;
  grid-row: 1/span 2;
  min-height: 250px;
  padding: 37px 30px;
  border-radius: 15px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.mission-card > p {
  margin: 0 0 29px;
  color: #ff9b6b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}
.mission-card blockquote {
  position: relative;
  margin: 0;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.7;
}

.quote-mark {
  position: absolute;
  right: 18px;
  top: -28px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.about-intro {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-top: 1px solid var(--line);
}
.about-facts div {
  padding: 20px 16px 0 0;
}
.about-facts strong,
.about-facts span {
  display: block;
}
.about-facts strong {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 25px;
}
.about-facts span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.brand-section {
  background: #fff;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.brand-grid > * {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 0.25s, transform 0.4s var(--ease-out-spring);
}
.brand-grid > *::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.9) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-soft);
  pointer-events: none;
}
.brand-grid > *:last-child {
  border: 0;
}
.brand-grid > a:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
}
.brand-grid > a:hover::after {
  transform: translateX(130%);
}
.brand-grid strong {
  font-size: 14px;
}
.brand-grid small {
  color: #8c949c;
  font-size: 8px;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: #222;
  font-size: 16px;
  font-weight: 900;
}

.brand-symbol.red {
  color: #b82424;
  border-radius: 9px;
}

.brand-symbol.blue {
  color: #1670b8;
  border-radius: 3px;
}

.brand-symbol.green {
  color: #228348;
  border-radius: 50% 10% 50% 50%;
}

.brand-logo {
  width: min(150px, 82%);
  height: 38px;
  object-fit: contain;
}

.brand-logo-wide {
  width: min(165px, 88%);
}

.brand-logo-taco {
  width: min(172px, 90%);
  height: 34px;
}

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

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

.solution-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(20, 30, 40, 0.04);
  cursor: pointer;
  transition: transform 0.55s var(--ease-out-spring), box-shadow 0.4s, border-color 0.3s;
}
.solution-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.3), transparent 62%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.solution-card:hover, .solution-card:focus-visible {
  outline: none;
  transform: translateY(-7px);
  border-color: #f2af91;
  box-shadow: 0 20px 45px rgba(20, 30, 40, 0.1);
}
.solution-card:hover::before, .solution-card:focus-visible::before {
  opacity: 1;
}

.solution-image {
  height: 172px;
  position: relative;
  overflow: hidden;
}
.solution-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft), filter 0.5s ease;
}
.solution-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.15));
}
.solution-image span {
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 32px;
  font-weight: 900;
  transition: transform 0.55s var(--ease-out-spring), opacity 0.4s;
}

.solution-card:hover .solution-image img,
.solution-card:focus-visible .solution-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

.solution-card:hover .solution-image span,
.solution-card:focus-visible .solution-image span {
  transform: translate(-3px, 3px);
  opacity: 0.62;
}

.solution-body {
  min-height: 232px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.solution-body > p:first-child {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}
.solution-body h3 {
  margin: 0 0 12px;
  min-height: 48px;
  font-size: 19px;
  line-height: 1.28;
}
.solution-body h3 + p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.solution-body button {
  width: max-content;
  margin-top: auto;
  padding: 0 0 3px;
  color: var(--orange);
  border: 0;
  border-bottom: 1px solid rgba(237, 91, 23, 0.4);
  background: none;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.solution-body button::after {
  content: "  →";
}

.support-strip {
  margin-top: 28px;
  padding: 23px 27px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border: 1px solid #f3c3ad;
  border-radius: 12px;
  background: #fffaf7;
}
.support-strip strong,
.support-strip span {
  display: block;
}
.support-strip strong {
  margin-bottom: 3px;
  font-size: 14px;
}
.support-strip span {
  color: var(--muted);
  font-size: 12px;
}
.support-strip > a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}
.support-strip > a span {
  display: inline;
  color: inherit;
}

.support-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

.history-section {
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.history-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.history-intro {
  position: sticky;
  top: 130px;
}
.history-intro .section-kicker {
  color: #ff8d58;
}
.history-intro > p:last-child {
  max-width: 420px;
  margin: 25px 0 0;
  color: #aeb8c3;
  font-size: 14px;
  line-height: 1.9;
}

.award-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.award-timeline::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.award-timeline li {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: start;
  opacity: 0;
  transform: translateX(18px);
}
.award-timeline li::before {
  content: "";
  position: absolute;
  left: 37px;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--ink);
}
.award-timeline li:last-child div {
  border: 0;
}
.award-timeline time {
  padding-top: 1px;
  color: #ff8d58;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.award-timeline div {
  padding: 0 0 25px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.award-timeline strong,
.award-timeline span {
  display: block;
}
.award-timeline strong {
  margin-bottom: 7px;
  font-size: 17px;
}
.award-timeline span {
  color: #aeb8c3;
  font-size: 12px;
}

.award-timeline.visible li {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease-soft), transform 0.7s var(--ease-out-spring);
}

.award-timeline.visible li:nth-child(1) {
  transition-delay: 0s;
}

.award-timeline.visible li:nth-child(2) {
  transition-delay: 0.085s;
}

.award-timeline.visible li:nth-child(3) {
  transition-delay: 0.17s;
}

.award-timeline.visible li:nth-child(4) {
  transition-delay: 0.255s;
}

.award-timeline.visible li:nth-child(5) {
  transition-delay: 0.34s;
}

.award-timeline.visible li:nth-child(6) {
  transition-delay: 0.425s;
}

.contact-section {
  background: #f7f8f8;
  border-top: 1px solid #eceff1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 74px;
  align-items: start;
}

.contact-copy {
  padding-top: 18px;
}
.contact-copy > p:nth-of-type(2) {
  color: var(--muted);
  line-height: 1.8;
}

.contact-list {
  margin-top: 35px;
  display: grid;
  gap: 20px;
}
.contact-list a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-list small,
.contact-list strong {
  display: block;
}
.contact-list small {
  margin-bottom: 3px;
  color: #89919a;
  font-size: 10px;
}
.contact-list strong {
  font-size: 13px;
  line-height: 1.55;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #f0b295;
  border-radius: 50%;
  color: var(--orange);
}

.quote-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 40px rgba(15, 28, 42, 0.06);
}

.form-heading {
  margin-bottom: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-heading strong {
  font-size: 18px;
}
.form-heading span {
  color: #9a7070;
  font-size: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.form-grid label {
  display: block;
}
.form-grid label > span {
  display: block;
  margin: 0 0 7px 2px;
  color: #59636d;
  font-size: 11px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfc;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

input,
select {
  height: 45px;
  padding: 0 12px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f09a72;
  box-shadow: 0 0 0 3px rgba(237, 91, 23, 0.1);
}

.span-2 {
  grid-column: 1/-1;
}

.upload-field {
  margin-top: 15px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 1px dashed #cdd3d7;
  border-radius: 7px;
  color: #6b747d;
  font-size: 11px;
  cursor: pointer;
}
.upload-field input {
  display: none;
}
.upload-field > span:first-of-type {
  color: var(--orange);
  font-size: 20px;
}

.form-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #717982;
  font-size: 10px;
  line-height: 1.45;
}
.consent input {
  width: 16px;
  height: 16px;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.form-status {
  margin: 14px 0 0;
  color: #24854b;
  text-align: right;
  font-size: 12px;
}

.site-footer {
  padding: 62px 0 0;
  border-top: 1px solid var(--line);
  background: #f6f7f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 53px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid p {
  max-width: 255px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.footer-grid .footer-company {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.footer-company-en {
  margin: 0 0 13px !important;
  font-size: 8px !important;
  letter-spacing: 0.08em;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid > div > strong {
  margin-bottom: 6px;
  font-size: 12px;
}

.footer-grid > div > a,
.footer-grid > div > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.footer-grid > div > a:hover {
  color: var(--orange);
}

.footer-grid > div > a.footer-line-link {
  color: #05a846;
  font-weight: 800;
}

.footer-bottom {
  padding: 19px 0;
  border-top: 1px solid var(--line);
  color: #8b9299;
  font-size: 10px;
}

.mobile-cta {
  display: none;
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: var(--orange);
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  left: 20px;
  bottom: 20px;
  width: min(340px, 100vw - 40px);
  padding: 16px;
  border: 1px solid rgba(11, 33, 57, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(11, 33, 57, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions .button {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 10px;
}

.cookie-reject {
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.product-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}
.product-modal.open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 24, 0.66);
  backdrop-filter: blur(5px);
  animation: fade-in 0.25s ease both;
}

.modal-panel {
  position: relative;
  width: min(1040px, 100% - 40px);
  max-height: calc(100vh - 50px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  animation: modal-in 0.42s var(--ease-out-spring) both;
}

.product-modal.closing {
  pointer-events: none;
}
.product-modal.closing .modal-backdrop {
  animation: fade-out 0.24s ease both;
}
.product-modal.closing .modal-panel {
  animation: modal-out 0.24s ease both;
}

.modal-header {
  padding: 26px 31px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.modal-header .section-kicker {
  margin-bottom: 6px;
}
.modal-header h2 {
  margin: 0;
  font-size: 27px;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 25px;
  cursor: pointer;
}

.modal-tools {
  padding: 16px 31px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 12px;
  background: #f7f8f8;
}

.search-field {
  position: relative;
}
.search-field span {
  position: absolute;
  left: 14px;
  top: 8px;
  color: #89919a;
  font-size: 22px;
}
.search-field input {
  padding-left: 42px;
  background: #fff;
}

.modal-tools select {
  background: #fff;
}

.product-list {
  padding: 20px 31px 24px;
  overflow-y: auto;
  display: grid;
  gap: 13px;
}

.product-card {
  padding: 15px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 19px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.product-thumb {
  height: 112px;
  border-radius: 8px;
  background: var(--product-image, url("../img/industrial-automation-hero.png")) center/cover no-repeat;
}

.product-info small {
  color: var(--orange);
  font-weight: 800;
}
.product-info h3 {
  margin: 6px 0;
  font-size: 17px;
}
.product-info p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-meta span {
  padding: 4px 7px;
  border-radius: 4px;
  color: #52606d;
  background: #edf0f2;
  font-size: 9px;
}

.product-links {
  min-width: 139px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-links a,
.product-links button {
  min-height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}
.product-links a:hover {
  color: var(--orange);
  border-color: #efb095;
}
.product-links button {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.no-results {
  padding: 50px;
  color: var(--muted);
  text-align: center;
}

.modal-footer {
  padding: 15px 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.modal-footer > span {
  color: var(--muted);
  font-size: 11px;
}
.modal-footer > div {
  display: flex;
  gap: 9px;
}
.modal-footer .button {
  min-height: 39px;
  padding-inline: 17px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
}
@keyframes fade-out {
  to {
    opacity: 0;
  }
}
@keyframes modal-out {
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-soft), transform 0.8s var(--ease-out-spring);
  transition-delay: calc(var(--reveal-order, 0) * 45ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: none;
  }
  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: transform 0.35s var(--ease-out-spring), opacity 0.2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-nav {
    padding: 0 24px 18px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    text-align: center;
  }
  .mobile-nav.open {
    display: grid;
  }
  .mobile-nav a {
    padding: 10px;
    font-size: 13px;
    font-weight: 750;
    animation: mobile-link-in 0.45s var(--ease-out-spring) both;
  }
  .mobile-nav.open a:nth-child(1) {
    animation-delay: 0s;
  }
  .mobile-nav.open a:nth-child(2) {
    animation-delay: 0.045s;
  }
  .mobile-nav.open a:nth-child(3) {
    animation-delay: 0.09s;
  }
  .mobile-nav.open a:nth-child(4) {
    animation-delay: 0.135s;
  }
  .mobile-nav.open a:nth-child(5) {
    animation-delay: 0.18s;
  }
  .hero-image {
    left: 32%;
  }
  .hero-copy {
    width: 59%;
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-grid > * {
    border-bottom: 1px solid var(--line);
  }
  .brand-grid > *:nth-child(3n) {
    border-right: 0;
  }
  .brand-grid > *:last-child {
    border-right: 1px solid var(--line);
  }
  .about-layout,
  .history-layout {
    gap: 50px;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .mission-card {
    grid-row: auto;
    min-height: 220px;
  }
  .about-facts {
    grid-column: 1;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-image {
    background-size: cover;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .contact-copy .section-kicker,
  .contact-copy h2,
  .contact-copy > p {
    grid-column: 1;
  }
  .contact-list {
    grid-column: 2;
    grid-row: 1/span 4;
    margin: 0;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 94px;
  }
  .cookie-banner {
    left: 12px;
    bottom: 77px;
    width: min(330px, 100vw - 24px);
    padding: 14px;
  }
  .container {
    width: calc(100% - 32px);
    max-width: 580px;
  }
  .section {
    padding: 76px 0;
  }
  .nav-shell {
    width: calc(100% - 28px);
    height: 70px;
    gap: 12px;
  }
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
  .brand {
    min-width: 0;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand-mark {
    font-size: 26px;
  }
  .nav-quote,
  .phone-link,
  .header-line-link {
    display: none;
  }
  .language-toggle {
    height: 36px;
  }
  .mobile-nav {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 810px;
    padding-top: 70px;
    align-items: flex-start;
  }
  .hero-image {
    inset: 420px 0 0;
    height: 390px;
    background: url("../img/industrial-lab-background.webp") 58% center/cover no-repeat;
  }
  .hero-photo-bg {
    background-position: 58% center;
    transform: translate3d(var(--hero-bg-x), var(--hero-bg-y), 0) scale(1.055);
  }
  .hero-scene-vignette {
    background: linear-gradient(180deg, #f7f8f8 0%, rgba(247, 248, 248, 0.18) 24%, transparent 48%), linear-gradient(90deg, rgba(247, 248, 248, 0.12), transparent 30%);
  }
  .hero-image::before {
    display: none;
  }
  .hero-image::after {
    left: -20%;
    top: -45px;
    width: 120%;
    height: 90px;
    background: #f7f8f8;
    transform: rotate(-7deg);
    opacity: 1;
  }
  .hero-copy {
    width: 100%;
    padding: 50px 0 0;
  }
  .hero h1 {
    font-size: clamp(32px, 9.2vw, 36px);
    overflow-wrap: anywhere;
  }
  .hero-description {
    margin: 18px 0 24px;
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-actions {
    display: none;
  }
  .hero-proof {
    display: none;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2,
  .contact-copy h2 {
    font-size: 30px;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid > *:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .brand-grid > *:nth-child(2n) {
    border-right: 0;
  }
  .brand-grid > *:last-child {
    border-right: 1px solid var(--line);
  }
  .about-layout,
  .history-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section::after {
    font-size: 120px;
  }
  .about-heading h2,
  .history-intro h2 {
    font-size: 30px;
  }
  .about-content {
    gap: 25px;
  }
  .mission-card {
    min-height: 205px;
  }
  .about-facts div {
    padding-right: 8px;
  }
  .history-intro {
    position: static;
  }
  .award-timeline li {
    grid-template-columns: 77px 1fr;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    display: grid;
    grid-template-columns: 118px 1fr;
  }
  .solution-image {
    height: 100%;
    min-height: 200px;
    background-size: cover;
  }
  .solution-body {
    min-height: 216px;
    padding: 20px;
  }
  .solution-body h3 {
    min-height: 0;
    font-size: 18px;
  }
  .support-strip {
    grid-template-columns: auto 1fr;
  }
  .support-strip > a {
    grid-column: 2;
  }
  .contact-copy {
    display: block;
  }
  .contact-list {
    margin-top: 30px;
  }
  .quote-form {
    padding: 22px 17px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: auto;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    padding-bottom: 90px;
  }
  .mobile-cta {
    position: fixed;
    z-index: 45;
    inset: auto 0 0;
    height: 65px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: white;
    background: var(--orange);
    box-shadow: 0 -6px 24px rgba(17, 27, 42, 0.16);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 850;
  }
  .mobile-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .mobile-cta .mobile-line-link {
    background: #06c755;
  }
  .modal-panel {
    inset: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
  .modal-header {
    padding: 18px 17px 14px;
  }
  .modal-header h2 {
    font-size: 21px;
  }
  .modal-tools {
    padding: 11px 17px;
    grid-template-columns: 1fr;
  }
  .product-list {
    padding: 14px 17px 115px;
  }
  .product-card {
    grid-template-columns: 86px 1fr;
    gap: 13px;
    align-items: start;
  }
  .product-thumb {
    height: 86px;
  }
  .product-info h3 {
    font-size: 15px;
  }
  .product-links {
    grid-column: 1/-1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .modal-footer {
    position: absolute;
    inset: auto 0 0;
    padding: 10px 17px;
  }
  .modal-footer > span {
    display: none;
  }
  .modal-footer > div {
    width: 100%;
  }
  .modal-footer .button {
    flex: 1;
    padding-inline: 8px;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .award-timeline li {
    opacity: 1;
    transform: none;
  }
}
@keyframes mobile-link-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}
