:root {
  --ink: #0c1014;
  --ink-2: #141a20;
  --steel: #d8dde0;
  --steel-2: #eef2f4;
  --muted: #68727d;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(14, 22, 30, 0.12);
  --blue: #0577d8;
  --blue-2: #42a4ff;
  --champagne: #d7b67a;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(8, 13, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f8f9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  color: var(--white);
  background: rgba(3, 7, 11, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.site-header.light,
.site-header.light.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(14, 22, 30, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-logo {
  width: min(248px, 30vw);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.42) contrast(1.08) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.site-header.light .brand-logo,
.site-header.scrolled .brand-logo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  flex: 1;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  opacity: 0.82;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--blue-2);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(5, 119, 216, 0.24);
}

.header-cta:hover,
.btn:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background: #050708;
}

.hero-bg,
.hero-vignette,
.hero-scan {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("images/hero-showroom.png");
  background-position: center right;
  background-size: cover;
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 27%, rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(circle at 70% 60%, rgba(5, 119, 216, 0.16), transparent 35%);
}

.hero-scan {
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  filter: blur(8px);
  transform: skewX(-16deg) translateX(-140%);
  animation: scanLine 5.8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 790px;
  width: 100%;
  margin: 0;
  padding: 150px clamp(20px, 5vw, 72px) 56px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.btn {
  padding: 0 24px;
  min-width: 152px;
}

.btn.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 40px rgba(5, 119, 216, 0.28);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.btn.dark {
  color: var(--white);
  background: var(--ink);
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 78px;
}

.hero-tabs button,
.filters button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-weight: 750;
}

.hero-tabs button {
  padding: 12px 18px;
}

.hero-tabs button.active,
.filters button.active {
  color: var(--white);
  border-color: var(--blue-2);
  background: var(--blue);
}

.hotspot {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(5, 119, 216, 0.52);
  box-shadow: 0 0 0 9px rgba(5, 119, 216, 0.16);
  animation: pulse 2s ease-in-out infinite;
}

.hotspot::before,
.hotspot::after {
  position: absolute;
  background: var(--white);
  content: "";
}

.hotspot::before {
  top: 13px;
  left: 7px;
  width: 12px;
  height: 2px;
}

.hotspot::after {
  top: 8px;
  left: 12px;
  width: 2px;
  height: 12px;
}

.hotspot:hover::before {
  content: attr(data-hotspot);
}

.hotspot:hover::before {
  top: auto;
  right: -10px;
  bottom: 36px;
  left: auto;
  width: max-content;
  max-width: 230px;
  height: auto;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 750;
}

.hotspot:hover::after {
  display: none;
}

.hp-1 {
  right: 42%;
  bottom: 34%;
}

.hp-2 {
  right: 22%;
  bottom: 30%;
}

.hp-3 {
  right: 8%;
  top: 38%;
}

.loop-control {
  position: absolute;
  right: clamp(24px, 6vw, 72px);
  bottom: 62px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 8px rgba(66, 164, 255, 0.18);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: linear-gradient(90deg, #101820, #17222c);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip article {
  padding: 30px clamp(20px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-strip strong {
  display: block;
  color: var(--blue-2);
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1;
}

.stats-strip span {
  display: block;
  max-width: 190px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.dark-section {
  color: var(--white);
  background: #070b0f;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 42px;
  align-items: end;
}

.section-heading h2,
.page-hero h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.page-hero p,
.capability-copy p,
.image-split p,
.contact-panel p {
  color: var(--muted);
  font-size: 17px;
}

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

.gn-series-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.gn-series-card {
  display: grid;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.gn-series-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.44));
}

.gn-series-card span {
  display: inline-flex;
  width: max-content;
  margin: 18px 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-2);
  background: rgba(66, 164, 255, 0.1);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.gn-series-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.gn-series-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.gn-matrix {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.gn-card {
  min-height: 270px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.gn-card img {
  width: 100%;
  height: 120px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.48));
}

.gn-card h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.gn-card p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.gn-card small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.product-overview {
  background: #f6f8fa;
}

.premium-product-overview {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(5, 119, 216, 0.16), transparent 34%),
    linear-gradient(180deg, #070b0f 0%, #101820 100%);
}

.premium-product-overview .section-heading h2 {
  color: var(--white);
}

.premium-product-overview .eyebrow {
  color: var(--blue-2);
}

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

.line-card,
.product-card,
.process-grid article,
.quality-band article,
.contact-panel,
.inquiry-form {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
}

.line-card {
  min-height: 360px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.premium-product-overview .line-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 52% 26%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.premium-product-overview .line-card::after {
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 70%;
  height: 50%;
  border-radius: 50%;
  background: rgba(5, 119, 216, 0.13);
  filter: blur(40px);
  content: "";
  pointer-events: none;
}

.line-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.line-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.42));
}

.line-card span {
  display: block;
  margin-top: 22px;
  font-size: 22px;
  font-weight: 850;
}

.line-card p {
  color: var(--muted);
}

.premium-product-overview .line-card p {
  color: rgba(255, 255, 255, 0.68);
}

.capability-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 0;
  padding: 0;
  max-width: none;
  background: var(--white);
}

.capability-section > * {
  width: auto;
  margin: 0;
}

.factory-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.capability-copy {
  display: flex;
  padding: clamp(48px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
}

.capability-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 34px;
}

.capability-grid span,
.clean-list li {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #26313b;
  background: #f8fafb;
  font-weight: 700;
}

.inquiry-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: #0c1116;
}

.inquiry-band > * {
  width: auto;
  margin: 0;
}

.inquiry-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  gap: 32px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #050708;
  overflow-wrap: anywhere;
}

.footer-logo {
  width: min(270px, 80vw);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
  max-width: 450px;
  margin-bottom: 0;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-contact-card:last-child {
  grid-column: 1 / -1;
}

a.footer-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 164, 255, 0.48);
  background: rgba(5, 119, 216, 0.12);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #0d5ea6);
}

.footer-contact-icon svg,
.footer-contact-icon img {
  width: 21px;
  height: 21px;
}

.footer-contact-icon img {
  object-fit: contain;
}

.footer-contact-card strong,
.footer-contact-card small {
  display: block;
}

.footer-contact-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
}

.footer-contact-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.disabled-link {
  opacity: 0.62;
}

.disabled-link .footer-contact-icon {
  background: linear-gradient(145deg, #53606b, #2d3740);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.light-footer {
  color: #5c6771;
  background: var(--white);
  border-top: 1px solid var(--line-dark);
}

.light-footer .footer-contact-card {
  border-color: rgba(14, 22, 30, 0.1);
  background: #f8fafb;
}

.light-footer a.footer-contact-card:hover {
  border-color: rgba(5, 119, 216, 0.34);
  background: rgba(5, 119, 216, 0.06);
}

.light-footer .footer-contact-card strong {
  color: var(--ink);
}

.light-footer .footer-contact-card small {
  color: #65717c;
}

.light-footer .footer-copy {
  color: #7b858e;
}

.page-hero {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 24px 72px;
  gap: 38px;
}

.page-hero.compact,
.page-hero.contact-page {
  display: block;
  max-width: 940px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 20px;
}

.factory-page {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
}

.factory-page img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.catalogue-section {
  padding-top: 26px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filters button {
  padding: 10px 16px;
  color: var(--ink);
  border-color: var(--line-dark);
  background: var(--white);
}

.product-card {
  display: flex;
  min-height: 420px;
  padding: 22px;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 12px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.92), rgba(239, 244, 247, 0.66) 42%, rgba(226, 232, 236, 0.26) 68%, rgba(226, 232, 236, 0) 100%);
  filter: drop-shadow(0 20px 24px rgba(23, 32, 42, 0.14));
}

.series-product img {
  height: 220px;
}

.photo-product img {
  padding: 10px;
  border: 1px solid rgba(14, 22, 30, 0.08);
  background: #fff;
}

.product-card span,
.product-dialog span {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(5, 119, 216, 0.09);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card h2 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
}

.product-card p {
  color: var(--muted);
}

.product-card button {
  margin-top: auto;
  padding: 0 18px;
  color: var(--ink);
  border-color: var(--line-dark);
  background: #f8fafb;
}

.product-dialog {
  width: min(920px, calc(100vw - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.product-dialog::backdrop {
  background: rgba(3, 7, 11, 0.66);
  backdrop-filter: blur(8px);
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.product-dialog img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #f3f5f6;
}

.product-dialog div {
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

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

.process-grid article {
  padding: 26px;
}

.process-grid strong {
  color: var(--blue);
  font-size: 14px;
}

.process-grid h3 {
  margin-top: 24px;
  font-size: 24px;
}

.process-grid p {
  color: var(--muted);
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
  background: var(--white);
}

.image-split img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-split h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.clean-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 32px;
  list-style: none;
}

.quality-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quality-band article {
  padding: 28px;
}

.quality-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 24px;
}

.quality-band p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 22px;
  padding-top: 20px;
}

.contact-panel,
.inquiry-form {
  padding: 30px;
}

.contact-panel dl {
  margin: 26px 0 0;
}

.contact-panel div {
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.contact-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 6px 0 0;
  font-weight: 750;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #2b3640;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form label.full,
.inquiry-form .form-note {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(5, 119, 216, 0.12);
}

.inquiry-form button {
  width: max-content;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.news-section {
  padding-top: 22px;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 28%, rgba(5, 119, 216, 0.1), transparent 34%),
    var(--white);
  box-shadow: 0 18px 70px rgba(8, 13, 18, 0.08);
}

.news-featured img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(23, 32, 42, 0.14));
}

.news-featured span,
.news-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(5, 119, 216, 0.09);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.news-featured h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.news-featured p,
.news-card p {
  color: var(--muted);
}

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

.news-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
}

.news-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.92), rgba(239, 244, 247, 0.66) 42%, rgba(226, 232, 236, 0.26) 68%, rgba(226, 232, 236, 0) 100%);
}

.news-card h2 {
  font-size: 22px;
  line-height: 1.16;
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translateX(0);
  }
  to {
    transform: scale(1.045) translateX(1.2%);
  }
}

@keyframes scanLine {
  0%,
  20% {
    transform: skewX(-16deg) translateX(-140%);
  }
  70%,
  100% {
    transform: skewX(-16deg) translateX(460%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(5, 119, 216, 0.14);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(5, 119, 216, 0.04);
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .brand {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(198px, 54vw);
    height: 46px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero h1 {
    max-width: 620px;
  }

  .hotspot,
  .loop-control {
    display: none;
  }

  .stats-strip,
  .gn-matrix,
  .gn-series-row,
  .product-lines,
  .catalogue-grid,
  .process-grid,
  .quality-band,
  .contact-grid,
  .capability-section,
  .image-split,
  .factory-page,
  .news-featured,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

  .factory-visual img {
    min-height: 340px;
  }

  .page-hero,
  .factory-page {
    padding-top: 120px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: min(178px, 52vw);
    height: 42px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background-position: 62% center;
    opacity: 0.72;
  }

  .hero-vignette {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54));
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-tabs {
    margin-top: 46px;
  }

  .stats-strip,
  .inquiry-band,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-band {
    align-items: start;
  }

  .product-card {
    min-height: 0;
  }

  .product-dialog[open] {
    grid-template-columns: 1fr;
  }

  .product-dialog img {
    min-height: 260px;
  }

  .product-dialog div {
    padding: 28px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
}
