/* =============================================
   GTM — GERMAN TECHNOLOGY MOTOR — Main CSS
   Precision axial fans & ventilators, engineered in Germany
   ============================================= */

/* =============================================================
   DESIGN TOKENS
   ============================================================= */
/* 1. CSS VARIABLES */
/* Design tokens live in a single consolidated :root further down (the former
   "redesign" layer). The duplicate base :root blocks were removed during the
   redesign merge so there is one authoritative token set. */

/* =============================================================
   FONT FACES
   ============================================================= */
/* 2. FONT FACES */
@font-face {
  font-family: "CF Asty Std";
  src: url("../fonts/Asty-Regular.woff2") format("woff2"),
       url("../fonts/Asty-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CF Asty Std";
  src: url("../fonts/Asty-Bold.woff2") format("woff2"),
       url("../fonts/Asty-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"),
       url("../fonts/icomoon.ttf") format("truetype"),
       url("../fonts/icomoon.woff") format("woff"),
       url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* =============================================================
   RESET
   ============================================================= */
/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (not hidden) — clips horizontal overflow WITHOUT creating a
   scroll container, so descendant position:sticky still works. */
html { font-size: 16px; overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-main); color: var(--black); background: #fff; line-height: 1.6; overflow-x: clip; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.1; }

/* =============================================================
   LAYOUT PRIMITIVES
   ============================================================= */
/* 4. LAYOUT */
.container-boxed {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site { overflow: clip; }
.content-area { padding-top: var(--nav-height); }

/* COLUMNS (simple flex grid) */
.columns { display: flex; flex-wrap: wrap; margin: 0 calc(-1 * var(--gutter)); }
.column { padding: var(--gutter); flex: 1 1 0; min-width: 0; }
.is-12 { flex: 0 0 100%; max-width: 100%; }
.is-6 { flex: 0 0 50%; max-width: 50%; }
.is-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.is-3 { flex: 0 0 25%; max-width: 25%; }
.is-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
.is-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
.is-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
.is-multiline { flex-wrap: wrap; }

/* 5. PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
#page-loader .loader-logo img { width: 160px; opacity: 0; animation: loaderFadeIn 0.6s 0.2s ease forwards; }
@keyframes loaderFadeIn { to { opacity: 1; } }

/* SCROLL PROGRESS BAR */
/* #scroll-progress — see consolidated redesign rule below. */

/* =============================================================
   HEADER / FOOTER / NAVIGATION
   ============================================================= */
/* =============================================
   6. HEADER — Two-tier industrial design
   ============================================= */
/* #main-header base rule removed — superseded by the consolidated redesign
   rule lower in this file. */

/* Transparent state — hero overlay handles the darkness; navbar is invisible */
#main-header.is-transparent { background: transparent !important; }
#main-header.is-transparent .header-topbar { border-bottom-color: rgba(255,255,255,0.1); }
#main-header.is-transparent .topbar-geo,
#main-header.is-transparent .topbar-link { opacity: 0.6; }
#main-header.is-transparent .header-divider { opacity: 0.22; }
#main-header.is-transparent #mega-menu > ul > li > a { color: rgba(255,255,255,0.8); }
/* #main-header.is-transparent .nav-cta-btn { background: rgba(0,87,184,0.85); border-color: rgba(0,87,184,0.85); } */

/* Solid scrolled state */
/* #main-header.is-solid — see consolidated redesign rule below. */

/* ── TOP UTILITY BAR ── */
.header-topbar {
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(0,87,184,0.2);
  transition: border-color 0.45s ease;
}
/* .topbar-inner — see consolidated redesign rule below. */
.topbar-geo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: opacity 0.45s ease;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s ease, opacity 0.45s ease;
}
.topbar-link:hover { color: var(--copper); }
.topbar-sep {
  width: 1px;
  height: 11px;
  background: rgba(255,255,255,0.12);
}

/* ── MAIN NAV ROW ── */
.header-main { height: var(--mainnav-height); display: flex; align-items: center; }
/* .header-main-inner — see consolidated redesign rule below. */

/* Thin copper vertical divider after logo */
.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(0,87,184,0.35);
  flex-shrink: 0;
  transition: opacity 0.45s ease;
}

/* Logo */
#main-logo a { display: flex; align-items: center; }
#main-logo img { height: 60px; width: auto; transition: opacity 0.2s ease; }
#main-logo img:hover { opacity: 0.82; }

/* ── DESKTOP MEGA MENU ── */
#mega-menu {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: center;
}
#mega-menu > ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
}
#mega-menu > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}

/* #mega-menu > ul > li > a — see consolidated redesign rule below. */

/* Animated bottom line */
/* #mega-menu > ul > li > a::after — see consolidated redesign rule below. */
#mega-menu > ul > li:hover > a { color: var(--white); }
#mega-menu > ul > li:hover > a::after { transform: scaleX(1); }
#mega-menu > ul > li.active > a { color: var(--copper); }
#mega-menu > ul > li.active > a::after { transform: scaleX(1); }

/* Chevron on dropdown items */
#mega-menu > ul > li.menu-item-has-children > a::before {
  content: '';
  order: 99;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
  opacity: 0.45;
}
#mega-menu > ul > li.menu-item-has-children:hover > a::before {
  transform: rotate(-135deg) translateY(2px);
  opacity: 1;
  border-color: var(--copper);
}

/* ── STANDARD DROPDOWN ── */
#mega-menu .level-1 {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  background: rgba(7,7,7,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 2px solid var(--copper);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  list-style: none;
  z-index: 200;
  box-shadow: 0 22px 50px rgba(0,0,0,0.65);
}
#mega-menu > ul > li:hover .level-1 { opacity: 1; visibility: visible; transform: translateY(0); }

#mega-menu .level-1 li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
#mega-menu .level-1 li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
#mega-menu .level-1 li a:hover {
  color: var(--white);
  background: rgba(0,87,184,0.06);
  padding-left: 24px;
}
#mega-menu .level-1 li a:hover::before { transform: scaleX(1); }
#mega-menu .level-1 li a span { display: block; }

/* ── MEGA PANEL (Products) ── */
.has-mega-panel { position: static !important; }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 680px;
  background: rgba(7,7,7,0.99);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 2px solid var(--copper);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  overflow: hidden;
}
.has-mega-panel:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
}
/* .mega-product-item — see consolidated redesign rule below. */
.mega-product-item:hover { background: rgba(0,87,184,0.09); }
.mega-product-num {
  font-size: 9px;
  font-weight: 700;
  color: rgba(0,87,184,0.35);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 18px;
  transition: color 0.16s ease;
}
.mega-product-item:hover .mega-product-num { color: var(--copper); }
.mega-product-info { flex: 1; min-width: 0; }
.mega-product-name {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.16s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-product-item:hover .mega-product-name { color: var(--white); }
.mega-product-std {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-weight: 400;
}
.mega-product-arrow {
  color: var(--copper);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  flex-shrink: 0;
}
.mega-product-item:hover .mega-product-arrow { opacity: 1; transform: translateX(0); }

/* .mega-panel-footer — see consolidated redesign rule below. */
.mega-panel-tagline {
  font-size: 9.5px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  transition: gap 0.22s ease;
}
.mega-view-all:hover { gap: 13px; }

/* ── HEADER CTA BUTTON ── */
.header-actions { flex-shrink: 0; }
/* .nav-cta-btn — see consolidated redesign rule below. */
.nav-cta-btn svg { transition: transform 0.24s ease; flex-shrink: 0; }
.nav-cta-btn:hover { background: transparent; color: var(--copper); }
.nav-cta-btn:hover svg { transform: translateX(4px); }

/* =============================================
   7. BURGER BUTTON — refined two-line design
   ============================================= */
#burger-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: var(--nav-height-mobile);
  padding: 0 20px;
  z-index: 1200;
  align-items: center;
}
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}
.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}
.hline {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.32s ease,
              opacity 0.32s ease;
  transform-origin: center;
}
.hline:first-child { width: 24px; }
.hline:last-child { width: 16px; }
.hamburger:hover .hline:last-child { width: 24px; }
.hamburger.is-active .hline:first-child { transform: translateY(3.75px) rotate(45deg); width: 24px; }
.hamburger.is-active .hline:last-child { transform: translateY(-3.75px) rotate(-45deg); width: 24px; }
.menu-label, .menu-label-close {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
}
.menu-label-close { display: none; }
.hamburger.is-active .menu-label { display: none; }
.hamburger.is-active .menu-label-close { display: block; }

/* 8. MOBILE MENU */
/* .mobile-menu-wrap — see consolidated redesign rule below. */
.mobile-menu-wrap.is-open { transform: translateX(0); }
.mobile-menu-results { padding: 100px 30px 40px; }
.mobile-menu-results .menu { list-style: none; }
.mobile-menu-results .menu > li { border-bottom: 1px solid var(--line); }
.mobile-menu-results .menu > li > a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.mobile-menu-results .level-1 { display: none; padding: 0 0 12px 20px; list-style: none; }
.mobile-menu-results .level-1.is-open { display: block; }
.mobile-menu-results .level-1 li a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu-results .level-1 li a:hover { color: var(--copper); }
.mobile-menu-results .menu > li > a .arrow {
  float: right;
  font-size: 10px;
  transition: transform var(--transition);
  color: var(--copper);
}
.mobile-menu-results .menu > li.is-open > a .arrow { transform: rotate(90deg); }

/* 9. HERO VIDEO COMPONENT */
.hero-video-component {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-height));
  display: flex;
  align-items: flex-end;
}
.hero-video-component .video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-component .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-component .video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 35%),
    linear-gradient(to top,    rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-video-component .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-video-component .hero-content .container-boxed { position: relative; }
.hero-video-component h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-video-component p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Hero side panel */
.hero-side-panel {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-side-item {
  border-left: 2px solid rgba(0,87,184,0.4);
  padding: 20px 20px;
  transition: border-color var(--transition);
  cursor: pointer;
}
.hero-side-item:hover { border-color: var(--copper); }
.hero-side-item h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.hero-side-item p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* =============================================================
   SHARED COMPONENTS
   (Buttons, sections, pillars, product categories, video,
    metal prices, news, bottom banner, breadcrumbs, hero image,
    text/accordion, products, certificates, careers, etc.)
   ============================================================= */
/* 10. BUTTON */
.btn-copper, .button-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--copper);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--copper);
  position: relative;
  overflow: hidden;
}
.btn-copper:hover, .button-more:hover {
  background: transparent;
  color: var(--copper);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper); }

/* Arrow button */
.moreButton-button-right-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  transition: gap var(--transition);
}
.moreButton-button-right-arrow::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--transition);
}
.moreButton-button-right-arrow:hover { gap: 14px; }

/* 11. SECTION GENERAL */
.comp { padding: 80px 0; }
.comp.is-light { background: var(--off-white); }
.comp.is-dark { background: var(--dark-gray); color: var(--white); }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 600px;
}

/* Copper rule */
.copper-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--copper);
  margin-bottom: 20px;
}

/* 12. STRATEGIC PILLARS / FAQ ACCORDION */
.pillars-section { background: var(--black); padding: 100px 0; }
.pillars-section .section-title, .pillars-section .section-desc { color: var(--white); }
.pillars-section .section-desc { color: rgba(255,255,255,0.6); }

.pillars-header { margin-bottom: 60px; }
.pillars-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.pillars-header p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 500px; }

.pillar-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: border-color var(--transition);
}
.pillar-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.pillar-item.is-active { border-color: rgba(0,87,184,0.3); }

.pillar-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}
.pillar-trigger h3 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.pillar-item.is-active .pillar-trigger h3 { color: var(--copper); }
.pillar-trigger .sub-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.pillar-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: all var(--transition);
  position: relative;
}
.pillar-toggle::before, .pillar-toggle::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.pillar-toggle::after { transform: rotate(90deg); }
.pillar-item.is-active .pillar-toggle { border-color: var(--copper); background: var(--copper); }
.pillar-item.is-active .pillar-toggle::before,
.pillar-item.is-active .pillar-toggle::after { background: var(--white); }
.pillar-item.is-active .pillar-toggle::after { transform: rotate(0deg); opacity: 0; }

.pillar-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.pillar-item.is-active .pillar-content { max-height: 500px; }
.pillar-content-inner {
  padding: 0 0 28px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
}

/* 13. PRODUCT CATEGORIES */
.product-categories { padding: 100px 0; background: var(--off-white); }
.product-categories .header { margin-bottom: 56px; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.product-categories .header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.product-categories .header p { color: var(--mid-gray); margin-top: 12px; font-size: 1.05rem; }

.product-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-cat-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-gray);
  cursor: pointer;
  border-radius: 4px;
}
.product-cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-cat-item:hover img { transform: scale(1.06); }
.product-cat-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.12) 55%);
  transition: background 0.4s ease;
}
.product-cat-item:hover .overlay { background: linear-gradient(to top, rgba(150,90,0,0.88) 0%, rgba(0,0,0,0.28) 60%); }
.product-cat-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}
.product-cat-item:hover .product-cat-num { color: rgba(255,255,255,0.75); }
.product-cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.product-cat-info h3 {
  font-size: 1.18rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.product-cat-info .arrow-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition);
  transform: translateX(5px);
  opacity: 0.7;
}
.product-cat-item:hover .arrow-btn {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateX(0);
  opacity: 1;
}

/* Placeholder for product cat items without images */
.product-cat-item.no-image { background: var(--dark-gray); }
.product-cat-item.no-image .cat-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(0,87,184,0.15);
}

/* 14. VIDEO SECTION */
.video-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.video-section .video-label {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-section .video-label h2 {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

/* 15. METAL PRICES */
.metal-prices-section { background: var(--black); padding: 60px 0; }
.metal-prices-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.metal-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.metal-price-item { display: flex; flex-direction: column; gap: 6px; }
.metal-price-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.metal-price-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.metal-price-unit { font-size: 13px; color: rgba(255,255,255,0.4); }
.metal-price-change { font-size: 12px; }
.metal-price-change.up { color: #4caf50; }
.metal-price-change.down { color: #f44336; }
.metal-price-source {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.metal-price-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* 16. NEWS SECTION */
.news-section { padding: 100px 0; background: var(--off-white); }
.news-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.news-card .image { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.news-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .image img { transform: scale(1.04); }
.news-card .body { padding: 24px; }
.news-card .date { font-size: 11px; letter-spacing: 0.08em; color: var(--copper); text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.news-card .title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; color: var(--black); }
.news-card .excerpt { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 20px; }
.news-card .category { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(0,0,0,0.4); text-transform: uppercase; }

/* 17. BOTTOM BANNER CTA */
.bottom-banner {
  background: var(--copper);
  padding: 80px 0;
}
.bottom-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.bottom-banner h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); color: var(--white); max-width: 600px; }
.bottom-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 14px; max-width: 500px; }
.bottom-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  flex-shrink: 0;
  border: 2px solid var(--white);
}
.bottom-banner .btn-white:hover { background: transparent; color: var(--white); }

/* 18. BREADCRUMBS */
.breadcrumbs {
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--mid-gray); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--copper); }
.breadcrumbs .sep { color: var(--copper); font-size: 10px; }
.breadcrumbs .current { color: var(--black); font-weight: 700; }

/* 19. HERO IMAGE (inner pages) */
.hero-image-comp {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-image-comp .bg {
  position: absolute;
  inset: 0;
}
.hero-image-comp .bg img,
.hero-image-comp .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-comp .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-image-comp .hero-text {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  width: 100%;
}
.hero-image-comp h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--white);
  max-width: 800px;
  line-height: 1.1;
}

/* 20. TEXT STICKY / ACCORDION CONTENT */
.text-accordion-section { padding: 100px 0; }
.text-accordion-left .title-col { padding-right: 60px; }
.text-accordion-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.text-accordion-left p { font-size: 1rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 16px; }

.accordion-item { border-bottom: 1px solid var(--light-gray); }
.accordion-item:first-child { border-top: 1px solid var(--light-gray); }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-trigger h3 { font-size: 1.1rem; color: var(--black); transition: color var(--transition); }
.accordion-item.is-active .accordion-trigger h3 { color: var(--copper); }
.acc-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
  font-size: 18px;
  font-weight: 400;
  transition: all var(--transition);
}
.accordion-item.is-active .acc-icon { background: var(--copper); color: var(--white); border-color: var(--copper); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.is-active .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 0 24px 0; color: var(--mid-gray); font-size: 0.95rem; line-height: 1.75; }

/* 21. PRODUCTS PAGE */
.products-page { padding: 80px 0; }
.products-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn {
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--light-gray);
  background: transparent;
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--copper); color: var(--copper); background: rgba(0,87,184,0.05); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  aspect-ratio: 1;
  cursor: pointer;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  transition: background var(--transition);
}
.product-card:hover .card-overlay { background: linear-gradient(to top, rgba(0,87,184,0.7) 0%, rgba(0,0,0,0.3) 60%); }
.product-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.product-card .card-info h3 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.product-card .card-info .cat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.product-card .card-info .specs {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* 22. SINGLE PRODUCT */
.single-product-hero { padding: 80px 0; border-bottom: 1px solid var(--light-gray); }
.single-product-hero .product-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-main-img { aspect-ratio: 4/3; overflow: hidden; background: var(--off-white); }
.product-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.product-thumb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-thumb { aspect-ratio: 1; overflow: hidden; background: var(--off-white); cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.product-thumb.active { border-color: var(--copper); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.product-info .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.product-info h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 20px; }
.product-info .desc { font-size: 1rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 30px; }
.product-specs { margin-bottom: 30px; }
.spec-row { display: flex; border-bottom: 1px solid var(--light-gray); padding: 12px 0; font-size: 0.9rem; }
.spec-key { width: 140px; font-weight: 700; color: var(--black); flex-shrink: 0; }
.spec-val { color: var(--mid-gray); }

/* 23. APPLICATIONS PAGE */
.applications-hero { padding: 80px 0; background: var(--black); }
.applications-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.applications-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; }

.applications-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.application-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.application-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.application-item:hover img { transform: scale(1.05); }
.application-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%); transition: background var(--transition); }
.application-item:hover .overlay { background: linear-gradient(to top, rgba(0,87,184,0.65) 0%, rgba(0,0,0,0.3) 60%); }
.app-info { position: relative; z-index: 2; padding: 30px; }
.app-info h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.app-info p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* 24. CONTACT PAGE */
.contact-section { padding: 80px 0; }
.contact-info-box { background: var(--black); padding: 40px; color: var(--white); }
.contact-info-box h2 { font-size: 1.4rem; color: var(--copper); margin-bottom: 20px; letter-spacing: 0.03em; }
.contact-info-box .info-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 0.95rem; }
.contact-info-box .info-line .ic { color: var(--copper); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-info-box .info-line a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.contact-info-box .info-line a:hover { color: var(--copper); }
.contact-info-box .info-line p { color: rgba(255,255,255,0.75); }

.contact-form-box { padding: 40px; background: var(--off-white); }
.contact-form-box h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-box .subtitle { color: var(--mid-gray); font-size: 0.95rem; margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--transition);
  outline: none;
  font-family: var(--font-main);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: right; }

/* 25. CERTIFICATES PAGE */
.certs-header { padding: 80px 0 40px; }
.certs-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.certs-header p { font-size: 1.05rem; color: var(--mid-gray); max-width: 700px; line-height: 1.7; }

.certs-filter { display: flex; gap: 0; border-bottom: 1px solid var(--light-gray); margin-bottom: 50px; }
.cert-filter-btn {
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.cert-filter-btn.active, .cert-filter-btn:hover { color: var(--copper); border-bottom-color: var(--copper); }

.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-card {
  background: var(--off-white);
  padding: 20px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.cert-card:hover { background: var(--light-gray); }
.cert-card .cert-img { aspect-ratio: 3/4; overflow: hidden; background: var(--white); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.cert-card .cert-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 10px; }
.cert-card h3 { font-size: 0.9rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px; flex-grow: 1; }
.cert-card .cert-actions { display: flex; align-items: center; justify-content: space-between; }
.cert-card .cert-size { font-size: 11px; color: var(--mid-gray); }
.cert-card .cert-btns { display: flex; gap: 10px; }
.cert-btn {
  width: 36px;
  height: 36px;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.cert-btn:hover { opacity: 0.8; }
.cert-btn svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; }

/* No-photo cert card */
.cert-card.no-img { flex-direction: row; align-items: center; gap: 16px; padding: 20px; }
.cert-card.no-img .cert-img { display: none; }
.cert-card.no-img h3 { margin-bottom: 0; }

/* 26. CAREERS PAGE */
.careers-intro { padding: 80px 0; }
.careers-intro h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.careers-intro p { font-size: 1.05rem; color: var(--mid-gray); max-width: 700px; line-height: 1.7; }
.careers-values { display: grid; gap: 30px; margin-top: 60px; }
.value-card { background: var(--off-white); padding: 32px; }
.value-card .icon { font-size: 2rem; color: var(--copper); margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; }

.jobs-section { padding: 80px 0; background: var(--off-white); }
.jobs-section h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 40px; }
.job-card {
  background: var(--white);
  padding: 28px 32px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all var(--transition);
}
.job-card:hover { background: var(--black); }
.job-card:hover .job-title, .job-card:hover .job-dept { color: var(--white); }
.job-card:hover .job-location { color: rgba(255,255,255,0.5); }
.job-title { font-size: 1.1rem; font-weight: 700; transition: color var(--transition); }
.job-dept { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); margin-top: 4px; }
.job-location { font-size: 12px; color: var(--mid-gray); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.job-type { padding: 6px 14px; background: rgba(0,87,184,0.1); color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }

/* 27. WHERE TO BUY */
.where-to-buy { padding: 80px 0; }
.where-to-buy h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.where-to-buy .subtitle { font-size: 1.05rem; color: var(--mid-gray); max-width: 700px; line-height: 1.7; margin-bottom: 60px; }
.distributors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.distributor-card {
  padding: 36px;
  background: var(--off-white);
  transition: background var(--transition);
}
.distributor-card:hover { background: var(--black); }
.distributor-card:hover h3 { color: var(--white); }
.distributor-card:hover p { color: rgba(255,255,255,0.55); }
.distributor-card:hover a { color: var(--copper); }
.distributor-card .region { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 10px; }
.distributor-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; transition: color var(--transition); }
.distributor-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; margin-bottom: 6px; transition: color var(--transition); }
.distributor-card a { font-size: 0.9rem; color: var(--copper); transition: color var(--transition); }

/* 28. WORK CULTURE */
.culture-intro { padding: 80px 0; }
.culture-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--light-gray); border-left: 1px solid var(--light-gray); margin-top: 60px; }
.stat-item { padding: 40px 30px; border-right: 1px solid var(--light-gray); text-align: center; }
.stat-value { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--copper); display: block; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-top: 6px; }
.culture-content { padding: 80px 0; background: var(--black); }
.culture-content h2 { font-size: clamp(1.8rem, 3vw, 3rem); color: var(--white); margin-bottom: 24px; }
.culture-content p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; max-width: 700px; }
.culture-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 60px; }
.culture-img { aspect-ratio: 4/3; overflow: hidden; background: var(--dark-gray); }
.culture-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.culture-img:hover img { transform: scale(1.04); }

/* 29. QUALITY PAGE */
.quality-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.quality-pillar-item {
  padding: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.quality-pillar-item:hover { border-color: var(--copper); background: rgba(0,87,184,0.03); }
.quality-pillar-item .pillar-num {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(0,87,184,0.1);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}
.quality-pillar-item h3 { font-size: 1.3rem; margin-bottom: 14px; position: relative; z-index: 1; }
.quality-pillar-item p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.7; position: relative; z-index: 1; }

/* 30. FOOTER */
footer.site-footer {
  background: #111111;
  border-top: 2px solid var(--copper);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px 60px;
  margin-bottom: 60px;
}
.footer-col-logo .logo img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-col-logo p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col-logo .footer-logo-divider {
  width: 40px;
  height: 2px;
  background: var(--copper);
  margin: 24px 0;
  opacity: 0.6;
}
.footer-col-logo .footer-cert {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  padding-bottom: 16px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--copper);
}
.footer-col > h4 { margin-bottom: 28px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--copper); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item .ic {
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}
.footer-contact-item a, .footer-contact-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--copper); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .copy { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }
.footer-back-top {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.footer-back-top:hover { color: var(--copper); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--copper); background: var(--copper); }
.footer-social svg { width: 15px; height: 15px; fill: none; stroke: white; stroke-width: 1.5; }

/* 31. SWIPER SLIDER (custom dots/nav) */
.slider-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.slider-btn:hover { border-color: var(--copper); background: var(--copper); }
.slider-btn svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.swiper-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.swiper-pagination-bullet-active { background: var(--copper); width: 20px; border-radius: 3px; }

/* 32. PRODUCTION FACILITIES */
.facilities-section { padding: 80px 0; }
.facility-item {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--light-gray);
}
.facility-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.facility-item.reversed { flex-direction: row-reverse; }
.facility-visual { flex: 0 0 50%; }
.facility-visual img, .facility-visual video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.facility-text { flex: 1; }
.facility-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.facility-text p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 16px; }
.facility-text ul { list-style: none; }
.facility-text ul li {
  font-size: 0.9rem;
  color: var(--mid-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  gap: 10px;
  align-items: center;
}
.facility-text ul li::before { content: ''; width: 4px; height: 4px; background: var(--copper); border-radius: 50%; flex-shrink: 0; }

/* 33. COPPER SEGMENT */
.copper-segment-section { padding: 80px 0; background: var(--black); }
.copper-segment-section h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.copper-segment-section p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 700px; margin-bottom: 16px; }
.segment-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.segment-stat { background: rgba(255,255,255,0.04); padding: 40px; border: 1px solid rgba(0,87,184,0.2); }
.segment-stat .num { font-size: 3rem; font-weight: 700; color: var(--copper); display: block; margin-bottom: 8px; }
.segment-stat .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.copper-segment-content { padding: 80px 0; }

/* 34. TIMELINE (Who We Are history) */
.timeline-section { padding: 80px 0; background: var(--off-white); }
.timeline-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.timeline-section .sub { color: var(--mid-gray); margin-bottom: 50px; font-size: 1rem; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--light-gray); transform: translateX(-50%); }
.timeline-item { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 50%;
  transform: translateX(-50%);
}
.timeline-item-content { flex: 1; }
.timeline-item:nth-child(even) .timeline-item-content { text-align: right; }
.timeline-year { font-size: 2rem; font-weight: 700; color: var(--copper); margin-bottom: 8px; }
.timeline-item-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-item-content p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; }
.timeline-item-img { flex: 0 0 40%; }
.timeline-item-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* 35. ABOUT PAGE TEXT SECTIONS */
.about-section { padding: 80px 0; }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-two-col h2 { font-size: clamp(1.6rem, 2.5vw, 2.5rem); margin-bottom: 20px; }
.about-two-col p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 16px; }

/* Icomoon icon helpers */
[class^="icon-"], [class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.icon-phone::before { content: "\e942"; }
.icon-mail::before { content: "\e943"; }
.icon-map-pin::before { content: "\e944"; }

/* SVG icons inline */
.svg-icon { display: inline-flex; width: 16px; height: 16px; }

/* 36. SHARED INNER PAGE COMPONENTS */

/* Shared breadcrumb bar — dark bg to flow from dark navbar into dark hero sections */
/* .breadcumb — see consolidated redesign rule below. */
.breadcumb .breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcumb .breadcrumbs a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcumb .breadcrumbs a:hover { color: var(--copper); }
.breadcumb .breadcrumbs .sep { color: var(--copper); font-size: 10px; }
.breadcumb .breadcrumbs .current-item { color: var(--white); font-weight: 700; }

/* Page intro block (dark sections with copper accent) */
.page-intro-dark {
  background: var(--black);
  padding: 80px 0 60px;
}
.page-intro-dark h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 760px;
}
.page-intro-dark h1 span { color: var(--copper); }
.page-intro-dark p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.7;
}

/* =============================================================
   UTILITIES & RESPONSIVE
   ============================================================= */
/* 38. UTILITIES */
.hidden { display: none !important; }
.text-copper { color: var(--copper); }
.text-white { color: var(--white); }
.bg-black { background: var(--black); }
.bg-off-white { background: var(--off-white); }
.mt-0 { margin-top: 0 !important; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0 !important; }
.text-center { text-align: center; }

/* 37. RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  /* Header: collapse to single-tier mobile bar */
  #main-header { height: var(--nav-height-mobile); }
  .content-area { padding-top: var(--nav-height-mobile); }
  .hero-video-component { margin-top: calc(-1 * var(--nav-height-mobile)); }
  .header-topbar { display: none; }
  .header-main { height: var(--nav-height-mobile); }
  .header-main-inner { padding: 0 20px; }
  .header-divider { display: none; }
  #mega-menu { display: none; }
  .header-actions { display: none; }
  #burger-menu { display: flex; }
  /* Page layout */
  .hero-side-panel { display: none; }
  .product-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .facility-item { flex-direction: column !important; gap: 30px; }
  .facility-visual { flex: none; width: 100%; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-item::after { left: 20px; }
  .timeline-item:nth-child(even) .timeline-item-content { text-align: left; }
  .timeline-item-img { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-stats { grid-template-columns: repeat(2, 1fr); }
  .segment-stats { grid-template-columns: 1fr 1fr; }
  .distributors-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .quality-pillars { grid-template-columns: 1fr; }
  .pillars-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  :root { --nav-height-mobile: 70px; }
  .hero-video-component { height: 85vh; }
  .hero-video-component h1 { font-size: 2.2rem; }
  .product-cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  /* Filter tabs would overflow on narrow screens — make them swipeable instead of clipping. */
  .certs-filter { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .certs-filter::-webkit-scrollbar { display: none; }
  .cert-filter-btn { padding: 14px 18px; white-space: nowrap; flex: 0 0 auto; }
  .culture-stats { grid-template-columns: 1fr 1fr; }
  .careers-values { grid-template-columns: 1fr; }
  .bottom-banner-inner { flex-direction: column; }
  .single-product-hero .product-images { grid-template-columns: 1fr; }
  .segment-stats { grid-template-columns: 1fr; }
  .comp { padding: 60px 0; }
  #main-logo img { height: 40px; }
  .metal-prices-inner { gap: 24px; }
  .metal-price-value { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .culture-stats { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   HOMEPAGE ENHANCEMENTS
   ============================================================= */

/* Stats Strip */
.stats-strip {
  background: var(--black);
  border-top: 1px solid rgba(0,87,184,0.25);
  border-bottom: 1px solid rgba(0,87,184,0.25);
}
.stats-row { display: flex; align-items: stretch; }
.stat-block {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-block:hover { background: rgba(0,87,184,0.07); }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 1.3rem; vertical-align: super; }
.stat-lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-divider { width: 1px; background: rgba(255,255,255,0.07); }

/* Hero layout */
.hero-text-col { max-width: 650px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}

/* Scroll hint */
/* .hero-scroll-hint — see consolidated redesign rule below. */
.hero-scroll-hint:hover { opacity: 0.7; }
.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.25; transform: translateY(10px); }
}

/* Pillars layout */
.pillars-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pillars-section .pillars-header { margin-bottom: 0; }
.pillars-header .btn-outline { margin-top: 32px; }

/* Product sub-label & CTA */
.product-cat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-top: 6px;
  font-weight: 400;
  display: block;
  transition: color 0.3s ease;
}
.product-cat-item:hover .product-cat-sub { color: rgba(255,255,255,0.9); }
.products-cta { text-align: center; margin-top: 54px; }

/* Video section CTA */
.video-section-cta { margin-top: 28px; }

/* News card anchor fix */
.news-card a { display: block; color: inherit; }
.news-card .body .moreButton-button-right-arrow { display: inline-flex; margin-top: 4px; }

/* Button arrow slide animation */
.btn-copper svg,
.btn-white svg,
.btn-outline svg,
.button-more svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.btn-copper:hover svg,
.btn-white:hover svg,
.btn-outline:hover svg,
.button-more:hover svg { transform: translateX(5px); }

/* Responsive */
@media (max-width: 1024px) {
  .pillars-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-text-col { max-width: 100%; }
}
@media (max-width: 768px) {
  .stats-row { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; padding: 28px 16px; }
  .stat-divider { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-actions { gap: 12px; }
}
@media (max-width: 480px) {
  .stat-block { flex: 0 0 100%; }
}

/* =============================================================
   PAGE-SPECIFIC STYLES
   Each page's former inline <style> block lives here, scoped
   under its body class (e.g. body.page-products) to prevent
   cross-page collisions. Shared rules belong in the sections
   above, NOT here.
   ============================================================= */

/* ---------- ABOUT (page-about) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — ABOUT / WHO WE ARE
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-about .hero-image-comp {
      position: relative;
      width: 100%;
      height: auto;          /* compact, padding-driven height (matches Certificates page-hero) */
      min-height: 0;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-about .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-about .hero-image-comp .image-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    body.page-about .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-about .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 72px 0 64px;
    }
    body.page-about .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }

    /* --- TEXT + ACCORDION SECTION (Profile) --- */
    body.page-about .text-accordion-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-about .text-accordion-section .col-description .text-container {
      padding-right: 40px;
    }
    body.page-about .text-accordion-section .col-description h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }
    body.page-about .text-accordion-section .col-description p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    body.page-about .text-accordion-section .col-article { padding-left: 60px; }

    /* Accordion articles */
    body.page-about .text-accordion-section .col-article article {
      border-bottom: 1px solid var(--light-gray);
      overflow: hidden;
    }
    body.page-about .text-accordion-section .col-article article:first-child {
      border-top: 1px solid var(--light-gray);
    }
    body.page-about .accordion-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
    }
    body.page-about .accordion-trigger h2 {
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--black);
      text-transform: uppercase;
      transition: color var(--transition);
    }
    body.page-about .accordion-trigger .acc-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      position: relative;
      border: 1.5px solid var(--copper);
      border-radius: 50%;
      transition: background var(--transition);
    }
    body.page-about .accordion-trigger .acc-icon::before, 
    body.page-about .accordion-trigger .acc-icon::after {
      content: '';
      position: absolute;
      background: var(--copper);
      transition: transform 0.3s ease;
    }
    body.page-about .accordion-trigger .acc-icon::before {
      width: 10px; height: 1.5px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    body.page-about .accordion-trigger .acc-icon::after {
      width: 1.5px; height: 10px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    body.page-about article.is-open .accordion-trigger .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
    body.page-about article.is-open .accordion-trigger h2 { color: var(--copper); }
    body.page-about .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s ease, padding 0.3s ease;
      padding: 0 0 0 0;
    }
    body.page-about article.is-open .accordion-body {
      max-height: 500px;
      padding-bottom: 24px;
    }
    body.page-about .accordion-body p {
      font-size: 0.97rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- STATS SECTION --- */
    body.page-about .stats-section {
      background: var(--black);
      border-top: 3px solid var(--copper);
      border-bottom: 3px solid var(--copper);
      padding: 70px 0;
    }
    body.page-about .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-about .stat-item {
      text-align: center;
      padding: 30px 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
      border-bottom: none;
    }
    body.page-about .stat-item:last-child { border-right: none; }
    body.page-about .stat-number {
      display: block;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-about .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* --- TIMELINE SECTION --- */
    body.page-about .timeline-section {
      background: var(--black);
      padding: 72px 0 0;
    }
    body.page-about .timeline-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 44px;
      padding: 0 var(--gutter);
    }
    body.page-about .timeline-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--white)
    }
    body.page-about .timeline-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 540px;
    }

    /* ---- TIMELINE IMAGE PANEL ---- */
    body.page-about .gtm-timeline-wrap {
      position: relative;
      overflow: hidden;
      height: 58vh;
      min-height: 340px;
      max-height: 580px;
    }
    /* Lighter gradient — only enough to make year dots readable */
    body.page-about .gtm-timeline-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.48) 20%,
        rgba(0,0,0,0.06) 52%,
        transparent 72%
      );
      z-index: 2;
      pointer-events: none;
    }
    body.page-about .gtm-timeline-img-swiper {
      position: absolute !important;
      inset: 0;
      width: 100%;
      height: 100% !important;
      max-height: none !important;
      min-height: 0 !important;
    }
    body.page-about .gtm-timeline-img-swiper .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Prev / Next — vertically centred on image only */
    body.page-about .gtm-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 44px;
      height: 44px;
      background: rgba(0,0,0,0.40);
      border: 1.5px solid rgba(255,255,255,0.2);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), border-color var(--transition);
    }
    body.page-about .gtm-nav-prev { left: 20px; }
    body.page-about .gtm-nav-next { right: 20px; }
    body.page-about .gtm-nav-btn:hover { background: var(--copper); border-color: var(--copper); }
    body.page-about .gtm-nav-btn.swiper-button-disabled { opacity: 0.2; pointer-events: none; }
    body.page-about .gtm-nav-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* Year nav bar — pinned inside image bottom */
    body.page-about .gtm-timeline-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 4;
      padding: 0 0 22px;
    }
    body.page-about .gtm-timeline-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      position: relative;
    }
    body.page-about .gtm-timeline-line {
      position: absolute;
      top: 7px;
      left: var(--gutter);
      right: var(--gutter);
      height: 1px;
      background: rgba(255,255,255,0.2);
    }
    body.page-about .gtm-timeline-bullets {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
    }
    body.page-about .gtm-year-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }
    body.page-about .gtm-year-btn .bullet {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.32);
      background: transparent;
      transition: all 0.28s ease;
      position: relative;
      z-index: 1;
    }
    body.page-about .gtm-year-btn.active .bullet {
      border-color: var(--copper);
      background: var(--copper);
      box-shadow: 0 0 0 3px rgba(0,87,184,0.3);
    }
    body.page-about .gtm-year-btn:hover .bullet { border-color: var(--copper); background: var(--copper); }
    body.page-about .gtm-year-btn .year-lbl {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.42);
      white-space: nowrap;
      transition: color 0.25s ease;
    }
    body.page-about .gtm-year-btn.active .year-lbl, 
    body.page-about .gtm-year-btn:hover .year-lbl { color: var(--copper); }

    /* ---- TIMELINE TEXT PANEL — below the image ---- */
    body.page-about .gtm-timeline-text {
      background: var(--black);
      border-top: 1px solid rgba(0,87,184,0.18);
      padding: 40px 0 68px;
    }
    body.page-about .gtm-text-slides {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-about .gtm-text-slide { display: none; }
    body.page-about .gtm-text-slide.active {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0 56px;
      align-items: start;
      animation: fadeSlideIn 0.38s ease;
    }
    /* NOTE: @keyframes are global — name kept unique on purpose. */
    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    body.page-about .gtm-text-slide h3 {
      font-size: clamp(3.2rem, 5.5vw, 5.5rem);
      color: var(--copper);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      margin: 0;
      padding-top: 2px;
    }
    body.page-about .gtm-slide-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 12px;
      letter-spacing: 0.01em;
    }
    body.page-about .gtm-text-slide p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.78;
      max-width: 640px;
      margin: 0;
    }

    /* --- BOTTOM BANNER CTA --- */
    body.page-about .bottom-banner {
      background: var(--black);
      padding: 80px 0;
    }
    body.page-about .bottom-banner .container-boxed {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-about .bottom-banner h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      letter-spacing: -0.01em;
      max-width: 560px;
      line-height: 1.15;
    }
    body.page-about .bottom-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      margin-top: 14px;
      max-width: 460px;
      line-height: 1.7;
    }
    body.page-about .bottom-banner .btn-copper {
      flex-shrink: 0;
      font-size: 13px;
      padding: 18px 40px;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-about .stat-item:nth-child(2) { border-right: none; }
      body.page-about .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
      body.page-about .text-accordion-section .col-description .text-container { padding-right: 0; }
    }
    @media (max-width: 768px) {
      body.page-about .hero-image-comp { min-height: 0; }
      body.page-about .hero-image-comp .text-container { padding: 50px 0 40px; }
      body.page-about .text-accordion-section .columns { flex-direction: column; }
      body.page-about .text-accordion-section .column { flex: 0 0 100%; max-width: 100%; }
      body.page-about .text-accordion-section .col-article { padding-left: 20px; }
      body.page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-about .gtm-timeline-wrap { height: 52vw; min-height: 280px; }
      body.page-about .gtm-nav-btn { width: 38px; height: 38px; }
      body.page-about .gtm-nav-prev { left: 10px; }
      body.page-about .gtm-nav-next { right: 10px; }
      body.page-about .gtm-timeline-bullets { overflow-x: auto; gap: 16px; padding-bottom: 6px; }
      body.page-about .gtm-year-btn .year-lbl { font-size: 10px; }
      body.page-about .gtm-text-slide.active { grid-template-columns: 1fr; gap: 16px 0; }
      body.page-about .gtm-text-slide h3 { font-size: clamp(2.8rem, 8vw, 4rem); }
      body.page-about .gtm-timeline-text { padding: 28px 0 48px; }
      body.page-about .bottom-banner .container-boxed { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      body.page-about .stats-grid { grid-template-columns: 1fr 1fr; }
    }

/* ---------- PRODUCTION FACILITIES (page-production-facilities) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — PRODUCTION FACILITIES
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-production-facilities .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-production-facilities .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-production-facilities .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-production-facilities .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-production-facilities .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-production-facilities .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }

    /* --- OVERVIEW SECTION --- */
    body.page-production-facilities .overview-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-production-facilities .overview-section .overview-inner {
      max-width: 860px;
    }
    body.page-production-facilities .overview-section h1 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      margin-bottom: 28px;
      letter-spacing: -0.01em;
    }
    body.page-production-facilities .overview-section p {
      font-size: 1.07rem;
      color: var(--mid-gray);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    body.page-production-facilities .overview-section p:last-child { margin-bottom: 0; }

    /* --- FACILITIES SECTION --- */
    body.page-production-facilities .facilities-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-production-facilities .facility-item {
      max-width: var(--max-width);
      margin: 0 auto 80px;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    body.page-production-facilities .facility-item:last-child { margin-bottom: 0; }
    body.page-production-facilities .facility-item.reversed { direction: rtl; }
    body.page-production-facilities .facility-item.reversed > * { direction: ltr; }

    body.page-production-facilities .facility-item .facility-image {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    body.page-production-facilities .facility-item .facility-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    body.page-production-facilities .facility-item .facility-image:hover img {
      transform: scale(1.04);
    }
    body.page-production-facilities .facility-item .facility-image .facility-number {
      position: absolute;
      top: 24px;
      left: 24px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--copper);
      padding: 6px 14px;
      border-radius: 2px;
      z-index: 2;
    }
    body.page-production-facilities .facility-item.reversed .facility-image .facility-number {
      left: auto;
      right: 24px;
    }

    body.page-production-facilities .facility-item .facility-content h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 18px;
      line-height: 1.15;
    }
    body.page-production-facilities .facility-item .facility-content p {
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.8;
      margin-bottom: 24px;
    }
    body.page-production-facilities .facility-item .facility-content ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    body.page-production-facilities .facility-item .facility-content ul li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.6;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    body.page-production-facilities .facility-item .facility-content ul li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    body.page-production-facilities .facility-item .facility-content ul li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      flex-shrink: 0;
      margin-top: 7px;
    }

    /* --- PRODUCTION CAPACITY STATS --- */
    body.page-production-facilities .capacity-section {
      background: var(--black);
      padding: 90px 0;
    }
    body.page-production-facilities .capacity-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
      text-align: center;
    }
    body.page-production-facilities .capacity-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }
    body.page-production-facilities .capacity-section .section-header p {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 540px;
      margin: 0 auto;
    }
    body.page-production-facilities .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-production-facilities .stat-item {
      text-align: center;
      padding: 40px 20px;
      border-right: 1px solid rgba(255,255,255,0.1); /* white-10 — dark section divider */
    }
    body.page-production-facilities .stat-item:last-child { border-right: none; }
    body.page-production-facilities .stat-number {
      display: block;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 14px;
    }
    body.page-production-facilities .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5); /* white-50 — dark section muted text */
    }

    /* --- BTN WHITE (copper bg context) --- */
    body.page-production-facilities .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--black);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 20px 44px;
      text-decoration: none;
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }
    body.page-production-facilities .btn-white:hover {
      background: var(--black);
      color: var(--white);
    }

    /* --- CTA SECTION (bottom-banner pattern) --- */
    body.page-production-facilities .cta-section {
      background: var(--copper);
      padding: 90px 0;
      text-align: center;
    }
    body.page-production-facilities .cta-section .cta-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-production-facilities .cta-section h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 18px;
    }
    body.page-production-facilities .cta-section p {
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 40px;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-production-facilities .facility-item {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      body.page-production-facilities .facility-item.reversed { direction: ltr; }
      body.page-production-facilities .facility-item .facility-image img { height: 320px; }
      body.page-production-facilities .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-production-facilities .stat-item:nth-child(2) { border-right: none; }
      body.page-production-facilities .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); /* white-10 divider */ }
    }
    @media (max-width: 768px) {
      body.page-production-facilities .hero-image-comp { min-height: 480px; }
      body.page-production-facilities .overview-section { padding: 64px 0; }
      body.page-production-facilities .facilities-section { padding: 64px 0; }
      body.page-production-facilities .facility-item { margin-bottom: 56px; }
      body.page-production-facilities .facility-item .facility-image img { height: 260px; }
      body.page-production-facilities .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-production-facilities .cta-section { padding: 64px 0; }
    }
    @media (max-width: 480px) {
      body.page-production-facilities .stats-grid { grid-template-columns: 1fr 1fr; }
    }

/* ---------- COPPER SEGMENT (page-copper-segment) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — COPPER SEGMENT
       ============================================ */

    /* --- COPPER SEGMENT HERO --- */
    body.page-copper-segment .copper-segment-section {
      background: var(--black);
      padding: 120px 0 90px;
      position: relative;
      overflow: hidden;
    }
    body.page-copper-segment .copper-segment-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--copper);
    }
    body.page-copper-segment .copper-segment-section::after {
      content: '';
      position: absolute;
      top: 0;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--copper-20) 0%, transparent 70%);
      pointer-events: none;
    }
    body.page-copper-segment .copper-segment-section .container-boxed {
      position: relative;
      z-index: 1;
    }
    body.page-copper-segment .copper-segment-section h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 820px;
      margin-bottom: 36px;
    }
    body.page-copper-segment .copper-segment-section .hero-lead {
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      max-width: 720px;
      margin-bottom: 20px;
    }

    /* Hero Stats Row */
    body.page-copper-segment .hero-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 70px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    body.page-copper-segment .hero-stat-item {
      padding: 40px 30px 36px;
      border-right: 1px solid rgba(255,255,255,0.12);
      position: relative;
    }
    body.page-copper-segment .hero-stat-item:last-child { border-right: none; }
    body.page-copper-segment .hero-stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 40px;
      background: var(--copper);
    }
    body.page-copper-segment .hero-stat-number {
      display: block;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-copper-segment .hero-stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    /* --- VALUE CHAIN SECTION --- */
    body.page-copper-segment .value-chain-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-copper-segment .value-chain-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-copper-segment .value-chain-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      color: var(--black);
    }
    body.page-copper-segment .value-chain-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 680px;
    }

    /* Flow Diagram */
    body.page-copper-segment .flow-diagram {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: flex;
      align-items: stretch;
      gap: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    body.page-copper-segment .flow-step {
      flex: 1;
      min-width: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
    body.page-copper-segment .flow-step-box {
      width: 100%;
      background: var(--off-white);
      border: 1.5px solid var(--light-gray);
      border-radius: 4px;
      padding: 24px 16px 20px;
      text-align: center;
      position: relative;
      transition: border-color var(--transition), background var(--transition);
    }
    body.page-copper-segment .flow-step-box:hover {
      border-color: var(--copper);
      background: var(--white);
    }
    body.page-copper-segment .flow-step.highlight .flow-step-box {
      background: var(--black);
      border-color: var(--copper);
    }
    body.page-copper-segment .flow-step-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 12px;
      color: var(--copper);
    }
    body.page-copper-segment .flow-step.highlight .flow-step-icon {
      color: var(--copper);
    }
    body.page-copper-segment .flow-step-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      display: block;
    }
    body.page-copper-segment .flow-step.highlight .flow-step-title {
      color: var(--white);
    }
    body.page-copper-segment .flow-step-sub {
      font-size: 10px;
      color: var(--mid-gray);
      margin-top: 5px;
      line-height: 1.4;
      display: block;
    }
    body.page-copper-segment .flow-step.highlight .flow-step-sub {
      color: rgba(255,255,255,0.6);
    }
    body.page-copper-segment .flow-arrow {
      display: flex;
      align-items: center;
      padding: 0 6px;
      color: var(--copper);
      flex-shrink: 0;
      align-self: center;
    }
    body.page-copper-segment .flow-arrow svg {
      width: 22px;
      height: 22px;
    }

    /* Value chain description boxes below */
    body.page-copper-segment .value-chain-desc {
      max-width: var(--max-width);
      margin: 56px auto 0;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    body.page-copper-segment .vcd-box {
      background: var(--off-white);
      border-left: 3px solid var(--copper);
      padding: 28px 28px 26px;
    }
    body.page-copper-segment .vcd-box h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 10px;
    }
    body.page-copper-segment .vcd-box p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- MARKET FOCUS SECTION --- */
    body.page-copper-segment .market-focus-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-copper-segment .market-focus-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 56px;
      padding: 0 var(--gutter);
    }
    body.page-copper-segment .market-focus-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--black);
    }
    body.page-copper-segment .market-focus-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 620px;
    }
    body.page-copper-segment .market-cards-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    body.page-copper-segment .market-card {
      background: var(--white);
      border-top: 3px solid var(--copper);
      padding: 40px 32px 36px;
      position: relative;
    }
    body.page-copper-segment .market-card-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--copper);
      background: var(--copper-20);
      padding: 5px 10px;
      border-radius: 2px;
      margin-bottom: 22px;
    }
    body.page-copper-segment .market-card-icon {
      width: 52px;
      height: 52px;
      background: var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }
    body.page-copper-segment .market-card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--copper);
    }
    body.page-copper-segment .market-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--black);
      margin-bottom: 16px;
    }
    body.page-copper-segment .market-card p {
      font-size: 0.96rem;
      color: var(--mid-gray);
      line-height: 1.78;
      margin-bottom: 24px;
    }
    body.page-copper-segment .market-card-highlights {
      list-style: none;
      border-top: 1px solid var(--light-gray);
      padding-top: 20px;
    }
    body.page-copper-segment .market-card-highlights li {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--black);
      padding: 8px 0;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    body.page-copper-segment .market-card-highlights li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      flex-shrink: 0;
    }

    /* --- STRATEGIC ADVANTAGES SECTION --- */
    body.page-copper-segment .strategic-section {
      background: var(--black);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    body.page-copper-segment .strategic-section::before {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--copper-20) 0%, transparent 70%);
      pointer-events: none;
    }
    body.page-copper-segment .strategic-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-copper-segment .strategic-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--white);
    }
    body.page-copper-segment .strategic-section .section-header p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      max-width: 560px;
    }
    body.page-copper-segment .advantages-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }
    body.page-copper-segment .advantage-card {
      background: var(--dark-gray);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: background var(--transition);
    }
    body.page-copper-segment .advantage-card:hover {
      background: #161616; /* slightly lighter than dark-gray for hover depth */
    }
    body.page-copper-segment .advantage-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--copper);
      transition: width 0.4s ease;
    }
    body.page-copper-segment .advantage-card:hover::before {
      width: 100%;
    }
    body.page-copper-segment .advantage-number {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--copper);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }
    body.page-copper-segment .advantage-icon {
      width: 56px;
      height: 56px;
      background: var(--copper-20);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    body.page-copper-segment .advantage-icon svg {
      width: 28px;
      height: 28px;
      color: var(--copper);
    }
    body.page-copper-segment .advantage-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    body.page-copper-segment .advantage-card p {
      font-size: 0.96rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
    }

    /* --- CTA SECTION --- */
    body.page-copper-segment .cta-section {
      background: var(--copper);
      padding: 90px 0;
    }
    body.page-copper-segment .cta-section .container-boxed {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-copper-segment .cta-section-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 12px;
    }
    body.page-copper-segment .cta-section-text p {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      max-width: 500px;
    }
    body.page-copper-segment .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--black);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 20px 44px;
      text-decoration: none;
      flex-shrink: 0;
      transition: background 0.25s ease, color 0.25s ease;
    }
    body.page-copper-segment .btn-white:hover {
      background: var(--black);
      color: var(--white);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1100px) {
      body.page-copper-segment .flow-step-box { padding: 18px 10px 16px; }
    }
    @media (max-width: 1024px) {
      body.page-copper-segment .market-cards-grid { grid-template-columns: 1fr 1fr; }
      body.page-copper-segment .advantages-grid { grid-template-columns: 1fr 1fr; }
      body.page-copper-segment .value-chain-desc { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      body.page-copper-segment .hero-stats-row { grid-template-columns: 1fr; border-top: none; }
      body.page-copper-segment .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
      body.page-copper-segment .hero-stat-item:last-child { border-bottom: none; }
      body.page-copper-segment .market-cards-grid { grid-template-columns: 1fr; }
      body.page-copper-segment .advantages-grid { grid-template-columns: 1fr; }
      body.page-copper-segment .advantage-card { padding: 36px 28px; }
      body.page-copper-segment .cta-section .container-boxed { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
      body.page-copper-segment .flow-diagram { flex-direction: column; align-items: stretch; }
      body.page-copper-segment .flow-arrow { transform: rotate(90deg); align-self: center; padding: 4px 0; }
      body.page-copper-segment .flow-step { min-width: unset; }
    }

/* ---------- PRODUCTS (page-products) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — PRODUCTS
       ============================================ */

    /* Page Hero */
    body.page-products .page-hero { background: #111; padding: 72px 0 64px; position: relative; overflow: hidden; }
    body.page-products .page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
    body.page-products .page-hero-inner { position: relative; z-index: 1; }
    body.page-products .page-hero .breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
    body.page-products .page-hero .breadcrumbs a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
    body.page-products .page-hero .breadcrumbs a:hover { color: var(--copper); }
    body.page-products .page-hero .breadcrumbs .sep { color: rgba(255,255,255,0.15); }
    body.page-products .page-hero .breadcrumbs .current { color: rgba(255,255,255,0.55); }
    body.page-products .page-hero .section-label { color: var(--copper); margin-bottom: 16px; }
    body.page-products .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 18px; max-width: 680px; }
    body.page-products .page-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 560px; margin-bottom: 44px; }
    body.page-products .page-hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
    body.page-products .page-hero-stat { display: flex; flex-direction: column; gap: 3px; }
    body.page-products .page-hero-stat .sv { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
    body.page-products .page-hero-stat .sk { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    body.page-products .hero-stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

    /* Catalog Section */
    body.page-products .catalog-section { background: #eef2f7; padding: 44px 0 80px; }

    /* Mobile filter toggle */
    body.page-products .mobile-filter-toggle {
      display: none;
      width: 100%;
      padding: 13px 18px;
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-left: 3px solid var(--copper);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      cursor: pointer;
      align-items: center;
      justify-content: space-between;
      font-family: inherit;
      margin-bottom: 16px;
    }
    body.page-products .mobile-filter-toggle .toggle-badge {
      display: none;
      align-items: center;
      justify-content: center;
      background: var(--copper);
      color: #fff;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 10px;
      margin-left: 6px;
    }
    body.page-products .mobile-filter-toggle .toggle-badge.visible { display: inline-flex; }
    body.page-products .toggle-icon { font-size: 20px; line-height: 1; color: var(--copper); }

    /* Layout */
    body.page-products .catalog-layout { display: grid; grid-template-columns: 252px 1fr; gap: 28px; align-items: start; }

    /* Sidebar */
    body.page-products .filter-sidebar {
      background: var(--white);
      border: 1px solid var(--light-gray);
      position: sticky;
      top: calc(var(--nav-height) + 20px);
      max-height: calc(100vh - var(--nav-height) - 44px);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #ddd transparent;
    }
    body.page-products .filter-sidebar::-webkit-scrollbar { width: 4px; }
    body.page-products .filter-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
    body.page-products .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-bottom: 1px solid var(--light-gray);
      position: sticky;
      top: 0;
      background: var(--white);
      z-index: 2;
    }
    body.page-products .sidebar-title-text { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); }
    body.page-products .sidebar-clear-all { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; display: none; }
    body.page-products .sidebar-clear-all.visible { display: block; }
    /* Drawer close button — mobile only (shown in the ≤900px block). */
    body.page-products .sidebar-close { display: none; background: none; border: none; cursor: pointer; font-size: 28px; line-height: 1; color: var(--black); padding: 0 2px; font-family: inherit; }
    /* Drawer backdrop — only active on mobile. */
    body.page-products .filter-backdrop { display: none; }

    body.page-products .filter-group { padding: 16px 18px; border-bottom: 1px solid #e6ecf3; }
    body.page-products .filter-group:last-child { border-bottom: none; }
    body.page-products .filter-group-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 10px; }

    body.page-products .filter-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 4px 0;
      cursor: pointer;
      font-size: 13px;
      color: #444;
      transition: color 0.15s;
      line-height: 1.3;
      user-select: none;
    }
    body.page-products .filter-item:hover { color: var(--copper); }
    body.page-products .filter-item input[type="radio"], 
    body.page-products .filter-item input[type="checkbox"] {
      width: 14px; height: 14px;
      accent-color: var(--copper);
      cursor: pointer;
      flex-shrink: 0;
      margin: 0;
    }
    body.page-products .filter-count { margin-left: auto; font-size: 11px; color: #bbb; flex-shrink: 0; min-width: 16px; text-align: right; }
    body.page-products .filter-sizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

    /* Category-scoped filter groups (hidden unless their category is active) */
    body.page-products .filter-group-hidden { display: none; }

    /* "View more" for long filter groups */
    body.page-products .filter-item-collapsed { display: none; }
    body.page-products .filter-view-more {
      background: none;
      border: none;
      padding: 6px 0 2px;
      margin-top: 2px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: var(--copper);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    body.page-products .filter-view-more:hover { text-decoration: underline; }
    body.page-products .filter-view-more::after { content: "▾"; font-size: 10px; line-height: 1; }
    body.page-products .filter-view-more.is-expanded::after { content: "▴"; }

    /* Active filters bar */
    body.page-products .active-filters-bar {
      display: none;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin-bottom: 16px;
      padding: 10px 14px;
      background: rgba(0,87,184,0.05);
      border: 1px solid rgba(0,87,184,0.18);
      border-left: 3px solid var(--copper);
    }
    body.page-products .active-filters-bar.has-filters { display: flex; }
    body.page-products .af-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); }
    body.page-products .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(0,87,184,0.1);
      border: 1px solid rgba(0,87,184,0.28);
      color: var(--copper);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 3px 9px 3px 10px;
      cursor: pointer;
      transition: background 0.15s;
      font-family: inherit;
    }
    body.page-products .filter-chip:hover { background: rgba(0,87,184,0.2); }
    body.page-products .filter-chip .chip-x { font-size: 15px; line-height: 1; opacity: 0.55; font-weight: 400; }
    body.page-products .af-clear-all {
      margin-left: auto;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--copper);
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      white-space: nowrap;
      padding: 0;
      flex-shrink: 0;
    }

    /* Category Banner */
    body.page-products .category-banner {
      display: none;
      border: 1px solid var(--light-gray);
      border-left: 3px solid var(--copper);
      background: var(--white);
      margin-bottom: 20px;
      overflow: hidden;
    }
    body.page-products .category-banner.visible {
      display: block;
      animation: bannerIn 0.28s ease;
    }
    /* NOTE: @keyframes are global — name kept unique on purpose. */
    @keyframes bannerIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
    body.page-products .category-banner-inner {
      display: grid;
      grid-template-columns: 1fr 148px;
      gap: 20px;
      align-items: center;
      padding: 20px 24px;
    }
    body.page-products .cat-banner-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px; display: block; }
    body.page-products .cat-banner-title { font-size: 1.2rem; color: var(--black); margin: 0 0 5px; line-height: 1.2; }
    body.page-products .cat-banner-desc { font-size: 12.5px; color: var(--mid-gray); line-height: 1.6; margin: 0; }
    body.page-products .cat-banner-img { width: 148px; height: 92px; object-fit: contain; filter: drop-shadow(0 4px 18px rgba(0,87,184,0.14)); display: block; }

    /* Results bar */
    body.page-products .results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
    body.page-products .results-count { font-size: 12px; color: var(--mid-gray); letter-spacing: 0.05em; }
    body.page-products .results-count strong { color: var(--black); }
    body.page-products .sort-wrap { display: flex; align-items: center; gap: 8px; }
    body.page-products .sort-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); white-space: nowrap; }
    body.page-products .sort-select {
      height: 32px;
      padding: 0 28px 0 11px;
      border: 1px solid var(--light-gray);
      background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
      -webkit-appearance: none;
      appearance: none;
      font-size: 12px;
      font-family: inherit;
      color: var(--black);
      cursor: pointer;
      transition: border-color var(--transition);
    }
    body.page-products .sort-select:focus { outline: none; border-color: var(--copper); }

    /* Products Grid */
    body.page-products .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

    /* Product Card */
    body.page-products .product-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.24s, transform 0.24s, border-color 0.24s;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
    }

@media screen and (min-width: 950px) {
 
/*   body.page-products .product-card {
      width: 256px;
   	  height: 544px;
      max-width: 256px;
      max-height: 544px;
  } */
}
    body.page-products .product-card:hover { box-shadow: 0 8px 30px rgba(0,87,184,0.13); transform: translateY(-3px); border-color: rgba(0,87,184,0.45); }
    body.page-products .product-card-img {
      background: #f6f8fb;
/*       height: 240px; */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    body.page-products .product-card-img img { width: 100%; height: 100%; object-fit: cover; padding: 8px; transition: transform 0.38s; }
    body.page-products .product-card:hover .product-card-img img { transform: scale(1.06); }
    body.page-products .product-card-badge {
      position: absolute;
      top: 10px; left: 10px;
      background: var(--copper);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
    }
    body.page-products .product-card-body { padding: 15px 17px 17px; display: flex; flex-direction: column; flex: 1; }
    body.page-products .product-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 5px; }
    body.page-products .product-card-title { font-size: 0.9rem; font-weight: 700; color: var(--dark-gray); line-height: 1.3; margin: 0 0 10px; }
    body.page-products .product-card-specs { list-style: none; padding: 0; margin: 0 0 12px; flex: 1; }
    body.page-products .product-card-specs li { font-size: 11px; color: var(--mid-gray); padding: 2px 0; display: flex; align-items: center; gap: 6px; }
    body.page-products .product-card-specs li::before { content: ''; display: block; width: 3px; height: 3px; background: var(--copper); border-radius: 50%; flex-shrink: 0; }
    body.page-products .product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--light-gray); margin-top: auto; }
    body.page-products .product-card-std { font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mid-gray); }
    body.page-products .product-card-arrow { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper); transition: gap var(--transition); flex-shrink: 0; }
    body.page-products .product-card:hover .product-card-arrow { gap: 9px; }

    /* No results */
    body.page-products .no-results { display: none; grid-column: 1/-1; text-align: center; padding: 60px 20px; }
    body.page-products .no-results.visible { display: block; }
    body.page-products .no-results h3 { font-size: 1.05rem; margin: 0 0 8px; color: var(--black); }
    body.page-products .no-results p { font-size: 13.5px; color: var(--mid-gray); }

    /* Pagination */
    body.page-products .pagination { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 36px; flex-wrap: wrap; }
    body.page-products .page-btn {
      min-width: 38px; height: 38px; padding: 0 10px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--light-gray);
      background: var(--white);
      color: var(--mid-gray);
      font-size: 13px; font-weight: 600;
      cursor: pointer;
      transition: all 0.15s;
      font-family: inherit;
    }
    body.page-products .page-btn:hover:not(:disabled) { border-color: var(--copper); color: var(--copper); }
    body.page-products .page-btn.active { background: var(--copper); border-color: var(--copper); color: #fff; }
    body.page-products .page-btn:disabled { opacity: 0.3; cursor: default; }
    body.page-products .page-ellipsis { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--mid-gray); font-size: 14px; }

    /* Responsive */
    @media (max-width: 1100px) {
      body.page-products .catalog-layout { grid-template-columns: 220px 1fr; gap: 20px; }
    }
    @media (max-width: 900px) {
      body.page-products .catalog-layout { grid-template-columns: 1fr; }
      body.page-products .mobile-filter-toggle { display: flex; }
      body.page-products .products-grid { grid-template-columns: repeat(2, 1fr); }

      /* Off-canvas drawer sliding in from the right. */
      body.page-products .filter-sidebar {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(360px, 86vw);
        max-height: none;
        margin: 0;
        border: none;
        border-left: 3px solid var(--copper);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 1200;
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
      body.page-products .filter-sidebar.mobile-open { transform: translateX(0);
      margin-top: var(--nav-mobile-height); }
      body.page-products .sidebar-close { display: inline-flex; align-items: center; }

      /* Dim the page behind the drawer. */
      body.page-products .filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1199;
      }
      body.page-products .filter-backdrop.is-visible { opacity: 1; visibility: visible; }
    }
    @media (max-width: 768px) {
      body.page-products .page-hero { padding: 50px 0 40px; }
      body.page-products .category-banner-inner { grid-template-columns: 1fr; }
      body.page-products .cat-banner-img { display: none; }
      body.page-products .page-hero-stats { gap: 16px; }
    }
    @media (max-width: 520px) {
      body.page-products .products-grid { grid-template-columns: 1fr; }
      body.page-products .hero-stat-sep { display: none; }
    }

/* ---------- SINGLE PRODUCT (page-single-product) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — SINGLE PRODUCT
       ============================================ */

    /* Breadcrumb */
    /* body.page-single-product .breadcrumb-bar background — see consolidated redesign rule below. */
    body.page-single-product .breadcrumb-bar .container-boxed {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
    }
    body.page-single-product .breadcrumb-bar a {
      color: var(--mid-gray);
      font-size: 11px;
      text-decoration: none;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      transition: color var(--transition);
    }
    body.page-single-product .breadcrumb-bar a:hover { color: var(--copper); }
    body.page-single-product .breadcrumb-sep {
      color: rgba(0,0,0,0.2);
      margin: 0 8px;
      font-size: 10px;
      display: flex;
      align-items: center;
    }
    body.page-single-product .breadcrumb-current {
      color: var(--black);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    /* Sticky anchor nav */
    body.page-single-product .product-anchor-nav {
      background: #fff;
      border-bottom: 1px solid var(--light-gray);
      position: sticky;
      top: var(--nav-height);
      z-index: 40;
    }
    body.page-single-product .product-anchor-nav .container-boxed {
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    body.page-single-product .product-anchor-nav .container-boxed::-webkit-scrollbar { display: none; }
    body.page-single-product .anchor-link {
      display: flex;
      align-items: center;
      padding: 13px 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: color 0.15s, border-color 0.15s;
      margin-bottom: -1px;
    }
    body.page-single-product .anchor-link:hover { color: var(--copper); border-bottom-color: var(--copper); }
    body.page-single-product .anchor-link.active { color: var(--copper); border-bottom-color: var(--copper); }

    /* ── Product Hero ── */
    body.page-single-product .single-product-hero {
      background: #fff;
      padding: 50px 0 64px;
    }
    body.page-single-product .single-product-hero .container-boxed {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 40px;
    }
    body.page-single-product .single-product-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: start;
    }

    /* Product Images */
    body.page-single-product .product-main-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: #f6f8fb;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      border: 1px solid #e6ecf3;
    }
    body.page-single-product .product-main-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 20px;
      transition: transform 0.4s ease;
    }
    body.page-single-product .product-main-img img:hover { transform: scale(1.03); }
    body.page-single-product .product-thumb-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    body.page-single-product .product-thumb {
      aspect-ratio: 1;
      background: #f6f8fb;
      border: 2px solid transparent;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    body.page-single-product .product-thumb:hover, 
    body.page-single-product .product-thumb.active {
      border-color: #0057b8;
      transform: translateY(-2px);
    }
    body.page-single-product .product-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 8px;
    }

    /* Gallery: zoom affordance + prev/next arrows */
    body.page-single-product .product-main-img { position: relative; }
    body.page-single-product .product-main-img.is-zoomable { cursor: zoom-in; }
    body.page-single-product .product-main-img.is-zoomable:focus-visible { outline: 2px solid #0057b8; outline-offset: 2px; }
    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
      z-index: 2;
    }
    .gallery-nav:hover { background: #0057b8; color: #fff; }
    .gallery-prev { left: 12px; }
    .gallery-next { right: 12px; }
    .gallery-zoom-badge {
      position: absolute;
      right: 12px;
      bottom: 12px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(20, 20, 20, 0.55);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 2;
    }

    /* Lightbox (click-to-view) */
    .gtm-lightbox {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: none;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 40px;
      background: rgba(12, 12, 12, 0.92);
    }
    .gtm-lightbox.is-open { display: flex; }
    .gtm-lb-figure {
      margin: 0;
      max-width: 90vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .gtm-lb-img {
      max-width: 88vw;
      max-height: 78vh;
      object-fit: contain;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    }
    .gtm-lb-caption {
      color: #eef2f7;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-align: center;
    }
    .gtm-lb-close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.25s ease;
    }
    .gtm-lb-close:hover { background: #0057b8; }
    .gtm-lb-nav {
      flex: 0 0 auto;
      width: 52px;
      height: 52px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.25s ease;
    }
    .gtm-lb-nav:hover { background: #0057b8; }
    /* Mobile: hide the prev/next arrows — users swipe with a finger instead. */
    @media (max-width: 768px) {
      body.page-single-product .gallery-nav { display: none !important; }
      body.page-single-product .product-main-img.is-zoomable { cursor: pointer; }
      .gtm-lightbox .gtm-lb-nav { display: none !important; }
    }
    @media (max-width: 600px) {
      .gtm-lightbox { padding: 16px; }
      .gtm-lb-nav { width: 42px; height: 42px; font-size: 24px; }
      .gtm-lb-close { top: 12px; right: 12px; }
    }

    /* Product Info */
    body.page-single-product .product-tag {
      display: inline-block;
      background: #0057b8;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 18px;
      text-transform: uppercase;
    }
    body.page-single-product .product-info-col h1 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #111;
      line-height: 1.15;
      margin: 0 0 22px;
      letter-spacing: -0.01em;
    }
    body.page-single-product .product-description p {
      color: #444;
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 14px;
    }

    /* Spec Table */
    body.page-single-product .spec-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0 30px;
      border: 1px solid #dce3ec;
      border-left: 3px solid #0057b8;
    }
    body.page-single-product .spec-table .spec-row td {
      padding: 10px 16px;
      border-bottom: 1px solid #e6ecf3;
      vertical-align: middle;
    }
    body.page-single-product .spec-table .spec-row:last-child td { border-bottom: none; }
    body.page-single-product .spec-row td:first-child {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid-gray);
      width: 36%;
      background: #f6f8fb;
      border-right: 1px solid #dce3ec;
      white-space: nowrap;
    }
    body.page-single-product .spec-row td:last-child {
      font-size: 13.5px;
      color: #111;
    }

    /* CTA Buttons */
    body.page-single-product .product-cta-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    body.page-single-product .btn-primary-copper {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #0057b8;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      border: 2px solid #0057b8;
    }
    body.page-single-product .btn-primary-copper:hover {
      background: #00428c;
      border-color: #00428c;
      transform: translateY(-1px);
    }
    body.page-single-product .btn-outline-copper {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #0057b8;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      border: 2px solid #0057b8;
    }
    body.page-single-product .btn-outline-copper:hover {
      background: #0057b8;
      color: #fff;
      transform: translateY(-1px);
    }

    /* ── Technical Specs Section ── */
    body.page-single-product .tech-specs-section {
      background: #eef2f7;
      padding: 80px 0;
      border-top: 1px solid #dce3ec;
    }
    body.page-single-product .section-header-block {
      margin-bottom: 40px;
    }
    body.page-single-product .section-label-line {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }
    body.page-single-product .section-label-line .label-dash {
      display: block;
      width: 36px;
      height: 2px;
      background: #0057b8;
    }
    body.page-single-product .section-label-line span {
      color: #0057b8;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    body.page-single-product .section-header-block h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      color: #111;
      margin: 0 0 12px;
    }
    body.page-single-product .section-header-block p {
      color: #666;
      font-size: 15px;
      line-height: 1.65;
      max-width: 560px;
    }

    body.page-single-product .specs-full-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border: 1px solid #dce3ec;
      font-size: 14px;
    }
    body.page-single-product .specs-full-table thead tr {
      background: #111;
    }
    body.page-single-product .specs-full-table thead th {
      color: #fff;
      font-weight: 700;
      padding: 14px 20px;
      text-align: left;
      letter-spacing: 0.04em;
      font-size: 13px;
      border-right: 1px solid #333;
    }
    body.page-single-product .specs-full-table thead th:last-child { border-right: none; }
    body.page-single-product .specs-full-table tbody tr {
      border-bottom: 1px solid #eee;
      transition: background 0.15s;
    }
    body.page-single-product .specs-full-table tbody tr:hover { background: #f6f8fb; }
    body.page-single-product .specs-full-table tbody tr:last-child { border-bottom: none; }
    body.page-single-product .specs-full-table tbody td {
      padding: 13px 20px;
      color: #444;
      border-right: 1px solid #e6ecf3;
      text-align: center;
    }
    body.page-single-product .specs-full-table tbody td:first-child {
      font-weight: 700;
      color: #111;
      text-align: left;
      border-left: 3px solid #0057b8;
    }
    body.page-single-product .specs-full-table tbody td:last-child { border-right: none; }

    /* ── Applications Section ── */
    body.page-single-product .applications-section {
      background: #111;
      padding: 80px 0;
    }
    body.page-single-product .applications-section .section-label-line span { color: #0057b8; }
    body.page-single-product .applications-section .section-label-line .label-dash { background: #0057b8; }
    body.page-single-product .applications-section h2 {
      color: #fff;
    }
    body.page-single-product .applications-section .section-header-block p {
      color: #aaa;
    }
    body.page-single-product .application-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 32px 0 30px;
    }
    body.page-single-product .application-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0,87,184,0.12);
      border: 1px solid rgba(0,87,184,0.4);
      color: #2e90ea;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 10px 22px;
      border-radius: 100px;
      text-transform: uppercase;
      transition: background 0.2s, border-color 0.2s;
    }
    body.page-single-product .application-pill:hover {
      background: rgba(0,87,184,0.22);
      border-color: #0057b8;
    }
    body.page-single-product .application-pill .pill-dot {
      width: 7px;
      height: 7px;
      background: #0057b8;
      border-radius: 50%;
      flex-shrink: 0;
    }
    body.page-single-product .applications-desc {
      color: #bbb;
      font-size: 15px;
      line-height: 1.75;
      max-width: 680px;
      margin: 0;
    }

    /* ── Related Products ── */
    body.page-single-product .related-products-section {
      background: #fff;
      padding: 80px 0;
      border-top: 1px solid #eee;
    }
    body.page-single-product .related-products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 40px;
    }
    body.page-single-product .related-product-card {
      background: #f6f8fb;
      border: 1px solid #e6ecf3;
      border-radius: 4px;
      overflow: hidden;
      text-decoration: none;
      display: block;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    body.page-single-product .related-product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0,87,184,0.12);
      border-color: #0057b8;
    }
    body.page-single-product .related-card-img {
      aspect-ratio: 16/9;
      background: #e6ecf3;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    body.page-single-product .related-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 20px;
      transition: transform 0.35s;
    }
    body.page-single-product .related-product-card:hover .related-card-img img { transform: scale(1.05); }
    body.page-single-product .related-card-body {
      padding: 22px 24px 26px;
    }
    body.page-single-product .related-card-tag {
      font-size: 11px;
      color: #0057b8;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }
    body.page-single-product .related-card-body h3 {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin: 0 0 10px;
      line-height: 1.3;
    }
    body.page-single-product .related-card-body p {
      font-size: 13.5px;
      color: #666;
      line-height: 1.6;
      margin: 0 0 18px;
    }
    body.page-single-product .related-card-link {
      font-size: 12px;
      font-weight: 700;
      color: #0057b8;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    body.page-single-product .related-card-link svg { transition: transform 0.2s; }
    body.page-single-product .related-product-card:hover .related-card-link svg { transform: translateX(4px); }

    /* ── Full Catalog CTA ── */
    body.page-single-product .catalog-cta-section {
      background: #0057b8;
      padding: 60px 0;
    }
    body.page-single-product .catalog-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }
    body.page-single-product .catalog-cta-inner h2 {
      color: #fff;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      margin: 0;
      font-weight: 700;
    }
    body.page-single-product .catalog-cta-inner p {
      color: rgba(255,255,255,0.82);
      font-size: 15px;
      margin: 8px 0 0;
    }
    body.page-single-product .btn-catalog-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #0057b8;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 2px;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      flex-shrink: 0;
    }
    body.page-single-product .btn-catalog-white:hover {
      background: #111;
      color: #fff;
      transform: translateY(-2px);
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      body.page-single-product .single-product-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      body.page-single-product .product-images-col { max-width: 540px; }
      body.page-single-product .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      body.page-single-product .product-anchor-nav { top: var(--nav-height-mobile); }
      body.page-single-product .single-product-hero { padding: 36px 0 48px; }
      body.page-single-product .single-product-hero .container-boxed { padding: 0 20px; }
      body.page-single-product .tech-specs-section, 
      body.page-single-product .applications-section, 
      body.page-single-product .related-products-section { padding: 56px 0; }
      body.page-single-product .product-thumb-grid { grid-template-columns: repeat(4, 1fr); }
      body.page-single-product .related-products-grid { grid-template-columns: 1fr; }
      body.page-single-product .catalog-cta-inner { flex-direction: column; text-align: center; }
      body.page-single-product .specs-full-table { font-size: 12px; }
      body.page-single-product .specs-full-table thead th, 
      body.page-single-product .specs-full-table tbody td { padding: 10px 12px; }
    }
    @media (max-width: 480px) {
      body.page-single-product .product-cta-buttons { flex-direction: column; }
      body.page-single-product .btn-primary-copper, 
      body.page-single-product .btn-outline-copper { justify-content: center; }
      body.page-single-product .application-pills { gap: 8px; }
    }

/* ---------- APPLICATIONS (page-applications) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — APPLICATIONS
       ============================================ */

    /* --- HERO --- */
    body.page-applications .hero-applications {
      position: relative;
      width: 100%;
      height: auto;          /* compact, padding-driven height (matches Certificates page-hero) */
      min-height: 0;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--black);
    }
    body.page-applications .hero-applications .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-applications .hero-applications .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-applications .hero-applications .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.18) 100%);
      z-index: 1;
    }
    body.page-applications .hero-applications .hero-text {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 72px 0 64px;
    }
    body.page-applications .hero-applications h1 {
      font-size: clamp(2.4rem, 5.5vw, 4.5rem);
      color: var(--white);
      line-height: 1.06;
      letter-spacing: -0.018em;
      max-width: 800px;
      margin-bottom: 20px;
    }
    body.page-applications .hero-applications p.hero-sub {
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      max-width: 580px;
    }
    body.page-applications .hero-copper-line {
      width: 64px;
      height: 3px;
      background: var(--copper);
      margin-bottom: 28px;
    }

    /* --- APPLICATIONS SECTION --- */
    body.page-applications .applications-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-applications .applications-intro {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-applications .label-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 16px;
    }
    body.page-applications .applications-intro h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.15;
      max-width: 600px;
      margin-bottom: 18px;
    }
    body.page-applications .applications-intro p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 560px;
    }

    /* --- APPLICATIONS GRID --- */
    body.page-applications .applications-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    body.page-applications .app-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    body.page-applications .app-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.13);
    }

    body.page-applications .app-card-image {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
      background: var(--dark-gray);
    }
    body.page-applications .app-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
    }
    body.page-applications .app-card:hover .app-card-image img {
      transform: scale(1.06);
    }
    body.page-applications .app-card-image .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
      z-index: 1;
    }
    body.page-applications .app-card-number {
      position: absolute;
      top: 18px;
      left: 20px;
      z-index: 2;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.7);
    }

    body.page-applications .app-card-body {
      padding: 28px 28px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
      border-top: 3px solid transparent;
      transition: border-color 0.3s ease;
    }
    body.page-applications .app-card:hover .app-card-body {
      border-top-color: var(--copper);
    }
    body.page-applications .app-card-body h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }
    body.page-applications .app-card:hover .app-card-body h3 {
      color: var(--copper);
    }
    body.page-applications .app-card-body p {
      font-size: 0.93rem;
      color: var(--mid-gray);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 22px;
    }
    body.page-applications .app-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--copper);
      text-decoration: none;
      transition: gap 0.25s ease;
    }
    body.page-applications .app-card-link:hover { gap: 14px; }
    body.page-applications .app-card-link svg { transition: transform 0.25s ease; }
    body.page-applications .app-card-link:hover svg { transform: translateX(4px); }

    /* --- WHY COPPER SECTION --- */
    body.page-applications .why-copper-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-applications .why-copper-header {
      max-width: var(--max-width);
      margin: 0 auto 64px;
      padding: 0 var(--gutter);
      text-align: center;
    }
    body.page-applications .why-copper-header h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    body.page-applications .why-copper-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto;
    }

    body.page-applications .copper-benefits-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    body.page-applications .benefit-card {
      padding: 40px 36px;
      border: 1px solid var(--light-gray);
      background: var(--off-white);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    body.page-applications .benefit-card:hover {
      border-color: var(--copper);
      box-shadow: 0 12px 40px var(--copper-20);
    }
    body.page-applications .benefit-icon {
      width: 54px;
      height: 54px;
      background: var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    body.page-applications .benefit-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 14px;
    }
    body.page-applications .benefit-card p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- BOTTOM BANNER CTA --- */
    /* background, typography, btn-white, and layout are inherited from main.css .bottom-banner */

    /* --- SVG COPPER COLOR OVERRIDE (uses CSS var instead of hardcoded hex) --- */
    body.page-applications .app-card-link svg path, 
    body.page-applications .benefit-icon svg path {
      stroke: var(--copper);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-applications .applications-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-applications .copper-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      body.page-applications .hero-applications { height: auto; min-height: 0; }
      body.page-applications .hero-applications .hero-text { padding: 50px 0 40px; }
      body.page-applications .applications-grid { grid-template-columns: 1fr; }
      body.page-applications .copper-benefits-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      body.page-applications .app-card-image { height: 200px; }
      body.page-applications .benefit-card { padding: 30px 24px; }
    }

/* ---------- QUALITY (page-quality) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — QUALITY
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-quality .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-quality .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-quality .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-quality .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.15) 100%);
      z-index: 1;
    }
    body.page-quality .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-quality .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 800px;
    }

    /* --- QUALITY INTRO SECTION --- */
    body.page-quality .quality-intro-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-quality .quality-intro-section .inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    body.page-quality .quality-intro-section .col-text h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 28px;
      line-height: 1.1;
    }
    body.page-quality .quality-intro-section .col-text p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.78;
      margin-bottom: 18px;
    }
    body.page-quality .quality-intro-section .col-text p:last-child { margin-bottom: 0; }
    body.page-quality .quality-intro-section .col-visual {
      position: relative;
    }
    body.page-quality .quality-intro-section .col-visual img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }
    body.page-quality .quality-intro-section .col-visual::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 120px;
      height: 120px;
      border-top: 4px solid var(--copper);
      border-left: 4px solid var(--copper);
      z-index: 1;
    }
    body.page-quality .quality-intro-section .col-visual::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      border-bottom: 4px solid var(--copper);
      border-right: 4px solid var(--copper);
      z-index: 1;
    }

    /* --- QUALITY PILLARS SECTION --- */
    body.page-quality .quality-pillars-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-quality .quality-pillars-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-quality .quality-pillars-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-quality .quality-pillars-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 560px;
    }
    body.page-quality .quality-pillars-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }
    body.page-quality .pillar-card {
      background: var(--white);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    body.page-quality .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--copper);
      transition: height 0.4s ease;
    }
    body.page-quality .pillar-card:hover::before { height: 100%; }
    body.page-quality .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }
    body.page-quality .pillar-card .pillar-number {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--copper);
      display: block;
      margin-bottom: 24px;
    }
    body.page-quality .pillar-card .pillar-icon {
      width: 56px;
      height: 56px;
      margin-bottom: 24px;
      color: var(--copper);
    }
    body.page-quality .pillar-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 16px;
    }
    body.page-quality .pillar-card p {
      font-size: 0.97rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }
    body.page-quality .pillar-card ul {
      list-style: none;
      margin-top: 18px;
    }
    body.page-quality .pillar-card ul li {
      font-size: 0.92rem;
      color: var(--mid-gray);
      line-height: 1.6;
      padding: 6px 0;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    body.page-quality .pillar-card ul li:last-child { border-bottom: none; }
    body.page-quality .pillar-card ul li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      flex-shrink: 0;
      margin-top: 6px;
    }

    /* --- STANDARDS & CERTIFICATIONS SECTION --- */
    body.page-quality .standards-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-quality .standards-section .inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-quality .standards-section .section-header {
      margin-bottom: 60px;
    }
    body.page-quality .standards-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-quality .standards-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 580px;
    }
    body.page-quality .standards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--light-gray);
    }
    body.page-quality .standard-card {
      padding: 36px 32px;
      border-right: 1px solid var(--light-gray);
      border-bottom: 1px solid var(--light-gray);
      position: relative;
      transition: background var(--transition), border-color var(--transition);
    }
    body.page-quality .standard-card:hover { background: var(--off-white); border-color: var(--copper); }
    body.page-quality .standard-card:nth-child(3n) { border-right: none; }
    body.page-quality .standard-card:nth-last-child(-n+3):nth-child(3n+1), 
    body.page-quality .standard-card:nth-last-child(-n+3):nth-child(3n+2), 
    body.page-quality .standard-card:nth-last-child(-n+3):nth-child(3n) { border-bottom: none; }
    body.page-quality .standard-card .std-code {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.01em;
      display: block;
      margin-bottom: 8px;
    }
    body.page-quality .standard-card h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 10px;
    }
    body.page-quality .standard-card p {
      font-size: 0.9rem;
      color: var(--mid-gray);
      line-height: 1.65;
    }
    body.page-quality .standard-card .std-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--copper-20);
      color: var(--copper);
      padding: 4px 10px;
      border-radius: 2px;
    }
    body.page-quality .standards-footer-note {
      margin-top: 40px;
    }
    body.page-quality .standards-footer-note p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.65;
    }
    body.page-quality .standards-footer-note a {
      color: var(--copper);
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px solid var(--copper);
      transition: opacity 0.2s ease;
    }
    body.page-quality .standards-footer-note a:hover { opacity: 0.75; }

    /* --- STATS SECTION --- */
    body.page-quality .stats-section {
      background: var(--black);
      border-top: 3px solid var(--copper);
      border-bottom: 3px solid var(--copper);
      padding: 70px 0;
    }
    body.page-quality .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-quality .stat-item {
      text-align: center;
      padding: 30px 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    body.page-quality .stat-item:last-child { border-right: none; }
    body.page-quality .stat-number {
      display: block;
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-quality .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    /* --- BOTTOM BANNER CTA — styles inherited from main.css .bottom-banner --- */

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-quality .quality-intro-section .inner { grid-template-columns: 1fr; gap: 48px; }
      body.page-quality .quality-intro-section .col-visual { display: none; }
      body.page-quality .quality-pillars-grid { grid-template-columns: 1fr; }
      body.page-quality .standards-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-quality .standards-grid .standard-card:nth-child(3n) { border-right: 1px solid var(--light-gray); }
      body.page-quality .standards-grid .standard-card:nth-child(2n) { border-right: none; }
      body.page-quality .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-quality .stat-item:nth-child(2) { border-right: none; }
      body.page-quality .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
    }
    @media (max-width: 768px) {
      body.page-quality .hero-image-comp { min-height: 480px; }
      body.page-quality .pillar-card { padding: 36px 28px; }
      body.page-quality .standards-grid { grid-template-columns: 1fr; }
      body.page-quality .standards-grid .standard-card { border-right: none; }
    }
    @media (max-width: 480px) {
      body.page-quality .stats-grid { grid-template-columns: 1fr 1fr; }
    }

/* ---------- CERTIFICATES (page-certificates) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — CERTIFICATES
       ============================================ */

    /* Dark Page Hero */
    body.page-certificates .page-hero {
      background: var(--dark-gray);
      padding: 72px 0 56px;
      position: relative;
      overflow: hidden;
    }
    body.page-certificates .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: rgba(255,255,255,0.06);
    }
    body.page-certificates .page-hero-inner { position: relative; z-index: 1; }
    body.page-certificates .page-hero .section-label { color: var(--copper); margin-bottom: 14px; }
    body.page-certificates .page-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      letter-spacing: -.01em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    body.page-certificates .page-hero-desc {
      font-size: 1rem;
      color: rgba(255,255,255,.5);
      line-height: 1.75;
      max-width: 540px;
    }

    /* Cert card extended classes (not yet in main.css) */
    body.page-certificates .cert-card-icon {
      flex-shrink: 0;
    }
    body.page-certificates .cert-card-body {
      flex: 1;
      min-width: 0;
    }
    body.page-certificates .cert-card-type {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 4px;
    }
    body.page-certificates .cert-card-title {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 6px;
      color: var(--black);
    }
    body.page-certificates .cert-card-desc {
      font-size: 0.825rem;
      color: var(--mid-gray);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    body.page-certificates .cert-card-size {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--mid-gray);
    }
    body.page-certificates .cert-card-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex-shrink: 0;
    }
    body.page-certificates .cert-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 7px 14px;
      border: 1px solid var(--light-gray);
      color: var(--black);
      white-space: nowrap;
      transition: all var(--transition);
    }
    body.page-certificates .cert-action-btn.view:hover { background: var(--off-white); border-color: var(--copper); }
    body.page-certificates .cert-action-btn.download { background: var(--copper); border-color: var(--copper); color: var(--white); }
    body.page-certificates .cert-action-btn.download:hover { background: var(--dark-gray); border-color: var(--dark-gray); color: var(--white); }

    /* Enhanced cert card hover */
    body.page-certificates .cert-card {
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    body.page-certificates .cert-card:hover {
      border-color: var(--copper) !important;
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    }

    /* Certs layout with sidebar */
    body.page-certificates .certs-layout {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }
    body.page-certificates .certs-sidebar {
      flex-shrink: 0;
      width: 200px;
    }
    body.page-certificates .certs-sub-filters {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    body.page-certificates .cert-sub-filter-btn {
      padding: 10px 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border: none;
      background: transparent;
      color: rgba(0,0,0,.38);
      cursor: pointer;
      text-align: left;
      transition: all var(--transition);
      border-left: 2px solid transparent;
    }
    body.page-certificates .cert-sub-filter-btn.active, 
    body.page-certificates .cert-sub-filter-btn:hover {
      color: var(--copper);
      border-left-color: var(--copper);
    }
    body.page-certificates .certs-grid--two-col {
      grid-template-columns: repeat(2, 1fr) !important;
      flex: 1;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      body.page-certificates .certs-grid--two-col { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 768px) {
      body.page-certificates .page-hero { padding: 50px 0 40px; }
      body.page-certificates .certs-layout { flex-direction: column; gap: 24px; }
      body.page-certificates .certs-sidebar { width: 100%; }
      body.page-certificates .certs-sub-filters { flex-direction: row; flex-wrap: wrap; }
      body.page-certificates .cert-sub-filter-btn { border-left: none; border-bottom: 2px solid transparent; }
      body.page-certificates .cert-sub-filter-btn.active, 
      body.page-certificates .cert-sub-filter-btn:hover { border-bottom-color: var(--copper); }
      body.page-certificates .cert-card.no-img { flex-direction: column; align-items: start; }
      body.page-certificates .cert-card-actions { flex-direction: row; }
    }

/* ---------- WORK CULTURE (page-work-culture) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — WORK CULTURE
       ============================================ */

    /* --- HERO IMAGE --- */
    body.page-work-culture .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-work-culture .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-work-culture .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-work-culture .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-work-culture .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-work-culture .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }
    body.page-work-culture .hero-image-comp .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 18px;
    }

    /* --- INTRO TEXT SECTION --- */
    body.page-work-culture .intro-text-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-work-culture .intro-text-section .columns {
      display: flex;
      gap: 60px;
      align-items: flex-start;
      margin: 0; /* reset base .columns negative gutter so it respects .container-boxed padding */
    }
    body.page-work-culture .intro-text-section .col-heading {
      flex: 0 0 360px;
    }
    body.page-work-culture .intro-text-section .col-heading h1 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.1;
      margin-bottom: 0;
    }
    body.page-work-culture .intro-text-section .col-body {
      flex: 1;
    }
    body.page-work-culture .intro-text-section .col-body p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.78;
      margin-bottom: 20px;
    }
    body.page-work-culture .intro-text-section .col-body p:last-child {
      margin-bottom: 0;
    }

    /* --- CULTURE STATS SECTION --- */
    body.page-work-culture .culture-stats-section {
      background: var(--white);
      border-top: 3px solid var(--copper);
      border-bottom: 3px solid var(--copper);
      padding: 70px 0;
    }
    body.page-work-culture .culture-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-work-culture .culture-stat-item {
      text-align: center;
      padding: 30px 20px;
      border-right: 1px solid var(--light-gray);
    }
    body.page-work-culture .culture-stat-item:last-child { border-right: none; }
    body.page-work-culture .stat-number {
      display: block;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-work-culture .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }

    /* --- CULTURE CONTENT SECTION (dark) --- */
    body.page-work-culture .culture-content-section {
      background: var(--black);
      padding: 100px 0;
    }
    body.page-work-culture .culture-content-section .columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin: 0; /* reset base .columns negative gutter so it respects .container-boxed padding */
    }
    body.page-work-culture .culture-content-section .col-text h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 28px;
      line-height: 1.1;
    }
    body.page-work-culture .culture-content-section .col-text p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    body.page-work-culture .culture-content-section .col-text p:last-child {
      margin-bottom: 0;
    }
    body.page-work-culture .culture-content-section .col-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap {
      overflow: hidden;
      border-radius: 2px;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap:first-child {
      grid-column: 1 / -1;
      height: 320px;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap:not(:first-child) {
      height: 200px;
    }
    body.page-work-culture .culture-content-section .col-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap:hover img {
      transform: scale(1.04);
    }

    /* --- CORE VALUES SECTION --- */
    body.page-work-culture .core-values-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-work-culture .core-values-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-work-culture .core-values-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }
    body.page-work-culture .core-values-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 540px;
    }
    body.page-work-culture .values-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    body.page-work-culture .value-card {
      background: var(--white);
      padding: 40px 32px;
      border-bottom: 3px solid transparent;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    body.page-work-culture .value-card:hover {
      border-color: var(--copper);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    body.page-work-culture .value-card .value-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 24px;
      color: var(--copper);
    }
    body.page-work-culture .value-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 14px;
    }
    body.page-work-culture .value-card p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-work-culture .intro-text-section .columns { flex-direction: column; gap: 32px; }
      body.page-work-culture .intro-text-section .col-heading { flex: none; }
      body.page-work-culture .culture-content-section .columns { grid-template-columns: 1fr; gap: 48px; }
      body.page-work-culture .culture-stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-work-culture .culture-stat-item:nth-child(2) { border-right: none; }
      body.page-work-culture .culture-stat-item:nth-child(3) { border-top: 1px solid var(--light-gray); }
      body.page-work-culture .values-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      body.page-work-culture .hero-image-comp { min-height: 480px; }
      body.page-work-culture .culture-content-section .col-images .img-wrap:first-child { height: 240px; }
      body.page-work-culture .culture-content-section .col-images .img-wrap:not(:first-child) { height: 160px; }
      body.page-work-culture .values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      body.page-work-culture .culture-stats-grid { grid-template-columns: 1fr 1fr; }
      body.page-work-culture .culture-content-section .col-images { grid-template-columns: 1fr; }
      body.page-work-culture .culture-content-section .col-images .img-wrap:first-child { grid-column: auto; }
    }

/* ---------- CAREERS (page-careers) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — CAREERS
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-careers .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--black);
    }
    body.page-careers .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-careers .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-careers .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-careers .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-careers .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }

    /* --- INTRO / JOIN OUR TEAM SECTION --- */
    body.page-careers .careers-intro {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-careers .careers-intro .intro-inner {
      max-width: 820px;
    }
    body.page-careers .careers-intro h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 28px;
    }
    body.page-careers .careers-intro p {
      font-size: 1.07rem;
      color: var(--mid-gray);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    body.page-careers .careers-intro p:last-child { margin-bottom: 0; }

    /* --- VALUES GRID --- */
    body.page-careers .careers-values {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-careers .careers-values .section-header {
      margin-bottom: 60px;
    }
    body.page-careers .careers-values .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-careers .careers-values .section-header p {
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 540px;
    }
    body.page-careers .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    body.page-careers .value-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-left: 3px solid transparent;
      padding: 36px 30px 38px;
      transition: box-shadow 0.24s, transform 0.24s, border-color 0.24s;
      display: flex;
      flex-direction: column;
    }
    body.page-careers .value-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.09);
      transform: translateY(-3px);
      border-left-color: var(--copper);
    }
    body.page-careers .card-num {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      display: block;
      margin-bottom: 16px;
    }
    body.page-careers .value-card .card-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,87,184,0.08);
      margin-bottom: 22px;
      flex-shrink: 0;
    }
    body.page-careers .value-card .card-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--copper);
      fill: none;
    }
    body.page-careers .value-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    body.page-careers .value-card p {
      font-size: 0.925rem;
      color: var(--mid-gray);
      line-height: 1.72;
      flex: 1;
    }

    /* --- OPEN POSITIONS SECTION --- */
    body.page-careers .jobs-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-careers .jobs-section .section-header {
      margin-bottom: 56px;
    }
    body.page-careers .jobs-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-careers .jobs-section .section-header p {
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 520px;
    }
    body.page-careers .jobs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    body.page-careers .job-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
      text-decoration: none;
    }
    body.page-careers .job-card:hover {
      border-color: var(--copper);
      background: var(--black);
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }
    body.page-careers .job-card-info {
      flex: 1;
    }
    body.page-careers .job-card-department {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 10px;
    }
    body.page-careers .job-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.005em;
      margin-bottom: 14px;
      transition: color var(--transition);
    }
    body.page-careers .job-card:hover .job-card-title {
      color: var(--white);
    }
    body.page-careers .job-card:hover .job-meta-item {
      color: rgba(255,255,255,0.6);
    }
    body.page-careers .job-card:hover .job-meta-item svg {
      stroke: rgba(255,255,255,0.5);
    }
    body.page-careers .job-card-meta {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    body.page-careers .job-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--mid-gray);
      letter-spacing: 0.03em;
    }
    body.page-careers .job-meta-item svg {
      width: 13px;
      height: 13px;
      stroke: var(--mid-gray);
      fill: none;
      flex-shrink: 0;
    }
    body.page-careers .job-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      background: rgba(0,87,184,0.1);
      color: var(--copper);
      border: 1px solid rgba(0,87,184,0.28);
    }
    body.page-careers .job-card-arrow {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border: 1.5px solid var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mid-gray);
      transition: border-color var(--transition), background var(--transition), color var(--transition);
    }
    body.page-careers .job-card:hover .job-card-arrow {
      border-color: var(--copper);
      background: var(--copper);
      color: var(--white);
    }
    body.page-careers .job-card:hover .job-tag {
      background: rgba(0,87,184,0.25);
      border-color: rgba(0,87,184,0.55);
    }
    body.page-careers .job-card-arrow svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }

    /* --- APPLICATION CTA SECTION --- */
    body.page-careers .apply-cta {
      background: var(--black);
      border-top: 4px solid var(--copper);
      padding: 90px 0;
      text-align: center;
    }
    body.page-careers .apply-cta .cta-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    body.page-careers .apply-cta .copper-rule {
      margin: 0 auto 28px;
    }
    body.page-careers .apply-cta h2 {
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      color: var(--white);
      letter-spacing: -0.015em;
      margin-bottom: 18px;
      line-height: 1.1;
    }
    body.page-careers .apply-cta p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    body.page-careers .apply-cta .btn-copper {
      font-size: 13px;
      padding: 18px 44px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    body.page-careers .apply-cta .btn-copper svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }
    body.page-careers .apply-cta .cta-email-link {
      display: inline-block;
      margin-top: 24px;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color var(--transition);
    }
    body.page-careers .apply-cta .cta-email-link:hover {
      color: var(--copper);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-careers .values-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-careers .value-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
      body.page-careers .value-card:last-child:nth-child(odd) p { max-width: 560px; }
    }
    @media (max-width: 768px) {
      body.page-careers .hero-image-comp { min-height: 480px; }
      body.page-careers .values-grid { grid-template-columns: 1fr; }
      body.page-careers .jobs-grid { grid-template-columns: 1fr; }
      body.page-careers .job-card { flex-direction: column; align-items: flex-start; }
      body.page-careers .job-card-arrow { display: none; }
    }
    @media (max-width: 480px) {
      body.page-careers .careers-intro { padding: 64px 0; }
      body.page-careers .careers-values { padding: 64px 0; }
      body.page-careers .jobs-section { padding: 64px 0; }
      body.page-careers .apply-cta { padding: 64px 0; }
    }

/* ---------- CONTACT (page-contact) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — CONTACT
       ============================================ */

    /* --- Contact Intro Section --- */
    body.page-contact .contact-intro {
      position: relative;
      background:
        linear-gradient(180deg, rgba(7,11,19,.82) 0%, rgba(7,11,19,.70) 52%, rgba(7,11,19,.88) 100%),
        radial-gradient(120% 92% at 50% 28%, rgba(0,87,184,.32) 0%, rgba(0,87,184,0) 60%),
        url(../img/new/hero.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: var(--night);
      padding: 104px 0 92px;
      text-align: center;
    }
    body.page-contact .contact-intro h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 20px;
    }
    body.page-contact .contact-intro h1 span {
      color: var(--copper);
    }
    body.page-contact .contact-intro p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* --- Breadcrumb --- */

    /* --- Two-Column Contact Section --- */
    body.page-contact .contact-main-section {
      background: #eef2f7;
      padding: 80px 0;
    }
    body.page-contact .contact-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    }

    /* --- Left: Contact Info Box --- */
    body.page-contact .contact-info-box {
      background: var(--black);
      padding: 56px 48px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    body.page-contact .contact-info-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--copper);
    }
    body.page-contact .contact-info-box h2 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--copper);
      margin: 0 0 32px;
    }
    body.page-contact .contact-info-box .company-name {
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    body.page-contact .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }
    body.page-contact .contact-info-item .icon {
      width: 22px; height: 22px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--copper);
    }
    body.page-contact .contact-info-item .icon svg {
      width: 100%; height: 100%;
      fill: none; stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round; stroke-linejoin: round;
    }
    body.page-contact .contact-info-item .info-text {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
    body.page-contact .contact-info-item .info-text a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color var(--transition);
    }
    body.page-contact .contact-info-item .info-text a:hover { color: var(--copper); }
    body.page-contact .contact-info-item .info-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.3);
      margin-bottom: 4px;
    }
    body.page-contact .contact-hours {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    body.page-contact .contact-hours h3 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.3);
      margin: 0 0 10px;
    }
    body.page-contact .contact-hours p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      margin: 0;
    }
    body.page-contact .copper-accent-bar {
      width: 48px; height: 3px;
      background: var(--copper);
      margin: 32px 0;
      opacity: 0.6;
    }

    /* --- Right: Contact Form Box --- */
    body.page-contact .contact-form-box {
      background: var(--off-white);
      padding: 56px 48px;
    }
    body.page-contact .contact-form-box h2 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--black);
      margin: 0 0 8px;
    }
    body.page-contact .contact-form-box .form-subtitle {
      font-size: 0.88rem;
      color: var(--mid-gray);
      margin-bottom: 32px;
    }
    body.page-contact .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    body.page-contact .form-group { margin-bottom: 16px; }
    body.page-contact .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--black);
      margin-bottom: 6px;
    }
    body.page-contact .form-group label .req { color: var(--copper); margin-left: 2px; }
    body.page-contact .form-group input, 
    body.page-contact .form-group select, 
    body.page-contact .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      background: var(--white);
      border: 1px solid var(--light-gray);
      font-family: inherit;
      font-size: 0.92rem;
      color: var(--black);
      transition: border-color var(--transition), box-shadow var(--transition);
      box-sizing: border-box;
      appearance: none; -webkit-appearance: none;
      outline: none;
    }
    body.page-contact .form-group input:focus, 
    body.page-contact .form-group select:focus, 
    body.page-contact .form-group textarea:focus {
      border-color: var(--copper);
      box-shadow: 0 0 0 3px var(--copper-20);
    }
    body.page-contact .form-group input.error, 
    body.page-contact .form-group select.error, 
    body.page-contact .form-group textarea.error { border-color: #c0392b; }
    body.page-contact .form-group .field-error {
      font-size: 0.75rem; color: #c0392b;
      margin-top: 4px; display: none;
    }
    body.page-contact .form-group .field-error.visible { display: block; }
    body.page-contact .form-group textarea { resize: vertical; min-height: 130px; }
    body.page-contact .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ba7c00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px; cursor: pointer;
    }
    body.page-contact .btn-copper {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--copper);
      color: var(--white);
      padding: 14px 36px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      border: 2px solid var(--copper);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
      margin-top: 8px;
      font-family: inherit;
    }
    body.page-contact .btn-copper:hover { background: transparent; color: var(--copper); }
    body.page-contact .btn-copper svg {
      width: 16px; height: 16px;
      fill: none; stroke: currentColor; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-contact .btn-copper:hover svg { transform: translateX(4px); }
    body.page-contact #form-success {
      padding: 16px 20px;
      background: var(--copper);
      color: var(--white);
      margin-top: 16px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    body.page-contact #form-success svg {
      width: 20px; height: 20px;
      flex-shrink: 0; fill: none; stroke: currentColor;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    }

    /* --- Map / Location Section --- */
    body.page-contact .location-section {
      background: #0d0d0d;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    body.page-contact .location-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
    }
    body.page-contact .location-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    body.page-contact .location-text h2 {
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 16px;
    }
    body.page-contact .location-text h2 span { color: var(--copper); }
    body.page-contact .location-text p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    body.page-contact .location-text .address-display {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.85);
      font-weight: 600;
      line-height: 1.6;
      margin: 24px 0;
      padding: 20px 24px;
      border-left: 3px solid var(--copper);
      background: rgba(0,87,184,0.06);
    }
    body.page-contact .location-text .appointment-note {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.3);
      font-style: italic;
      margin-top: 20px;
    }
    body.page-contact .location-map-visual {
      position: relative;
      height: 360px;
      background: var(--dark-gray);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
    }
    body.page-contact .map-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    body.page-contact .map-placeholder svg {
      width: 48px; height: 48px;
      fill: none; stroke: var(--copper);
      stroke-width: 1.5;
      stroke-linecap: round; stroke-linejoin: round;
      opacity: 0.6;
    }
    body.page-contact .map-placeholder span {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.3);
    }
    body.page-contact .map-coords {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: rgba(0,0,0,0.8);
      padding: 12px 16px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      text-align: center;
      letter-spacing: 0.04em;
    }
    body.page-contact .map-coords a {
      color: var(--copper);
      text-decoration: none;
      font-weight: 600;
    }
    body.page-contact .map-coords a:hover { text-decoration: underline; }

    /* --- Bottom CTA Banner --- */
    body.page-contact .bottom-cta-banner {
      background: var(--copper);
      padding: 80px 0;
    }
    body.page-contact .bottom-cta-banner .container-boxed {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-contact .bottom-cta-banner h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      max-width: 560px;
      margin: 0;
    }
    body.page-contact .bottom-cta-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      margin: 14px 0 0;
      max-width: 500px;
    }
    body.page-contact .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--copper);
      padding: 16px 40px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      border: 2px solid var(--white);
      flex-shrink: 0;
      transition: all var(--transition);
    }
    body.page-contact .btn-white:hover { background: transparent; color: var(--white); }
    body.page-contact .btn-white svg {
      width: 16px; height: 16px;
      fill: none; stroke: currentColor; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-contact .btn-white:hover svg { transform: translateX(5px); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      body.page-contact .contact-columns {
        grid-template-columns: 1fr;
      }
      body.page-contact .contact-info-box, 
      body.page-contact .contact-form-box {
        padding: 40px 32px;
      }
      body.page-contact .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
      }
      body.page-contact .location-map-visual {
        height: 280px;
      }
    }
    @media (max-width: 640px) {
      body.page-contact .form-row {
        grid-template-columns: 1fr;
      }
      body.page-contact .contact-info-box, 
      body.page-contact .contact-form-box {
        padding: 32px 20px;
      }
      body.page-contact .contact-intro {
        padding: 76px 0 64px;
      }
    }

/* ---------- WHERE TO BUY (page-where-to-buy) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — WHERE TO BUY
       ============================================ */

    /* --- Page Intro --- */
    body.page-where-to-buy .wtb-intro {
      position: relative;
      background:
        linear-gradient(180deg, rgba(7,11,19,.82) 0%, rgba(7,11,19,.70) 52%, rgba(7,11,19,.88) 100%),
        radial-gradient(120% 92% at 50% 28%, rgba(0,87,184,.32) 0%, rgba(0,87,184,0) 60%),
        url(../img/new/hero.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: var(--night);
      padding: 104px 0 92px;
      text-align: center;
    }
    body.page-where-to-buy .wtb-intro h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 20px;
    }
    body.page-where-to-buy .wtb-intro h1 span {
      color: var(--copper);
    }
    body.page-where-to-buy .wtb-intro p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      max-width: 660px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* --- Breadcrumb --- */

    /* --- Coverage Stats Banner --- */
    body.page-where-to-buy .coverage-banner {
      background: var(--copper);
      padding: 56px var(--gutter);
    }
    body.page-where-to-buy .coverage-banner-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-where-to-buy .coverage-banner-text h2 {
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #fff;
      margin: 0 0 8px;
    }
    body.page-where-to-buy .coverage-banner-text p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      margin: 0;
    }
    body.page-where-to-buy .coverage-stats {
      display: flex;
      gap: 48px;
      flex-shrink: 0;
    }
    body.page-where-to-buy .coverage-stat {
      text-align: center;
    }
    body.page-where-to-buy .coverage-stat .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      display: block;
    }
    body.page-where-to-buy .coverage-stat .stat-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
      display: block;
    }

    /* --- Distributors Section --- */
    body.page-where-to-buy .distributors-section {
      background: var(--off-white);
      padding: 80px 0;
    }
    body.page-where-to-buy .distributors-section .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    body.page-where-to-buy .distributors-section .section-header .eyebrow {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--copper);
      margin-bottom: 12px;
    }
    body.page-where-to-buy .distributors-section .section-header h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--black);
      margin: 0 0 16px;
    }
    body.page-where-to-buy .distributors-section .section-header p {
      font-size: 1rem;
      color: var(--mid-gray);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
    body.page-where-to-buy .section-divider {
      width: 48px;
      height: 3px;
      background: var(--copper);
      margin: 0 auto 20px;
    }

    /* --- Distributors Grid --- */
    body.page-where-to-buy .distributors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    body.page-where-to-buy .distributor-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-top: 3px solid transparent;
      padding: 28px 24px 24px;
      transition: border-top-color var(--transition), box-shadow var(--transition), transform var(--transition);
      position: relative;
    }
    body.page-where-to-buy .distributor-card:hover {
      border-top-color: var(--copper);
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }
    body.page-where-to-buy .distributor-card .region-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--copper);
      background: rgba(0,87,184,0.08);
      border: 1px solid rgba(0,87,184,0.2);
      padding: 4px 10px;
      margin-bottom: 16px;
    }
    body.page-where-to-buy .distributor-card .company-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: 0.02em;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    body.page-where-to-buy .distributor-card .location {
      font-size: 0.88rem;
      color: var(--mid-gray);
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }
    body.page-where-to-buy .distributor-card .location svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      margin-top: 2px;
      fill: none;
      stroke: var(--copper);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    body.page-where-to-buy .distributor-card .card-divider {
      width: 32px;
      height: 2px;
      background: var(--copper);
      margin-bottom: 16px;
      opacity: 0.4;
    }
    body.page-where-to-buy .distributor-card .contact-line {
      font-size: 0.82rem;
      color: var(--mid-gray);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      text-decoration: none;
    }
    body.page-where-to-buy .distributor-card a.contact-line {
      transition: color var(--transition);
    }
    body.page-where-to-buy .distributor-card a.contact-line:hover {
      color: var(--copper);
    }
    body.page-where-to-buy .distributor-card .contact-line svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      fill: none;
      stroke: var(--copper);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    body.page-where-to-buy .distributor-card.featured {
      border-top-color: var(--copper);
      background: #0d0d0d;
    }
    body.page-where-to-buy .distributor-card.featured .company-name {
      color: var(--white);
    }
    body.page-where-to-buy .distributor-card.featured .location {
      color: rgba(255,255,255,0.55);
    }
    body.page-where-to-buy .distributor-card.featured .contact-line {
      color: rgba(255,255,255,0.5);
    }
    body.page-where-to-buy .distributor-card.featured a.contact-line {
      color: rgba(255,255,255,0.5);
    }
    body.page-where-to-buy .distributor-card.featured a.contact-line:hover {
      color: var(--copper);
    }
    body.page-where-to-buy .distributor-card.featured .card-divider {
      opacity: 0.6;
    }
    body.page-where-to-buy .distributor-card.featured .region-tag {
      background: rgba(0,87,184,0.15);
      border-color: rgba(0,87,184,0.35);
    }
    body.page-where-to-buy .distributor-card.featured:hover {
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    }
    body.page-where-to-buy .direct-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      background: var(--copper);
      padding: 4px 10px;
      margin-top: 12px;
    }
    body.page-where-to-buy .direct-badge svg {
      width: 10px;
      height: 10px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* --- Become a Distributor Section --- */
    body.page-where-to-buy .become-distributor {
      background: #0d0d0d;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    body.page-where-to-buy .become-distributor::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
    }
    body.page-where-to-buy .become-distributor::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
    }
    body.page-where-to-buy .become-distributor-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    body.page-where-to-buy .become-distributor-text .eyebrow {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--copper);
      margin-bottom: 16px;
    }
    body.page-where-to-buy .become-distributor-text h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      margin: 0 0 20px;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    body.page-where-to-buy .become-distributor-text h2 span {
      color: var(--copper);
    }
    body.page-where-to-buy .become-distributor-text p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
      margin-bottom: 14px;
    }
    body.page-where-to-buy .become-distributor-text p:last-of-type {
      margin-bottom: 36px;
    }
    body.page-where-to-buy .btn-copper-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--copper);
      padding: 14px 36px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      border: 2px solid var(--copper);
      transition: background var(--transition), color var(--transition);
      font-family: inherit;
    }
    body.page-where-to-buy .btn-copper-outline:hover {
      background: var(--copper);
      color: var(--white);
    }
    body.page-where-to-buy .btn-copper-outline svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-where-to-buy .btn-copper-outline:hover svg { transform: translateX(4px); }
    body.page-where-to-buy .btn-copper-solid {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--copper);
      color: var(--white);
      padding: 14px 36px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      border: 2px solid var(--copper);
      transition: background var(--transition), color var(--transition);
      font-family: inherit;
    }
    body.page-where-to-buy .btn-copper-solid:hover {
      background: transparent;
      color: var(--copper);
    }
    body.page-where-to-buy .btn-copper-solid svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-where-to-buy .btn-copper-solid:hover svg { transform: translateX(4px); }
    body.page-where-to-buy .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    body.page-where-to-buy .become-distributor-benefits {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    body.page-where-to-buy .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 22px 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-left: 3px solid var(--copper);
      transition: background var(--transition);
    }
    body.page-where-to-buy .benefit-item:hover {
      background: rgba(255,255,255,0.07);
    }
    body.page-where-to-buy .benefit-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,87,184,0.1);
    }
    body.page-where-to-buy .benefit-icon svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: var(--copper);
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    body.page-where-to-buy .benefit-item h4 {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin: 0 0 6px;
    }
    body.page-where-to-buy .benefit-item p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
      margin: 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      body.page-where-to-buy .distributors-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 900px) {
      body.page-where-to-buy .become-distributor-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
      }
      body.page-where-to-buy .coverage-stats {
        gap: 32px;
      }
    }
    @media (max-width: 640px) {
      body.page-where-to-buy .distributors-grid {
        grid-template-columns: 1fr;
      }
      body.page-where-to-buy .wtb-intro {
        padding: 76px 0 64px;
      }
      body.page-where-to-buy .distributors-section {
        padding: 60px 0;
      }
      body.page-where-to-buy .become-distributor {
        padding: 70px 0;
      }
      body.page-where-to-buy .coverage-banner-inner {
        flex-direction: column;
        text-align: center;
      }
      body.page-where-to-buy .coverage-stats {
        justify-content: center;
      }
      body.page-where-to-buy .btn-group {
        flex-direction: column;
      }
    }

/* ---------- BLOG (home.php / single.php) ---------- */

/* Blog listing page — outer section spacing */
.blog-listing {
  padding: 80px 0 100px;
  background: var(--off-white);
}
.blog-listing .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section header in blog listing reuses global .section-header, .section-label,
   .section-title — no overrides needed. */

/* The .news-grid already has its 3-col grid and responsive breakpoints defined
   globally. Only add blog-page-specific grid spacing so it doesn't conflict. */
.blog-listing .news-grid {
  margin-top: 0;
}

/* Empty state */
.blog-empty {
  grid-column: 1 / -1;
  font-size: 1rem;
  color: var(--mid-gray, #888);
  padding: 40px 0;
  text-align: center;
}

/* Pagination */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-main);
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(0,87,184,0.3);
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--copper);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}

/* ---- Single post ---- */
.single-post {
  padding: 80px 0 100px;
  background: var(--off-white);
}

/* Narrow reading column (~820 px) centred */
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Post header: date chip + h1 */
.single-post-header {
  margin-bottom: 36px;
}
.single-post-header .news-date {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.single-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

/* Hero / featured image */
.single-post-hero {
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: #dce3ec;
}
.single-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body copy */
.single-post-body {
  font-family: var(--font-main);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--black);
}
.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.single-post-body h2 { font-size: 1.4rem; }
.single-post-body h3 { font-size: 1.15rem; }
.single-post-body p  { margin-bottom: 1.4em; }
.single-post-body a  { color: var(--copper); text-decoration: underline; text-decoration-color: rgba(0,87,184,0.4); }
.single-post-body a:hover { text-decoration-color: var(--copper); }
.single-post-body img { max-width: 100%; height: auto; border-radius: 4px; margin: 1.5em 0; }
.single-post-body blockquote {
  border-left: 3px solid var(--copper);
  padding-left: 20px;
  margin: 2em 0;
  font-style: italic;
  color: #555;
}
.single-post-body ul,
.single-post-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.back-link:hover { opacity: 0.75; }

/* ---- Blog responsive ---- */
@media (max-width: 900px) {
  .blog-listing { padding: 60px 0 80px; }
  .single-post  { padding: 60px 0 80px; }
}
@media (max-width: 640px) {
  .blog-listing { padding: 48px 0 64px; }
  .single-post  { padding: 48px 0 64px; }
  .single-post-header h1 { font-size: 1.5rem; }
  .blog-pagination { flex-wrap: wrap; }
}

/* =============================================================
   GTM ENGINEERING LAYER — precision German-industrial overrides
   Appended after the base sheet so these win on cascade.
   ============================================================= */

/* Eyebrow labels read like technical callouts: "// LABEL" */
.section-label,
.hero-eyebrow {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--copper);
  transform: translateY(-2px);
}
/* On dark/blue backgrounds keep the tick visible */
.pillars-section .section-label::before,
.video-section .section-label::before,
.bottom-banner .section-label::before { background: var(--accent-bright); }

/* Precision accent rule — engineered gradient bar */
.copper-rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--accent-bright));
  border-radius: 0;
}

/* Buttons: crisp, squared engineering feel + brighter hover sheen */
.btn-copper, .button-more {
  border-radius: 2px;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 22px -10px rgba(0, 87, 184, 0.55);
}
.btn-copper:hover, .button-more:hover {
  box-shadow: 0 10px 28px -12px rgba(0, 87, 184, 0.7);
}
.btn-outline { border-radius: 2px; }
.btn-white { border-radius: 2px; }
.nav-cta-btn { border-radius: 2px !important; letter-spacing: 0.1em; }

/* Headings: tighter, more technical tracking */
h1, h2, h3 { letter-spacing: -0.015em; }

/* Subtle blue focus ring for accessibility / engineered polish */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

/* Product / news card hover: lift with a blue edge */
.product-cat-item, .news-card { transition: transform .35s ease, box-shadow .35s ease; }
.product-cat-item:hover, .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(11, 14, 19, 0.55);
}

/* Stats numbers get the signature blue for emphasis */
.stat-num, .stat-number, .hero-stat-number { color: var(--copper); }

/* Engineered hairline at the very top of the page (brand bar) */
#scroll-progress { background: linear-gradient(90deg, var(--copper), var(--accent-bright)) !important; }

/* Image hero fallback (used where the old mp4 hero was) */
.hero-video-component .video-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}


/* =============================================================
   REDESIGN LAYER (merged from former redesign.css)
   Previously a separate stylesheet loaded after main.css. Merged
   inline here so the theme ships a single CSS file. Kept at the end
   so it stays authoritative over the rules above.
   ============================================================= */

/* =============================================================
   GTM — GERMAN TECHNOLOGY MOTOR
   REDESIGN LAYER — "Clean Light & Technical"
   Loaded AFTER main.css (see inc/enqueue.php) so it is authoritative.
   New homepage markup uses `gx-` classes; existing JS hook classes
   (.hero-video-component, .pillar-*, .fade-up, .stat-number, the nav,
   #main-header, #page-loader, .mobile-menu-wrap, .hamburger) are kept
   and restyled here.
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS  (override main.css :root)
   ------------------------------------------------------------- */
:root {
  /* Surfaces — light, cool, technical */
  --bg:          #ffffff;
  --paper:       #f4f7fb;   /* alternating section tint */
  --panel:       #eaf0f7;   /* raised panels */
  --ink:         #0d1b2a;   /* near-black navy text */
  --ink-2:       #33485f;   /* secondary text */
  --ink-3:       #6c7e91;   /* muted / captions */
  --line:        #dbe4ef;   /* hairlines */
  --line-strong: #c3d1e2;

  /* Brand blue family */
  --brand:        #0057b8;
  --brand-bright: #2e90ea;
  --brand-deep:   #00316d;
  --brand-tint:   #e7f0fb;
  --brand-tint-2: #d6e6f8;

  /* Footer / dark moments */
  --night:       #0a1622;
  --night-2:     #0f2030;

  /* Re-map legacy tokens so untouched inner-page components inherit the
     new palette automatically. */
  --copper:    #0057b8;
  --copper-60: rgba(0, 87, 184, 0.6);
  --copper-20: rgba(0, 87, 184, 0.18);
  --accent-bright: #2e90ea;
  --accent-deep:   #00316d;
  --black:      #0d1b2a;
  --white:      #ffffff;
  --off-white:  #f4f7fb;
  --dark-gray:  #0f2030;
  --mid-gray:   #6c7e91;
  --light-gray: #dbe4ef;

  --gradient: linear-gradient(120deg, #0057b8 0%, #2e90ea 100%);

  /* Typography */
  --font-main: "CF Asty Std", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;

  /* Geometry */
  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.05), 0 2px 8px rgba(13,27,42,.05);
  --shadow-md: 0 8px 30px rgba(13,27,42,.08), 0 2px 8px rgba(13,27,42,.05);
  --shadow-lg: 0 30px 70px rgba(13,27,42,.16);
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Legacy geometry tokens (kept from the original base :root) */
  --nav-height: 110px;
  --nav-height-mobile: 80px;
  --max-width: 1520px;
  --gutter: 20px;
  --transition: 0.3s ease;
  --topbar-height: 36px;
  --mainnav-height: 74px;
  --nav-mobile-height: 64px;
}

/* -------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--brand); color: #fff; }

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

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }

/* Scroll progress bar (injected by JS) */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  z-index: 100000; transition: width .1s linear; pointer-events: none;
}

/* Homepage hero is full-bleed under the fixed header (its own padding clears it).
   Inner pages keep main.css's .content-area padding-top so content isn't hidden. */
body.home .content-area { padding-top: 0; }

/* Boxed container (used by header/footer + gx sections) */
.container-boxed, .gx-wrap {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px);
}

/* -------------------------------------------------------------
   3. SHARED PRIMITIVES
   ------------------------------------------------------------- */
.gx-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand); font-weight: 500;
}
.gx-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--brand); opacity: .6;
}
.gx-eyebrow.is-ondark { color: #8fc0f4; }
.gx-eyebrow.is-ondark::before { background: #8fc0f4; }

.gx-section { padding: clamp(52px, 6vw, 92px) 0; position: relative; }
.gx-section.is-paper { background: var(--paper); border-block: 1px solid var(--line); }

.gx-section-head { max-width: 660px; margin-bottom: clamp(30px, 3.6vw, 50px); }
.gx-section-head h2 {
  font-size: clamp(25px, 3.1vw, 38px); margin-top: 13px;
}
.gx-section-head p { color: var(--ink-2); font-size: 1rem; margin-top: 13px; max-width: 62ch; }

/* Blueprint grid texture */
.gx-grid-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 75%);
}

/* Buttons */
.gx-btn {
  --bg: var(--brand); --fg: #fff; --bd: var(--brand);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-main); font-weight: 700; font-size: .88rem;
  letter-spacing: .01em; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius);
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}
.gx-btn svg { transition: transform .3s var(--ease); }
.gx-btn:hover svg { transform: translateX(4px); }
.gx-btn--primary:hover { box-shadow: 0 12px 26px rgba(0,87,184,.30); transform: translateY(-2px); }
.gx-btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-strong); }
.gx-btn--ghost:hover { --bd: var(--brand); --fg: var(--brand); background: var(--brand-tint); }
.gx-btn--ondark { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.gx-btn--ondark:hover { --bg: transparent; --fg: #fff; box-shadow: none; }
.gx-btn--outline-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.45); }
.gx-btn--outline-light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }

.gx-textlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); text-decoration: none; font-weight: 500;
}
.gx-textlink svg { transition: transform .3s var(--ease); }
.gx-textlink:hover svg { transform: translateX(4px); }

/* =============================================================
   4. HEADER / CHROME  (restyle existing markup)
   ============================================================= */
#page-loader { background: var(--night); }
#page-loader .loader-logo img { filter: none; }

/* ---- Dark navbar (shows the white GTM wordmark) ---- */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: auto;
  background: rgba(11,14,19,.97);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
/* Over the dark cinematic hero: let the imagery show through. Only a whisper of
   a top scrim for nav legibility, no blur, no border — the navbar appears to float. */
#main-header.is-transparent {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
#main-header.is-transparent .header-topbar { border-bottom-color: rgba(255,255,255,.10); }
#main-header.is-transparent .topbar-geo,
#main-header.is-transparent .topbar-link { opacity: 1; }
/* Scrolled: compact, opaque, shadowed; the utility bar collapses away */
#main-header.is-solid {
  background: rgba(8,10,14,.98) !important;
  box-shadow: 0 10px 34px rgba(0,0,0,.36);
  border-bottom-color: rgba(46,144,234,.26);
}
/* Collapse the utility bar on scroll — homepage only (inner pages stay solid,
   so they must keep the utility bar visible). */
body.home #main-header.is-solid .header-topbar { height: 0; padding: 0; overflow: hidden; border-color: transparent; opacity: 0; }
body.home #main-header.is-solid .header-main-inner { height: 64px; }

/* Topbar (slim utility row) */
#main-header .header-topbar {
  background: transparent; height: auto; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .35s var(--ease), opacity .25s var(--ease), padding .35s var(--ease);
}
.topbar-inner {
  max-width: var(--wrap); margin-inline: auto; padding: 9px clamp(20px,5vw,48px);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-geo, .topbar-link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.58); text-decoration: none; transition: color .2s var(--ease); }
.topbar-geo svg, .topbar-link svg { color: var(--brand-bright); }
.topbar-link:hover { color: #fff; }
.topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.16); }

/* Main bar */
.header-main { background: transparent; }
.header-main-inner {
  position: relative;
  max-width: var(--wrap); margin-inline: auto; padding: 0 clamp(20px,5vw,48px);
  height: 76px; display: flex; align-items: center; gap: 20px;
  border-bottom: none !important;
  transition: height .35s var(--ease);
}
#main-logo { display: flex; align-items: center; }
#main-logo img { height: 44px; width: auto; display: block; transition: height .35s var(--ease); }
#main-header.is-solid #main-logo img { height: 38px; }
.header-divider { width: 1px; height: 28px; background: rgba(255,255,255,.13); }

/* Nav — small, refined light links with an animated underline */
#mega-menu { margin-left: 2px; }
#mega-menu > ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
#mega-menu > ul > li { position: relative; }
#mega-menu > ul > li > a {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 11px 14px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.80);
  text-decoration: none; letter-spacing: .04em; white-space: nowrap;
  transition: color .2s var(--ease);
}
#mega-menu > ul > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 7px; height: 2px;
  background: var(--brand-bright); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
#mega-menu > ul > li > a:hover { color: #fff; }
#mega-menu > ul > li:hover > a::after,
#mega-menu > ul > li.active > a::after { transform: scaleX(1); }
#mega-menu > ul > li.active > a { color: #fff; }
/* Caret on items with children */
#mega-menu .menu-item-has-children > a::before {
  content: ""; order: 2; width: 6px; height: 6px; margin-left: 3px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .55;
}

/* Dropdown (simple) — dark graphite to match the navbar */
#mega-menu .menu-item-has-children > .level-1 {
  position: absolute; top: calc(100% + 11px); left: -8px; min-width: 252px;
  background: linear-gradient(180deg, #112740 0%, #0a1626 100%);
  border: 1px solid rgba(120,170,230,.16); border-radius: 12px;
  box-shadow: 0 28px 60px rgba(2,10,22,.6), 0 4px 14px rgba(2,10,22,.45);
  padding: 9px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(9px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
/* connecting pointer */
#mega-menu .menu-item-has-children > .level-1::before {
  content: ""; position: absolute; top: -6px; left: 30px; width: 11px; height: 11px;
  background: #112740; border-left: 1px solid rgba(120,170,230,.16); border-top: 1px solid rgba(120,170,230,.16);
  transform: rotate(45deg);
}
/* invisible hover bridge across the gap so it doesn't flicker shut */
#mega-menu .menu-item-has-children > .level-1::after {
  content: ""; position: absolute; left: 0; right: 0; top: -13px; height: 13px;
}
#mega-menu > ul > li:hover > .level-1 { opacity: 1; visibility: visible; transform: translateY(0); }
#mega-menu .level-1 > li { position: relative; }
#mega-menu .level-1 > li > a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 13px; border-radius: 7px;
  color: rgba(255,255,255,.76); text-decoration: none; font-size: .88rem; font-weight: 500;
  transition: background .16s, color .16s, padding-left .18s var(--ease);
}
#mega-menu .level-1 > li > a::after {
  content: "\203A"; font-family: var(--font-mono); font-size: 1.05rem; line-height: 1;
  color: var(--brand-bright); opacity: 0; transform: translateX(-5px); transition: opacity .18s, transform .18s var(--ease);
}
#mega-menu .level-1 > li > a:hover { background: rgba(46,144,234,.16); color: #fff; padding-left: 17px; }
#mega-menu .level-1 > li > a:hover::after { opacity: 1; transform: translateX(0); }

/* Mega panel (products) */
#mega-menu .has-mega-panel { position: static; }
#mega-menu .mega-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
  width: min(var(--wrap), 94vw);
  background: linear-gradient(180deg, #112740 0%, #0a1626 100%);
  border: 1px solid rgba(120,170,230,.16); border-radius: 14px;
  box-shadow: 0 36px 80px rgba(2,10,22,.62), 0 6px 18px rgba(2,10,22,.5);
  padding: 16px; margin-top: 9px;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
/* hover bridge for the gap above the mega panel */
#mega-menu .mega-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
#mega-menu .has-mega-panel:hover .mega-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.mega-product-item {
  position: relative; display: flex; align-items: center; gap: 13px; padding: 13px 15px;
  border: 1px solid transparent; border-radius: 9px; text-decoration: none; overflow: hidden;
  transition: background .18s, border-color .18s, transform .18s var(--ease);
}
.mega-product-item::before {
  content: ""; position: absolute; left: 0; top: 11px; bottom: 11px; width: 2px; border-radius: 2px;
  background: var(--brand-bright); opacity: 0; transition: opacity .18s;
}
.mega-product-item:hover { background: rgba(46,144,234,.13); border-color: rgba(46,144,234,.3); transform: translateY(-1px); }
.mega-product-item:hover::before { opacity: 1; }
.mega-product-num { font-family: var(--font-mono); font-size: 11px; color: var(--brand-bright); letter-spacing: .1em; }
.mega-product-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mega-product-name { font-weight: 700; color: #fff; font-size: .92rem; }
.mega-product-std { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,.42); letter-spacing: .03em; }
.mega-product-arrow { color: var(--brand-bright); opacity: 0; transform: translateX(-6px); transition: .2s var(--ease); }
.mega-product-item:hover .mega-product-arrow { opacity: 1; transform: translateX(0); }
.mega-panel-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding: 16px 11px 4px; border-top: 1px solid rgba(255,255,255,.1);
}
.mega-panel-tagline { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.mega-view-all { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-bright); font-weight: 700; text-decoration: none; font-size: .88rem; }
.mega-view-all:hover { color: #fff; }

/* CTA button in header */
.header-actions { margin-left: auto; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--brand); color: #fff !important;
  border: 1.5px solid var(--brand); border-radius: var(--radius);
  font-weight: 700; font-size: .8rem; letter-spacing: .02em; text-decoration: none;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta-btn:hover { background: var(--brand-deep); box-shadow: 0 10px 22px rgba(0,87,184,.28); }
.nav-cta-btn svg { transition: transform .3s var(--ease); }
.nav-cta-btn:hover svg { transform: translateX(3px); }

/* Hamburger */
#burger-menu { position: fixed; top: 0; right: 0; z-index: 9500; display: none; }
.hamburger { display: flex; align-items: center; gap: 10px; padding: 22px clamp(18px,5vw,28px); background: transparent; }
.hamburger-lines { width: 26px; height: 14px; position: relative; }
.hline { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; transition: .3s var(--ease); }
.hline:nth-child(1) { top: 0; } .hline:nth-child(2) { bottom: 0; }
.hamburger.is-active .hline:nth-child(1) { top: 6px; transform: rotate(45deg); }
.hamburger.is-active .hline:nth-child(2) { bottom: 6px; transform: rotate(-45deg); }
.menu-label, .menu-label-close { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: #fff; }
.menu-label-close { display: none; }
.hamburger.is-active .menu-label { display: none; }
.hamburger.is-active .menu-label-close { display: inline; }
/* When the (white) mobile panel is open, switch the burger to dark so it stays visible */
.hamburger.is-active .hline { background: var(--ink); }
.hamburger.is-active .menu-label-close { color: var(--ink); }

/* Mobile menu */
.mobile-menu-wrap {
  position: fixed; inset: 0; z-index: 9300; background: #fff;
  transform: translateX(100%); transition: transform .45s var(--ease);
  padding: 110px clamp(22px,7vw,48px) 40px; overflow-y: auto;
}
.mobile-menu-wrap.is-open { transform: translateX(0); }
.mobile-menu-wrap .menu { list-style: none; margin: 0; padding: 0; }
.mobile-menu-wrap .top-level-item { border-bottom: 1px solid var(--line); }
.mobile-menu-wrap .top-level-item > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 1.4rem; font-weight: 700; color: var(--ink); text-decoration: none;
}
.mobile-menu-wrap .top-level-item .arrow { font-family: var(--font-mono); color: var(--brand); transition: transform .3s; }
.mobile-menu-wrap .top-level-item.is-open .arrow { transform: rotate(90deg); }
.mobile-menu-wrap .level-1 {
  list-style: none; margin: 0; padding: 0 0 0 4px; max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mobile-menu-wrap .level-1.is-open { max-height: 420px; padding-bottom: 14px; }
.mobile-menu-wrap .level-1 a { display: block; padding: 9px 0; color: var(--ink-2); text-decoration: none; font-size: 1rem; }
.mobile-menu-wrap .level-1 a:hover { color: var(--brand); }

@media (max-width: 1080px) {
  #mega-menu, .header-actions, .header-divider { display: none; }
  #burger-menu { display: block; }
  .header-main-inner { height: 70px; }
}

/* =============================================================
   5. HERO  — dark cinematic; the fan imagery is the backdrop and the
   navbar floats over it. Flows straight into the dark stats strip below.
   ============================================================= */
.gx-hero {
  position: relative; min-height: 70svh; margin-top: 0;
  display: flex; align-items: center;
  padding: 152px 0 116px; overflow: hidden;
  background: var(--night);
  border-bottom: none;
}
.gx-hero__media { position: absolute; inset: 0; z-index: 0; }
.gx-hero__media img,
.gx-hero__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06); /* slight overscan so edges never show */
}
/* Layered scrim: dark on the left for copy legibility, transparent on the
   right where the fan blades read, plus top/bottom fades that blend the
   floating navbar in and the stats strip out. */
.gx-hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,11,20,.93) 0%, rgba(6,11,20,.80) 34%, rgba(6,11,20,.46) 62%, rgba(6,11,20,.12) 100%),
    linear-gradient(0deg, var(--night) 1%, rgba(10,18,30,0) 32%),
    radial-gradient(120% 80% at 18% 38%, rgba(0,87,184,.22) 0%, rgba(0,87,184,0) 55%);
}
/* faint vignette for cinematic depth */
.gx-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 200px 40px rgba(2,6,12,.55);
}
.gx-hero__inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(40px, 5vw, 72px); align-items: center;
}
.gx-hero__copy { max-width: 620px; }
.gx-hero__copy .gx-eyebrow { margin-bottom: 20px; }
.gx-hero h1,
.gx-hero__copy h1 {
  color: #fff; max-width: none;
  font-size: clamp(36px, 5.1vw, 62px); line-height: 1.04;
  margin: 0 0 22px; letter-spacing: -.035em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.gx-hero__copy h1 em { font-style: normal; color: var(--brand-bright); }
.gx-hero p,
.gx-hero__lead {
  color: rgba(255,255,255,.74); max-width: 52ch;
  font-size: clamp(1rem, 1.1vw, 1.12rem); line-height: 1.65; margin: 0;
}
.gx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Spec panel — dark glass */
.gx-hero__panel {
  background: linear-gradient(180deg, rgba(20,32,50,.62) 0%, rgba(10,18,30,.50) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(120,170,230,.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(2,8,18,.55), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 10px;
}
.gx-spec {
  display: flex; gap: 15px; padding: 18px 20px; border-radius: var(--radius);
  transition: background .25s var(--ease);
}
.gx-spec:hover { background: rgba(46,144,234,.10); }
.gx-spec + .gx-spec { border-top: 1px solid rgba(255,255,255,.09); }
.gx-spec__k {
  font-family: var(--font-mono); font-size: 11px; color: var(--brand-bright);
  letter-spacing: .1em; padding-top: 3px; min-width: 28px; font-weight: 600;
}
.gx-spec__b h3 { font-size: 1.02rem; margin-bottom: 6px; color: #fff; }
.gx-spec__b p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.55; }

.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .28em;
  color: rgba(255,255,255,.55); text-decoration: none; cursor: pointer;
  transition: color .25s var(--ease);
}
.hero-scroll-hint:hover { color: #fff; }
.hero-scroll-hint .scroll-line {
  width: 1px; height: 46px; overflow: hidden;
  background: rgba(255,255,255,.18); position: relative;
}
.hero-scroll-hint .scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 50%;
  background: linear-gradient(var(--brand-bright), transparent);
  animation: gx-scroll-cue 1.9s var(--ease) infinite;
}
@keyframes gx-scroll-cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

@media (max-width: 940px) {
  .gx-hero { min-height: auto; padding: 132px 0 90px; }
  .gx-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .gx-hero__scrim {
    background:
      linear-gradient(0deg, var(--night) 2%, rgba(6,11,20,.55) 60%, rgba(6,11,20,.45) 100%),
      radial-gradient(140% 60% at 50% 30%, rgba(0,87,184,.20) 0%, rgba(0,87,184,0) 60%);
  }
  .gx-hero__panel { max-width: 520px; }
}

/* =============================================================
   6. STATS STRIP
   ============================================================= */
.gx-stats { background: var(--night); color: #fff; padding: 0; }
.gx-stats__row {
  max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px,5vw,48px);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.gx-stat {
  padding: 30px 22px; border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 6px;
}
.gx-stat:last-child { border-right: none; }
.gx-stat .stat-number {
  font-size: clamp(27px, 2.8vw, 38px); font-weight: 700; letter-spacing: -.03em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.gx-stat .stat-number sup { color: var(--brand-bright); font-size: .5em; top: -.7em; }
.gx-stat__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .07em; color: #9fb3c8; text-transform: uppercase; }
@media (max-width: 900px) { .gx-stats__row { grid-template-columns: repeat(2, 1fr); }
  .gx-stat { border-bottom: 1px solid rgba(255,255,255,.08); }
  .gx-stat:nth-child(2n) { border-right: none; } }
@media (max-width: 480px) { .gx-stats__row { grid-template-columns: 1fr; } .gx-stat { border-right: none; } }

/* =============================================================
   7. PRINCIPLES / PILLARS  (light accordion — override dark)
   ============================================================= */
.gx-principles { background: var(--bg); }
.gx-principles__layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 76px); align-items: start; }
.gx-principles__intro h2 { font-size: clamp(25px, 3vw, 36px); margin: 13px 0 16px; }
.gx-principles__intro p { color: var(--ink-2); margin-bottom: 24px; }

.pillars-accordion { display: flex; flex-direction: column; }
.gx-principles .pillar-item { border-top: 1px solid var(--line); background: transparent; }
.gx-principles .pillar-item:last-child { border-bottom: 1px solid var(--line); }
.gx-principles .pillar-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 21px 4px; background: transparent; cursor: pointer; text-align: left;
}
.gx-principles .pillar-trigger .sub-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--brand); text-transform: uppercase; display: block; margin-bottom: 7px; }
.gx-principles .pillar-trigger h3 { font-size: clamp(1.02rem, 1.5vw, 1.24rem); color: var(--ink); transition: color .25s; }
.gx-principles .pillar-item.is-active .pillar-trigger h3 { color: var(--brand); }
.pillar-toggle { position: relative; width: 30px; height: 30px; flex: none; border: 1.5px solid var(--line-strong); border-radius: 50%; transition: .3s var(--ease); }
.pillar-toggle::before, .pillar-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink); transition: .3s var(--ease); }
.pillar-toggle::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.pillar-toggle::after { width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.pillar-item.is-active .pillar-toggle { background: var(--brand); border-color: var(--brand); transform: rotate(90deg); }
.pillar-item.is-active .pillar-toggle::before,
.pillar-item.is-active .pillar-toggle::after { background: #fff; }
.pillar-item.is-active .pillar-toggle::after { height: 0; }
.pillar-content { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.pillar-item.is-active .pillar-content { max-height: 360px; }
.pillar-content-inner { padding: 0 4px 24px; }
.pillar-content-inner p { color: var(--ink-2); font-size: .95rem; max-width: 66ch; }
@media (max-width: 860px) { .gx-principles__layout { grid-template-columns: 1fr; } }

/* =============================================================
   8. PRODUCT RANGE
   ============================================================= */
.gx-range__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gx-cat {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.gx-cat::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--brand); transition: width .35s var(--ease); }
.gx-cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-tint-2); }
.gx-cat:hover::after { width: 100%; }
.gx-cat a { display: block; text-decoration: none; color: inherit; height: 100%; }
.gx-cat__media { position: relative; aspect-ratio: 4/3; background: var(--panel); overflow: hidden; }
.gx-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gx-cat:hover .gx-cat__media img { transform: scale(1.05); }
.gx-cat__num { position: absolute; top: 12px; left: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: #fff; background: rgba(13,27,42,.55); backdrop-filter: blur(4px); padding: 3px 8px; border-radius: 3px; }
.gx-cat__body { padding: 18px 18px 19px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.gx-cat__body h3 { font-size: 1.1rem; margin-bottom: 5px; }
.gx-cat__sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--ink-3); text-transform: uppercase; }
.gx-cat__arrow { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--brand); transition: .25s var(--ease); }
.gx-cat:hover .gx-cat__arrow { background: var(--brand); border-color: var(--brand); color: #fff; transform: translate(2px,-2px); }
.gx-range__cta { margin-top: 36px; display: flex; justify-content: center; }
@media (max-width: 920px) { .gx-range__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gx-range__grid { grid-template-columns: 1fr; } }

/* =============================================================
   9. FEATURE / APPLICATIONS BAND  (split image + copy)
   ============================================================= */
.gx-feature { padding: 0; }
.gx-feature__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.gx-feature__media { position: relative; overflow: hidden; }
.gx-feature__media img,
.gx-feature__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gx-feature__media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(7,11,19,.62), rgba(7,11,19,.38)); }
.gx-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px); background: var(--paper); }
.gx-feature__copy h2 { font-size: clamp(24px, 3vw, 36px); margin: 15px 0 16px; }
.gx-feature__copy p { color: var(--ink-2); font-size: .98rem; margin-bottom: 16px; max-width: 52ch; }
.gx-feature__list { list-style: none; margin: 6px 0 26px; padding: 0; display: grid; gap: 11px; }
.gx-feature__list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: .92rem; }
.gx-feature__list svg { flex: none; color: var(--brand); margin-top: 3px; }
.gx-feature.is-reverse .gx-feature__media { order: 2; }
@media (max-width: 860px) {
  .gx-feature__inner { grid-template-columns: 1fr; }
  .gx-feature__media { min-height: 320px; }
  .gx-feature.is-reverse .gx-feature__media { order: 0; }
}

/* =============================================================
   10. EFFICIENCY METRICS
   ============================================================= */
.gx-metrics__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gx-metric { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; }
.gx-metric__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--ink-3); text-transform: uppercase; }
.gx-metric__v { font-size: clamp(32px, 3.8vw, 46px); font-weight: 700; letter-spacing: -.03em; color: var(--brand); margin: 7px 0 9px; line-height: 1; }
.gx-metric p { color: var(--ink-2); font-size: .92rem; }
@media (max-width: 820px) { .gx-metrics__grid { grid-template-columns: 1fr; } }

/* =============================================================
   11. NEWS
   ============================================================= */
.gx-news__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.gx-news__head h2 { font-size: clamp(24px, 3vw, 36px); margin-top: 12px; }
.gx-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gx-newscard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.gx-newscard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gx-newscard a { text-decoration: none; color: inherit; display: block; }
.gx-newscard__img { aspect-ratio: 16/10; overflow: hidden; background: var(--panel); }
.gx-newscard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gx-newscard:hover .gx-newscard__img img { transform: scale(1.05); }
.gx-newscard__body { padding: 20px; }
.gx-newscard__date { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--brand); }
.gx-newscard__body h3 { font-size: 1.04rem; line-height: 1.3; margin: 10px 0 10px; }
.gx-newscard__body p { color: var(--ink-2); font-size: .89rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 13px; }
@media (max-width: 920px) { .gx-news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gx-news__grid { grid-template-columns: 1fr; } }

/* =============================================================
   12. CTA BAND
   ============================================================= */
.gx-cta { position: relative; overflow: hidden; background: var(--night); color: #fff; padding:20px; }
.gx-cta__media { position: absolute; inset: 0; z-index: 0; }
.gx-cta__media img,
.gx-cta__media video { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.gx-cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--night) 12%, rgba(10,22,34,.55) 100%); }
.gx-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: clamp(48px, 6.5vw, 92px) 0; flex-wrap: wrap; }
.gx-cta__inner h2 { font-size: clamp(25px, 3.4vw, 40px); color: #fff; max-width: 17ch; }
.gx-cta__inner p { color: #aebfd0; font-size: .98rem; margin-top: 14px; max-width: 48ch; }

/* =============================================================
   13. FOOTER  (dark navy — restyle existing markup)
   ============================================================= */
.site-footer { background: var(--night); color: #c4d2e0; padding: clamp(56px,7vw,90px) 0 30px; border-top: 3px solid var(--brand); }
.site-footer .container-boxed { max-width: var(--wrap); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 50px; }
.footer-col-logo .logo img { height: 36px; margin-bottom: 18px; }
.footer-col-logo p { color: #93a6ba; font-size: .94rem; max-width: 38ch; }
.footer-logo-divider { width: 46px; height: 2px; background: var(--brand); margin: 20px 0; }
.footer-cert { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: #7c91a8; }
.footer-col h4 { color: #fff; font-size: .82rem; font-family: var(--font-mono); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col ul a { color: #a9bacb; text-decoration: none; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item .ic { color: var(--brand-bright); flex: none; }
.footer-contact-item p, .footer-contact-item a { color: #a9bacb; font-size: .93rem; text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom .copy { font-size: .85rem; color: #7c91a8; }
.footer-back-top { display: inline-flex; align-items: center; gap: 8px; color: #a9bacb; text-decoration: none; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; }
.footer-back-top:hover { color: #fff; }
.footer-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transition: .25s var(--ease); }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------
   14. fade-up safety (JS injects base; ensure visible fallback)
   ------------------------------------------------------------- */
.no-js .fade-up { opacity: 1 !important; transform: none !important; }

/* =============================================================
   15. INNER-PAGE BREADCRUMB IMAGE
   Use the hero fan photo as the backdrop for the breadcrumb region
   on every inner page. A left-weighted dark gradient keeps the
   breadcrumb / heading text legible while the blades read on the right.
   Relative URL resolves from /assets/css/ -> /assets/img/new/.
   ============================================================= */

/* Slim breadcrumb bar (About, Applications, Contact, Production, Where to Buy, Certificates) */
.breadcumb {
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(7,11,19,.94) 0%, rgba(7,11,19,.82) 50%, rgba(7,11,19,.60) 100%),
    url(../img/new/hero.jpg);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-color: var(--night);
  border-bottom: 3px solid var(--brand);
  padding: 22px 0;
}

/* Full page-hero header (Products archive, Product categories, Certificates) */
.page-hero {
  background-image:
    linear-gradient(90deg, rgba(7,11,19,.93) 0%, rgba(7,11,19,.84) 45%, rgba(7,11,19,.66) 100%),
    url(../img/new/hero.jpg) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: var(--night) !important;
}

/* Single product detail — slim bar (was a light bar; flip to the dark image) */
/* Single product — simple plain breadcrumb, no background colour/image */
body.page-single-product .breadcrumb-bar {
  background: none !important;
  background-color: transparent !important;
  border-bottom: none !important;
  padding: 18px 0 !important;
}
body.page-single-product .breadcrumb-bar a { color: var(--mid-gray) !important; }
body.page-single-product .breadcrumb-bar a:hover { color: var(--brand) !important; }
body.page-single-product .breadcrumb-sep { color: rgba(0,0,0,.25) !important; }
body.page-single-product .breadcrumb-current { color: var(--black) !important; }

/* -------------------------------------------------------------
   15b. CONTACT & WHERE-TO-BUY — image hero intros
   The hero-photo background + padding were folded into the base
   .contact-intro / .wtb-intro rules above. The vignette and on-image
   text colours remain here as additive treatment.
   ------------------------------------------------------------- */
/* slight cinematic vignette to match the homepage hero treatment */
body.page-contact .contact-intro::after,
body.page-where-to-buy .wtb-intro::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 160px 30px rgba(2,6,12,.5);
}
body.page-contact .contact-intro > .container-boxed,
body.page-where-to-buy .wtb-intro > .container-boxed {
  position: relative; z-index: 1;
}
body.page-contact .contact-intro h1,
body.page-where-to-buy .wtb-intro h1 { text-shadow: 0 2px 26px rgba(0,0,0,.4); }
body.page-contact .contact-intro h1 span,
body.page-where-to-buy .wtb-intro h1 span { color: var(--brand-bright); }
body.page-contact .contact-intro p,
body.page-where-to-buy .wtb-intro p { color: rgba(255,255,255,.78); }

/* -------------------------------------------------------------
   15c. HERO BREADCRUMB — merged into the hero image
   About / Applications / Contact / Where-to-buy used to stack a
   separate dark `.breadcumb` bar above the hero, leaving a visible
   seam between two images. The breadcrumb now lives INSIDE the hero
   (like the Products page) so each page reads as a single image.
   ------------------------------------------------------------- */
.hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-breadcrumbs a { color: rgba(255,255,255,.6); transition: color var(--transition); text-decoration: none; }
.hero-breadcrumbs a:hover { color: var(--brand-bright); }
.hero-breadcrumbs .sep { color: var(--brand-bright); font-size: 10px; }
.hero-breadcrumbs .current-item { color: #fff; font-weight: 700; }

/* Contact & Where-to-buy intros are centre-aligned — keep the crumb centred too */
body.page-contact .contact-intro .hero-breadcrumbs,
body.page-where-to-buy .wtb-intro .hero-breadcrumbs { justify-content: center; }

/* 15d. ABOUT & APPLICATIONS hero height was folded into the base
   .hero-image-comp / .hero-applications rules above (compact padding-driven
   height matching the Certificates page-hero). No override block needed. */

/* =============================================================
   16. MOBILE FIXES — navbar, hero & spacing
   Authoritative (end of file). Resolves the responsive bugs:
   1) the legacy .hero-video-component fixed height (70vh / 85vh) fought
      the new padding-driven gx-hero and, with overflow:hidden, clipped
      the hero copy + spec panel on phones;
   2) the mobile navbar switched at two different breakpoints (base 1024px
      vs redesign 1080px) with mismatched bar heights (70px bar vs a
      70/80px content offset), so content tucked under the navbar and the
      logo/hamburger sat at slightly different heights.
   ============================================================= */

/* The homepage hero still carries the legacy .hero-video-component class.
   Its old fixed height fought gx-hero — force content-driven height so the
   copy + spec panel are never clipped (gx-hero keeps its min-height floor). */
.gx-hero { height: auto; }

/* Match the redesign's mobile-nav breakpoint (1080px) and pin every part of
   the bar — and the page offset below it — to one height so they line up. */
@media (max-width: 1080px) {
  :root { --nav-height-mobile: 64px; }
  #main-header { height: auto; }
  .header-main { height: var(--nav-height-mobile); }
  .header-main-inner { height: var(--nav-height-mobile); padding: 0 20px; }
  #main-logo img { height: 34px; }
  #burger-menu { height: var(--nav-height-mobile); padding: 0 16px; }
  /* Inner pages: start content exactly below the fixed bar (home is full-bleed). */
  body:not(.home) .content-area { padding-top: var(--nav-height-mobile); }
}

@media (max-width: 640px) {
  .gx-hero { padding: 104px 0 72px; }
  .gx-hero__inner { gap: 30px; }
  .gx-hero__panel { max-width: none; }
  .gx-section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .gx-hero { padding: 92px 0 60px; }
  .gx-hero__copy h1 { font-size: clamp(30px, 8vw, 40px); }
  .gx-hero__lead { font-size: 1rem; }
  /* Stack the hero CTAs full-width so they are easy to tap. */
  .gx-hero__actions { gap: 10px; }
  .gx-hero__actions .gx-btn { width: 100%; justify-content: center; }
}

body.page-products .product-card {
    width: 96%;
    margin-inline: auto;
    height: 544px;
    /* max-width: 256px; */
    max-height: 544px;
}
